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

The bolts are also raging but they look fucking dumb so who cares - Adds Gouging Fire and Raging Bolt, complete with sprites and learnsets. Gouging Fire was done by Zeta_Null, and Raging Bolt was done by Albatross, who did a great job at making the giraffe-necked smilodon look less ridiculous. - Added a proper dex entry for Wake, based on the ones added in SV's Indigo Disk DLC. - Fixed a bug with Lickilicky and Lickilord's dex entries where they weren't terminated correcly - Made Rock Slash less obscene, now acting like Stone Edge without the raised crit chance. - Changed the layout of the Beginning World (Debug Room) ever so slightly.
22 lines
800 B
NASM
22 lines
800 B
NASM
db 0 ; species ID placeholder
|
|
|
|
db 105, 115, 121, 91, 65, 93
|
|
; hp atk def spd sat sdf
|
|
|
|
db FIRE, DRAGON ; type
|
|
db 3 ; catch rate
|
|
db 217 ; base exp
|
|
db NO_ITEM, NO_ITEM ; items
|
|
db GENDER_UNKNOWN ; gender ratio
|
|
db 100 ; unknown 1
|
|
db 80 ; step cycles to hatch
|
|
db 5 ; unknown 2
|
|
INCBIN "gfx/pokemon/gouging_fire/front.dimensions"
|
|
dw NULL, NULL ; unused (beta front/back pics)
|
|
db GROWTH_SLOW ; growth rate
|
|
dn EGG_NONE, EGG_NONE ; egg groups
|
|
|
|
; tm/hm learnset
|
|
tmhm HEADBUTT, CURSE, ROAR, TOXIC, ROCK_SMASH, PSYCH_UP, HIDDEN_POWER, SUNNY_DAY, SNORE, HYPER_BEAM, PROTECT, RAIN_DANCE, ENDURE, FRUSTRATION, SOLARBEAM, IRON_TAIL, DRAGONBREATH, EARTHQUAKE, RETURN, DIG, MUD_SLAP, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, FIRE_BLAST, SWIFT, DETECT, REST, CUT, STRENGTH, FLASH, FLAMETHROWER
|
|
; end
|