diff options
Diffstat (limited to 'engine/battle/effect_commands/endure.asm')
-rw-r--r-- | engine/battle/effect_commands/endure.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/engine/battle/effect_commands/endure.asm b/engine/battle/effect_commands/endure.asm new file mode 100644 index 000000000..ed4329ff5 --- /dev/null +++ b/engine/battle/effect_commands/endure.asm @@ -0,0 +1,17 @@ +BattleCommand_Endure: ; 3766f +; endure + +; Endure shares code with Protect. See protect.asm. + + call ProtectChance + ret c + + ld a, BATTLE_VARS_SUBSTATUS1 + call GetBattleVarAddr + set SUBSTATUS_ENDURE, [hl] + + call AnimateCurrentMove + + ld hl, BracedItselfText + jp StdBattleTextBox +; 37683 |