ref: 2ec900d96c3b6020be0816151b9ad606c04114b5
dir: /engine/battle/move_effects/magnitude.asm/
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 [wTypeMatchup], a call BattleCommand_MoveDelay ld hl, MagnitudeText call StdBattleTextBox pop de pop bc ret INCLUDE "data/moves/magnitude_power.asm"