Fix apv2, WIP
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
data-dtype="Number" />
|
||||
|
||||
<label>{{ localize 'VERMINE.experience' }}</label>
|
||||
<input name="system.details.xp.value" type="text"
|
||||
<input name="system.attributes.xp.value" type="text"
|
||||
value="{{system.attributes.xp.value}}" data-dtype="Number" />
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -25,8 +25,12 @@
|
||||
<div class="totem-dice flexrow flex-group-center">
|
||||
<div class="human-dice flexrow">
|
||||
{{#repeat system.adaptation.totems.human.max 1 "humantotem"}}
|
||||
<div class="hexa" data-totem-name="human"
|
||||
data-totem-value="{{@humantotem}}">
|
||||
<div class="hexa{{#ifgteq system.adaptation.totems.human.value @humantotem}} checked{{/ifgteq}}"
|
||||
data-totem-name="human" data-totem-value="{{@humantotem}}">
|
||||
{{#if actor.flags.world.editMode}}
|
||||
<input type="radio" data-dtype="Number"
|
||||
name="system.adaptation.totems.human.value" value="{{@humantotem}}" />
|
||||
{{/if}}
|
||||
{{#ifgteq system.adaptation.totems.human.value @humantotem}}
|
||||
<div class="human-die"><i class="fas fa-dice-d10"></i></div>
|
||||
{{/ifgteq}}
|
||||
@@ -36,11 +40,16 @@
|
||||
|
||||
<div class="adapted-dice flexrow">
|
||||
{{#repeat system.adaptation.totems.adapted.max 1 "adaptedtotem"}}
|
||||
<div class="hexa" data-totem-name="adapted"
|
||||
data-totem-value="{{@adaptedtotem}}">
|
||||
<div class="hexa{{#ifgteq system.adaptation.totems.adapted.value @adaptedtotem}} checked{{/ifgteq}}"
|
||||
data-totem-name="adapted" data-totem-value="{{@adaptedtotem}}">
|
||||
{{#if actor.flags.world.editMode}}
|
||||
<input type="radio" data-dtype="Number"
|
||||
name="system.adaptation.totems.adapted.value" value="{{@adaptedtotem}}" />
|
||||
{{/if}}
|
||||
{{#ifgteq system.adaptation.totems.adapted.value @adaptedtotem}}
|
||||
<div class="adapted-die"><i class="fas fa-dice-d10"></i></div>
|
||||
{{/ifgteq}}</div>
|
||||
{{/ifgteq}}
|
||||
</div>
|
||||
{{/repeat}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user