a3f304c77b
- Correction du namespace i18n: MOURNBLADECYD2.EFFECT → EFFECT
- Suppression de la condition {{#if item.effects.length}} dans tous les templates d'items
- Ajout de la clé EFFECT.noItemEffects pour les items sans effets
- Remplacement des textes en dur par des clés i18n dans les partials
- Mise à jour de toutes les références dans le code JavaScript
Cela corrige:
1. Les clés i18n manquantes (namespace incohérent)
2. L'onglet Effets des items qui était vide quand l'item n'avait pas d'effets
Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
81 lines
2.7 KiB
Handlebars
81 lines
2.7 KiB
Handlebars
<section>
|
|
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}} {{>
|
|
systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}} {{!-- Sheet
|
|
Body --}} {{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
<ul class="item-list alternate-list">
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long"
|
|
>{{localize "MNBL.highlanguage"}} :
|
|
</label>
|
|
<input
|
|
type="text"
|
|
class="padd-right status-small-label color-class-common item-field-label-long"
|
|
name="system.formule"
|
|
value="{{system.formule}}"
|
|
data-dtype="String"
|
|
/>
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long"
|
|
>{{localize "MNBL.difficulty"}} :
|
|
</label>
|
|
<input
|
|
type="text"
|
|
class="padd-right status-small-label color-class-common item-field-label-long"
|
|
name="system.seuil"
|
|
value="{{system.seuil}}"
|
|
data-dtype="Number"
|
|
/>
|
|
</li>
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long"
|
|
>{{localize "MNBL.pronouncedrune"}} :
|
|
</label>
|
|
<input
|
|
type="text"
|
|
class="padd-right status-small-label color-class-common item-field-label-long2"
|
|
name="system.prononcee"
|
|
value="{{system.prononcee}}"
|
|
data-dtype="String"
|
|
/>
|
|
</li>
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long"
|
|
>{{localize "MNBL.tracedrune"}} :
|
|
</label>
|
|
<input
|
|
type="text"
|
|
class="padd-right status-small-label color-class-common item-field-label-long2"
|
|
name="system.tracee"
|
|
value="{{system.tracee}}"
|
|
data-dtype="String"
|
|
/>
|
|
</li>
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long"
|
|
>Coût en Pouvoir :
|
|
</label>
|
|
<input
|
|
type="text"
|
|
class="padd-right status-small-label color-class-common item-field-label-long2"
|
|
name="system.coutAme"
|
|
value="{{system.coutAme}}"
|
|
data-dtype="String"
|
|
/>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{{!-- Effects Tab --}}
|
|
<div class="tab effects" data-group="primary" data-tab="effects">
|
|
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-effects.hbs}}
|
|
</div>
|
|
</section>
|
|
</section>
|