mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-09 20:32:11 -05:00
30 lines
551 B
NASM
Executable File
30 lines
551 B
NASM
Executable File
OnixBaseStats: ; 38e26 (e:4e26)
|
|
db DEX_ONIX ; pokedex id
|
|
db 35 ; base hp
|
|
db 45 ; base attack
|
|
db 160 ; base defense
|
|
db 70 ; base speed
|
|
db 30 ; base special
|
|
db ROCK ; species type 1
|
|
db GROUND ; species type 2
|
|
db 45 ; catch rate
|
|
db 108 ; base exp yield
|
|
INCBIN "pic/ymon/onix.pic",0,1 ; 77, sprite dimensions
|
|
dw OnixPicFront
|
|
dw OnixPicBack
|
|
; attacks known at lvl 0
|
|
db TACKLE
|
|
db SCREECH
|
|
db 0
|
|
db 0
|
|
db 0 ; growth rate
|
|
; learnset
|
|
tmlearn 6,8
|
|
tmlearn 9,10
|
|
tmlearn 20
|
|
tmlearn 26,27,28,31,32
|
|
tmlearn 34,36,40
|
|
tmlearn 44,47,48
|
|
tmlearn 50,54
|
|
db 0 ; padding
|