Initial import
This commit is contained in:
parent
9e6cf0bf3b
commit
2b23e9daec
BIN
images/icons/icon_perk.webp
Normal file
BIN
images/icons/icon_perk.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
BIN
images/icons/icon_raceability.webp
Normal file
BIN
images/icons/icon_raceability.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
images/icons/icon_spec.webp
Normal file
BIN
images/icons/icon_spec.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
BIN
images/ui/pegasus_logo_v1.webp
Normal file
BIN
images/ui/pegasus_logo_v1.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
BIN
images/ui/pegasus_welcome_page.webp
Normal file
BIN
images/ui/pegasus_welcome_page.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 181 KiB |
8
templates/partial-options-range.html
Normal file
8
templates/partial-options-range.html
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{{#if notapplicable}}
|
||||||
|
<option value="notapplicable">Not applicable</option>
|
||||||
|
{{/if}}
|
||||||
|
<option value="threatzone">Threat Zone</option>
|
||||||
|
<option value="close">Close</option>
|
||||||
|
<option value="medium">Medium</option>
|
||||||
|
<option value="long">Long</option>
|
||||||
|
<option value="extreme">Extreme</option>
|
26
templates/partial-roll-common-dices.html
Normal file
26
templates/partial-roll-common-dices.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<div class="flexrow">
|
||||||
|
<span class="roll-dialog-label" >Bonus Dice : </span>
|
||||||
|
<select class="competence-base" id="bonusDicesLevel" type="text" name="bonusDicesLevel" value="{{bonusDicesLevel}}" data-dtype="Number">
|
||||||
|
{{#select bonusDicesLevel}}
|
||||||
|
{{{optionsDiceList}}}
|
||||||
|
{{/select}}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flexrow">
|
||||||
|
<span class="roll-dialog-label" >Target Hindrance Dice :</span>
|
||||||
|
<select class="roll-dialog-label" id="hindranceDicesLevel" type="text" name="hindranceDicesLevel" value="{{hindranceDicesLevel}}" data-dtype="Number">
|
||||||
|
{{#select hindranceDicesLevel}}
|
||||||
|
{{{optionsDiceList}}}
|
||||||
|
{{/select}}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flexrow">
|
||||||
|
<span class="roll-dialog-label" >Other Dice :</span>
|
||||||
|
<select class="roll-dialog-label" id="otherDicesLevel" type="text" name="otherDicesLevel" value="{{otherDicesLevel}}" data-dtype="Number">
|
||||||
|
{{#select otherDicesLevel}}
|
||||||
|
{{{optionsDiceList}}}
|
||||||
|
{{/select}}
|
||||||
|
</select>
|
||||||
|
</div>
|
20
templates/roll-dialog-spec.html
Normal file
20
templates/roll-dialog-spec.html
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<form class="skill-roll-dialog">
|
||||||
|
<header class="roll-dialog-header">
|
||||||
|
<img class="actor-icon" src="{{img}}" data-edit="img" title="{{name}}" />
|
||||||
|
<h1 class="dialog-roll-title roll-dialog-header">{{title}}</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="floxrow">
|
||||||
|
|
||||||
|
<div class="flexrow">
|
||||||
|
<span class="roll-dialog-label" >{{stat.label}} : {{stat.dice}} (+{{stat.mod}})</span>
|
||||||
|
</div>
|
||||||
|
<div class="flexrow">
|
||||||
|
<span class="roll-dialog-label" >{{spec.name}} : {{spec.data.dice}}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{> systems/fvtt-pegasus-rpg/templates/partial-roll-common-dices.html}}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
17
templates/roll-dialog-stat.html
Normal file
17
templates/roll-dialog-stat.html
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<form class="skill-roll-dialog">
|
||||||
|
<header class="roll-dialog-header">
|
||||||
|
<img class="actor-icon" src="{{img}}" data-edit="img" title="{{name}}" />
|
||||||
|
<h1 class="dialog-roll-title roll-dialog-header">{{title}}</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="floxrow">
|
||||||
|
|
||||||
|
<div class="flexrow">
|
||||||
|
<span class="roll-dialog-label" >{{stat.label}} : {{stat.dice}} (+{{stat.mod}})</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{> systems/fvtt-pegasus-rpg/templates/partial-roll-common-dices.html}}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
Loading…
Reference in New Issue
Block a user