2022-08-03 18:52:24 +02:00
|
|
|
<form class="{{cssClass}}" autocomplete="off">
|
|
|
|
<header class="sheet-header">
|
|
|
|
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
|
|
|
<div class="header-fields">
|
|
|
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{{> systems/fvtt-pegasus-rpg/templates/partial-item-nav.html}}
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
|
|
|
{{> systems/fvtt-pegasus-rpg/templates/partial-item-description.html}}
|
|
|
|
|
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
|
|
<ul>
|
|
|
|
<li class="flexrow"><label class="generic-label">Power core type</label>
|
2022-09-04 09:58:51 +02:00
|
|
|
<select class="competence-base flexrow" type="text" name="system.coretype" value="{{data.coretype}}" data-dtype="String">
|
2022-08-03 18:52:24 +02:00
|
|
|
{{#select data.coretype}}
|
|
|
|
<option value="small">Small</option>
|
|
|
|
<option value="standard">Standard</option>
|
|
|
|
<option value="luxury">Luxury</option>
|
|
|
|
<option value="enhanced">Enhanced</option>
|
|
|
|
<option value="superior">Superior</option>
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="generic-label">PC</label>
|
2022-09-04 09:58:51 +02:00
|
|
|
<select class="competence-base flexrow" type="text" name="system.pc" value="{{data.pc}}" data-dtype="String">
|
2022-08-03 18:52:24 +02:00
|
|
|
{{#select data.pc}}
|
|
|
|
{{{optionsDiceList}}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="generic-label">NRG</label>
|
2022-09-04 09:58:51 +02:00
|
|
|
<input type="text" class="" name="system.nrg" value="{{data.nrg}}" data-dtype="Number"/>
|
2022-08-03 18:52:24 +02:00
|
|
|
</li>
|
2022-08-16 21:21:37 +02:00
|
|
|
<li class="flexrow"><label class="generic-label">Space</label>
|
2022-09-04 09:58:51 +02:00
|
|
|
<input type="text" class="" name="system.space" value="{{data.space}}" data-dtype="Number"/>
|
2022-08-16 21:21:37 +02:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="generic-label">Cost</label>
|
2022-09-04 09:58:51 +02:00
|
|
|
<input type="text" class="" name="system.cost" value="{{data.cost}}" data-dtype="Number"/>
|
2022-08-16 21:21:37 +02:00
|
|
|
</li>
|
2022-08-03 18:52:24 +02:00
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|