summaryrefslogtreecommitdiff
path: root/asm/macros/battle_anim_script.inc
diff options
context:
space:
mode:
Diffstat (limited to 'asm/macros/battle_anim_script.inc')
-rw-r--r--asm/macros/battle_anim_script.inc92
1 files changed, 46 insertions, 46 deletions
diff --git a/asm/macros/battle_anim_script.inc b/asm/macros/battle_anim_script.inc
index 5426cdfba..15c48c39f 100644
--- a/asm/macros/battle_anim_script.inc
+++ b/asm/macros/battle_anim_script.inc
@@ -14,7 +14,7 @@
.byte 0x02
.4byte \template
.if \anim_battler == ANIM_TARGET
- .byte 0x80 | (\subpriority_offset & 0x7F)
+ .byte ANIMSPRITE_IS_TARGET | (\subpriority_offset & 0x7F)
.else
.byte (\subpriority_offset & 0x7F)
.endif
@@ -34,20 +34,20 @@
.Lcreatetask_\@_2:
.endm
- .macro delay param0:req
+ .macro delay frames:req
.byte 0x4
- .byte \param0
+ .byte \frames
.endm
.macro waitforvisualfinish
.byte 0x5
.endm
- .macro hang1
+ .macro nop
.byte 0x6
.endm
- .macro hang2
+ .macro nop2
.byte 0x7
.endm
@@ -79,30 +79,30 @@
.byte 0xd
.endm
- .macro call param0:req
+ .macro call ptr:req
.byte 0xe
- .4byte \param0
+ .4byte \ptr
.endm
.macro return
.byte 0xf
.endm
- .macro setarg param0:req, param1:req
+ .macro setarg argId:req, value:req
.byte 0x10
- .byte \param0
- .2byte \param1
+ .byte \argId
+ .2byte \value
.endm
- .macro choosetwoturnanim param0:req, param1:req
+ .macro choosetwoturnanim ptr1:req, ptr2:req
.byte 0x11
- .4byte \param0
- .4byte \param1
+ .4byte \ptr1
+ .4byte \ptr2
.endm
- .macro jumpifmoveturn param0:req, ptr:req
+ .macro jumpifmoveturn value:req, ptr:req
.byte 0x12
- .byte \param0
+ .byte \value
.4byte \ptr
.endm
@@ -144,13 +144,13 @@
.byte \pan
.endm
- .macro panse_1B se:req, param1:req, param2:req, param3:req, param4:req
+ .macro panse se:req, currentPan:req, targetPan:req, incrementPan:req, delay:req
.byte 0x1b
.2byte \se
- .byte \param1
- .byte \param2
- .byte \param3
- .byte \param4
+ .byte \currentPan
+ .byte \targetPan
+ .byte \incrementPan
+ .byte \delay
.endm
.macro loopsewithpan se:req, pan:req, wait:req, times:req
@@ -168,9 +168,9 @@
.byte \wait
.endm
- .macro setbldcnt param0:req
+ .macro setbldcnt bldcnt:req
.byte 0x1e
- .2byte \param0
+ .2byte \bldcnt
.endm
.macro createsoundtask addr:req, argv:vararg
@@ -186,19 +186,19 @@
.byte 0x20
.endm
- .macro jumpargeq param0:req, param1:req, ptr:req
+ .macro jumpargeq argId:req, value:req, ptr:req
.byte 0x21
- .byte \param0
- .2byte \param1
+ .byte \argId
+ .2byte \value
.4byte \ptr
.endm
- .macro monbg_22 battler:req
+ .macro monbg_static battler:req
.byte 0x22
.byte \battler
.endm
- .macro clearmonbg_23 battler:req
+ .macro clearmonbg_static battler:req
.byte 0x23
.byte \battler
.endm
@@ -208,41 +208,41 @@
.4byte \ptr
.endm
- .macro fadetobgfromset param0:req, param1:req, param2:req
+ .macro fadetobgfromset bgOpponent:req, bgPlayer:req, bgContest:req
.byte 0x25
- .byte \param0
- .byte \param1
- .byte \param2
+ .byte \bgOpponent
+ .byte \bgPlayer
+ .byte \bgContest
.endm
- .macro panse_26 se:req, param1:req, param2:req, param3:req, param4:req
+ .macro panse_adjustnone se:req, currentPan:req, targetPan:req, incrementPan:req, delay:req
.byte 0x26
.2byte \se
- .byte \param1
- .byte \param2
- .byte \param3
- .byte \param4
+ .byte \currentPan
+ .byte \targetPan
+ .byte \incrementPan
+ .byte \delay
.endm
- .macro panse_27 se:req, param1:req, param2:req, param3:req, param4:req
+ .macro panse_adjustall se:req, currentPan:req, targetPan:req, incrementPan:req, delay:req
.byte 0x27
.2byte \se
- .byte \param1
- .byte \param2
- .byte \param3
- .byte \param4
+ .byte \currentPan
+ .byte \targetPan
+ .byte \incrementPan
+ .byte \delay
.endm
- .macro monbgprio_28 battler:req
+ .macro splitbgprio battler:req
.byte 0x28
.byte \battler
.endm
- .macro monbgprio_29
+ .macro splitbgprio_all
.byte 0x29
.endm
- .macro monbgprio_2A battler:req
+ .macro splitbgprio_foes battler:req
.byte 0x2a
.byte \battler
.endm
@@ -257,12 +257,12 @@
.byte \battler
.endm
- .macro doublebattle_2D battler:req
+ .macro teamattack_moveback battler:req
.byte 0x2d
.byte \battler
.endm
- .macro doublebattle_2E battler:req
+ .macro teamattack_movefwd battler:req
.byte 0x2e
.byte \battler
.endm