Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/data/moves/field_moves.asm
1271 views
1
FieldMoveDisplayData:
2
; move id, FieldMoveNames index, leftmost tile
3
; (leftmost tile = -1 + tile column in which the first
4
; letter of the move's name should be displayed)
5
db CUT, 1, $0C
6
db FLY, 2, $0C
7
db ANIM_B4, 3, $0C ; unused
8
db SURF, 4, $0C
9
db STRENGTH, 5, $0A
10
db FLASH, 6, $0C
11
db DIG, 7, $0C
12
db TELEPORT, 8, $0A
13
db SOFTBOILED, 9, $08
14
db -1 ; end
15
16