mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-20 05:56:25 +13:00

- Adds Mamoswine, alongside the new Hirsuswine, a slower and more tanky alternate evolution. Design by me, sprite by zuperZACH. - Adds the framework for an alternate Yanma evolution, currently dubbed Pending03. It's designed to be based on a clubtail, albeit one that uses its tail like an actual weapon. - Adds the framework for Emordrome, an alternate Normal/Ghost Girafarig evolution where the dark head grows and takes control. In order to not make the line any more complicated, Calflac has been removed entirely. - Added cries for the Cubburn line.
22 lines
744 B
NASM
22 lines
744 B
NASM
db 0 ; species ID placeholder
|
|
|
|
db 100, 110, 120, 20, 60, 120
|
|
; hp atk def spd sat sdf
|
|
|
|
db ICE, GROUND ; type
|
|
db 50 ; catch rate
|
|
db 207 ; base exp
|
|
db NO_ITEM, NO_ITEM ; items
|
|
db GENDER_F50 ; gender ratio
|
|
db 100 ; unknown 1
|
|
db 20 ; step cycles to hatch
|
|
db 5 ; unknown 2
|
|
INCBIN "gfx/pokemon/hirsuswine/front.dimensions"
|
|
dw NULL, NULL ; unused (beta front/back pics)
|
|
db GROWTH_SLOW ; growth rate
|
|
dn EGG_GROUND, EGG_GROUND ; egg groups
|
|
|
|
; tm/hm learnset
|
|
tmhm HEADBUTT, CURSE, ROAR, TOXIC, ROCK_SMASH, HIDDEN_POWER, SNORE, BLIZZARD, HYPER_BEAM, ICY_WIND, PROTECT, RAIN_DANCE, ENDURE, FRUSTRATION, EARTHQUAKE, RETURN, MUD_SLAP, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, DEFENSE_CURL, DETECT, REST, ATTRACT, STRENGTH, ICE_BEAM
|
|
; end
|