summaryrefslogtreecommitdiff
path: root/macros/movement.asm
blob: a78d532da64af4859d518d9da1d27a60b1e3a7f1 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
turn_head_down: macro
	db $00
	endm

turn_head_up: macro
	db $01
	endm

turn_head_left: macro
	db $02
	endm

turn_head_right: macro
	db $03
	endm

half_step_down: macro
	db $04
	endm

half_step_up: macro
	db $05
	endm

half_step_left: macro
	db $06
	endm

half_step_right: macro
	db $07
	endm

slow_step_down: macro
	db $08
	endm

slow_step_up: macro
	db $09
	endm

slow_step_left: macro
	db $0a
	endm

slow_step_right: macro
	db $0b
	endm

step_down: macro
	db $0c
	endm

step_up: macro
	db $0d
	endm

step_left: macro
	db $0e
	endm

step_right: macro
	db $0f
	endm

big_step_down: macro
	db $10
	endm

big_step_up: macro
	db $11
	endm

big_step_left: macro
	db $12
	endm

big_step_right: macro
	db $13
	endm

slow_slide_step_down: macro
	db $14
	endm

slow_slide_step_up: macro
	db $15
	endm

slow_slide_step_left: macro
	db $16
	endm

slow_slide_step_right: macro
	db $17
	endm

slide_step_down: macro
	db $18
	endm

slide_step_up: macro
	db $19
	endm

slide_step_left: macro
	db $1a
	endm

slide_step_right: macro
	db $1b
	endm

fast_slide_step_down: macro
	db $1c
	endm

fast_slide_step_up: macro
	db $1d
	endm

fast_slide_step_left: macro
	db $1e
	endm

fast_slide_step_right: macro
	db $1f
	endm

turn_away_down: macro
	db $20
	endm

turn_away_up: macro
	db $21
	endm

turn_away_left: macro
	db $22
	endm

turn_away_right: macro
	db $23
	endm

turn_in_down: macro
	db $24
	endm

turn_in_up: macro
	db $25
	endm

turn_in_left: macro
	db $26
	endm

turn_in_right: macro
	db $27
	endm

turn_waterfall_down: macro
	db $28
	endm

turn_waterfall_up: macro
	db $29
	endm

turn_waterfall_left: macro
	db $2a
	endm

turn_waterfall_right: macro
	db $2b
	endm

slow_jump_step_down: macro
	db $2c
	endm

slow_jump_step_up: macro
	db $2d
	endm

slow_jump_step_left: macro
	db $2e
	endm

slow_jump_step_right: macro
	db $2f
	endm

jump_step_down: macro
	db $30
	endm

jump_step_up: macro
	db $31
	endm

jump_step_left: macro
	db $32
	endm

jump_step_right: macro
	db $33
	endm

fast_jump_step_down: macro
	db $34
	endm

fast_jump_step_up: macro
	db $35
	endm

fast_jump_step_left: macro
	db $36
	endm

fast_jump_step_right: macro
	db $37
	endm

remove_fixed_facing: macro
	db $3a
	endm

fix_facing: macro
	db $3b
	endm

hide_person: macro
	db $3d
	endm

show_person: macro
	db $3e
	endm

accelerate_last: macro
	db $45
	endm

step_sleep: macro
	db $46
	db \1 ; duration
	endm

step_end: macro
	db $47
	endm

remove_person: macro
	db $49
	endm

teleport_from: macro
	db $4c
	endm

teleport_to: macro
	db $4d
	endm

skyfall: macro
	db $4e
	endm

step_wait5: macro
	db $4f
	endm

hide_emote: macro
	db $53
	endm

show_emote: macro
	db $54
	endm

step_shake: macro
	db $55
	db \1 ; displacement
	endm