Random additions because Martha was bored

- Gave the Debug Room its own name and placement on the map, simply being '?????' and up in the top-left corner of Nihon.

- Added a feature where the shiny palette of a Pokemon can be seen by pressing Select on the Pokedex screen.

- Added preliminary sprites for Belledam, Bipulla, Burgela, Coinpur, Jungela, Pupperon, Stromen, and Tricules.

- Added preliminary shiny palettes for Bipulla, Bellignan, Burgela, Coinpur, Jungela and Tricules

- Changed Debug Room's layout again slightly

- Added another NPC to the Debug Room that gives you a bunch of useful items when spoken to, mainly all of the HMs and Apriballs, plus some Master Balls, Rare Candies and more.
This commit is contained in:
Martha Schilling 2024-03-26 21:58:13 +00:00
parent 44db4d67ed
commit 7554222e3c
35 changed files with 131 additions and 61 deletions

View file

@ -121,6 +121,7 @@ DEF KANTO_LANDMARK EQU const_value
;const LANDMARK_ONE_ISLAND ;const LANDMARK_ONE_ISLAND
DEF NIHON_LANDMARK EQU const_value DEF NIHON_LANDMARK EQU const_value
const LANDMARK_SILENT_HILLS const LANDMARK_SILENT_HILLS
const LANDMARK_DEBUG_ROOM
const LANDMARK_ROUTE_49 const LANDMARK_ROUTE_49
const LANDMARK_QUIET_CAVE const LANDMARK_QUIET_CAVE
const LANDMARK_BLUE_FOREST const LANDMARK_BLUE_FOREST

View file

@ -517,20 +517,20 @@ ENDM
map_const ROUTE_31_VIOLET_GATE, 5, 4 ; 11 map_const ROUTE_31_VIOLET_GATE, 5, 4 ; 11
endgroup endgroup
newgroup SILENT_HILLS ; 27 newgroup SILENT_HILLS ; 27
map_const SILENT_HILLS, 10, 10 ; 1 map_const SILENT_HILLS, 10, 10 ; 1
map_const DEBUG_ROOM, 20, 20 ; 2 map_const DEBUG_ROOM, 20, 20 ; 2
map_const ROUTE_49, 15, 9 ; 3 map_const ROUTE_49, 15, 9 ; 3
map_const QUIET_CAVE, 27, 18 ; 4 map_const QUIET_CAVE, 27, 18 ; 4
map_const ROUTE_49_2, 10, 18 ; 5 map_const ROUTE_49_2, 10, 18 ; 5
map_const SILENT_HILLS_POKECENTER_1F, 10, 4 ; 6 map_const SILENT_HILLS_POKECENTER_1F, 10, 4 ; 6
map_const SILVERS_HOUSE, 5, 5 ; 7 map_const SILVERS_HOUSE, 5, 5 ; 7
map_const CALS_HOUSE_1F, 5, 4 ; 8 map_const CALS_HOUSE_1F, 5, 4 ; 8
map_const CALS_HOUSE_2F, 5, 4 ; 8 map_const CALS_HOUSE_2F, 5, 4 ; 8
endgroup endgroup
newgroup BLUE_FOREST ; 27 newgroup BLUE_FOREST ; 28
map_const BLUE_FOREST, 20, 18 ; 1 map_const BLUE_FOREST, 20, 18 ; 1
endgroup endgroup
DEF NUM_MAP_GROUPS EQU const_value ; 27 DEF NUM_MAP_GROUPS EQU const_value ; 27

View file

@ -109,6 +109,7 @@ Landmarks:
landmark 140, 116, FastShipName landmark 140, 116, FastShipName
assert_table_length NIHON_LANDMARK assert_table_length NIHON_LANDMARK
landmark 92, 108, SilentHillsName landmark 92, 108, SilentHillsName
landmark 20, 28, UnknownName
landmark 91, 108, Route49Name ; probably not correct landmark 91, 108, Route49Name ; probably not correct
landmark 91, 108, QuietCaveName ; probably not correct landmark 91, 108, QuietCaveName ; probably not correct
landmark 140, 60, BlueForestName landmark 140, 60, BlueForestName
@ -217,7 +218,8 @@ TohjoFallsName: db "TOHJO FALLS@"
UndergroundName: db "UNDERGROUND@" UndergroundName: db "UNDERGROUND@"
BattleTowerName: db "BATTLE¯TOWER@" BattleTowerName: db "BATTLE¯TOWER@"
SpecialMapName: db "SPECIAL@" SpecialMapName: db "SPECIAL@"
SilentHillsName: db "SILENT¯HILLS@" SilentHillsName: db "SILENT¯HILLS@"
Route49Name: db "ROUTE 49@" UnknownName: db "?????@"
QuietCaveName: db "QUIET¯CAVE@" Route49Name: db "ROUTE 49@"
BlueForestName: db "BLUE¯FOREST@" QuietCaveName: db "QUIET¯CAVE@"
BlueForestName: db "BLUE¯FOREST@"

View file

@ -558,7 +558,7 @@ MapGroup_Cherrygrove:
MapGroup_SilentHills: MapGroup_SilentHills:
table_width MAP_LENGTH, MapGroup_SilentHills table_width MAP_LENGTH, MapGroup_SilentHills
map SilentHills, TILESET_NIHON_01, TOWN, LANDMARK_SILENT_HILLS, MUSIC_NIHON_TOWN_01, TRUE, PALETTE_AUTO, FISHGROUP_SHORE map SilentHills, TILESET_NIHON_01, TOWN, LANDMARK_SILENT_HILLS, MUSIC_NIHON_TOWN_01, TRUE, PALETTE_AUTO, FISHGROUP_SHORE
map DebugRoom, TILESET_NIHON_01, TOWN, LANDMARK_SILENT_HILLS, MUSIC_SINJOH_RUINS, TRUE, PALETTE_MORN, FISHGROUP_SHORE map DebugRoom, TILESET_NIHON_01, TOWN, LANDMARK_DEBUG_ROOM, MUSIC_SINJOH_RUINS, TRUE, PALETTE_AUTO, FISHGROUP_SHORE
map Route49, TILESET_NIHON_01, ROUTE, LANDMARK_ROUTE_49, MUSIC_ROUTE_30, TRUE, PALETTE_AUTO, FISHGROUP_POND map Route49, TILESET_NIHON_01, ROUTE, LANDMARK_ROUTE_49, MUSIC_ROUTE_30, TRUE, PALETTE_AUTO, FISHGROUP_POND
map QuietCave, TILESET_NIHON_01, ROUTE, LANDMARK_QUIET_CAVE, MUSIC_ROUTE_30, TRUE, PALETTE_AUTO, FISHGROUP_POND map QuietCave, TILESET_NIHON_01, ROUTE, LANDMARK_QUIET_CAVE, MUSIC_ROUTE_30, TRUE, PALETTE_AUTO, FISHGROUP_POND
map Route49_2, TILESET_NIHON_01, ROUTE, LANDMARK_ROUTE_49, MUSIC_ROUTE_30, TRUE, PALETTE_AUTO, FISHGROUP_POND map Route49_2, TILESET_NIHON_01, ROUTE, LANDMARK_ROUTE_49, MUSIC_ROUTE_30, TRUE, PALETTE_AUTO, FISHGROUP_POND

View file

@ -208,7 +208,7 @@ INCLUDE "gfx/pokemon/weepinbell/shiny.pal"
INCBIN "gfx/pokemon/victreebel/front.gbcpal", middle_colors INCBIN "gfx/pokemon/victreebel/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/victreebel/shiny.pal" INCLUDE "gfx/pokemon/victreebel/shiny.pal"
INCBIN "gfx/pokemon/bellignan/front.gbcpal", middle_colors INCBIN "gfx/pokemon/bellignan/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/victreebel/shiny.pal" INCLUDE "gfx/pokemon/bellignan/shiny.pal"
INCBIN "gfx/pokemon/tentacool/front.gbcpal", middle_colors INCBIN "gfx/pokemon/tentacool/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/tentacool/shiny.pal" INCLUDE "gfx/pokemon/tentacool/shiny.pal"
INCBIN "gfx/pokemon/tentacruel/front.gbcpal", middle_colors INCBIN "gfx/pokemon/tentacruel/front.gbcpal", middle_colors

View file

@ -271,6 +271,15 @@ _CGB_Pokedex:
.is_pokemon .is_pokemon
call GetMonPalettePointer call GetMonPalettePointer
ld a, [wPokedexShinyToggle]
and a
jr z, .not_shiny
; Get shiny palette pointer
inc hl
inc hl
inc hl
inc hl
.not_shiny
call LoadPalette_White_Col1_Col2_Black ; mon palette call LoadPalette_White_Col1_Col2_Black ; mon palette
.got_palette .got_palette
call WipeAttrmap call WipeAttrmap

View file

@ -62,6 +62,9 @@ Pokedex:
ld [wLastDexMode], a ld [wLastDexMode], a
call Pokedex_ClearLockedIDs call Pokedex_ClearLockedIDs
xor a
ld [wPokedexShinyToggle], a
pop af pop af
ldh [hInMenu], a ldh [hInMenu], a
pop af pop af
@ -429,6 +432,9 @@ Pokedex_UpdateDexEntryScreen:
ld a, [hl] ld a, [hl]
and A_BUTTON and A_BUTTON
jr nz, .do_menu_action jr nz, .do_menu_action
ld a, [hl]
and SELECT
jr nz, .toggle_shininess
call Pokedex_NextOrPreviousDexEntry call Pokedex_NextOrPreviousDexEntry
ret nc ret nc
call Pokedex_IncrementDexPointer call Pokedex_IncrementDexPointer
@ -453,6 +459,24 @@ Pokedex_UpdateDexEntryScreen:
ld [wJumptableIndex], a ld [wJumptableIndex], a
ret ret
.toggle_shininess
; toggle the current shininess setting
ld a, [wPokedexShinyToggle]
xor 1
ld [wPokedexShinyToggle], a
; refresh palettes
ld a, SCGB_POKEDEX
call Pokedex_GetSGBLayout
; play sound based on setting
ld a, [wPokedexShinyToggle]
and a
ld de, SFX_BUMP
jr z, .got_sound
ld de, SFX_SHINE
.got_sound
call PlaySFX
jp WaitSFX
Pokedex_Page: Pokedex_Page:
ld a, [wPokedexStatus] ld a, [wPokedexStatus]
xor 1 ; toggle page xor 1 ; toggle page

View file

@ -753,6 +753,9 @@ StromenFrontpic: INCBIN "gfx/pokemon/stromen/front.animated.2bpp.lz"
StromenBackpic: INCBIN "gfx/pokemon/stromen/back.2bpp.lz" StromenBackpic: INCBIN "gfx/pokemon/stromen/back.2bpp.lz"
PhandarinFrontpic: INCBIN "gfx/pokemon/phandarin/front.animated.2bpp.lz" PhandarinFrontpic: INCBIN "gfx/pokemon/phandarin/front.animated.2bpp.lz"
PhandarinBackpic: INCBIN "gfx/pokemon/phandarin/back.2bpp.lz" PhandarinBackpic: INCBIN "gfx/pokemon/phandarin/back.2bpp.lz"
SECTION "Pics 20", ROMX
BipullaFrontpic: INCBIN "gfx/pokemon/bipulla/front.animated.2bpp.lz" BipullaFrontpic: INCBIN "gfx/pokemon/bipulla/front.animated.2bpp.lz"
BipullaBackpic: INCBIN "gfx/pokemon/bipulla/back.2bpp.lz" BipullaBackpic: INCBIN "gfx/pokemon/bipulla/back.2bpp.lz"
CalflacFrontpic: INCBIN "gfx/pokemon/calflac/front.animated.2bpp.lz" CalflacFrontpic: INCBIN "gfx/pokemon/calflac/front.animated.2bpp.lz"
@ -765,9 +768,6 @@ UrsalunaFrontpic: INCBIN "gfx/pokemon/ursaluna/front.animated.2bpp.lz"
UrsalunaBackpic: INCBIN "gfx/pokemon/ursaluna/back.2bpp.lz" UrsalunaBackpic: INCBIN "gfx/pokemon/ursaluna/back.2bpp.lz"
WynautFrontpic: INCBIN "gfx/pokemon/wynaut/front.animated.2bpp.lz" WynautFrontpic: INCBIN "gfx/pokemon/wynaut/front.animated.2bpp.lz"
WynautBackpic: INCBIN "gfx/pokemon/wynaut/back.2bpp.lz" WynautBackpic: INCBIN "gfx/pokemon/wynaut/back.2bpp.lz"
SECTION "Pics 20", ROMX
GorochuFrontpic: INCBIN "gfx/pokemon/gorochu/front.animated.2bpp.lz" GorochuFrontpic: INCBIN "gfx/pokemon/gorochu/front.animated.2bpp.lz"
GorochuBackpic: INCBIN "gfx/pokemon/gorochu/back.2bpp.lz" GorochuBackpic: INCBIN "gfx/pokemon/gorochu/back.2bpp.lz"
LeafeonFrontpic: INCBIN "gfx/pokemon/leafeon/front.animated.2bpp.lz" LeafeonFrontpic: INCBIN "gfx/pokemon/leafeon/front.animated.2bpp.lz"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 353 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 463 B

View file

@ -1,2 +1,4 @@
RGB 20, 23, 03
RGB 14, 12, 31 RGB 16, 10, 31
RGB 20, 23, 10

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 459 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 451 B

View file

@ -1,2 +1,4 @@
RGB 22, 22, 12
RGB 07, 15, 25 RGB 23, 07, 25
RGB 07, 09, 16

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 554 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 488 B

View file

@ -1,2 +1,4 @@
RGB 22, 22, 12
RGB 07, 15, 25 RGB 18, 30, 00
RGB 17, 06, 06

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 357 B

View file

@ -1,2 +1,4 @@
RGB 22, 22, 12
RGB 07, 15, 25 RGB 31, 28, 10
RGB 28, 09, 27

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 725 B

View file

@ -1,2 +1,4 @@
RGB 22, 22, 12
RGB 07, 15, 25 RGB 18, 30, 00
RGB 17, 06, 06

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 692 B

View file

@ -1,4 +1,4 @@
RGB 23, 23, 09 RGB 18, 16, 02
RGB 11, 11, 15 RGB 10, 10, 01

View file

@ -322,18 +322,17 @@ WRAM0
"Stack" "Stack"
"Audio RAM" "Audio RAM"
"WRAM" "WRAM"
align 8 align 4
"wSpriteAnims" "wSpriteAnims"
align 8 align 4
"Sprites" "Sprites"
"Tilemap" "Tilemap"
"Miscellaneous" "Miscellaneous"
"Unused Map Buffer" "Unused Map Buffer"
align 8 align 4
"Overworld Map" "Overworld Map"
align 4 align 4
"Video" "Video"
align 5
"16-bit WRAM home data" "16-bit WRAM home data"
WRAMX 1 WRAMX 1
"WRAM 1" "WRAM 1"

View file

@ -1,6 +1,7 @@
 ! ! !WWE  ! ! !E
R 
 !  !
ERETnUXYG~IJ E
HEF|}BEJ~EJ@AAB E@AABHJ~IIIEF|}ABEJ~EF@AAB
DBIIIIJDFTnUDFX5YHIIIJ|}~EEE DBIIIIJDFTnUDFX5YHIIIJ|}~EEE

View file

@ -111,7 +111,7 @@ DebugFlyScript:
addcellnum PHONE_MOM addcellnum PHONE_MOM
readvar VAR_BADGES readvar VAR_BADGES
givepoke SHI_SHI, 70, HM_FLY givepoke SHI_SHI, 70
closetext closetext
end end
@ -127,7 +127,7 @@ DebugDexScript:
playsound SFX_FANFARE playsound SFX_FANFARE
promptbutton promptbutton
callasm CheatFillPokedex callasm CheatFillPokedex
givepoke CELEBI, 50, MASTER_BALL givepoke CELEBI, 50
closetext closetext
end end
@ -149,13 +149,47 @@ CheatFillPokedex:
call ByteFill call ByteFill
ret ret
DebugItemScript:
faceplayer
opentext
writetext DebugTextE
playsound SFX_FANFARE_2
promptbutton
giveitem MASTER_BALL, 99
giveitem LEVEL_BALL, 99
giveitem MOON_BALL, 99
giveitem FRIEND_BALL, 99
giveitem LURE_BALL, 99
giveitem LOVE_BALL, 99
giveitem FAST_BALL, 99
giveitem HEAVY_BALL, 99
giveitem HM_CUT, 1
giveitem HM_FLY, 1
giveitem HM_SURF, 1
giveitem HM_STRENGTH, 1
giveitem HM_WHIRLPOOL, 1
giveitem HM_WATERFALL, 1
giveitem FULL_RESTORE, 99
giveitem MAX_REVIVE, 99
giveitem MAX_REPEL, 99
giveitem RARE_CANDY, 99
giveitem BICYCLE, 1
giveitem SUPER_ROD, 1
closetext
end
DebugTextE:
text "<PLAYER> received"
line "many items!"
done
DebugRoom_MapEvents: DebugRoom_MapEvents:
db 0, 0 ; filler db 0, 0 ; filler
def_warp_events def_warp_events
warp_event 23, 14, PLAYERS_HOUSE_1F, 1 warp_event 23, 14, PLAYERS_HOUSE_1F, 1
warp_event 3, 20, SILENT_HILLS, 1 warp_event 3, 20, SILENT_HILLS, 1
warp_event 15, 15, LAKE_OF_RAGE, 3 warp_event 11, 15, LAKE_OF_RAGE, 3
warp_event 27, 5, PEWTER_CITY, 2 warp_event 27, 5, PEWTER_CITY, 2
warp_event 15, 2, GOLDENROD_CITY, 1 ; city warp warp_event 15, 2, GOLDENROD_CITY, 1 ; city warp
warp_event 4, 9, PALLET_TOWN, 1 ; left lab/league warp warp_event 4, 9, PALLET_TOWN, 1 ; left lab/league warp
@ -176,6 +210,7 @@ DebugRoom_MapEvents:
object_event 27, 21, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, DebugPokemon2Script, -1 object_event 27, 21, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, DebugPokemon2Script, -1
object_event 23, 27, SPRITE_SUICUNE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_RED, OBJECTTYPE_SCRIPT, 0, DebugPokemon3Script, -1 object_event 23, 27, SPRITE_SUICUNE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_RED, OBJECTTYPE_SCRIPT, 0, DebugPokemon3Script, -1
object_event 26, 27, SPRITE_SUICUNE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_BROWN, OBJECTTYPE_SCRIPT, 0, DebugPokemon4Script, -1 object_event 26, 27, SPRITE_SUICUNE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_BROWN, OBJECTTYPE_SCRIPT, 0, DebugPokemon4Script, -1
object_event 24, 15, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_PURPLE, OBJECTTYPE_SCRIPT, 0, DebugFlyScript, -1 object_event 17, 13, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_PURPLE, OBJECTTYPE_SCRIPT, 0, DebugFlyScript, -1
object_event 22, 15, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_PURPLE, OBJECTTYPE_SCRIPT, 0, DebugDexScript, -1 object_event 16, 13, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_PURPLE, OBJECTTYPE_SCRIPT, 0, DebugDexScript, -1
object_event 19, 13, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_OW_PURPLE, OBJECTTYPE_SCRIPT, 0, DebugItemScript, -1

View file

@ -732,6 +732,9 @@ wBackupDexListingCursor:: db
wBackupDexListingPage:: dw wBackupDexListingPage:: dw
wDexCurLocation:: db wDexCurLocation:: db
wPokedexStatus:: db wPokedexStatus:: db
wPokedexShinyToggle::
; bit 0: set if displaying shiny palettes
db
wPokedexDisplayNumber:: dw wPokedexDisplayNumber:: dw
wDexLastSeenIndex:: db ; index into wPokedexSeen containing the last non-zero value wDexLastSeenIndex:: db ; index into wPokedexSeen containing the last non-zero value
wDexLastSeenValue:: db ; value at index wDexLastSeenValue:: db ; value at index
@ -1456,8 +1459,6 @@ wEnemyHPPal:: db
wHPPals:: ds PARTY_LENGTH wHPPals:: ds PARTY_LENGTH
wCurHPPal:: db wCurHPPal:: db
ds 7
wSGBPals:: ds 48 wSGBPals:: ds 48
wAttrmap:: wAttrmap::
@ -1505,8 +1506,6 @@ wCurSpecies:: db
wNamedObjectType:: db wNamedObjectType:: db
ds 1
wJumptableIndex:: wJumptableIndex::
wBattleTowerBattleEnded:: wBattleTowerBattleEnded::
db db
@ -1735,8 +1734,6 @@ wGameTimerPaused::
; bit 7: something mobile ; bit 7: something mobile
db db
ds 1
wJoypadDisable:: wJoypadDisable::
; bits 4, 6, or 7 can be used to disable joypad input ; bits 4, 6, or 7 can be used to disable joypad input
; bit 4 ; bit 4
@ -1744,15 +1741,11 @@ wJoypadDisable::
; bit 7: ongoing sgb data transfer ; bit 7: ongoing sgb data transfer
db db
ds 1
wInBattleTowerBattle:: wInBattleTowerBattle::
; 0 not in BattleTower-Battle ; 0 not in BattleTower-Battle
; 1 BattleTower-Battle ; 1 BattleTower-Battle
db db
ds 1
wFXAnimID:: dw wFXAnimID:: dw
wPlaceBallsX:: db wPlaceBallsX:: db
@ -1767,8 +1760,6 @@ wOBP1:: db
wNumHits:: db wNumHits:: db
ds 1
wOptions:: wOptions::
; bit 0-2: number of frames to delay when printing text ; bit 0-2: number of frames to delay when printing text
; fast 1; mid 3; slow 5 ; fast 1; mid 3; slow 5
@ -1807,8 +1798,6 @@ wMinutesSince:: db
wHoursSince:: db wHoursSince:: db
wDaysSince:: db wDaysSince:: db
ds 7
wTempLoopCounter:: db wTempLoopCounter:: db