feat: separate skill value/max (transcendence pool vs level)
Release Creation / build (release) Successful in 58s

- skill.value = spendable transcendence pool (editable select)
- skill.max = max level (locked by default, unlock btn)
- computeRollFormula/computeResults/confront use skill.max
- clamp transcendence spend to skill.value
- resetTranscendence button in Bio&Notes
- v14 compat: duplicate→deepClone, mergeObject→spread, socket fixes
- Dialog v1 removed, DragDrop dedup, await fixes
This commit is contained in:
2026-07-24 09:00:26 +02:00
parent 8c79e6f0ba
commit 31e2561797
63 changed files with 385 additions and 340 deletions
+7
View File
@@ -228,10 +228,17 @@
.item-name-label-long2,
.item-name-label-free,
.item-field-label-short,
.item-field-skill-level,
.item-field-label-medium {
color: @steam-rust;
}
.item-field-skill-level:disabled {
background: @steam-parchment-dk;
color: fade(@steam-rust, 40%);
opacity: 0.85;
}
// ---- Roll action links (dice icons) ----
a[data-action^="roll"],
a.roll-skill,
+5
View File
@@ -251,6 +251,11 @@ ul, li {
.item-field-label-short { margin-top: 4px; flex-grow: 1; max-width: 4rem; min-width: 4rem; }
.item-field-label-short-header { margin-top: 4px; flex-grow: 1; max-width: 2.2rem; min-width: 2.2rem; }
.fvtt-ecryme .window-content .sheet-body .item-field-skill-level { margin-top: 4px; margin-left: 0; width: 2.5rem; min-width: 2.5rem; max-width: 2.5rem; flex-shrink: 0; flex-grow: 0; padding: 0 1px; }
.skill-separator { margin: 0; flex: 0 0 auto; }
.item-field-skill-level:disabled { background: rgba(0,0,0,0.06); color: #666; cursor: not-allowed; opacity: 0.85; }
.skill-transcendence { margin-left: 2px; white-space: nowrap; }
.skill-toolbar { text-align: right; padding: 4px 8px; }
.item-field-label-medium { flex-grow: 1; max-width: 6rem; min-width: 6rem; }
.item-field-skill { flex-grow: 1; max-width: 6.8rem; min-width: 6.8rem; }
.item-field-label-long { flex-grow: 1; max-width: 10rem; min-width: 10rem; }