mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-08-08 11:18:13 -05:00
This uses catch-all files like main.asm to reduce the total quantity and size of build objects (from 1.1 GB to 70 MB). --------- Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
59 lines
1.5 KiB
NASM
59 lines
1.5 KiB
NASM
WarpMenuOptions::
|
|
|
|
db 16 ; Number of options in the menu - 43 total stored in data, but most are unused
|
|
|
|
db SPAWN_POINT_SILENT
|
|
db SPAWN_POINT_OLD
|
|
db SPAWN_POINT_WEST
|
|
db SPAWN_POINT_HIGH_TECH
|
|
db SPAWN_POINT_FOUNT
|
|
db SPAWN_POINT_BIRDON
|
|
db SPAWN_POINT_NEW_TYPE
|
|
db SPAWN_POINT_SUGAR
|
|
db SPAWN_POINT_BLUE_FOREST
|
|
db SPAWN_POINT_STAND
|
|
db SPAWN_POINT_KANTO
|
|
|
|
; PRINCE and MT_FUJI are skipped in the menu
|
|
|
|
; db SPAWN_POINT_PRINCE
|
|
; db SPAWN_POINT_MT_FUJI
|
|
|
|
db SPAWN_POINT_SOUTH
|
|
db SPAWN_POINT_NORTH
|
|
db SPAWN_POINT_ROUTE_15
|
|
db SPAWN_POINT_ROUTE_18
|
|
db SPAWN_POINT_SILENT_HILL
|
|
db $ff
|
|
|
|
; The demo's options stop here, but the spawn points included actually extend far beyond what is available
|
|
|
|
db SPAWN_POINT_POWER_PLANT_1
|
|
db SPAWN_POINT_POWER_PLANT_2
|
|
db SPAWN_POINT_POWER_PLANT_3
|
|
db SPAWN_POINT_POWER_PLANT_4
|
|
db SPAWN_POINT_RUINS_1
|
|
db SPAWN_POINT_RUINS_2
|
|
db SPAWN_POINT_MINES_1
|
|
db SPAWN_POINT_MINES_2
|
|
db SPAWN_POINT_MINES_3
|
|
db SPAWN_POINT_MINES_4
|
|
db SPAWN_POINT_MINES_5
|
|
db SPAWN_POINT_MINES_6
|
|
db SPAWN_POINT_MINES_7
|
|
db SPAWN_POINT_HIDEOUT_1
|
|
db SPAWN_POINT_HIDEOUT_2
|
|
db SPAWN_POINT_HIDEOUT_3
|
|
db SPAWN_POINT_SLOWPOKE_WELL_1
|
|
db SPAWN_POINT_SLOWPOKE_WELL_2
|
|
db SPAWN_POINT_POKEMON_LEAGUE_1
|
|
db SPAWN_POINT_POKEMON_LEAGUE_1_2
|
|
db SPAWN_POINT_POKEMON_LEAGUE_2
|
|
db SPAWN_POINT_POKEMON_LEAGUE_3
|
|
db SPAWN_POINT_POKEMON_LEAGUE_4
|
|
db SPAWN_POINT_POKEMON_LEAGUE_5
|
|
db SPAWN_POINT_POKEMON_LEAGUE_6
|
|
db SPAWN_POINT_POKEMON_LEAGUE_7
|
|
db SPAWN_POINT_POKEMON_LEAGUE_7_2
|
|
db $ff
|