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

This is a pretty hefty commit, so let's break it down. - Fixes Pokedex entries for Bittybat, Bulbasaur, and Shellder. - ...presumably fixes the options menu. - Adds a Fishing Group and water wild data to Diglett's Cave, also reduces the encounter rate. More to come. - Modifies parties, including evolving Rival 2's starter. - Attempts to fix the Ultra and Safari Balls by making `BallFactor` 4, which appears to be the intended number. Tests yielded positive results. - Restores a ton of Japanese references that got removed in localisation, including some errors.
27 lines
502 B
NASM
27 lines
502 B
NASM
DiglettsCaveWildMons:
|
|
def_grass_wildmons 15 ; encounter rate, lowered a tad to match other routes - PvK
|
|
db 18, DIGLETT
|
|
db 19, DIGLETT
|
|
db 17, ONIX
|
|
db 20, DIGLETT
|
|
db 16, DIGLETT
|
|
db 15, DIGLETT
|
|
db 21, DIGLETT
|
|
db 22, DIGLETT
|
|
db 29, DUGTRIO
|
|
db 31, DUGTRIO
|
|
end_grass_wildmons
|
|
|
|
def_water_wildmons 5 ; encounter rate
|
|
db 18, WIGLETT
|
|
db 19, WIGLETT
|
|
db 17, WIGLETT
|
|
db 20, WIGLETT
|
|
db 16, WIGLETT
|
|
db 15, WIGLETT
|
|
db 21, WIGLETT
|
|
db 22, WIGLETT
|
|
db 29, WUGTRIO
|
|
db 31, WUGTRIO
|
|
end_water_wildmons
|