66 lines
2.9 KiB
HTML
66 lines
2.9 KiB
HTML
<div class="grid grid-2col">
|
|
<div>
|
|
<h4 class="align-center">{{ localize "VERMINE.self_control"}}</h4>
|
|
<p class="align-center">
|
|
<input type="number" name="system.attributes.self_control.value" value="{{ system.attributes.self_control.value }}" data-dtype="Number" min="{{ system.attributes.self_control.min }}" max="{{ system.attributes.self_control.max }}" />
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<h4 class="align-center">{{ localize "VERMINE.effort"}}</h4>
|
|
<p class="align-center">
|
|
<input type="number" name="system.attributes.effort.value" value="{{ system.attributes.effort.value }}" data-dtype="Number" min="{{ system.attributes.effort.min }}" max="{{ system.attributes.effort.max }}" />
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<h4 class="item-name effect-name flexrow">{{ localize "VERMINE.wounds.name"}}</h4>
|
|
<ul class="unstyled">
|
|
<li>{{ localize 'VERMINE.wounds.light'}}</li>
|
|
<li>{{ localize 'VERMINE.wounds.heavy'}}</li>
|
|
<li>{{ localize 'VERMINE.wounds.deadly'}}</li>
|
|
</l>
|
|
<h4 class="item-name effect-name flexrow">{{ localize "UI.effects.name"}}</h4>
|
|
<ol class="items-list effects-list">
|
|
{{#each effects as |section sid|}}
|
|
<li class="items-header flexrow" data-effect-type="{{section.type}}">
|
|
<p class="item-name effect-name flexrow">{{#if (eq section.type 'temporary')}}
|
|
{{localize "UI.effects.temporary" }}
|
|
{{else if (eq section.type 'passive')}}
|
|
{{localize "UI.effects.passive" }}
|
|
{{else if (eq section.type 'inactive')}}
|
|
{{localize "UI.effects.inactive" }}
|
|
{{/if}}
|
|
</p>
|
|
<div class="effect-source">{{localize 'UI.source'}}</div>
|
|
<div class="effect-source">{{localize 'UI.duration'}}</div>
|
|
<div class="item-controls effect-controls flexrow">
|
|
<a class="effect-control" data-action="create" title="{{localize 'UI.effect_create'}}">
|
|
<i class="fas fa-plus"></i> {{localize "UI.add"}}
|
|
</a>
|
|
</div>
|
|
</li>
|
|
|
|
<ol class="item-list">
|
|
{{#each section.effects as |effect|}}
|
|
<li class="item effect flexrow" data-effect-id="{{effect.id}}">
|
|
<div class="item-name effect-name">
|
|
<a class="effect-control flexrow flex-group-center items-center" data-action="edit" title="{{localize 'UI.effect_edit'}}">
|
|
<img class="item-image" src="{{effect.icon}}"/>
|
|
<span>{{effect.label}}</span>
|
|
</a>
|
|
</div>
|
|
<div class="effect-source">{{effect.sourceName}}</div>
|
|
<div class="effect-duration">{{effect.duration.label}}</div>
|
|
<div class="item-controls effect-controls flexrow">
|
|
<a class="effect-control" data-action="toggle" title="{{localize 'UI.effect_toggle'}}">
|
|
<i class="fas {{#if effect.disabled}}fa-check{{else}}fa-times{{/if}}"></i>
|
|
</a>
|
|
<a class="effect-control" data-action="delete" title="{{localize 'UI.effect_delete'}}">
|
|
<i class="fas fa-trash"></i>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
{{/each}}
|
|
</ol>
|
|
{{/each}}
|
|
</ol>
|