sora10pls

[XY/ORAS] O-Power Uses

Apr 29th, 2020 (edited)
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. Each O-Power takes up a set amount of O-Power Energy depending on:
  2. - Which O-Power it is
  3. - What Level it is
  4. - Who it was used on (yourself or another Player)
  5.  
  6. Offset = OPower6 (0x16A00).
  7.  
  8. Offset + 0x41 stores your current O-Power Energy, and it can range from 0 to 10.
  9.  
  10. The game has a Regeneration Rate that can range from 1x to 4x speed, depending on how many steps the Nintendo 3DS Pedometer has registered for that day. As such, this value is not stored in the save data and cannot be edited directly. One can use the PedometerHistoryChanger SDK app to modify their step counter for that day and get an optimal Regeneration Rate (4001+ steps).
  11.  
  12. The game also keeps track of how many times certain O-Powers have been used. Lv. 3, S, and MAX O-Powers are excluded from this.
  13.  
  14. If a Lv. 1 O-Power is used 15 times, then it unlocks the Lv. 2 version of that O-Power.
  15. If a Lv. 2 O-Power is used 30 times, then it unlocks the Lv. 3 version of that O-Power.
  16. If an O-Power has been used 255 times, on the 256th use, the number of uses is reset back to 0.
  17.  
  18. Number of uses are stored in 1 byte each, and can range from 0 to 255:
  19.  
  20. Offset + 0x42 Lv. 1 Encounter
  21. Offset + 0x43 Lv. 1 Hatching
  22. Offset + 0x44 Lv. 1 Bargain
  23. Offset + 0x45 Lv. 1 Prize Money
  24. Offset + 0x46 Lv. 1 Exp. Point
  25. Offset + 0x47 Lv. 1 Capture
  26. Offset + 0x48 Lv. 1 Stealth
  27. Offset + 0x49 Lv. 1 HP Restoring
  28. Offset + 0x4A Lv. 1 PP Restoring
  29. Offset + 0x4B Lv. 1 Befriending
  30.  
  31. Offset + 0x4C Lv. 2 Encounter
  32. Offset + 0x4D Lv. 2 Hatching
  33. Offset + 0x4E Lv. 2 Bargain
  34. Offset + 0x4F Lv. 2 Prize Money
  35. Offset + 0x50 Lv. 2 Exp. Point
  36. Offset + 0x51 Lv. 2 Capture
  37. Offset + 0x52 Lv. 2 Stealth
  38. Offset + 0x53 Lv. 2 HP Restoring
  39. Offset + 0x54 Lv. 2 PP Restoring
  40. Offset + 0x55 Lv. 2 Befriending
  41.  
  42. Offset + 0x56 Lv. 1 Attack
  43. Offset + 0x57 Lv. 1 Defense
  44. Offset + 0x58 Lv. 1 Sp. Atk
  45. Offset + 0x59 Lv. 1 Sp. Def
  46. Offset + 0x5A Lv. 1 Speed
  47. Offset + 0x5B Lv. 1 Critical
  48. Offset + 0x5C Lv. 1 Accuracy
  49.  
  50. Offset + 0x5D Lv. 2 Attack
  51. Offset + 0x5E Lv. 2 Defense
  52. Offset + 0x5F Lv. 2 Sp. Atk
  53. Offset + 0x60 Lv. 2 Sp. Def
  54. Offset + 0x61 Lv. 2 Speed
  55. Offset + 0x62 Lv. 2 Critical
  56. Offset + 0x63 Lv. 2 Accuracy
Advertisement
Add Comment
Please, Sign In to add comment