summaryrefslogtreecommitdiff
path: root/battle/effects/endure.asm
blob: 79f657a245f71ee33553e9d2819a7db9ede56de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
BattleCommand5a: ; 3766f
; endure

; Endure shares code with Protect. See protect.asm.

	call ProtectChance
	ret c

	ld a, BATTLE_VARS_SUBSTATUS1
	call GetBattleVarPair
	set SUBSTATUS_ENDURE, [hl]

	call Function0x37e01

	ld hl, BracedItselfText
	jp StdBattleTextBox
; 37683