diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/events/hidden_coins.asm | 2 | ||||
| -rw-r--r-- | data/events/hidden_item_coords.asm | 2 | ||||
| -rw-r--r-- | data/moves/animations.asm | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/data/events/hidden_coins.asm b/data/events/hidden_coins.asm index f2485f50..1fa5af23 100644 --- a/data/events/hidden_coins.asm +++ b/data/events/hidden_coins.asm @@ -3,6 +3,7 @@ MACRO hidden_coin ENDM HiddenCoinCoords: + table_width 3, HiddenCoinCoords ; map id, x, y hidden_coin GAME_CORNER, 0, 8 hidden_coin GAME_CORNER, 1, 16 @@ -16,4 +17,5 @@ HiddenCoinCoords: hidden_coin GAME_CORNER, 11, 7 hidden_coin GAME_CORNER, 15, 8 hidden_coin GAME_CORNER, 12, 15 + assert_max_table_length MAX_HIDDEN_COINS db -1 ; end diff --git a/data/events/hidden_item_coords.asm b/data/events/hidden_item_coords.asm index 1201c270..b6fce06a 100644 --- a/data/events/hidden_item_coords.asm +++ b/data/events/hidden_item_coords.asm @@ -3,6 +3,7 @@ MACRO hidden_item ENDM HiddenItemCoords: + table_width 3, HiddenItemCoords ; map id, x, y hidden_item SILPH_CO_5F, 12, 3 hidden_item SILPH_CO_9F, 2, 15 @@ -59,4 +60,5 @@ HiddenItemCoords: hidden_item CELADON_CITY, 48, 15 hidden_item SAFARI_ZONE_GATE, 10, 1 ; inaccessible hidden_item POKEMON_MANSION_1F, 8, 16 + assert_max_table_length MAX_HIDDEN_ITEMS db -1 ; end diff --git a/data/moves/animations.asm b/data/moves/animations.asm index a7e1f0be..950ec075 100644 --- a/data/moves/animations.asm +++ b/data/moves/animations.asm @@ -28,7 +28,7 @@ AttackAnimationPointers: dw JumpKickAnim dw RollingKickAnim dw SandAttackAnim - dw HeadButtAnim + dw HeadbuttAnim dw HornAttackAnim dw FuryAttackAnim dw HornDrillAnim @@ -358,7 +358,7 @@ SandAttackAnim: battle_anim SAND_ATTACK, SUBANIM_1_SAND, 1, 6 db -1 ; end -HeadButtAnim: +HeadbuttAnim: battle_anim HEADBUTT, SUBANIM_1_STAR_BIG, 1, 6 db -1 ; end |
