mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 15:45:24 +13:00
Add comments associating constants with data, and identify some more data
This commit is contained in:
parent
0177688ad4
commit
69788c536b
45 changed files with 318 additions and 299 deletions
|
|
@ -1,4 +1,5 @@
|
|||
MoveEffectPointerTable:
|
||||
; entries correspond to *_EFFECT constants
|
||||
dw SleepEffect ; EFFECT_01
|
||||
dw PoisonEffect ; POISON_SIDE_EFFECT1
|
||||
dw DrainHPEffect ; DRAIN_HP_EFFECT
|
||||
|
|
|
|||
10
data/moves/field_move_names.asm
Normal file
10
data/moves/field_move_names.asm
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
FieldMoveNames:
|
||||
db "CUT@"
|
||||
db "FLY@"
|
||||
db "@"
|
||||
db "SURF@"
|
||||
db "STRENGTH@"
|
||||
db "FLASH@"
|
||||
db "DIG@"
|
||||
db "TELEPORT@"
|
||||
db "SOFTBOILED@"
|
||||
14
data/moves/field_moves.asm
Normal file
14
data/moves/field_moves.asm
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FieldMoveDisplayData:
|
||||
; move id, FieldMoveNames index, leftmost tile
|
||||
; (leftmost tile = -1 + tile column in which the first
|
||||
; letter of the move's name should be displayed)
|
||||
db CUT, 1, $0C
|
||||
db FLY, 2, $0C
|
||||
db ANIM_B4, 3, $0C ; unused
|
||||
db SURF, 4, $0C
|
||||
db STRENGTH, 5, $0A
|
||||
db FLASH, 6, $0C
|
||||
db DIG, 7, $0C
|
||||
db TELEPORT, 8, $0A
|
||||
db SOFTBOILED, 9, $08
|
||||
db -1 ; end
|
||||
Loading…
Add table
Add a link
Reference in a new issue