Style changes

This commit is contained in:
2026-03-14 14:49:10 +01:00
parent 28587fc6df
commit 4e518244a2
3 changed files with 8 additions and 8 deletions

View File

@@ -58,7 +58,7 @@
or CriticalEffectCodes.MustParryRounds or CriticalEffectCodes.MustParryRounds
or CriticalEffectCodes.NoParryRounds => effect.DurationRounds?.ToString() ?? string.Empty, or CriticalEffectCodes.NoParryRounds => effect.DurationRounds?.ToString() ?? string.Empty,
CriticalEffectCodes.BleedPerRound => effect.PerRound?.ToString() ?? string.Empty, CriticalEffectCodes.BleedPerRound => effect.PerRound?.ToString() ?? string.Empty,
CriticalEffectCodes.DirectHits => effect.ValueInteger?.ToString() ?? string.Empty, CriticalEffectCodes.DirectHits => $"+{effect.ValueInteger?.ToString() ?? string.Empty}",
CriticalEffectCodes.FoePenalty CriticalEffectCodes.FoePenalty
or CriticalEffectCodes.AttackerBonusNextRound => effect.Modifier?.ToString() ?? string.Empty, or CriticalEffectCodes.AttackerBonusNextRound => effect.Modifier?.ToString() ?? string.Empty,
CriticalEffectCodes.PowerPointModifier => effect.ValueExpression ?? string.Empty, CriticalEffectCodes.PowerPointModifier => effect.ValueExpression ?? string.Empty,

View File

@@ -10,17 +10,17 @@ public static class AffixDisplayMap
{ {
[CriticalEffectCodes.StunnedRounds] = new( [CriticalEffectCodes.StunnedRounds] = new(
"Stunned", "Stunned",
"💫", "🗱",
"Cannot act for the indicated rounds.", "Cannot act for the indicated rounds.",
"Stunned for the displayed duration."), "Stunned for the displayed duration."),
[CriticalEffectCodes.MustParryRounds] = new( [CriticalEffectCodes.MustParryRounds] = new(
"Must Parry", "Must Parry",
"🛡", "",
"Forced parry for the indicated rounds.", "Forced parry for the indicated rounds.",
"Must parry until the duration ends."), "Must parry until the duration ends."),
[CriticalEffectCodes.NoParryRounds] = new( [CriticalEffectCodes.NoParryRounds] = new(
"No Parry", "No Parry",
"🚫🛡️", "🚫",
"Cannot parry for the indicated rounds.", "Cannot parry for the indicated rounds.",
"No parry for the displayed duration."), "No parry for the displayed duration."),
[CriticalEffectCodes.BleedPerRound] = new( [CriticalEffectCodes.BleedPerRound] = new(
@@ -40,7 +40,7 @@ public static class AffixDisplayMap
"Foe penalty of the displayed value."), "Foe penalty of the displayed value."),
[CriticalEffectCodes.AttackerBonusNextRound] = new( [CriticalEffectCodes.AttackerBonusNextRound] = new(
"Attacker Bonus", "Attacker Bonus",
"", "",
"Attacker bonus next round.", "Attacker bonus next round.",
"Adds the shown bonus next round."), "Adds the shown bonus next round."),
[CriticalEffectCodes.PowerPointModifier] = new( [CriticalEffectCodes.PowerPointModifier] = new(

View File

@@ -300,7 +300,7 @@ textarea {
.critical-cell-description { .critical-cell-description {
margin: 0; margin: 0;
color: #2c1a10; color: #2c1a10;
font-size: 0.92rem; font-size: 1.2rem;
} }
.critical-branch-stack { .critical-branch-stack {
@@ -387,13 +387,13 @@ textarea {
padding: 0.1rem; padding: 0.1rem;
border: 1px solid rgba(127, 96, 55, 0.18); border: 1px solid rgba(127, 96, 55, 0.18);
background: rgba(255, 250, 242, 0.9); background: rgba(255, 250, 242, 0.9);
font-size: 0.78rem; font-size: 1.2rem;
text-transform: uppercase; text-transform: uppercase;
color: #5b4327; color: #5b4327;
} }
.affix-badge-symbol { .affix-badge-symbol {
font-size: 1rem; font-size: 1.2rem;
} }
.affix-badge-value { .affix-badge-value {