diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-02-03 11:41:26 +0000 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-02-03 11:50:15 +0000 |
commit | 91ecded7f6d4727dbd017e3188a4834fe9926f79 (patch) | |
tree | ea501a09e2a23b015372e0d88a78f138af54f2b0 /src/macros | |
parent | 68b8291b1920bcae99750f4bb97b7c01b73f786c (diff) |
Change all references of "move" to "attack"
Diffstat (limited to 'src/macros')
-rw-r--r-- | src/macros/wram.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/macros/wram.asm b/src/macros/wram.asm index d17c505..5e7eb1c 100644 --- a/src/macros/wram.asm +++ b/src/macros/wram.asm @@ -10,8 +10,8 @@ card_data_struct: MACRO \1Stage:: ds 1 \1NonPokemonDescription:: ; ds 2 \1PreEvoName:: ds 2 -\1Move1:: move_data_struct \1Move1 -\1Move2:: move_data_struct \1Move2 +\1Atk1:: atk_data_struct \1Atk1 +\1Atk2:: atk_data_struct \1Atk2 \1RetreatCost:: ds 1 \1Weakness:: ds 1 \1Resistance:: ds 1 @@ -25,7 +25,7 @@ card_data_struct: MACRO \1Unknown2:: ds 1 ENDM -move_data_struct: MACRO +atk_data_struct: MACRO \1EnergyCost:: ds NUM_TYPES / 2 \1Name:: ds 2 \1Description:: ds 4 |