mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
30 lines
381 B
NASM
30 lines
381 B
NASM
|
BattleCommand_GetMagnitude: ; 37991
|
||
|
; 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"
|