sora10pls

[DPPt] Poffin Case

May 13th, 2019
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. Location in save data:
  2. 0x5050 Diamond/Pearl
  3. 0x52E8 Platinum
  4.  
  5. Player is able to store 100 Poffins in the Poffin Case.
  6.  
  7. Poffin data is 8 bytes long, with the following structure:
  8. 0x00 Type
  9. 0x01 Level (Spicy)
  10. 0x02 Level (Dry)
  11. 0x03 Level (Sweet)
  12. 0x04 Level (Bitter)
  13. 0x05 Level (Sour)
  14. 0x06 Smoothness
  15. 0x07 Unused?
  16.  
  17. The Level for any given Flavor is how much is added to its corresponding Beauty Stat.
  18. The Smoothness of a Poffin is how much is added to a Pokémon's Sheen stat.
  19.  
  20. 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).
  21.  
  22. Poffin Types in the Poffin Case are ordered in a strange way, but internally, they are in this order:
  23. 00 Spicy
  24. 01 Spicy-Dry
  25. 02 Spicy-Sweet
  26. 03 Spicy-Bitter
  27. 04 Spicy-Sour
  28. 05 Dry-Spicy
  29. 06 Dry
  30. 07 Dry-Sweet
  31. 08 Dry-Bitter
  32. 09 Dry-Sour
  33. 0A Sweet-Spicy
  34. 0B Sweet-Dry
  35. 0C Sweet
  36. 0D Sweet-Bitter
  37. 0E Sweet-Sour
  38. 0F Bitter-Spicy
  39. 10 Bitter-Dry
  40. 11 Bitter-Sweet
  41. 12 Bitter
  42. 13 Bitter-Sour
  43. 14 Sour-Spicy
  44. 15 Sour-Dry
  45. 16 Sour-Sweet
  46. 17 Sour-Bitter
  47. 18 Sour
  48. 19 Rich
  49. 1A Overripe
  50. 1B Foul
  51. 1C Mild
  52. 1D Unused
  53. 1E None
  54.  
  55. If no Poffin data exists in a slot, then the 8 bytes look as follows:
  56. 1E 00 00 00 00 00 00 00
  57.  
  58. A Bitter-Sour Poffin that is Level 56 and has a Smoothness value of 84 will look as follows:
  59. 13 00 00 00 38 38 54 00
  60.  
  61. The above Poffin would do the following (assuming with a Neutral Nature):
  62. +56 Smart
  63. +56 Tough
  64. +84 Sheen
Advertisement
Add Comment
Please, Sign In to add comment