mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Added RollMode to standalone DamageDialog and to RollDialog. ChatMessage now add ChatSpeaker * Just a little fix for Damage Action --------- Co-authored-by: Dapoolp <elcatnet@gmail.com>
20 lines
No EOL
861 B
Handlebars
20 lines
No EOL
861 B
Handlebars
<section class="damage-section-container">
|
|
<header class="dialog-header">
|
|
<h1>{{title}}</h1>
|
|
</header>
|
|
<span class="formula-label"><b>Formula:</b> {{@root.formula}}</span>
|
|
<div class="form-group">
|
|
<input type="text" value="{{extraFormula}}" name="extraFormula" placeholder="Situational Bonus">
|
|
</div>
|
|
<div class="damage-section-controls">
|
|
{{#if directDamage}}
|
|
<select class="roll-mode-select" name="selectedRollMode">
|
|
{{selectOptions rollModes selected=selectedRollMode valueAttr="action" labelAttr="label" localize=true}}
|
|
</select>
|
|
{{/if}}
|
|
<button class="submit-btn" data-action="submitRoll">
|
|
<i class="fa-solid fa-dice"></i>
|
|
<span class="label">{{localize "DAGGERHEART.GENERAL.roll"}}</span>
|
|
</button>
|
|
</div>
|
|
</section> |