aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2024-12-27 12:52:24 -0500
committerGitHub <noreply@github.com>2024-12-27 12:52:24 -0500
commitcd647df3b551cea154317a572ace9052727aa72b (patch)
tree01c6fbdd9d3a6a3e21232799793f6afeaf80b40a /data
parentUse RGBDS 0.9.0 (#482) (diff)
downloadpokeyellow-cd647df3b551cea154317a572ace9052727aa72b.tar.gz
pokeyellow-cd647df3b551cea154317a572ace9052727aa72b.tar.xz
pokeyellow-cd647df3b551cea154317a572ace9052727aa72b.zip
Don't pass redundant label names to `table_width` and `list_start` (#484)
Diffstat (limited to 'data')
-rw-r--r--data/battle/stat_mod_names.asm2
-rw-r--r--data/battle/stat_names.asm2
-rw-r--r--data/battle_anims/base_coords.asm2
-rw-r--r--data/battle_anims/frame_blocks.asm2
-rw-r--r--data/battle_anims/subanimations.asm2
-rw-r--r--data/credits/credits_text.asm2
-rw-r--r--data/events/hidden_coins.asm2
-rw-r--r--data/events/hidden_item_coords.asm2
-rw-r--r--data/events/trades.asm2
-rw-r--r--data/growth_rates.asm2
-rw-r--r--data/items/names.asm2
-rw-r--r--data/items/prices.asm2
-rw-r--r--data/maps/hide_show_data.asm4
-rw-r--r--data/maps/map_header_banks.asm2
-rw-r--r--data/maps/map_header_pointers.asm2
-rw-r--r--data/maps/songs.asm2
-rw-r--r--data/maps/sprite_sets.asm6
-rw-r--r--data/maps/town_map_entries.asm2
-rw-r--r--data/moves/animations.asm2
-rw-r--r--data/moves/effects_pointers.asm2
-rw-r--r--data/moves/moves.asm2
-rw-r--r--data/moves/names.asm2
-rw-r--r--data/moves/sfx.asm2
-rw-r--r--data/moves/tmhm_moves.asm2
-rw-r--r--data/pokemon/base_stats.asm2
-rw-r--r--data/pokemon/cries.asm2
-rw-r--r--data/pokemon/dex_entries.asm2
-rw-r--r--data/pokemon/dex_order.asm2
-rw-r--r--data/pokemon/evos_moves.asm2
-rw-r--r--data/pokemon/names.asm2
-rw-r--r--data/pokemon/palettes.asm2
-rw-r--r--data/sgb/sgb_palettes.asm2
-rw-r--r--data/sprites/sprites.asm2
-rw-r--r--data/tilemaps.asm2
-rw-r--r--data/tilesets/tileset_headers.asm2
-rw-r--r--data/tilesets/warp_tile_ids.asm2
-rw-r--r--data/trainers/ai_pointers.asm2
-rw-r--r--data/trainers/move_choices.asm2
-rw-r--r--data/trainers/name_pointers.asm2
-rw-r--r--data/trainers/names.asm2
-rw-r--r--data/trainers/parties.asm2
-rw-r--r--data/trainers/pic_pointers_money.asm2
-rw-r--r--data/types/names.asm2
-rw-r--r--data/wild/grass_water.asm2
-rw-r--r--data/yes_no_menu_strings.asm2
45 files changed, 48 insertions, 48 deletions
diff --git a/data/battle/stat_mod_names.asm b/data/battle/stat_mod_names.asm
index 287e87e3..63c956d7 100644
--- a/data/battle/stat_mod_names.asm
+++ b/data/battle/stat_mod_names.asm
@@ -2,7 +2,7 @@
; The relevant move effect IDs correspond to the stats
StatModTextStrings:
- list_start StatModTextStrings
+ list_start
li "ATTACK"
li "DEFENSE"
li "SPEED"
diff --git a/data/battle/stat_names.asm b/data/battle/stat_names.asm
index 413ab991..30401a99 100644
--- a/data/battle/stat_names.asm
+++ b/data/battle/stat_names.asm
@@ -1,7 +1,7 @@
; Stats that vitamins can raise or lower
VitaminStats:
- list_start VitaminStats
+ list_start
li "HEALTH"
li "ATTACK"
li "DEFENSE"
diff --git a/data/battle_anims/base_coords.asm b/data/battle_anims/base_coords.asm
index 109a06e8..72efb04a 100644
--- a/data/battle_anims/base_coords.asm
+++ b/data/battle_anims/base_coords.asm
@@ -1,5 +1,5 @@
FrameBlockBaseCoords:
- table_width 2, FrameBlockBaseCoords
+ table_width 2
db $10, $68 ; BASECOORD_00
db $10, $70 ; BASECOORD_01
db $10, $78 ; BASECOORD_02
diff --git a/data/battle_anims/frame_blocks.asm b/data/battle_anims/frame_blocks.asm
index 549c1c3c..0e0de32f 100644
--- a/data/battle_anims/frame_blocks.asm
+++ b/data/battle_anims/frame_blocks.asm
@@ -1,5 +1,5 @@
FrameBlockPointers:
- table_width 2, FrameBlockPointers
+ table_width 2
dw FrameBlock00
dw FrameBlock01
dw FrameBlock02
diff --git a/data/battle_anims/subanimations.asm b/data/battle_anims/subanimations.asm
index 74097e22..33a4a2f2 100644
--- a/data/battle_anims/subanimations.asm
+++ b/data/battle_anims/subanimations.asm
@@ -1,5 +1,5 @@
SubanimationPointers:
- table_width 2, SubanimationPointers
+ table_width 2
dw Subanim_0Star
dw Subanim_0StarTwice
dw Subanim_0StarThrice
diff --git a/data/credits/credits_text.asm b/data/credits/credits_text.asm
index 37ba04bd..58c8e55e 100644
--- a/data/credits/credits_text.asm
+++ b/data/credits/credits_text.asm
@@ -1,6 +1,6 @@
CreditsTextPointers:
; entries correspond to CRED_* constants
- table_width 2, CreditsTextPointers
+ table_width 2
dw CredVersion
dw CredTajiri
dw CredTaOota
diff --git a/data/events/hidden_coins.asm b/data/events/hidden_coins.asm
index 1fa5af23..b3244da2 100644
--- a/data/events/hidden_coins.asm
+++ b/data/events/hidden_coins.asm
@@ -3,7 +3,7 @@ MACRO hidden_coin
ENDM
HiddenCoinCoords:
- table_width 3, HiddenCoinCoords
+ table_width 3
; map id, x, y
hidden_coin GAME_CORNER, 0, 8
hidden_coin GAME_CORNER, 1, 16
diff --git a/data/events/hidden_item_coords.asm b/data/events/hidden_item_coords.asm
index 04f0c2f4..3f45a1ed 100644
--- a/data/events/hidden_item_coords.asm
+++ b/data/events/hidden_item_coords.asm
@@ -3,7 +3,7 @@ MACRO hidden_item
ENDM
HiddenItemCoords:
- table_width 3, HiddenItemCoords
+ table_width 3
; map id, x, y
hidden_item VIRIDIAN_FOREST, 1, 18
hidden_item VIRIDIAN_FOREST, 16, 42
diff --git a/data/events/trades.asm b/data/events/trades.asm
index b230a918..f4963bde 100644
--- a/data/events/trades.asm
+++ b/data/events/trades.asm
@@ -1,6 +1,6 @@
TradeMons:
; entries correspond to TRADE_FOR_* constants
- table_width 3 + NAME_LENGTH, TradeMons
+ table_width 3 + NAME_LENGTH
; give mon, get mon, dialog id, nickname
; The two instances of TRADE_DIALOGSET_EVOLUTION are a leftover
; from the Japanese Blue trades, which used species that evolve.
diff --git a/data/growth_rates.asm b/data/growth_rates.asm
index aaba27a8..a4f7b5d1 100644
--- a/data/growth_rates.asm
+++ b/data/growth_rates.asm
@@ -11,7 +11,7 @@ ENDM
GrowthRateTable:
; entries correspond to GROWTH_* (see constants/pokemon_data_constants.asm)
- table_width 4, GrowthRateTable
+ table_width 4
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
diff --git a/data/items/names.asm b/data/items/names.asm
index 44a21c38..bab26efc 100644
--- a/data/items/names.asm
+++ b/data/items/names.asm
@@ -1,5 +1,5 @@
ItemNames::
- list_start ItemNames
+ list_start
li "MASTER BALL"
li "ULTRA BALL"
li "GREAT BALL"
diff --git a/data/items/prices.asm b/data/items/prices.asm
index d01c0b7e..aefd1078 100644
--- a/data/items/prices.asm
+++ b/data/items/prices.asm
@@ -1,5 +1,5 @@
ItemPrices::
- table_width 3, ItemPrices
+ table_width 3
bcd3 0 ; MASTER_BALL
bcd3 1200 ; ULTRA_BALL
bcd3 600 ; GREAT_BALL
diff --git a/data/maps/hide_show_data.asm b/data/maps/hide_show_data.asm
index e3ece942..08d21511 100644
--- a/data/maps/hide_show_data.asm
+++ b/data/maps/hide_show_data.asm
@@ -2,7 +2,7 @@
MapHSPointers:
; entries correspond to map ids
- table_width 2, MapHSPointers
+ table_width 2
dw PalletTownHS
dw ViridianCityHS
dw PewterCityHS
@@ -259,7 +259,7 @@ NoHS:
MissableObjects:
; entries correspond to HS_* constants (see constants/hide_show_constants)
- table_width 3, MissableObjects
+ table_width 3
; format: map id, object id, HIDE/SHOW
PalletTownHS:
diff --git a/data/maps/map_header_banks.asm b/data/maps/map_header_banks.asm
index 87ec01cf..de7ae84b 100644
--- a/data/maps/map_header_banks.asm
+++ b/data/maps/map_header_banks.asm
@@ -1,6 +1,6 @@
; see also MapHeaderPointers
MapHeaderBanks::
- table_width 1, MapHeaderBanks
+ table_width 1
db BANK(PalletTown_h)
db BANK(ViridianCity_h)
db BANK(PewterCity_h)
diff --git a/data/maps/map_header_pointers.asm b/data/maps/map_header_pointers.asm
index 44457ce6..8d9eba2e 100644
--- a/data/maps/map_header_pointers.asm
+++ b/data/maps/map_header_pointers.asm
@@ -1,6 +1,6 @@
; see also MapHeaderBanks
MapHeaderPointers::
- table_width 2, MapHeaderPointers
+ table_width 2
dw PalletTown_h
dw ViridianCity_h
dw PewterCity_h
diff --git a/data/maps/songs.asm b/data/maps/songs.asm
index 111b87b8..bb62b552 100644
--- a/data/maps/songs.asm
+++ b/data/maps/songs.asm
@@ -1,5 +1,5 @@
MapSongBanks::
- table_width 2, MapSongBanks
+ table_width 2
db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; PALLET_TOWN
db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_CITY
db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_CITY
diff --git a/data/maps/sprite_sets.asm b/data/maps/sprite_sets.asm
index 0bf49db6..7b2a4e87 100644
--- a/data/maps/sprite_sets.asm
+++ b/data/maps/sprite_sets.asm
@@ -1,7 +1,7 @@
; Valid sprite IDs for each outdoor map.
MapSpriteSets:
- table_width 1, MapSpriteSets
+ table_width 1
db SPRITESET_PALLET_VIRIDIAN ; PALLET_TOWN
db SPRITESET_PALLET_VIRIDIAN ; VIRIDIAN_CITY
db SPRITESET_PEWTER_CERULEAN ; PEWTER_CITY
@@ -47,7 +47,7 @@ MapSpriteSets:
; #3: sprite set ID if on the west or north side
; #4: sprite set ID if on the east or south side
SplitMapSpriteSets:
- table_width 4, SplitMapSpriteSets
+ table_width 4
db NORTH_SOUTH, 37, SPRITESET_PEWTER_CERULEAN, SPRITESET_PALLET_VIRIDIAN ; SPLITSET_ROUTE_2
db NORTH_SOUTH, 50, SPRITESET_PEWTER_CERULEAN, SPRITESET_LAVENDER ; SPLITSET_ROUTE_10
db EAST_WEST, 57, SPRITESET_VERMILION, SPRITESET_SILENCE_BRIDGE ; SPLITSET_ROUTE_11
@@ -63,7 +63,7 @@ SplitMapSpriteSets:
assert_table_length NUM_SPLIT_SETS
SpriteSets:
- table_width SPRITE_SET_LENGTH, SpriteSets
+ table_width SPRITE_SET_LENGTH
; SPRITESET_PALLET_VIRIDIAN
db SPRITE_BLUE
diff --git a/data/maps/town_map_entries.asm b/data/maps/town_map_entries.asm
index 78b7ff62..c93ba57b 100644
--- a/data/maps/town_map_entries.asm
+++ b/data/maps/town_map_entries.asm
@@ -5,7 +5,7 @@ ENDM
; the appearance of towns and routes in the town map
ExternalMapEntries:
- table_width 3, ExternalMapEntries
+ table_width 3
; x, y, name
external_map 2, 11, PalletTownName
external_map 2, 8, ViridianCityName
diff --git a/data/moves/animations.asm b/data/moves/animations.asm
index e9fdc34c..bd362c53 100644
--- a/data/moves/animations.asm
+++ b/data/moves/animations.asm
@@ -1,5 +1,5 @@
AttackAnimationPointers:
- table_width 2, AttackAnimationPointers
+ table_width 2
dw PoundAnim
dw KarateChopAnim
dw DoubleSlapAnim
diff --git a/data/moves/effects_pointers.asm b/data/moves/effects_pointers.asm
index 63350efc..fc7c08c5 100644
--- a/data/moves/effects_pointers.asm
+++ b/data/moves/effects_pointers.asm
@@ -1,6 +1,6 @@
MoveEffectPointerTable:
; entries correspond to *_EFFECT constants
- table_width 2, MoveEffectPointerTable
+ table_width 2
dw SleepEffect ; EFFECT_01
dw PoisonEffect ; POISON_SIDE_EFFECT1
dw DrainHPEffect ; DRAIN_HP_EFFECT
diff --git a/data/moves/moves.asm b/data/moves/moves.asm
index e59ed007..f435ab6b 100644
--- a/data/moves/moves.asm
+++ b/data/moves/moves.asm
@@ -10,7 +10,7 @@ ENDM
Moves:
; Characteristics of each move.
- table_width MOVE_LENGTH, Moves
+ table_width MOVE_LENGTH
move POUND, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
move KARATE_CHOP, NO_ADDITIONAL_EFFECT, 50, NORMAL, 100, 25
move DOUBLESLAP, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 10
diff --git a/data/moves/names.asm b/data/moves/names.asm
index e9591619..025172d5 100644
--- a/data/moves/names.asm
+++ b/data/moves/names.asm
@@ -1,5 +1,5 @@
MoveNames::
- list_start MoveNames
+ list_start
li "POUND"
li "KARATE CHOP"
li "DOUBLESLAP"
diff --git a/data/moves/sfx.asm b/data/moves/sfx.asm
index c3f01f4e..f1466ac1 100644
--- a/data/moves/sfx.asm
+++ b/data/moves/sfx.asm
@@ -1,5 +1,5 @@
MoveSoundTable:
- table_width 3, MoveSoundTable
+ table_width 3
; ID, pitch mod, tempo mod
db SFX_POUND, $00, $80 ; POUND
db SFX_BATTLE_0C, $10, $80 ; KARATE_CHOP
diff --git a/data/moves/tmhm_moves.asm b/data/moves/tmhm_moves.asm
index 6b279f5a..ee9b37f8 100644
--- a/data/moves/tmhm_moves.asm
+++ b/data/moves/tmhm_moves.asm
@@ -2,7 +2,7 @@
; define constants for the item IDs and for the corresponding move values.
TechnicalMachines:
- table_width 1, TechnicalMachines
+ table_width 1
FOR n, 1, NUM_TMS + 1
db TM{02d:n}_MOVE
diff --git a/data/pokemon/base_stats.asm b/data/pokemon/base_stats.asm
index 691e75b0..76f7a0bd 100644
--- a/data/pokemon/base_stats.asm
+++ b/data/pokemon/base_stats.asm
@@ -1,5 +1,5 @@
BaseStats::
- table_width BASE_DATA_SIZE, BaseStats
+ table_width BASE_DATA_SIZE
INCLUDE "data/pokemon/base_stats/bulbasaur.asm"
INCLUDE "data/pokemon/base_stats/ivysaur.asm"
INCLUDE "data/pokemon/base_stats/venusaur.asm"
diff --git a/data/pokemon/cries.asm b/data/pokemon/cries.asm
index 290f5625..eab1818e 100644
--- a/data/pokemon/cries.asm
+++ b/data/pokemon/cries.asm
@@ -4,7 +4,7 @@ MACRO mon_cry
ENDM
CryData::
- table_width 3, CryData
+ table_width 3
; base cry, pitch, length
mon_cry SFX_CRY_11, $00, $80 ; Rhydon
mon_cry SFX_CRY_03, $00, $80 ; Kangaskhan
diff --git a/data/pokemon/dex_entries.asm b/data/pokemon/dex_entries.asm
index ceb431b7..58e815ac 100644
--- a/data/pokemon/dex_entries.asm
+++ b/data/pokemon/dex_entries.asm
@@ -1,5 +1,5 @@
PokedexEntryPointers:
- table_width 2, PokedexEntryPointers
+ table_width 2
dw RhydonDexEntry
dw KangaskhanDexEntry
dw NidoranMDexEntry
diff --git a/data/pokemon/dex_order.asm b/data/pokemon/dex_order.asm
index 32e7a79b..7c47ddcc 100644
--- a/data/pokemon/dex_order.asm
+++ b/data/pokemon/dex_order.asm
@@ -1,5 +1,5 @@
PokedexOrder:
- table_width 1, PokedexOrder
+ table_width 1
db DEX_RHYDON
db DEX_KANGASKHAN
db DEX_NIDORAN_M
diff --git a/data/pokemon/evos_moves.asm b/data/pokemon/evos_moves.asm
index d900dde6..6a6704f9 100644
--- a/data/pokemon/evos_moves.asm
+++ b/data/pokemon/evos_moves.asm
@@ -9,7 +9,7 @@
; - db 0 ; no more level-up moves
EvosMovesPointerTable:
- table_width 2, EvosMovesPointerTable
+ table_width 2
dw RhydonEvosMoves
dw KangaskhanEvosMoves
dw NidoranMEvosMoves
diff --git a/data/pokemon/names.asm b/data/pokemon/names.asm
index 56aa9f5d..5d447c92 100644
--- a/data/pokemon/names.asm
+++ b/data/pokemon/names.asm
@@ -1,5 +1,5 @@
MonsterNames::
- table_width NAME_LENGTH - 1, MonsterNames
+ table_width NAME_LENGTH - 1
db "RHYDON@@@@"
db "KANGASKHAN"
db "NIDORAN♂@@"
diff --git a/data/pokemon/palettes.asm b/data/pokemon/palettes.asm
index 4aec84ea..f0485e16 100644
--- a/data/pokemon/palettes.asm
+++ b/data/pokemon/palettes.asm
@@ -1,5 +1,5 @@
MonsterPalettes:
- table_width 1, MonsterPalettes
+ table_width 1
db PAL_MEWMON ; MISSINGNO
db PAL_GREENMON ; BULBASAUR
db PAL_GREENMON ; IVYSAUR
diff --git a/data/sgb/sgb_palettes.asm b/data/sgb/sgb_palettes.asm
index eb6bc584..d8016d64 100644
--- a/data/sgb/sgb_palettes.asm
+++ b/data/sgb/sgb_palettes.asm
@@ -1,6 +1,6 @@
SuperPalettes:
; entries correspond to PAL_* constants
- table_width 2 * 4, SuperPalettes
+ table_width 2 * 4
RGB 31,29,31, 21,28,11, 20,26,31, 03,02,02 ; PAL_ROUTE
RGB 31,29,31, 25,28,27, 20,26,31, 03,02,02 ; PAL_PALLET
RGB 31,29,31, 17,26,03, 20,26,31, 03,02,02 ; PAL_VIRIDIAN
diff --git a/data/sprites/sprites.asm b/data/sprites/sprites.asm
index 612ce10c..3c923e2d 100644
--- a/data/sprites/sprites.asm
+++ b/data/sprites/sprites.asm
@@ -5,7 +5,7 @@ MACRO overworld_sprite
ENDM
SpriteSheetPointerTable:
- table_width 4, SpriteSheetPointerTable
+ table_width 4
; graphics, tile count
overworld_sprite RedSprite, 12 ; SPRITE_RED
overworld_sprite BlueSprite, 12 ; SPRITE_BLUE
diff --git a/data/tilemaps.asm b/data/tilemaps.asm
index 3e1033be..ba67fae0 100644
--- a/data/tilemaps.asm
+++ b/data/tilemaps.asm
@@ -5,7 +5,7 @@ ENDM
TileIDListPointerTable:
; entries correspond to TILEMAP_* constants (see constants/gfx_constants.asm)
- table_width 3, TileIDListPointerTable
+ table_width 3
; tilemap pointer, width, height
tile_ids MonTiles, 7, 7
tile_ids SlideDownMonTiles_7x5, 7, 5
diff --git a/data/tilesets/tileset_headers.asm b/data/tilesets/tileset_headers.asm
index a8500ef2..30db7b95 100644
--- a/data/tilesets/tileset_headers.asm
+++ b/data/tilesets/tileset_headers.asm
@@ -7,7 +7,7 @@ MACRO tileset
ENDM
Tilesets:
- table_width 12, Tilesets
+ table_width 12
; name, 3 counter tiles, grass tile, animations
tileset Overworld, -1, -1, -1, $52, TILEANIM_WATER_FLOWER
tileset RedsHouse1, -1, -1, -1, -1, TILEANIM_NONE
diff --git a/data/tilesets/warp_tile_ids.asm b/data/tilesets/warp_tile_ids.asm
index 823b4b36..3a4cdbd7 100644
--- a/data/tilesets/warp_tile_ids.asm
+++ b/data/tilesets/warp_tile_ids.asm
@@ -1,5 +1,5 @@
WarpTileIDPointers:
- table_width 2, WarpTileIDPointers
+ table_width 2
dw .OverworldWarpTileIDs
dw .RedsHouse1WarpTileIDs
dw .MartWarpTileIDs
diff --git a/data/trainers/ai_pointers.asm b/data/trainers/ai_pointers.asm
index a2c6975b..eaab9a7a 100644
--- a/data/trainers/ai_pointers.asm
+++ b/data/trainers/ai_pointers.asm
@@ -1,5 +1,5 @@
TrainerAIPointers:
- table_width 3, TrainerAIPointers
+ table_width 3
; one entry per trainer class
; first byte, number of times (per Pokémon) it can occur
; next two bytes, pointer to AI subroutine for trainer class
diff --git a/data/trainers/move_choices.asm b/data/trainers/move_choices.asm
index 3741f06b..1624b326 100644
--- a/data/trainers/move_choices.asm
+++ b/data/trainers/move_choices.asm
@@ -8,7 +8,7 @@ ENDM
; move choice modification methods that are applied for each trainer class
TrainerClassMoveChoiceModifications:
- list_start TrainerClassMoveChoiceModifications
+ list_start
move_choices ; YOUNGSTER
move_choices 1 ; BUG CATCHER
move_choices 1 ; LASS
diff --git a/data/trainers/name_pointers.asm b/data/trainers/name_pointers.asm
index 914fe9d4..9bcce418 100644
--- a/data/trainers/name_pointers.asm
+++ b/data/trainers/name_pointers.asm
@@ -2,7 +2,7 @@ TrainerNamePointers:
; These are only used for trainers' defeat speeches.
; They were originally shortened variants of the trainer class names
; in the Japanese versions, but are now redundant with TrainerNames.
- table_width 2, TrainerNamePointers
+ table_width 2
dw .YoungsterName
dw .BugCatcherName
dw .LassName
diff --git a/data/trainers/names.asm b/data/trainers/names.asm
index dc6ded77..d7c5677c 100644
--- a/data/trainers/names.asm
+++ b/data/trainers/names.asm
@@ -1,5 +1,5 @@
TrainerNames::
- list_start TrainerNames
+ list_start
li "YOUNGSTER"
li "BUG CATCHER"
li "LASS"
diff --git a/data/trainers/parties.asm b/data/trainers/parties.asm
index b2ad5e08..cf5eb151 100644
--- a/data/trainers/parties.asm
+++ b/data/trainers/parties.asm
@@ -1,5 +1,5 @@
TrainerDataPointers:
- table_width 2, TrainerDataPointers
+ table_width 2
dw YoungsterData
dw BugCatcherData
dw LassData
diff --git a/data/trainers/pic_pointers_money.asm b/data/trainers/pic_pointers_money.asm
index 4515d880..f300fb29 100644
--- a/data/trainers/pic_pointers_money.asm
+++ b/data/trainers/pic_pointers_money.asm
@@ -4,7 +4,7 @@ MACRO pic_money
ENDM
TrainerPicAndMoneyPointers::
- table_width 5, TrainerPicAndMoneyPointers
+ table_width 5
; pic pointer, base reward money
; money received after battle = base money × level of last enemy mon
pic_money YoungsterPic, 1500
diff --git a/data/types/names.asm b/data/types/names.asm
index 87da5c5f..8fbcacb6 100644
--- a/data/types/names.asm
+++ b/data/types/names.asm
@@ -1,5 +1,5 @@
TypeNames:
- table_width 2, TypeNames
+ table_width 2
dw .Normal
dw .Fighting
diff --git a/data/wild/grass_water.asm b/data/wild/grass_water.asm
index a09fdce6..f15bed50 100644
--- a/data/wild/grass_water.asm
+++ b/data/wild/grass_water.asm
@@ -1,5 +1,5 @@
WildDataPointers:
- table_width 2, WildDataPointers
+ table_width 2
dw NothingWildMons ; PALLET_TOWN
dw NothingWildMons ; VIRIDIAN_CITY
dw NothingWildMons ; PEWTER_CITY
diff --git a/data/yes_no_menu_strings.asm b/data/yes_no_menu_strings.asm
index 82c3a3a5..445bf830 100644
--- a/data/yes_no_menu_strings.asm
+++ b/data/yes_no_menu_strings.asm
@@ -5,7 +5,7 @@ ENDM
TwoOptionMenuStrings:
; entries correspond to *_MENU constants
- table_width 5, TwoOptionMenuStrings
+ table_width 5
; width, height, blank line before first menu item?, text pointer
two_option_menu 4, 3, FALSE, .YesNoMenu
two_option_menu 6, 3, FALSE, .NorthWestMenu