mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-17 20:46:24 +13:00

This is basically done, but has a few glitches to iron out that I don't have time to do today. So, I'm sending this in as-is with the intent to finish (or someone else can idc) it later. I initially thought to restrict this to after Vermilion Gym but Persian is really bad and Arcanine doesn't compare to the L30 Dugtrio, so I think it's ok. Just barely balances itself out. Bugs: - GiveMonName doesn't work properly for the Vermilion Beauty after receiving the Pokemon, jank ensues. - Text scrolls immediately when receiving the Pokemon from the Vermilion Beauty.
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 10, MEOWTH
|
|
db 12, 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
|