mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-08 00:55:28 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
28
macros/scripts/pic_anims.asm
Normal file
28
macros/scripts/pic_anims.asm
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
MACRO frame
|
||||
if _NARG <= 2
|
||||
db \1 ; index
|
||||
db \2 ; duration
|
||||
else
|
||||
; LEGACY: Support for the old name of "oamanim"
|
||||
oamanim \#
|
||||
endc
|
||||
ENDM
|
||||
|
||||
const_def -1, -1
|
||||
|
||||
const endanim_command ; $ff
|
||||
MACRO endanim
|
||||
db endanim_command
|
||||
ENDM
|
||||
|
||||
const setrepeat_command ; $fe
|
||||
MACRO setrepeat
|
||||
db setrepeat_command
|
||||
db \1 ; amount of times to repeat
|
||||
ENDM
|
||||
|
||||
const dorepeat_command ; $fd
|
||||
MACRO dorepeat
|
||||
db dorepeat_command
|
||||
db \1 ; command offset to jump to
|
||||
ENDM
|
||||
Loading…
Add table
Add a link
Reference in a new issue