Add missing items/actors
This commit is contained in:
52
templates/starship-main.hbs
Normal file
52
templates/starship-main.hbs
Normal file
@@ -0,0 +1,52 @@
|
||||
<section class="starship-main starship-main-{{ifThen isPlayMode 'play' 'edit'}}">
|
||||
|
||||
<fieldset>
|
||||
<legend>{{localize "FTLNOMAD.Label.starship"}}</legend>
|
||||
<div class="starship-pc starship-pc-{{ifThen isPlayMode 'play' 'edit'}}">
|
||||
<div class="starship-left">
|
||||
<div class="starship-left-image">
|
||||
<img class="starship-img" src="{{actor.img}}" data-edit="img" data-action="editImage"
|
||||
data-tooltip="{{actor.name}}" />
|
||||
</div>
|
||||
<fieldset>
|
||||
<legend>{{localize "FTLNOMAD.Label.HP"}}</legend>
|
||||
<div class="flexrow">
|
||||
{{formField systemFields.hp.fields.value value=system.hp.value}}
|
||||
/
|
||||
{{formField systemFields.hp.fields.max value=system.hp.max rootId=partId disabled=true}}
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="starship-right">
|
||||
<div class="starship-name">
|
||||
{{formInput fields.name value=source.name rootId=partId disabled=isPlayMode}}
|
||||
<a class="control" data-action="toggleSheet" data-tooltip="FTLNOMAD.ToggleSheet"
|
||||
data-tooltip-direction="UP">
|
||||
<i class="fa-solid fa-user-{{ifThen isPlayMode 'lock' 'pen'}}"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<fieldset class="speed">
|
||||
<legend>{{localize "FTLNOMAD.Label.Speed"}}</legend>
|
||||
<div class="flexrow">
|
||||
{{formField systemFields.surfaceSpeed value=system.surfaceSpeed localize=true}}
|
||||
{{formField systemFields.airSpeed value=system.airSpeed localize=true}}
|
||||
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset class="armr ">
|
||||
<legend>{{localize "FTLNOMAD.Label.armor"}}</legend>
|
||||
<div class="flexrow">
|
||||
{{formField systemFields.armor value=system.armor localize=true}}
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
</section>
|
||||
Reference in New Issue
Block a user