forked from GitHub-Mirrors/foundry-sw5e

System main update to be inline with dnd5e 1.1.1 Added active effects to as many sheets as I thought applicable. Please check loot, I made an attempt but it may be broken All .less .css and actor .html updates were made to the old actors. New actors may be broken with this update removed templates\actors\oldActor\parts\actor-effects.html for newer templates\actors\parts\active-effects.html removed module\apps\cast-dialog, templates\apps\cast-cast.html, and templates\items\cast.html. I do not think they are used, I think they were deprecated when powers were treated as items, if not we can add them back in. **NOTE** REQUIRES Foundry 0.7.6
38 lines
1.7 KiB
HTML
38 lines
1.7 KiB
HTML
<ol class="items-list effects-list">
|
|
{{#each effects as |section sid|}}
|
|
<li class="items-header flexrow" data-effect-type="{{section.type}}">
|
|
<h3 class="item-name effect-name flexrow">{{localize section.label}}</h3>
|
|
<div class="effect-source">Source</div>
|
|
<div class="effect-source">Duration</div>
|
|
<div class="item-controls effect-controls flexrow">
|
|
<a class="effect-control" data-action="create" title="{{localize 'SW5E.EffectCreate'}}">
|
|
<i class="fas fa-plus"></i> {{localize "SW5E.Add"}}
|
|
</a>
|
|
</div>
|
|
</li>
|
|
|
|
<ol class="item-list">
|
|
{{#each section.effects as |effect|}}
|
|
<li class="item effect flexrow" data-effect-id="{{effect.id}}">
|
|
<div class="item-name effect-name flexrow">
|
|
<img class="item-image" src="{{effect.data.icon}}"/>
|
|
<h4>{{effect.data.label}}</h4>
|
|
</div>
|
|
<div class="effect-source">{{effect.sourceName}}</div>
|
|
<div class="effect-duration">{{effect.duration.label}}</div>
|
|
<div class="item-controls effect-controls flexrow">
|
|
<a class="effect-control" data-action="toggle" title="{{localize 'SW5E.EffectToggle'}}">
|
|
<i class="fas fa-circle-notch"></i>
|
|
</a>
|
|
<a class="effect-control" data-action="edit" title="{{localize 'SW5E.EffectEdit'}}">
|
|
<i class="fas fa-edit"></i>
|
|
</a>
|
|
<a class="effect-control" data-action="delete" title="{{localize 'SW5E.EffectDelete'}}">
|
|
<i class="fas fa-trash"></i>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
{{/each}}
|
|
</ol>
|
|
{{/each}}
|
|
</ol>
|