Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Location in save data:
- 0x5050 Diamond/Pearl
- 0x52E8 Platinum
- Player is able to store 100 Poffins in the Poffin Case.
- Poffin data is 8 bytes long, with the following structure:
- 0x00 Type
- 0x01 Level (Spicy)
- 0x02 Level (Dry)
- 0x03 Level (Sweet)
- 0x04 Level (Bitter)
- 0x05 Level (Sour)
- 0x06 Smoothness
- 0x07 Unused?
- The Level for any given Flavor is how much is added to its corresponding Beauty Stat.
- The Smoothness of a Poffin is how much is added to a Pokémon's Sheen stat.
- As such, these values can max out at 0xFF (255), though I'm unsure if it's possible to exceed 100 in-game when making the Poffins in Hearthome City (anything above 99 is still displayed as 99 in-game).
- Poffin Types in the Poffin Case are ordered in a strange way, but internally, they are in this order:
- 00 Spicy
- 01 Spicy-Dry
- 02 Spicy-Sweet
- 03 Spicy-Bitter
- 04 Spicy-Sour
- 05 Dry-Spicy
- 06 Dry
- 07 Dry-Sweet
- 08 Dry-Bitter
- 09 Dry-Sour
- 0A Sweet-Spicy
- 0B Sweet-Dry
- 0C Sweet
- 0D Sweet-Bitter
- 0E Sweet-Sour
- 0F Bitter-Spicy
- 10 Bitter-Dry
- 11 Bitter-Sweet
- 12 Bitter
- 13 Bitter-Sour
- 14 Sour-Spicy
- 15 Sour-Dry
- 16 Sour-Sweet
- 17 Sour-Bitter
- 18 Sour
- 19 Rich
- 1A Overripe
- 1B Foul
- 1C Mild
- 1D Unused
- 1E None
- If no Poffin data exists in a slot, then the 8 bytes look as follows:
- 1E 00 00 00 00 00 00 00
- A Bitter-Sour Poffin that is Level 56 and has a Smoothness value of 84 will look as follows:
- 13 00 00 00 38 38 54 00
- The above Poffin would do the following (assuming with a Neutral Nature):
- +56 Smart
- +56 Tough
- +84 Sheen
Advertisement
Add Comment
Please, Sign In to add comment