traumatismes
@@ -1,5 +1,8 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 0.1.10
|
||||
|
||||
|
||||
## 0.1.9
|
||||
- versions condensées des méthodes (@kristov)
|
||||
- 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"]
|
||||
},
|
||||
"trauma": {
|
||||
"templates": ["list"]
|
||||
"templates": ["list"],
|
||||
"type": ""
|
||||
},
|
||||
"evolution": {
|
||||
"templates": ["list"]
|
||||
"templates": ["list"],
|
||||
"level":1
|
||||
},
|
||||
"rumor": {
|
||||
"templates": ["list"]
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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 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>
|
||||
|
||||
{{!-- Attributes Tab --}}
|
||||
<div class="tab attributes" data-group="primary" data-tab="attributes">
|
||||
{{!-- As you add new fields, add them in here! --}}
|
||||
</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>
|
||||
|
||||
|
||||