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

- Moved one of the trainers in the Celadon Uni PokeCenter to stop him from being in the way of the nurse - Buffed one of the Scientists in the Mansion - Moved the nurse and Weezing trader on the SS Anne slightly - Boosted Meltan's catch rate because having it be that low is ridiculous - Increased Luxwan's height because real swans are not that small - Changed a Cue Ball's party to allow his dialogue to make sense - Wild level balancing around Vermilion City - Fixed a small Pokedex display bug - Text fixes
31 lines
802 B
NASM
31 lines
802 B
NASM
; The Wild Data here has been redesigned to fit the Vermilion Beauty quest.
|
|
; Meowth and Growlithe have 19.6% chances of appearing.
|
|
; I've limited the amount of Pokemon that can appear by proxy, making it so it's easier to get what the player wants.
|
|
; Oh, and the water encounters are a mishmash of what's seen here over the franchise.
|
|
Route6WildMons:
|
|
def_grass_wildmons 15 ; encounter rate
|
|
db 13, RATTATA
|
|
db 13, PIDGEY
|
|
db 15, PIDGEOTTO
|
|
db 15, MEOWTH
|
|
db 16, MEOWTH
|
|
db 15, GROWLITHE
|
|
db 16, GROWLITHE
|
|
db 16, JIGGLYPUFF
|
|
db 14, GROWLITHE
|
|
db 16, ABRA
|
|
end_grass_wildmons
|
|
|
|
def_water_wildmons 10 ; encounter rate
|
|
db 12, PSYDUCK
|
|
db 12, SLOWPOKE
|
|
db 15, PSYDUCK
|
|
db 15, SLOWPOKE
|
|
db 15, GOLDEEN
|
|
db 15, WEIRDUCK
|
|
db 15, WEIRDUCK
|
|
db 16, SEAKING
|
|
db 15, GOLDUCK
|
|
db 20, GOLDUCK
|
|
end_water_wildmons
|