mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-22 06:47:59 +13:00

A slapdash of various little bits and pieces. - Lake of Rage has a small culture entry at the top to illustrate what we're setting out to do. I mentioned the shell middens and canonised it alongside GSC. - Move constants now have their 16-bit IDs set up - Palfixed Feradactyl and Pupperon, fixed former's credit with confirmation from pokeoctober - Wiped out the must be 8-bit errors on various Pokemon's `base_stats.asm` files. - Fixed some aspects of Strong Arm and Water Sport calling garbage data; this was due to them using 8-bit comparison systems where there needed to be 16-bits. This fixes a good bit of their HM usage. Battle bugs need resolving (presumably due to a lack of gfx?) - Fixed AI scoring with Water Sport (hopefully) - Updated the readme with some of our progress over the past 5 months.
22 lines
760 B
NASM
22 lines
760 B
NASM
db 0 ; species ID placeholder
|
|
|
|
db 50, 20, 40, 20, 20, 40
|
|
; hp atk def spd sat sdf
|
|
|
|
db NORMAL, NORMAL ; type
|
|
db 150 ; catch rate
|
|
db 33 ; base exp
|
|
db NO_ITEM, NO_ITEM ; items
|
|
db GENDER_F75 ; gender ratio
|
|
db 100 ; unknown 1
|
|
db 10 ; step cycles to hatch
|
|
db 5 ; unknown 2
|
|
INCBIN "gfx/pokemon/azurill/front.dimensions"
|
|
dw NULL, NULL ; unused (beta front/back pics)
|
|
db GROWTH_FAST ; growth rate
|
|
dn EGG_NONE, EGG_NONE ; egg groups
|
|
|
|
; tm/hm learnset
|
|
tmhm DYNAMICPUNCH, HEADBUTT, CURSE, ROLLOUT, TOXIC, HIDDEN_POWER, SNORE, BLIZZARD, ICY_WIND, PROTECT, RAIN_DANCE, ENDURE, FRUSTRATION, IRON_TAIL, RETURN, MUD_SLAP, DOUBLE_TEAM, ICE_PUNCH, SWAGGER, SLEEP_TALK, SWIFT, DEFENSE_CURL, REST, ATTRACT, SURF, WHIRLPOOL, WATERFALL, ICE_BEAM
|
|
; end
|