Initial import

This commit is contained in:
2025-11-05 20:35:04 +01:00
commit 5b1fd847c2
4586 changed files with 685044 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<div class="prismrpg-combat-action-dialog">
<fieldSet class="">
<legend>{{localize "PRISMRPG.Label.combatAction"}} for {{actorName}}</legend>
{{#if currentAction}}
<label>{{localize "PRISMRPG.Label.currentAction"}} : {{currentAction.name}}</label>
<label>{{localize "PRISMRPG.Label.rollProgressionCount"}} : {{currentAction.progressionCount}}</label>
{{else}}
<label>{{localize "PRISMRPG.Label.selectAction"}} : Choose a weapon to attack or a spell/miracle to cast</label>
<select name="selectedChoice" data-tooltip-direction="UP">
{{selectOptions weaponsChoices selected=selectedChoice valueAttr="id" labelAttr="name"}}
</select>
{{/if}}
</fieldSet>
<fieldSet>
<legend>{{localize "PRISMRPG.Roll.visibility"}}</legend>
<select name="visibility">
{{selectOptions rollModes selected=visibility localize=true}}
</select>
</fieldSet>
</div>