This commit is contained in:
Sendou 2021-02-11 14:58:13 +02:00
parent da4742dd97
commit becdca5bae
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ const HeadOnlyToggle: React.FC<HeadOnlyToggleProps> = ({
</Box>
{active && ability === "OG" && (
<Box color={themeColorShade} fontWeight="bold">
+15{t`AP`}{" "}
+30{t`AP`}{" "}
{["SSU", "RSU", "RES"].map((ability) => (
<Box as="span" mx="0.2em" key={ability}>
<AbilityIcon ability={ability as any} size="SUBTINY" />

View File

@ -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"]) {