mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-08-08 11:18:13 -05:00
Merges Map Headers and Scripts, also adding Macros to automate some of the identical dummy scripts. Renames all Routes to their proper names.
44 lines
711 B
NASM
44 lines
711 B
NASM
map_id ROUTE_1
|
|
db 8 percent, 8 percent, 8 percent ; encounter rates: morn/day/nite
|
|
; morn only
|
|
if DEF(_GOLD)
|
|
db 7, DEX_SUNNY
|
|
db 3, DEX_SUNNY
|
|
db 5, DEX_SUNNY
|
|
endc
|
|
if DEF(_SILVER)
|
|
db 8, DEX_PIDGEY
|
|
db 8, DEX_PIDGEY
|
|
db 7, DEX_PIDGEY
|
|
endc
|
|
; morn/day
|
|
db 5, DEX_PIKACHU
|
|
db 5, DEX_PIDGEY
|
|
db 5, DEX_PIDGEY
|
|
db 4, DEX_RATTATA
|
|
; morn/day/nite
|
|
db 6, DEX_KIRINRIKI
|
|
db 4, DEX_KIRINRIKI
|
|
if DEF(_GOLD)
|
|
db 4, DEX_HANEKO
|
|
endc
|
|
if DEF(_SILVER)
|
|
db 4, DEX_MARIL
|
|
endc
|
|
db 4, DEX_PIDGEY
|
|
; day/nite
|
|
db 8, DEX_RATTATA
|
|
db 7, DEX_RATTATA
|
|
; nite only
|
|
db 5, DEX_RATTATA
|
|
db 5, DEX_RATTATA
|
|
if DEF(_GOLD)
|
|
db 7, DEX_RATTATA
|
|
db 8, DEX_RATTATA
|
|
endc
|
|
if DEF(_SILVER)
|
|
db 5, DEX_HOHO
|
|
db 3, DEX_HOHO
|
|
endc
|
|
db 5, DEX_PIKACHU
|