mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-20 13:57:58 +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
702 B
NASM
22 lines
702 B
NASM
db 0 ; species ID placeholder
|
|
|
|
db 86, 76, 86, 95, 116, 56
|
|
; hp atk def spd sat sdf
|
|
|
|
db BUG, FLYING ; type
|
|
db 30 ; catch rate
|
|
db 198 ; 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/yanmega/front.dimensions"
|
|
dw NULL, NULL ; unused (beta front/back pics)
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
dn EGG_BUG, EGG_BUG ; egg groups
|
|
|
|
; tm/hm learnset
|
|
tmhm HEADBUTT, CURSE, TOXIC, HIDDEN_POWER, SUNNY_DAY, SNORE, HYPER_BEAM, PROTECT, GIGA_DRAIN, ENDURE, FRUSTRATION, SOLARBEAM, RETURN, PSYCHIC_M, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SWIFT, DETECT, REST, ATTRACT, THIEF, FLASH
|
|
; end
|