From ae7af7deb7cea5a641f18aaf4a03cc17e8484bd6 Mon Sep 17 00:00:00 2001 From: Austin Couturier Date: Sat, 26 Oct 2024 16:13:24 -0600 Subject: [PATCH] Jet Punch is not boosted by Sheer Force --- calc/src/data/moves.ts | 1 - calc/src/mechanics/gen789.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/calc/src/data/moves.ts b/calc/src/data/moves.ts index 211b5291e..788ad7d5e 100644 --- a/calc/src/data/moves.ts +++ b/calc/src/data/moves.ts @@ -4482,7 +4482,6 @@ const SV_PATCH: {[name: string]: DeepPartial} = { makesContact: true, isPunch: true, priority: 1, - // Sheer Force boost implemented in gen789.ts }, 'Kowtow Cleave': { bp: 85, diff --git a/calc/src/mechanics/gen789.ts b/calc/src/mechanics/gen789.ts index bcb7309f1..ea52b447d 100644 --- a/calc/src/mechanics/gen789.ts +++ b/calc/src/mechanics/gen789.ts @@ -1176,7 +1176,7 @@ export function calculateBPModsSMSSSV( // Sheer Force does not power up max moves or remove the effects (SadisticMystic) if ( (attacker.hasAbility('Sheer Force') && - (move.secondaries || move.named('Jet Punch', 'Order Up')) && !move.isMax) || + (move.secondaries || move.named('Order Up')) && !move.isMax) || (attacker.hasAbility('Sand Force') && field.hasWeather('Sand') && move.hasType('Rock', 'Ground', 'Steel')) || (attacker.hasAbility('Analytic') &&