From 746bdb581ab7e9aae469b86f3ff085a13349113c Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Mon, 15 Jun 2020 20:35:35 -0300 Subject: [PATCH] Fix Fire Lash As stated in #411, this move should hurt the opponent and lower their defense, not just the latter. --- src/data/battle_moves.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/battle_moves.h b/src/data/battle_moves.h index 29f0a86906..80ea1298a1 100644 --- a/src/data/battle_moves.h +++ b/src/data/battle_moves.h @@ -9026,7 +9026,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] = [MOVE_FIRE_LASH] = { - .effect = EFFECT_DEFENSE_DOWN, + .effect = EFFECT_DEFENSE_DOWN_HIT, .power = 80, .type = TYPE_FIRE, .accuracy = 100,