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

The groundwork for Brunswick Trail events has been done. Wild data, Cactus event, and Zapdos-G events are set up, plus an NPC. This also makes the Fake Tree sprite available. I made the warp at the tunnel in Brunswick goes directly to Celeste Hill and back. Warp tile made functional. Many bugs right now: - Cactus doesn't disappear after battling it. Also, making this work how I want it to is hard. - Pokemon are encountered on every tile, which is likely because it's considered to be indoors. In trying to fix this, I seemed to completely screw up the maps, so this isn't being committed. Handle this with care. - I made a spriteset specifically for Citrine, but it doesn't seem to be working for Brunswick, likely because Brunswick is an indoor map and thus isn't just taking it. Misc. changes: - Moved Sandy Shocks to a 4% encounter slot in Mt. Moon Crater to be equal to Scream Tail. - Restored the proper translation for the "rotten PRESIDENT" scientist, courtesy of Dr. Lava and Nob Ogasawara.
28 lines
763 B
NASM
28 lines
763 B
NASM
; Given it's the Galarian Zapdos area, let's theme it with racing Pokemon.
|
|
; Some of these are Pokemon featured in the Big P Pokemon Race from the anime.
|
|
BrunswickTrailMons:
|
|
def_grass_wildmons 10 ; encounter rate
|
|
db 49, TOEDSCOOL
|
|
db 47, DODRIO
|
|
db 53, TOEDSCOOL
|
|
db 52, DODRIO
|
|
db 52, RAPIDASH
|
|
db 55, TAUROS
|
|
db 55, SANDSLASH
|
|
db 56, TOEDSCRUEL
|
|
db 56, TOEDSCRUEL
|
|
db 55, CACTUS
|
|
end_grass_wildmons
|
|
|
|
def_water_wildmons 10 ; encounter rate
|
|
db 52, WEIRDUCK
|
|
db 54, WEIRDUCK
|
|
db 50, GOLDUCK
|
|
db 56, STARYU
|
|
db 50, STARYU
|
|
db 52, GOLDUCK ; The fastest swimmer in Kanto, as stated in the Pokedex book.
|
|
db 54, GOLDUCK
|
|
db 50, SEADRA
|
|
db 56, SEADRA
|
|
db 50, RATICATE ; Raticate are said to be able to swim; fun Easter Egg; seen in the anime.
|
|
end_water_wildmons |