diff options
author | YamaArashi <shadow962@live.com> | 2016-01-23 17:34:21 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-23 17:34:21 -0800 |
commit | 59b9fed0cd5eeaa9ff3f50b8728e5078493c7c80 (patch) | |
tree | 5fa76f25ede7d8fdbf4faa849c55acea3c94dab9 | |
parent | 6e16bf6ed39eb621db175ce1fc795c399b127f3d (diff) |
nature stat table
-rw-r--r-- | asm/rom.s | 2 | ||||
-rw-r--r-- | data/data2.s | 6 | ||||
-rw-r--r-- | data/nature_stat_table.s | 27 |
3 files changed, 32 insertions, 3 deletions
@@ -128122,7 +128122,7 @@ _0803FC92: movs r0, 0x6E b _0803FCBA .align 2 -_0803FCB4: .4byte gUnknown_081FD070 +_0803FCB4: .4byte gNatureStatTable _0803FCB8: movs r0, 0x5A _0803FCBA: diff --git a/data/data2.s b/data/data2.s index 87ce4056e..82a7c70bf 100644 --- a/data/data2.s +++ b/data/data2.s @@ -623,8 +623,10 @@ gUnknown_081FC1D0: ; 81FC1D0 ; 81FCC14 .include "data/item_effects.s" -gUnknown_081FD070: ; 81FD070 - .incbin "baserom.gba", 0x001fd070, 0x80 +; 81FD070 + .include "data/nature_stat_table.s" + + .align 2 gUnknown_081FD0F0: ; 81FD0F0 .incbin "baserom.gba", 0x001fd0f0, 0xce0 diff --git a/data/nature_stat_table.s b/data/nature_stat_table.s new file mode 100644 index 000000000..f42aa1590 --- /dev/null +++ b/data/nature_stat_table.s @@ -0,0 +1,27 @@ +gNatureStatTable: ; 81FD070 + ; 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 |