2022-09-26 03:36:18 +02:00
|
|
|
{{#if meditations.length}}
|
|
|
|
<h3>Méditations</h3>
|
|
|
|
<ul class="item-list">
|
2023-05-28 22:00:04 +02:00
|
|
|
{{#each (trier meditations) as |meditation key|}}
|
2023-12-04 01:21:05 +01:00
|
|
|
<li class="item flexrow" data-item-id="{{meditation._id}}" data-attribute="{{key}}" data-tooltip="Méditation: {{meditation.name}}">
|
|
|
|
<img class="sheet-competence-img" src="{{meditation.img}}"/>
|
2022-09-26 03:36:18 +02:00
|
|
|
<span class="meditation-label flex-grow"><a data-item-id="{{meditation._id}}">{{meditation.name}} - {{meditation.system.competence}}</a></span>
|
2025-01-15 19:13:32 +01:00
|
|
|
{{>'systems/foundryvtt-reve-de-dragon/templates/actor/item-action-controls.hbs' item=meditation options=@root.options}}
|
2022-09-26 03:36:18 +02:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|