diff options
Diffstat (limited to 'src/macros.asm')
-rwxr-xr-x | src/macros.asm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/macros.asm b/src/macros.asm index 54a2a2f..62a5bc5 100755 --- a/src/macros.asm +++ b/src/macros.asm @@ -315,3 +315,41 @@ ENDM tx: MACRO dw \1_ ENDM + +card_data_struct: MACRO +\1Type:: db +\1Gfx:: dw +\1Name:: dw +\1Rarity:: db +\1Set:: db +\1ID:: db +\1HP:: db +\1Stage:: db +\1PreEvoName:: dw +\1Move1:: move_data_struct \1Move1 +\1Move2:: move_data_struct \1Move2 +\1RetreatCost:: db +\1Weakness:: db +\1Resistance:: db +\1Kind:: dw +\1PokedexNumber:: db +\1Unknown1:: db +\1Level:: db +\1Length:: dw +\1Weight:: dw +\1Description:: dw +\1Unknown2:: db +ENDM + +move_data_struct: MACRO +\1Energy:: ds $4 +\1Name:: dw +\1Description:: ds $4 +\1Damage:: db +\1Category:: db +\1EffectCommands:: dw +\1Flag1:: db +\1Flag2:: db +\1Flag3:: db +\1Unknown:: ds $2 +ENDM |