traumatismes

This commit is contained in:
François-Xavier Guillois
2023-09-07 09:22:18 +02:00
parent 55c3d09490
commit 1529f50602
11 changed files with 32 additions and 23 deletions
+3
View File
@@ -1,5 +1,8 @@
# CHANGELOG
## 0.1.10
## 0.1.9
- versions condensées des méthodes (@kristov)
- renommage des templates
Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Before

Width:  |  Height:  |  Size: 121 KiB

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

+4 -2
View File
@@ -470,10 +470,12 @@
"templates": ["list"]
},
"trauma": {
"templates": ["list"]
"templates": ["list"],
"type": ""
},
"evolution": {
"templates": ["list"]
"templates": ["list"],
"level":1
},
"rumor": {
"templates": ["list"]
+11 -11
View File
@@ -8,22 +8,22 @@
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" data-group="primary">
<a class="item" data-tab="description">Description</a>
<a class="item" data-tab="attributes">Attributes</a>
<a class="item active" data-tab="description">{{ VERMINE.stats }}</a>
</nav>
{{!-- Sheet Body --}}
<section class="sheet-body">
{{!-- Description Tab --}}
<div class="tab" data-group="primary" data-tab="description">
<aside style="flex:1">
<div class="resource">
<div class="resource">
<label class="resource-label">{{ localize "VERMINE.level"}}</label>
<input type="number" name="system.level.value" value="{{system.level.value }}" data-dtype="Number" min="{{system.level.min }}" max="{{system.level.max }}" />
</div>
</div>
</aside>
<main class="editor-wrapper" style="flex:10">
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</div>
{{!-- Attributes Tab --}}
<div class="tab attributes" data-group="primary" data-tab="attributes">
{{!-- As you add new fields, add them in here! --}}
</div>
</main>
</section>
</form>
+14 -10
View File
@@ -8,21 +8,25 @@
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" data-group="primary">
<a class="item" data-tab="description">Description</a>
<a class="item" data-tab="attributes">Attributes</a>
<a class="item active" data-tab="description">{{ VERMINE.stats }}</a>
</nav>
{{!-- Sheet Body --}}
<section class="sheet-body">
{{!-- Description Tab --}}
<div class="tab" data-group="primary" data-tab="description">
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</div>
{{!-- Attributes Tab --}}
<div class="tab attributes" data-group="primary" data-tab="attributes">
{{!-- As you add new fields, add them in here! --}}
<div class="tab flexrow" data-group="primary" data-tab="description">
<aside style="flex:1">
<div class="resource">
<label class="resource-label">{{ localize "VERMINE.type"}}</label>
<select name="system.type" data-dtype="String">
<option value="physical" {{#if (eq system.type "physical")}}selected{{/if}}>Physiologique</option>
<option value="psychological" {{#if (eq system.type "psychological")}}selected{{/if}}>Psychologique</option>
</select>
</div>
</aside>
<main class="editor-wrapper" style="flex:10">
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</main>
</div>
</section>