A port of Zachtronics' match-4 game HACK*MATCH to the TI-84 Plus CE
1palettes:
2 - name: fixed_palette
3 max-entries: 16
4 fixed-entries:
5 - color: {index: 0, r: 0, g: 0, b: 0}
6 - color: {index: 1, r: 255, g: 255, b: 255}
7 - color: {index: 2, r: 181, g: 49, b: 33}
8 - color: {index: 3, r: 173, g: 173, b: 173}
9 images: automatic
10 - name: grid_palette
11 images: automatic
12 fixed-entries:
13 - color: {index: 0, r: 0, g: 255, b: 255}
14 - color: {index: 1, r: 179, g: 243, b: 204}
15 - color: {index: 2, r: 69, g: 224, b: 130}
16
17converts:
18 - name: misc
19 palette: fixed_palette
20 style: rlet
21 transparent-color-index: 16
22 images:
23 - background.png
24 - title.png
25 - play_again.png
26 - name: grid_icons
27 palette: grid_palette
28 palette-offset: 16
29 style: palette
30 images:
31 - files/*.png
32 - stars/*.png
33 - name: exas
34 palette: grid_palette
35 palette-offset: 16
36 style: palette
37 transparent-color-index: 0
38 images:
39 - exas/*.png
40 - name: digits
41 palette: fixed_palette
42 style: palette
43 images:
44 - digits/*.png
45
46outputs:
47 - type: appvar
48 name: "HKMCHGFX"
49 include-file: gfx.h
50 source-format: c
51 archived: true
52 palettes:
53 - fixed_palette
54 - grid_palette
55 converts:
56 - misc
57 - grid_icons
58 - digits
59 - exas