mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-05 20:34:15 +02:00
65 lines
No EOL
4 KiB
Handlebars
65 lines
No EOL
4 KiB
Handlebars
{{#with (ifThen (eq partId "leader") leader (lookup members partId))}}
|
|
<section class="member-roll-container {{type}} {{#if @root.allHaveRolled}}select-padding{{/if}} {{#unless isEditable}}inactive{{/unless}}" data-member-key="{{@root.partId}}">
|
|
{{log this}}
|
|
<img class="portrait" src="{{img}}" />
|
|
<div class="name-area">
|
|
<span class="name">{{name}}</span>
|
|
{{#if hasRolled}}
|
|
<div class="trait item-tags">
|
|
<div class="tag">{{rollChoiceLabel}}</div>
|
|
{{#if modifier}}
|
|
<span class="tag {{#if (gte modifier 0)}}success{{else}}failure{{/if}}">
|
|
{{numberFormat modifier sign=true}}
|
|
</span>
|
|
{{/if}}
|
|
</div>
|
|
{{else if readyToRoll}}
|
|
<div class="trait">
|
|
Trait
|
|
<select name="{{basePath}}.rollChoice" {{#if hasRolled}}disabled{{/if}}>
|
|
{{selectOptions ../traitOptions selected=rollChoice localize=true}}
|
|
</select>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
{{#if roll}}
|
|
<div class="with-result {{#if roll.withHope}}hope{{else if roll.withFear}}fear{{else}}critical{{/if}}">
|
|
<div class="roll-data">
|
|
<div class="duality-label">
|
|
{{roll.total}}
|
|
<span class="with">{{localize "DAGGERHEART.GENERAL.withThing" thing=roll.totalLabel}}</span>
|
|
</div>
|
|
<div class="roll-dice-container">
|
|
<a class="roll-dice" data-action="rerollDice" data-member="{{@root.partId}}" data-dice-type="hope">
|
|
<span class="dice-label">{{roll.dHope.total}}</span>
|
|
<img src="{{concat "systems/daggerheart/assets/icons/dice/hope/" roll.dHope.denomination ".svg"}}" />
|
|
</a>
|
|
<a class="roll-dice" data-action="rerollDice" data-member="{{@root.partId}}" data-dice-type="fear">
|
|
<span class="dice-label">{{roll.dFear.total}}</span>
|
|
<img src="{{concat "systems/daggerheart/assets/icons/dice/fear/" roll.dFear.denomination ".svg"}}" />
|
|
</a>
|
|
{{#if roll.advantage.type}}
|
|
<span class="roll-operator">{{#if (eq roll.advantage.type 1)}}+{{else}}-{{/if}}</span>
|
|
<span class="roll-dice">
|
|
<span class="dice-label">{{roll.advantage.value}}</span>
|
|
<img src="{{concat "systems/daggerheart/assets/icons/dice/" (ifThen (eq roll.advantage.type 1) "adv/" "disadv/") roll.advantage.dice ".svg"}}" />
|
|
</span>
|
|
{{/if}}
|
|
<span class="roll-operator ">{{#if (gte roll.modifierTotal 0)}}+{{else}}-{{/if}}</span>
|
|
<span class="roll-value">{{positive roll.modifierTotal}}</span>
|
|
</div>
|
|
</div>
|
|
{{#if (and isEditable (ne ../partId "leader"))}}
|
|
<div class="buttons">
|
|
<button type="button" data-action="markSuccessful" data-success="true" class="plain icon fa-solid fa-check {{#if modifier}}{{#if successfull}}active{{else}}inactive{{/if}}{{/if}}"></button>
|
|
<button type="button" data-action="markSuccessful" class="plain icon fa-solid fa-times {{#if modifier}}{{#if successfull}}inactive{{else}}active{{/if}}{{/if}}"></button>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
{{else if readyToRoll}}
|
|
<a class="roll-button initial-roll" data-action="makeRoll" data-member="{{@root.partId}}">
|
|
<img class="roll-img duality" src="systems/daggerheart/assets/icons/dice/duality/DualityBW.svg" alt="2d12">
|
|
</a>
|
|
{{/if}}
|
|
</section>
|
|
{{/with}} |