mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +13:00

It should contain a mix of Rock, Steel, Ground, and Flying-type Pokemon. Feels like a cave, but has fliers to reference Galarian Articuno. Could change some stuff out for more Psychic-types given Galarian Articuno lives there. Needs more level distribution - namely, buffing near the end a la other caves.
28 lines
601 B
NASM
28 lines
601 B
NASM
; Garnet Cavern will contain a mix of Rock, Ground, Steel, and Flying-type Pokemon.
|
|
GarnetCavern1FWildMons:
|
|
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 62, BAWLIGUA
|
|
db 62, TENTACRUEL
|
|
db 63, BAWLIGUA
|
|
db 61, TENTACRUEL
|
|
db 63, SLOWBRO
|
|
db 63, KINGLER
|
|
db 64, LAPRAS ; reference to the ice cavern on the sevii islands
|
|
db 64, GYARADOS
|
|
db 65, JAGG
|
|
db 66, CRYITHAN
|
|
end_water_wildmons
|