From cd89eacffff34874b60dacde5bcd42ac5a37e7db Mon Sep 17 00:00:00 2001 From: Marty-D Date: Sat, 31 Jul 2021 09:58:51 -0400 Subject: [PATCH] Fix Dry Skin behaviour when taking damage from allies --- data/abilities.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/data/abilities.ts b/data/abilities.ts index 298f063966..033d851081 100644 --- a/data/abilities.ts +++ b/data/abilities.ts @@ -878,9 +878,8 @@ export const Abilities: {[abilityid: string]: AbilityData} = { return null; } }, - onFoeBasePowerPriority: 17, - onFoeBasePower(basePower, attacker, defender, move) { - if (this.effectState.target !== defender) return; + onSourceBasePowerPriority: 17, + onSourceBasePower(basePower, attacker, defender, move) { if (move.type === 'Fire') { return this.chainModify(1.25); }