forked from GitHub-Mirrors/foundry-sw5e

+ Adds compendia for Deployments, Deployment Features, Starship Armor, Starship Equipment, Starship Weapons, and Ventures and associated artwork + Adds Starship actor sheet (very, very rough draft, somewhat unpredictable, not fully functional) + Adds function to Character sheet to collapse/expand Feature tab rows (major assist from Cyr) + Adds function to Character sheet to increment/decrement class levels directly from character sheet (another major assist from Cyr)
35 lines
No EOL
1.3 KiB
HTML
35 lines
No EOL
1.3 KiB
HTML
<div class="tab flexrow active" data-group="primary" data-tab="description">
|
|
|
|
<div class="item-properties">
|
|
{{#if isPhysical}}
|
|
<div class="form-group">
|
|
<label>{{ localize "SW5E.Quantity" }}</label>
|
|
<input type="text" name="data.quantity" value="{{data.quantity}}" data-dtype="Number"/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{ localize "SW5E.Weight" }}</label>
|
|
<input type="text" name="data.weight" value="{{data.weight}}" data-dtype="Number"/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{ localize "SW5E.Price" }}</label>
|
|
<input type="text" name="data.price" value="{{data.price}}" data-dtype="Number"/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{ localize "SW5E.WeaponSizeAbb" }}</label>
|
|
<!-- <input type="text" name="data.weaponSize" value="{{data.weaponSize}}" data-dtype="String"/> -->
|
|
{{data.weaponSize}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<ol class="properties-list">
|
|
{{#each itemProperties}}
|
|
<li>{{this}}</li>
|
|
{{/each}}
|
|
</ol>
|
|
</div>
|
|
|
|
{{editor content=data.description.value target="data.description.value" button=true owner=owner editable=editable}}
|
|
</div> |