-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10f2191
commit 1bce2a9
Showing
14 changed files
with
118 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<div class="row-section"> | ||
<div class="col fourty"></div> | ||
<div class="row-section col sixty"> | ||
<div class="col five"> | ||
</div> | ||
{{#if showAttack}} | ||
<div class="col five center" title="{{localize 'MODS.damage'}}"> | ||
{{localize 'CHARAbbrev.damage'}} | ||
</div> | ||
{{/if}} | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label>{{localize "Modifier"}}</label> | ||
<div class="row-section"> | ||
<div class="col five"> | ||
<input class="quantity-click" type="number" name="testModifier" value="{{testModifier}}" /> | ||
</div> | ||
{{#if showAttack}} | ||
<div class="col five"> | ||
<input type="text" name="damageModifier" value="0" /> | ||
</div> | ||
{{/if}} | ||
</div> | ||
</div> | ||
{{# if difficultyLabels}} | ||
<div class="form-group custom-select"> | ||
<label>{{localize "Difficulty"}}</label> | ||
<select name="testDifficulty"> | ||
{{#select testDifficulty}} | ||
{{#each difficultyLabels as |difficultyLabel difficultyKey|}} | ||
<option value="{{difficultyKey}}">{{localize difficultyLabel}}</option> | ||
{{/each}} | ||
{{/select}} | ||
</select> | ||
</div> | ||
{{/if}} | ||
<div class="form-group custom-select"> | ||
<label>{{localize "DIALOG.RollMode"}}</label> | ||
<select name="rollMode"> | ||
{{#select rollMode}} | ||
{{#each rollModes as |label mode|}} | ||
<option value="{{mode}}">{{localize label}}</option> | ||
{{/each}} | ||
{{/select}} | ||
</select> | ||
</div> | ||
{{#if hasSituationalModifiers}} | ||
<div class="modifiers form-group custom-select"> | ||
<label>{{localize "DIALOG.SituationalModifiers"}}</label> | ||
<select name="situationalModifiers" multiple title="{{localize 'DIALOG.deselectWithStrg'}}"> | ||
{{#select selectedModifiers}} | ||
{{#each situationalModifiers as |mod t|}} | ||
<option title="{{localize mod.name}}" value="{{mod.value}}" {{#if mod.selected}}selected{{/if}}> | ||
{{localize | ||
mod.name}} [{{mod.value}}] | ||
</option> | ||
{{/each}} | ||
{{/select}} | ||
</select> | ||
</div> | ||
{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters