Advertisement
IdainTV

Moves - Physical/Special split

Aug 6th, 2022 (edited)
2,370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Characteristics of each move.
  2.  
  3. MACRO move
  4.     db \1 ; animation
  5.     db \2 ; effect
  6.     db \3 ; power
  7.     db \4 | \5 ; type
  8.     db \6 percent ; accuracy
  9.     db \7 ; pp
  10.     db \8 percent ; effect chance
  11.     assert \7 <= 40, "PP must be 40 or less"
  12. ENDM
  13.  
  14. Moves:
  15. ; entries correspond to move ids (see constants/move_constants.asm)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement