diff options
| author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-05-16 19:50:38 -0400 |
|---|---|---|
| committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-05-16 19:50:38 -0400 |
| commit | 1e86625c87ec95ee7e79c3d5766083bfbce9989a (patch) | |
| tree | 11da61f3d377283b9390a319528bf51c88f4f369 /data/mew_base_stats.asm | |
| parent | b0a1502e2137efd980646e53ac79799c2c278e71 (diff) | |
Pull most data out of main.asm
Diffstat (limited to 'data/mew_base_stats.asm')
| -rwxr-xr-x | data/mew_base_stats.asm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/data/mew_base_stats.asm b/data/mew_base_stats.asm new file mode 100755 index 00000000..6232acc3 --- /dev/null +++ b/data/mew_base_stats.asm @@ -0,0 +1,35 @@ +MewBaseStats: ; 425b (1:425b) + db DEX_MEW ; pokedex id + db 100 ; base hp + db 100 ; base attack + db 100 ; base defense + db 100 ; base speed + db 100 ; base special + + db PSYCHIC ; species type 1 + db PSYCHIC ; species type 2 + + db 45 ; catch rate + db 64 ; base exp yield + db $55 ; sprite dimensions + + dw MewPicFront + dw MewPicBack + + ; attacks known at lvl 0 + db POUND + db 0 + db 0 + db 0 + + db 3 ; growth rate + + ; include learnset directly + db %11111111 + db %11111111 + db %11111111 + db %11111111 + db %11111111 + db %11111111 + db %11111111 + db %11111111 ; usually spacing
\ No newline at end of file |
