Comments

Log in with itch.io to leave a comment.

(8 edits)

Sorry about that, but I forgot to add the description...

Anyway, the controls are WASD, and your goal is to reach the passage. Escape button redirect to menu. Each edge corresponds to a specific hexadecimal value. For convenience, a half-edge from the center was introduced as a pseudo-edge. Here is the lookup table:

71 17 = 0
72 27 = 0
73 37 = 0
74 47 = 0
75 57 = 0
76 67 = 0

12 21 = 1
13 31 = 2
14 41 = 3
15 51 = 4
16 61 = 5

23 32 = 6
24 42 = 7
25 52 = 8
26 62 = 9

34 43 = A (10)
35 53 = B (11)
36 63 = C (12)

45 54 = D (13)
46 64 = E (14)

56 65 = F (15)

And now, the commands:

0x01 — Create/Spawn Ball
0x02 — Create/Spawn Triangle
0x03 — Create/Spawn Hexagon
0x04 — Set Rotation
0x05 — Spawn Polygon Burst (takes the number of shapes as an argument)
0x06 — Heal Player (takes the amount of HP as an argument)
0xFE — Cast spell and save it as a button
0xFF — Cast spell

We wanted to add more, but we ran out of time.

Your task is to set the nibbles using hex values. For example, a hexagon cast — 03 FE — 0 3 F E — corresponds to vertices 71 13 56 64 or 713 564

To cast, hold and connect the vertices by mouse. Always reset commands with FF or FE at the end.

Examples

06 FA FE - heal cast

02 05 FA FE - attack cast