v0.0.4 (#3)
This is now officially support fan-material Add Ship sheet Layout fix for adversaries Ability to remove skills on adversaries, useful when duplicating a adversary Option to automatically apply spell cost when rolled Added Armor compendium Added Weapons compendium Skills compendium updated with descriptions Co-Authored-By: erebus <erebus@rikspolisen.se> Co-Committed-By: erebus <erebus@rikspolisen.se>
This commit was merged in pull request #3.
This commit is contained in:
40
templates/items/shipweapon-sheet.html
Normal file
40
templates/items/shipweapon-sheet.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<div class="header">
|
||||
<div class="avatar flex-group-center" style="grid-row: 1/3;">
|
||||
<img class="item-avatar-img" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
|
||||
</div>
|
||||
<div class="container flex-group-center item-name">
|
||||
<h1><input name="name" type="text" value="{{item.name}}" placeholder="{{localize "ITEM.WEAPON"}}" /></h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-container" style="grid-template-columns: 1fr 1fr;">
|
||||
<div class="cost">
|
||||
<label>{{localize data.price.label}}</label>
|
||||
<input name="data.price.value" type="text" value="{{data.price.value}}" />
|
||||
</div>
|
||||
<div class="rating">
|
||||
<label>{{localize data.damage.label}}</label>
|
||||
<input name="data.damage.value" type="text" value="{{data.damage.value}}" />
|
||||
</div>
|
||||
<div>
|
||||
<label>{{localize "ITEM.SKILL"}}</label>
|
||||
<select class="item-weapon-skill-select" name="data.skill.value">
|
||||
{{#select data.skill.value}}
|
||||
{{#each this.khskills as |t|}}
|
||||
<option value="{{t.name}}">{{t.name}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="description">
|
||||
<h2>{{localize data.description.label}}</h2>
|
||||
<div class="info">
|
||||
<div class="description">
|
||||
{{editor content=data.description.value target="data.description.value" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user