From ad7c7deb274f8df62e760b3b7cf4c56c769fa9e4 Mon Sep 17 00:00:00 2001 From: shayebeadlingkl Date: Sun, 21 Apr 2024 14:38:47 -0400 Subject: [PATCH] 30 percent chance to proc --- src/data/ability.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index f876f7f525d..4ccff675386 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2682,7 +2682,7 @@ export function initAbilities() { .attr(BattleStatMultiplierAbAttr, BattleStat.SPATK, 0.5) .condition((pokemon) => pokemon.getHpRatio() <= 0.5), new Ability(Abilities.CURSED_BODY, "Cursed Body", "May disable a move used on the Pokémon.", 5) - .attr(PostDefendMoveDisableAbAttr, 100), + .attr(PostDefendMoveDisableAbAttr, 30), new Ability(Abilities.HEALER, "Healer (N)", "Sometimes heals an ally's status condition.", 5), new Ability(Abilities.FRIEND_GUARD, "Friend Guard (N)", "Reduces damage done to allies.", 5) .ignorable(),