mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-17 20:46: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
824 B
NASM
22 lines
824 B
NASM
db 0 ; species ID placeholder
|
|
|
|
db 120, 90, 70, 60, 110, 70
|
|
; hp atk def spd sat sdf
|
|
|
|
db NORMAL, PSYCHIC_TYPE ; type
|
|
db 45 ; catch rate
|
|
db 197 ; 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/farigiraf/front.dimensions"
|
|
dw NULL, NULL ; unused (beta front/back pics)
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
dn EGG_GROUND, EGG_INDETERMINATE ; egg groups
|
|
|
|
; tm/hm learnset
|
|
tmhm HEADBUTT, CURSE, TOXIC, ZAP_CANNON, ROCK_SMASH, PSYCH_UP, HIDDEN_POWER, SUNNY_DAY, SNORE, HYPER_BEAM, PROTECT, ENDURE, FRUSTRATION, IRON_TAIL, THUNDER, EARTHQUAKE, RETURN, PSYCHIC_M, SHADOW_BALL, MUD_SLAP, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SWIFT, DREAM_EATER, REST, ATTRACT, THIEF, NIGHTMARE, STRENGTH, THUNDERBOLT
|
|
; end
|