diff options
Diffstat (limited to 'engine/battle/effect_commands/sandstorm.asm')
-rw-r--r-- | engine/battle/effect_commands/sandstorm.asm | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/engine/battle/effect_commands/sandstorm.asm b/engine/battle/effect_commands/sandstorm.asm deleted file mode 100644 index 27b8e8e2c..000000000 --- a/engine/battle/effect_commands/sandstorm.asm +++ /dev/null @@ -1,19 +0,0 @@ -BattleCommand_StartSandstorm: ; 376f8 -; startsandstorm - - ld a, [Weather] - cp WEATHER_SANDSTORM - jr z, .failed - - ld a, WEATHER_SANDSTORM - ld [Weather], a - ld a, 5 - ld [WeatherCount], a - call AnimateCurrentMove - ld hl, SandstormBrewedText - jp StdBattleTextBox - -.failed - call AnimateFailedMove - jp PrintButItFailed -; 37718 |