diff options
| author | dannye <corrnondacqb@yahoo.com> | 2015-08-23 23:48:03 -0500 |
|---|---|---|
| committer | dannye <corrnondacqb@yahoo.com> | 2015-08-23 23:48:03 -0500 |
| commit | 16d9ec3183faac8ad0cbc2f78c8f819e1db5a0dc (patch) | |
| tree | 8e7949576e31d1070ae9a00f3fe67bee10d86ec1 /data/baseStats | |
| parent | 1a987d1e1ab96ca9553d4253c72858057332a03a (diff) | |
Adding Leafeon test
An example to show adding a new Pokemon in pokered
Diffstat (limited to 'data/baseStats')
| -rwxr-xr-x | data/baseStats/leafeon.asm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/baseStats/leafeon.asm b/data/baseStats/leafeon.asm new file mode 100755 index 00000000..31165942 --- /dev/null +++ b/data/baseStats/leafeon.asm @@ -0,0 +1,29 @@ +LeafeonBaseStats: ; 3926a (e:526a) +db DEX_LEAFEON ; pokedex id +db 130 ; base hp +db 65 ; base attack +db 60 ; base defense +db 65 ; base speed +db 110 ; base special +db GRASS ; species type 1 +db GRASS ; species type 2 +db 45 ; catch rate +db 196 ; base exp yield +INCBIN "pic/bmon/leafeon.pic",0,1 ; 77, sprite dimensions +dw LeafeonPicFront +dw LeafeonPicBack +; attacks known at lvl 0 +db TACKLE +db SAND_ATTACK +db QUICK_ATTACK +db RAZOR_LEAF +db 0 ; growth rate +; learnset + tmlearn 3,6,8 + tmlearn 9,10,15 + tmlearn 20,21,22 + tmlearn 31,32 + tmlearn 33,34 + tmlearn 44 + tmlearn 50,51 +db 0 ; padding |
