From f81daeab4502e8871fd2ac1945629bbecbb3d16f Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Sun, 19 May 2019 23:32:59 -0300 Subject: [PATCH] FLAG_SNATCH_AFFECTED for Healing Wish and Lunar Dance Title is self-explanatory. As of Gen. 5, Healing Wish and Lunar Dance are affected by Snatch. --- src/data/battle_moves.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/battle_moves.h b/src/data/battle_moves.h index c74a57ed4..fd69e56a5 100644 --- a/src/data/battle_moves.h +++ b/src/data/battle_moves.h @@ -5069,7 +5069,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] = .secondaryEffectChance = 0, .target = MOVE_TARGET_USER, .priority = 0, - .flags = 0, + .flags = FLAG_SNATCH_AFFECTED, .split = SPLIT_STATUS, }, @@ -6473,7 +6473,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] = .secondaryEffectChance = 0, .target = MOVE_TARGET_USER, .priority = 0, - .flags = FLAG_DANCE, + .flags = FLAG_DANCE | FLAG_SNATCH_AFFECTED, .split = SPLIT_STATUS, },