repairs skill sheet and buries display of skill requirements, for now.

pull/58/head
macniel 2025-10-14 14:11:02 +02:00
parent c311bb36d3
commit 09db6091ba
2 changed files with 13 additions and 7 deletions

View File

@ -26,7 +26,7 @@
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto 1fr;
.statistics > label {
& > label {
grid-column: 1/4;
text-align: center;
}

View File

@ -23,9 +23,9 @@
value="{{system.taw}}"/>
</label>
</div>
{{#if isTalent}}
<div class="statistics">
<label>Probe</label>
<label class="throw">Probe</label>
<div>
<label>
<input type="text" name="system.probe.0"
@ -43,17 +43,20 @@
</label>
</div>
</div>
{{/if}}
<div class="ebe">
<label>Effektive Behinderung
<input type="text" name="system.behinderung" value="{{system.behinderung}}"/>
</label>
</div>
{{#if isLanguage}}
<div class="language-statistics">
<label>Sprachenkomplexizität
<input type="text" name="system.komplexität" value="{{system.komplexität}}"/>
</label>
</div>
{{/if}}
{{#if isCombat}}
<div class="attack-statistics">
<div>
<label>Attacke
@ -66,6 +69,7 @@
</label>
</div>
</div>
{{/if}}
</div>
<div class="tab description" data-group="primary" data-tab="description">
@ -73,17 +77,19 @@
<label>Beschreibungstext</label>
{{editor system.talent target="system.talent" button=true owner=owner editable=editable}}
</div>
{{#if hasRequirement}}
<div>
<label>Voraussetzung</label>
<ul>
{{#each system.voraussetzung as |pair key|}}
{{#each system.voraussetzung}}
<li>
<input type="text" name="system.vorraussetzung.{{key}}.wert" value="{{pair.wert}}"/>
<input type="text" name="system.vorraussetzung.{{key}}.talent" value="{{pair.talent}}"/>
<input type="text" name="system.vorraussetzung.{{@key}}.wert" value="{{this}}"/>
<input type="text" name="system.vorraussetzung.{{@key}}.talent" value="{{this}}"/>
</li>
{{/each}}
</ul>
</div>
{{/if}}
</div>
</div>