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

This fixes the rival team selection issue and changes the wild data of Route 25. The rival pulls data using hex and I put in dec like an idiot. Also, fixed the ordering. Paras and Skimper make little sense on Route 25 and felt honestly quite immersion-breaking. Paras is a cave mushroom crab thing, it wouldn't be seen on a seaside route like Route 25. Skimper just didn't feel right on a similar basis - just...why would it be there? It's a newt, right? Instead, I added Venonat, a Pokemon seen in Yellow, which needs to be here to benefit from the learnset tweaks that we backported.
17 lines
294 B
NASM
17 lines
294 B
NASM
Route25WildMons:
|
|
def_grass_wildmons 15 ; encounter rate
|
|
db 14, BEEDRILL
|
|
db 13, ODDISH
|
|
db 13, PIDGEY
|
|
db 12, ODDISH
|
|
db 13, VENONAT
|
|
db 12, ABRA
|
|
db 14, BELLSPROUT
|
|
db 10, ABRA
|
|
db 10, VENONAT
|
|
db 15, PIDGEOTTO
|
|
end_grass_wildmons
|
|
|
|
def_water_wildmons 0 ; encounter rate
|
|
end_water_wildmons
|