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

- Reused the double doors for the Route 2 gate, and added the warp for it - Changed the Route 2 map to have the ledge on the path this irritated the fucking LIFE out of me - Pokemon Tower takes you to the right place when going down. - Kotora line now has Flash - Refactored Gentlarva - Route 2 gate now uses the double doors. - New hidden Moon Stone where the Clefairy are in Mt. Moon - Added a new Paradox Pokemon-themed border by Gecko557 - Shifted a ledge in Cerulean City that was off-centre in a really jarring way - Added the Nugget glitch from FRLG because it's funny and cool
24 lines
693 B
NASM
24 lines
693 B
NASM
db DEX_GAOTORA ; pokedex id
|
|
|
|
db 65, 80, 65, 60, 75
|
|
; hp atk def spd spc
|
|
|
|
db ELECTRIC, ELECTRIC ; type
|
|
db 90 ; catch rate
|
|
db 146 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/gaotora.pic", 0, 1 ; sprite dimensions
|
|
dw GaotoraPicFront, GaotoraPicBack
|
|
|
|
db THUNDERSHOCK, LEER, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, RAGE, \
|
|
THUNDERBOLT, THUNDER, MIMIC, DOUBLE_TEAM, BIDE, \
|
|
SWIFT, SKULL_BASH, REST, THUNDER_WAVE, SUBSTITUTE, FLASH
|
|
; end
|
|
|
|
db BANK(GaotoraPicFront)
|
|
assert BANK(GaotoraPicFront) == BANK(GaotoraPicBack)
|