mirror of https://github.com/pret/pokecrystal.git
11 lines
128 B
NASM
11 lines
128 B
NASM
|
BattleCommand_HiddenPower: ; 37be8
|
||
|
; hiddenpower
|
||
|
|
||
|
ld a, [AttackMissed]
|
||
|
and a
|
||
|
ret nz
|
||
|
farcall HiddenPowerDamage
|
||
|
ret
|
||
|
|
||
|
; 37bf4
|