mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-12 22:11:29 -05:00
30 lines
581 B
NASM
Executable File
30 lines
581 B
NASM
Executable File
ButterfreeBaseStats: ; 38512 (e:4512)
|
|
db DEX_BUTTERFREE ; pokedex id
|
|
db 60 ; base hp
|
|
db 45 ; base attack
|
|
db 50 ; base defense
|
|
db 70 ; base speed
|
|
db 80 ; base special
|
|
db BUG ; species type 1
|
|
db FLYING ; species type 2
|
|
db 45 ; catch rate
|
|
db 160 ; base exp yield
|
|
INCBIN "pic/ymon/butterfree.pic",0,1 ; 77, sprite dimensions
|
|
dw ButterfreePicFront
|
|
dw ButterfreePicBack
|
|
; attacks known at lvl 0
|
|
db CONFUSION
|
|
db 0
|
|
db 0
|
|
db 0
|
|
db 0 ; growth rate
|
|
; learnset
|
|
tmlearn 2,4,6
|
|
tmlearn 9,10,15
|
|
tmlearn 20,21,22
|
|
tmlearn 29,30,31,32
|
|
tmlearn 33,34,39
|
|
tmlearn 44,46
|
|
tmlearn 50,55
|
|
db 0 ; padding
|