diff options
author | YamaArashi <shadow962@live.com> | 2016-10-23 16:32:37 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-10-23 16:32:37 -0700 |
commit | 51080f71f883b0d3cc72f88d6289eada9e29fa01 (patch) | |
tree | 94e01be4eb34bd9e3db80d4146d3128d815cfd70 | |
parent | 854cb120dc3a01c00c0b92581521e2d574219428 (diff) |
pokeblock data
-rw-r--r-- | include/global.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index a8523151a..2b520aad6 100644 --- a/include/global.h +++ b/include/global.h @@ -113,6 +113,17 @@ struct ItemSlot u8 quantity; }; +struct Pokeblock +{ + u8 color; + u8 spicy; + u8 dry; + u8 sweet; + u8 bitter; + u8 sour; + u8 feel; +}; + struct RamScriptData { u8 magic; @@ -158,7 +169,7 @@ struct SaveBlock1 struct ItemSlot bagPocket_PokeBalls[16]; struct ItemSlot bagPocket_TMHM[64]; struct ItemSlot bagPocket_Berries[46]; - u8 filler_7F8[0x140]; + struct Pokeblock pokeblocks[40]; u8 unk938[52]; // pokedex related u8 filler_96C[0x2B4]; struct MapObjectTemplate mapObjectTemplates[64]; |