+ {effectsToShow.map((effect) => {
+ return (
+
+
+ {isAbility(effect.type) ? (
+
+ ) : (
+
+ )}
+
+
+ {effect.type === "LDE" ? (
+
+ ) : (
+
+ )}
+
+
+ );
+ })}
+
+ );
+}
+
function AbilityPointsDetails({
abilityPoints,
}: {
diff --git a/app/styles/analyzer.css b/app/styles/analyzer.css
index f8179d1ad..7e473754a 100644
--- a/app/styles/analyzer.css
+++ b/app/styles/analyzer.css
@@ -34,19 +34,30 @@
padding-inline: var(--s-1-5);
}
+.analyzer__effects-selector {
+ display: grid;
+ gap: var(--s-2);
+ grid-template-columns: 1fr 2.5fr;
+ place-items: center;
+}
+
+.analyzer__lde-intensity-select {
+ font-size: var(--fonts-xxs);
+}
+
.analyzer__ap-summary {
+ width: 100%;
background-color: var(--bg-lighter);
border-radius: var(--rounded);
font-size: var(--fonts-xxs);
font-weight: var(--semi-bold);
- width: 100%;
padding-block: var(--s-1);
padding-inline: var(--s-2);
}
.analyzer__ap-text {
- font-size: var(--fonts-xxs);
color: var(--text-lighter);
+ font-size: var(--fonts-xxs);
font-weight: var(--semi-bold);
}
diff --git a/public/locales/en/analyzer.json b/public/locales/en/analyzer.json
index a8e9c8880..428345bfa 100644
--- a/public/locales/en/analyzer.json
+++ b/public/locales/en/analyzer.json
@@ -54,5 +54,6 @@
"build": "Build",
"patch": "Patch:",
"abilityPoints": "Ability points",
+ "abilityPoints.short": "AP",
"consumptionExplanation": "This chart shows the amount of actions left to perform with main weapon after using sub 0-{{maxSubsToUse}} times. Max amount of consecutive subs to use with full ink tank is {{maxSubsToUse}}."
}