shithub: pokecrystal

ref: 5e9de74735d09b2a43e8d1c6314f2a7839b6e55a
dir: /engine/battle/move_effects/magnitude.asm/

View raw version
BattleCommand_GetMagnitude:
; getmagnitude

	push bc
	call BattleRandom
	ld b, a
	ld hl, MagnitudePower
.loop
	ld a, [hli]
	cp b
	jr nc, .ok
	inc hl
	inc hl
	jr .loop

.ok
	ld d, [hl]
	push de
	inc hl
	ld a, [hl]
	ld [wDeciramBuffer], a
	call BattleCommand_MoveDelay
	ld hl, MagnitudeText
	call StdBattleTextbox
	pop de
	pop bc
	ret

INCLUDE "data/moves/magnitude_power.asm"