tellement de trucs

This commit is contained in:
rwanoux
2024-05-13 18:27:54 +02:00
parent 9cee590267
commit 83c3f1df0b
83 changed files with 1457 additions and 702 deletions
+2
View File
@@ -61,5 +61,7 @@
<h2>description</h2>
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</div>
{{> "systems/vermine2047/templates/item/partials/damages.html"}}
</section>
</form>
+1
View File
@@ -67,5 +67,6 @@
<h2>Description</h2>
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
{{> "systems/vermine2047/templates/item/partials/damages.html"}}
</section>
</form>
+1 -1
View File
@@ -28,9 +28,9 @@
{{#ife skill.category sckey}}
<option value="{{key}}">{{ smarttlk 'SKILLS' key 'name' }}</option>
{{/ife}}
{{/each}}
</optgroup>
{{/each}}
{{/each}}
{{/select}}
</select>
+2
View File
@@ -57,5 +57,7 @@
<h2>Description</h2>
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</div>
{{> "systems/vermine2047/templates/item/partials/damages.html"}}
</section>
</form>
+2
View File
@@ -82,5 +82,7 @@
<h2>description</h2>
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</div>
{{> "systems/vermine2047/templates/item/partials/damages.html"}}
</section>
</form>
+33
View File
@@ -0,0 +1,33 @@
<h3>dommages</h3>
<div class="damages-row flexrow">
<div class="radios flexrow">
{{#repeat system.damages.max 1 index}}
<div class="hexa
{{#ifgteq system.damages.value @index }}
checked
{{/ifgteq }}">
<input
type="radio"
name="system.damages.value"
value="{{@index}}"
{{#ife system.damages.value @index }}
checked="true"
{{/ife }}
>
</div>
{{/repeat}}
</div>
<div class="damage-pannes">
<h4>pannes :</h4>
{{getDamagesData system.damages "pannes"}}
</div>
<div class="damage-state">
<h4>état :</h4>
{{getDamagesData system.damages "state"}}
</div>
<div class="damage-effect">
<h4> effets : </h4>
{{getDamagesData system.damages "effect"}}
</div>
</div>