fvtt-hero-system-6/templates/partials/partial-actor-full-charac.hbs

51 lines
2.2 KiB
Handlebars
Raw Normal View History

2023-02-21 20:22:08 +01:00
<li class="item stat flexrow list-item list-item-shadow" data-attr-key="{{key}}">
2023-06-30 13:14:40 +02:00
<input type="text" class="item-field-label-medium" name="system.characteristics.{{key}}.value"
value="{{charac.value}}" data-dtype="Number" />
2023-02-21 20:22:08 +01:00
2023-02-14 15:34:37 +01:00
<span class="item-field-label-medium" name="{{key}}">
<h4 class="item-field-label-medium margin-item-list">{{charac.label}}</a></h4>
</span>
2023-06-30 13:14:40 +02:00
2023-02-14 15:34:37 +01:00
<h4 class="item-field-label-short margin-item-list">{{charac.base}}</h4>
2023-06-30 13:14:40 +02:00
2023-03-21 14:01:27 +01:00
{{#if charac.hasroll}}
2023-06-30 13:14:40 +02:00
<h4 class="item-field-label-short margin-item-list"><a class="roll-charac" data-charac-key="{{key}}"><i
class="fas fa-dice"></i>{{charac.roll}}-</a></h4>
2023-03-21 14:01:27 +01:00
{{else}}
<h4 class="item-field-label-short margin-item-list">&nbsp;</h4>
{{/if}}
2023-02-21 20:22:08 +01:00
2023-06-30 13:14:40 +02:00
<input type="text" class="item-field-label-long2" name="system.characteristics.{{key}}.notes" value="{{charac.notes}}"
data-dtype="String" />
2023-02-21 20:22:08 +01:00
2023-05-07 14:03:14 +02:00
{{#if charac.lift}}
2023-06-30 13:14:40 +02:00
<h4 class="item-field-label-short margin-item-list">&nbsp;&nbsp;</h4>
<h4 class="item-field-label-short margin-item-list">{{charac.lift}}</h4>
2023-07-06 21:28:52 +02:00
<h4 class="item-field-label-medium margin-item-list"><a class="roll-lift-dice" data-charac-key="{{key}}"><i
2023-06-30 13:14:40 +02:00
class="fas fa-dice"></i>{{charac.liftDice}}</a></h4>
<select class="actor-computer-str-end" name="system.characteristics.str.strendmode"
value="{{charac.strendmode}}">
{{#select charac.strendmode}}
<option value="str20">STR/20 (half normal)</option>
<option value="str10">STR/10 (normal, half heroic)</option>
<option value="str5">STR/5 (heroic)</option>
<option value="0">0</option>
{{/select}}
</select>
2023-05-07 14:03:14 +02:00
{{/if}}
2023-07-06 13:10:41 +02:00
{{#if charac.phasesString}}
<h4 class="item-field-label-short margin-item-list">&nbsp;&nbsp;</h4>
2023-07-06 21:28:52 +02:00
<h4 class="item-field-label-long2 margin-item-list">Phases : {{charac.phasesString}}</h4>
2023-07-06 13:10:41 +02:00
{{/if}}
{{#if charac.presenceattack}}
<h4 class="item-field-label-short margin-item-list">&nbsp;&nbsp;</h4>
<h4 class="item-field-label-long margin-item-list">Presence attack</h4>
<a class="roll-direct" data-roll-source="Presence attack" data-roll-formula="{{charac.presenceattack.rollFormula}}"><i class="fas fa-dice"></i>{{charac.presenceattack.displayFormula}}</a>
{{/if}}
2023-02-14 15:34:37 +01:00
</li>