mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-17 04:26:28 +13:00

I messed up Garnet Cavern's 2F name for some reason Also added all the warps which are, ironically, exactly the same as the international Cerulean Cave. Added the event for Galarian Articuno but gee I hope the constant skip doesn't cause any issues
28 lines
601 B
NASM
28 lines
601 B
NASM
; Garnet Cavern will contain a mix of Rock, Ground, Steel, and Flying-type Pokemon.
|
|
GarnetCavern2FWildMons:
|
|
def_grass_wildmons 5 ; encounter rate
|
|
db 62, RHYDON
|
|
db 62, GRAVELER
|
|
db 63, CROBAT
|
|
db 61, DODRIO
|
|
db 60, VENOMOTH
|
|
db 65, MADAAMU
|
|
db 64, FEAROW
|
|
db 65, GUARDIA
|
|
db 63, TRAMPEL
|
|
db 66, CROCKY
|
|
end_grass_wildmons
|
|
|
|
def_water_wildmons 5 ; encounter rate
|
|
db 60, BAWLIGUA
|
|
db 60, TENTACRUEL
|
|
db 60, BAWLIGUA
|
|
db 60, TENTACRUEL
|
|
db 60, SLOWBRO
|
|
db 60, KINGLER
|
|
db 60, LAPRAS ; reference to the ice cavern on the sevii islands
|
|
db 60, GYARADOS
|
|
db 60, JAGG
|
|
db 60, CRYITHAN
|
|
end_water_wildmons
|