All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
710 B

1 year ago
  1. <div class="dice-roll attack-roll strike">
  2. {{#if flavor}}<div class="dice-flavor">
  3. {{flavor}}
  4. </div>{{/if}}
  5. <div class="dice-result">
  6. <div class="dice-formula">{{formula}}</div>
  7. {{{tooltip}}}
  8. <h4 class="dice-total">{{total}}</h4>
  9. </div>
  10. </div>
  11. {{#if (and strike.damaging canRollDamage)}}
  12. <div class="message-buttons" data-strike-index="{{strike.index}}" data-strike-name="{{strike.name}}">
  13. <button type="button" class="success" data-action="strike-damage">{{localize "PF2E.DamageLabel"}}</button>
  14. <button type="button" class="critical-success" data-action="strike-critical">{{localize "PF2E.CriticalDamageLabel"}}</button>
  15. </div>
  16. {{/if}}