diff options
author | YamaArashi <shadow962@live.com> | 2015-10-13 06:59:37 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-10-13 06:59:37 -0700 |
commit | f678112ce1c204decbef5c089a19e46af76dca4e (patch) | |
tree | ff206cef2a45e2e14dcbb1e516d1833d6c50ff9a /data | |
parent | 654b3eef7c8d29d0caeec31788a1be15d5f14ddb (diff) |
nature stat table
Diffstat (limited to 'data')
-rw-r--r-- | data/data2.s | 4 | ||||
-rw-r--r-- | data/nature_stat_table.s | 27 |
2 files changed, 29 insertions, 2 deletions
diff --git a/data/data2.s b/data/data2.s index c4fe0e761..64a506879 100644 --- a/data/data2.s +++ b/data/data2.s @@ -1645,8 +1645,8 @@ gUnknown_0831C89C: ; 831C89C ; 831E380 .include "data/item_effect_info.s" -gUnknown_0831E818: ; 831E818 - .incbin "base_emerald.gba", 0x31e818, 0x80 +; 831E818 + .include "data/nature_stat_table.s" ; 831E898 .include "data/tm_hm_learnsets.s" diff --git a/data/nature_stat_table.s b/data/nature_stat_table.s new file mode 100644 index 000000000..d0c5e9f1b --- /dev/null +++ b/data/nature_stat_table.s @@ -0,0 +1,27 @@ +gNatureStatTable: ; 831E818 +; Atk Def Spd Sp.Atk Sp.Def + .byte 0, 0, 0, 0, 0 ; Hardy + .byte 1, -1, 0, 0, 0 ; Lonely + .byte 1, 0, -1, 0, 0 ; Brave + .byte 1, 0, 0, -1, 0 ; Adamant + .byte 1, 0, 0, 0, -1 ; Naughty + .byte -1, 1, 0, 0, 0 ; Bold + .byte 0, 0, 0, 0, 0 ; Docile + .byte 0, 1, -1, 0, 0 ; Relaxed + .byte 0, 1, 0, -1, 0 ; Impish + .byte 0, 1, 0, 0, -1 ; Lax + .byte -1, 0, 1, 0, 0 ; Timid + .byte 0, -1, 1, 0, 0 ; Hasty + .byte 0, 0, 0, 0, 0 ; Serious + .byte 0, 0, 1, -1, 0 ; Jolly + .byte 0, 0, 1, 0, -1 ; Naive + .byte -1, 0, 0, 1, 0 ; Modest + .byte 0, -1, 0, 1, 0 ; Mild + .byte 0, 0, -1, 1, 0 ; Quiet + .byte 0, 0, 0, 0, 0 ; Bashful + .byte 0, 0, 0, 1, -1 ; Rash + .byte -1, 0, 0, 0, 1 ; Calm + .byte 0, -1, 0, 0, 1 ; Gentle + .byte 0, 0, -1, 0, 1 ; Sassy + .byte 0, 0, 0, -1, 1 ; Careful + .byte 0, 0, 0, 0, 0 ; Quirky |