Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 2.12 KB | None | 0 0
  1. ; pokemon structure in RAM
  2. MON_SPECIES              EQUS "(PartyMon1Species - PartyMon1)"
  3. MON_ITEM                 EQUS "(PartyMon1Item - PartyMon1)"
  4. MON_MOVES                EQUS "(PartyMon1Moves - PartyMon1)"
  5. MON_ID                   EQUS "(PartyMon1ID - PartyMon1)"
  6. MON_EXP                  EQUS "(PartyMon1Exp - PartyMon1)"
  7. MON_STAT_EXP             EQUS "(PartyMon1StatExp - PartyMon1)"
  8. MON_HP_EXP               EQUS "(PartyMon1HPExp - PartyMon1)"
  9. MON_ATK_EXP              EQUS "(PartyMon1AtkExp - PartyMon1)"
  10. MON_DEF_EXP              EQUS "(PartyMon1DefExp - PartyMon1)"
  11. MON_SPD_EXP              EQUS "(PartyMon1SpdExp - PartyMon1)"
  12. MON_SPC_EXP              EQUS "(PartyMon1SpcExp - PartyMon1)"
  13. MON_DVS                  EQUS "(PartyMon1DVs - PartyMon1)"
  14. MON_PP                   EQUS "(PartyMon1PP - PartyMon1)"
  15. MON_HAPPINESS            EQUS "(PartyMon1Happiness - PartyMon1)"
  16. MON_PKRUS                EQUS "(PartyMon1PokerusStatus - PartyMon1)"
  17. MON_PERSONALITY          EQUS "(PartyMon1Personality - PartyMon1)"
  18. MON_GENDER               EQUS "(PartyMon1Gender - PartyMon1)"
  19. MON_SHINY                EQUS "(PartyMon1Shiny - PartyMon1)"
  20. MON_PINK                 EQUS "(PartyMon1Pink - PartyMon1)"
  21. MON_FORM                 EQUS "(PartyMon1Form - PartyMon1)"
  22. MON_CAUGHTDATA           EQUS "(PartyMon1CaughtData - PartyMon1)"
  23. MON_CAUGHTGENDER         EQUS "(PartyMon1CaughtGender - PartyMon1)"
  24. MON_CAUGHTLOCATION       EQUS "(PartyMon1CaughtLocation - PartyMon1)"
  25. MON_LEVEL                EQUS "(PartyMon1Level - PartyMon1)"
  26. MON_STATUS               EQUS "(PartyMon1Status - PartyMon1)"
  27. MON_HP                   EQUS "(PartyMon1HP - PartyMon1)"
  28. MON_MAXHP                EQUS "(PartyMon1MaxHP - PartyMon1)"
  29. MON_ATK                  EQUS "(PartyMon1Attack - PartyMon1)"
  30. MON_DEF                  EQUS "(PartyMon1Defense - PartyMon1)"
  31. MON_SPD                  EQUS "(PartyMon1Speed - PartyMon1)"
  32. MON_SAT                  EQUS "(PartyMon1SpclAtk - PartyMon1)"
  33. MON_SDF                  EQUS "(PartyMon1SpclDef - PartyMon1)"
  34. BOXMON_STRUCT_LENGTH     EQUS "(PartyMon1End - PartyMon1)"
  35. PARTYMON_STRUCT_LENGTH   EQUS "(PartyMon1StatsEnd - PartyMon1)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement