diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/decorations/decorations.asm | 1 | ||||
-rw-r--r-- | data/growth_rates.asm | 2 | ||||
-rw-r--r-- | data/items/pocket_names.asm | 2 | ||||
-rw-r--r-- | data/moves/tmhm_moves.asm | 3 | ||||
-rw-r--r-- | data/radio/buenas_passwords.asm | 2 | ||||
-rw-r--r-- | data/sprites/map_objects.asm | 6 | ||||
-rw-r--r-- | data/wild/fish.asm | 3 |
7 files changed, 13 insertions, 6 deletions
diff --git a/data/decorations/decorations.asm b/data/decorations/decorations.asm index a5519efa0..9cd24d1fc 100644 --- a/data/decorations/decorations.asm +++ b/data/decorations/decorations.asm @@ -47,6 +47,7 @@ DecorationIDs: db DECO_GEODUDE_DOLL ; 30 db DECO_MACHOP_DOLL ; 31 db DECO_TENTACOOL_DOLL ; 32 + db DECO_BIG_SNORLAX_DOLL ; 1a db DECO_BIG_ONIX_DOLL ; 1b db DECO_BIG_LAPRAS_DOLL ; 1c diff --git a/data/growth_rates.asm b/data/growth_rates.asm index 92948b3d3..cd07fc130 100644 --- a/data/growth_rates.asm +++ b/data/growth_rates.asm @@ -11,9 +11,11 @@ ENDM GrowthRates: ; entries correspond to GROWTH_* (see constants/pokemon_data_constants.asm) + table_width 4, GrowthRates growth_rate 1, 1, 0, 0, 0 ; Medium Fast growth_rate 3, 4, 10, 0, 30 ; Slightly Fast growth_rate 3, 4, 20, 0, 70 ; Slightly Slow growth_rate 6, 5, -15, 100, 140 ; Medium Slow growth_rate 4, 5, 0, 0, 0 ; Fast growth_rate 5, 4, 0, 0, 0 ; Slow + assert_table_length NUM_GROWTH_RATES diff --git a/data/items/pocket_names.asm b/data/items/pocket_names.asm index 880e08fe3..9669c5278 100644 --- a/data/items/pocket_names.asm +++ b/data/items/pocket_names.asm @@ -1,9 +1,11 @@ ItemPocketNames: ; entries correspond to item type constants + table_width 2, ItemPocketNames dw .Item dw .Key dw .Ball dw .TM + assert_table_length NUM_ITEM_TYPES .Item: db "ITEM POCKET@" .Key: db "KEY POCKET@" diff --git a/data/moves/tmhm_moves.asm b/data/moves/tmhm_moves.asm index 7ecf9fec8..50f423596 100644 --- a/data/moves/tmhm_moves.asm +++ b/data/moves/tmhm_moves.asm @@ -17,6 +17,7 @@ endc PURGE MOVE_FOR_TM n = n + 1 endr + assert_table_length NUM_TMS ; HMs n = 1 @@ -30,6 +31,7 @@ endc PURGE MOVE_FOR_HM n = n + 1 endr + assert_table_length NUM_TMS + NUM_HMS ; Move tutor n = 1 @@ -43,7 +45,6 @@ endc PURGE MOVE_FOR_MT n = n + 1 endr - assert_table_length NUM_TM_HM_TUTOR db 0 ; end diff --git a/data/radio/buenas_passwords.asm b/data/radio/buenas_passwords.asm index 078bcdd4c..341b86e57 100644 --- a/data/radio/buenas_passwords.asm +++ b/data/radio/buenas_passwords.asm @@ -13,7 +13,7 @@ BuenasPasswordTable: dw .RadioStations assert_table_length NUM_PASSWORD_CATEGORIES - ; string type, points, option 1, option 2, option 3 + ; string type, points, option 1, option 2, option 3 .JohtoStarters: db BUENA_MON, 10, CYNDAQUIL, TOTODILE, CHIKORITA .Beverages: db BUENA_ITEM, 12, FRESH_WATER, SODA_POP, LEMONADE .HealingItems: db BUENA_ITEM, 12, POTION, ANTIDOTE, PARLYZ_HEAL diff --git a/data/sprites/map_objects.asm b/data/sprites/map_objects.asm index 60a718131..5bc0e0eb6 100644 --- a/data/sprites/map_objects.asm +++ b/data/sprites/map_objects.asm @@ -298,12 +298,12 @@ SpriteMovementData:: db 0 ; flags2 db SWIMMING ; palette flags -; 25 + assert_table_length NUM_SPRITEMOVEDATA + +; unused db SPRITEMOVEFN_00 ; movement function db DOWN ; facing db OBJECT_ACTION_STAND ; action db 0 ; flags1 db 0 ; flags2 db 0 ; palette flags - - assert_table_length NUM_SPRITEMOVEDATA + 1 diff --git a/data/wild/fish.asm b/data/wild/fish.asm index b849b933f..5795dd80e 100644 --- a/data/wild/fish.asm +++ b/data/wild/fish.asm @@ -2,7 +2,8 @@ time_group EQUS "0," ; use the nth TimeFishGroups entry fishgroup: MACRO ; chance, old rod, good rod, super rod - dbwww \1, \2, \3, \4 + db \1 + dw \2, \3, \4 ENDM FishGroups: |