mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20:50 +12:00

This commit adds Nihon Route 49. It has everything necessary to work, but the wild Pokemon don't seem to spawn. I've added infrastructure that should allow this to happen, and it works for Kanto, so I am presuming that some other tomfoolery is at work. I've also added Folage and Barreau, and implemented Folage into the Headbutt Tree table. This was to give them to the Bug Catcher on the route.
32 lines
531 B
NASM
32 lines
531 B
NASM
NihonGrassWildMons:
|
|
|
|
def_grass_wildmons ROUTE_49
|
|
db 10 percent, 10 percent, 10 percent ; encounter rates: morn/day/nite
|
|
; morn
|
|
dbw 30, PIDGEY
|
|
dbw 31, RATTATA
|
|
dbw 30, PIKACHU
|
|
dbw 31, MAREEP
|
|
dbw 32, HOPPIP
|
|
dbw 32, METAPOD
|
|
dbw 35, SUNFLORA
|
|
; day
|
|
dbw 30, PIDGEY
|
|
dbw 31, RATTATA
|
|
dbw 30, PIKACHU
|
|
dbw 31, MAREEP
|
|
dbw 32, HOPPIP
|
|
dbw 32, METAPOD
|
|
dbw 35, GIRAFARIG
|
|
; nite
|
|
dbw 30, PIDGEY
|
|
dbw 31, RATTATA
|
|
dbw 30, PIKACHU
|
|
dbw 31, MAREEP
|
|
dbw 32, HOPPIP
|
|
dbw 32, METAPOD
|
|
dbw 35, SKARMORY
|
|
end_grass_wildmons
|
|
|
|
db -1 ; end
|