diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-08-08 14:22:18 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-08-08 14:22:18 -0500 |
commit | 33ea880aa4f408624b967d4ab811c477e6a76784 (patch) | |
tree | 4498627a74bec31397c076c92d5db70c2565a450 /data/baseStats | |
parent | c7ce0a95184784f029779426611324ff84f2ef12 (diff) |
Adding Glaceon test
An example to show adding a second new Pokemon and a new evolution item in pokered
Diffstat (limited to 'data/baseStats')
-rwxr-xr-x | data/baseStats/glaceon.asm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/data/baseStats/glaceon.asm b/data/baseStats/glaceon.asm new file mode 100755 index 00000000..e61c1d60 --- /dev/null +++ b/data/baseStats/glaceon.asm @@ -0,0 +1,28 @@ +db DEX_GLACEON ; pokedex id +db 130 ; base hp +db 65 ; base attack +db 60 ; base defense +db 65 ; base speed +db 110 ; base special +db ICE ; species type 1 +db ICE ; species type 2 +db 45 ; catch rate +db 196 ; base exp yield +INCBIN "pic/bmon/glaceon.pic",0,1 ; 77, sprite dimensions +dw GlaceonPicFront +dw GlaceonPicBack +; attacks known at lvl 0 +db TACKLE +db SAND_ATTACK +db QUICK_ATTACK +db ICE_BEAM +db 0 ; growth rate +; learnset + tmlearn 6,8 + tmlearn 9,10,11,12,13,14,15 + tmlearn 20 + tmlearn 31,32 + tmlearn 33,34,39,40 + tmlearn 44 + tmlearn 50,53 +db 0 ; padding |