traumatismes
@@ -1,5 +1,8 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
## 0.1.10
|
||||||
|
|
||||||
|
|
||||||
## 0.1.9
|
## 0.1.9
|
||||||
- versions condensées des méthodes (@kristov)
|
- versions condensées des méthodes (@kristov)
|
||||||
- renommage des templates
|
- renommage des templates
|
||||||
|
|||||||
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 94 KiB |
@@ -470,10 +470,12 @@
|
|||||||
"templates": ["list"]
|
"templates": ["list"]
|
||||||
},
|
},
|
||||||
"trauma": {
|
"trauma": {
|
||||||
"templates": ["list"]
|
"templates": ["list"],
|
||||||
|
"type": ""
|
||||||
},
|
},
|
||||||
"evolution": {
|
"evolution": {
|
||||||
"templates": ["list"]
|
"templates": ["list"],
|
||||||
|
"level":1
|
||||||
},
|
},
|
||||||
"rumor": {
|
"rumor": {
|
||||||
"templates": ["list"]
|
"templates": ["list"]
|
||||||
|
|||||||
@@ -8,22 +8,22 @@
|
|||||||
|
|
||||||
{{!-- Sheet Tab Navigation --}}
|
{{!-- Sheet Tab Navigation --}}
|
||||||
<nav class="sheet-tabs tabs" data-group="primary">
|
<nav class="sheet-tabs tabs" data-group="primary">
|
||||||
<a class="item" data-tab="description">Description</a>
|
<a class="item active" data-tab="description">{{ VERMINE.stats }}</a>
|
||||||
<a class="item" data-tab="attributes">Attributes</a>
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{{!-- Sheet Body --}}
|
{{!-- Sheet Body --}}
|
||||||
<section class="sheet-body">
|
<section class="sheet-body">
|
||||||
|
<aside style="flex:1">
|
||||||
{{!-- Description Tab --}}
|
<div class="resource">
|
||||||
<div class="tab" data-group="primary" data-tab="description">
|
<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}}
|
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
|
||||||
</div>
|
</main>
|
||||||
|
|
||||||
{{!-- Attributes Tab --}}
|
|
||||||
<div class="tab attributes" data-group="primary" data-tab="attributes">
|
|
||||||
{{!-- As you add new fields, add them in here! --}}
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -8,21 +8,25 @@
|
|||||||
|
|
||||||
{{!-- Sheet Tab Navigation --}}
|
{{!-- Sheet Tab Navigation --}}
|
||||||
<nav class="sheet-tabs tabs" data-group="primary">
|
<nav class="sheet-tabs tabs" data-group="primary">
|
||||||
<a class="item" data-tab="description">Description</a>
|
<a class="item active" data-tab="description">{{ VERMINE.stats }}</a>
|
||||||
<a class="item" data-tab="attributes">Attributes</a>
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{{!-- Sheet Body --}}
|
{{!-- Sheet Body --}}
|
||||||
<section class="sheet-body">
|
<section class="sheet-body">
|
||||||
|
|
||||||
{{!-- Description Tab --}}
|
<div class="tab flexrow" data-group="primary" data-tab="description">
|
||||||
<div class="tab" data-group="primary" data-tab="description">
|
<aside style="flex:1">
|
||||||
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
|
<div class="resource">
|
||||||
</div>
|
<label class="resource-label">{{ localize "VERMINE.type"}}</label>
|
||||||
|
<select name="system.type" data-dtype="String">
|
||||||
{{!-- Attributes Tab --}}
|
<option value="physical" {{#if (eq system.type "physical")}}selected{{/if}}>Physiologique</option>
|
||||||
<div class="tab attributes" data-group="primary" data-tab="attributes">
|
<option value="psychological" {{#if (eq system.type "psychological")}}selected{{/if}}>Psychologique</option>
|
||||||
{{!-- As you add new fields, add them in here! --}}
|
</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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|||||||