From becdca5baedd8b51dc6ea784db51c247844eb147 Mon Sep 17 00:00:00 2001 From: Sendou <38327916+Sendouc@users.noreply.github.com> Date: Thu, 11 Feb 2021 14:58:13 +0200 Subject: [PATCH] closes #271 --- components/analyzer/HeadOnlyToggle.tsx | 2 +- hooks/useAbilityEffects/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/analyzer/HeadOnlyToggle.tsx b/components/analyzer/HeadOnlyToggle.tsx index e449e1334..4dec607b9 100644 --- a/components/analyzer/HeadOnlyToggle.tsx +++ b/components/analyzer/HeadOnlyToggle.tsx @@ -38,7 +38,7 @@ const HeadOnlyToggle: React.FC = ({ {active && ability === "OG" && ( - +15{t`AP`}{" "} + +30{t`AP`}{" "} {["SSU", "RSU", "RES"].map((ability) => ( diff --git a/hooks/useAbilityEffects/index.ts b/hooks/useAbilityEffects/index.ts index 039a20a9f..db2ce722c 100644 --- a/hooks/useAbilityEffects/index.ts +++ b/hooks/useAbilityEffects/index.ts @@ -80,7 +80,7 @@ function buildToAP( for (const ability of ["SSU", "RSU", "RES"]) { const a = ability as Ability; const existing = AP[a] ?? 0; - AP[a] = existing + 15; + AP[a] = existing + 30; } } if (ability === "CB" && bonusAp["CB"]) {