aboutsummaryrefslogtreecommitdiff
path: root/entity/list.gbasm
blob: 054a563e57a2067cca5862209db00c6c3a8213e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Entity_list:
	.Fox:
		; Sprite address
		.DB =OBJ_Tile_Image_Data.Fox

		; Turn Jump Table index
		.DB $02

		; Interaction Jump Table index
		.DB $01

		; Starting health
		.DB $04

		; Starting mana
		.DB $05

		.PADTO =.Fox+8

	.Frog:
		; Sprite address
		.DB =OBJ_Tile_Image_Data.Frog

		; Turn Jump Table index
		.DB $03

		; Interaction Jump Table index
		.DB $01

		; Starting health
		.DB $02

		; Starting mana
		.DB $00

		.PADTO =.Frog+8

	.Cat:
		; Sprite address
		.DB =OBJ_Tile_Image_Data.Cat

		; Turn Jump Table index
		.DB $03

		; Interaction Jump Table index
		.DB $01

		; Starting health
		.DB $02

		; Starting mana
		.DB $00

		.PADTO =.Cat+8

	.Penguin:
		; Sprite address
		.DB =OBJ_Tile_Image_Data.Penguin

		; Turn Jump Table index
		.DB $04

		; Interaction Jump Table index
		.DB $01

		; Starting health
		.DB $05

		; Starting mana
		.DB $03

		.PADTO =.Penguin+8

	.Mouse:
		; Sprite address
		.DB =OBJ_Tile_Image_Data.Mouse

		; Turn Jump Table index
		.DB $00

		; Interaction Jump Table index
		.DB $02

		; Starting health
		.DB $00

		; Starting mana
		.DB $00

		.PADTO =.Mouse+8

	.Fimsh:
		; Sprite address
		.DB =OBJ_Tile_Image_Data.Fimsh

		; Turn Jump Table index
		.DB $00

		; Interaction Jump Table index
		.DB $02

		; Starting health
		.DB $00

		; Starting mana
		.DB $00

		.PADTO =.Fimsh+8