forked from GitHub-Mirrors/foundry-sw5e
Created Starship Deployment on actor drop
This lets actors drop onto ships. It mostly works data wise. Tokens are stored separately from characters at this point, need to bring that part in from polymorph. Actors dropped do not appear on character sheet
This commit is contained in:
parent
89c7f7d7e7
commit
d21898a8da
7 changed files with 231 additions and 156 deletions
18
templates/apps/deployment-prompt.html
Normal file
18
templates/apps/deployment-prompt.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<div class="dialog-content">
|
||||
{{#each content.i18n}}
|
||||
<div>
|
||||
<label class="checkbox" for="{{@key}}">
|
||||
<input type="checkbox" id="{{@key}}" name="{{@key}}" {{checked (lookup ../content.options @key)}}>
|
||||
{{this}}
|
||||
</label>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
<div class="dialog-buttons">
|
||||
{{#each buttons as |button id|}}
|
||||
<button class="dialog-button" data-button="{{id}}">
|
||||
{{{button.icon}}}
|
||||
{{{button.label}}}
|
||||
</button>
|
||||
{{/each}}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue