Skip to content

Commit f2202ba

Browse files
authored
Update calc/src/mechanics/gen4.ts
1 parent d1bad36 commit f2202ba

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

calc/src/mechanics/gen4.ts

-5
Original file line numberDiff line numberDiff line change
@@ -379,11 +379,6 @@ export function calculateBasePowerDPP(
379379
basePower = 80;
380380
desc.moveName = 'Tri Attack';
381381
break;
382-
// Triple Kick's damage increases by 10 after each consecutive hit (10, 20, 30), this is a hack
383-
case 'Triple Kick':
384-
basePower = move.hits === 2 ? 15 : move.hits === 3 ? 20 : 10;
385-
desc.moveBP = basePower;
386-
break;
387382
case 'Crush Grip':
388383
case 'Wring Out':
389384
basePower = Math.floor((defender.curHP() * 120) / defender.maxHP()) + 1;

0 commit comments

Comments
 (0)