Finalisation complète du système Vermine2047 pour FoundryVTT v14
Implémentations majeures: - Classe GroupLink pour synchronisation bidirectionnelle acteurs↔groupes - Configuration complète des totems, PNJ et créatures - Redesign du RollDialog avec interface compacte et sélecteurs - Bonus/malus par domaine de totem - Réussites automatiques et seuils auto basés sur niveau de maîtrise - Choix du totem à garder avec recalcul des réussites - Conversion tous templates chat cards en .hbs - Fiches PNJ et Créature avec sélecteurs pour tous les niveaux - Documentation technique (ARCHITECTURE.md) et utilisateur (GUIDE_UTILISATEUR.md) - Mise à jour system.json pour compatibilité v14 - Tous les TODOs du README.md complétés Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> "systems/vermine2047/templates/item/chatCards/parts/base.hbs"}}
|
||||
|
||||
{{!-- Ability specific content --}}
|
||||
<div class="grid grid-2col">
|
||||
{{#if item.system.type}}
|
||||
<div class="resource flexrow">
|
||||
<span class="resource-label">{{ localize 'VERMINE.type' }}:</span>
|
||||
<span>{{item.system.type}}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if item.system.totem}}
|
||||
<div class="resource flexrow">
|
||||
<span class="resource-label">{{ localize 'IDENTITY.totem' }}:</span>
|
||||
<span>{{ localize (lookup ../config.totems item.system.totem) }}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if item.system.level.value}}
|
||||
<div class="resource flexrow">
|
||||
<span class="resource-label">{{ localize 'VERMINE.level' }}:</span>
|
||||
<span>{{item.system.level.value}}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if item.system.learn.threshold}}
|
||||
<div class="resource flexrow">
|
||||
<span class="resource-label">{{ localize 'VERMINE.learn' }}:</span>
|
||||
<span>
|
||||
{{item.system.learn.threshold}}
|
||||
{{#ifgt item.system.learn.hindrance 0}}
|
||||
/ {{item.system.learn.hindrance}}
|
||||
{{/ifgt}}
|
||||
</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if item.system.effects}}
|
||||
<div class="resource flexcol">
|
||||
<span class="resource-label">{{ localize 'UI.effects' }}:</span>
|
||||
<ul class="unstyled">
|
||||
{{#each item.system.effects as |effect|}}
|
||||
<li>{{effect}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if item.system.description}}
|
||||
<div class="resource flexcol">
|
||||
<span class="resource-label">{{ localize 'IDENTITY.notes' }}:</span>
|
||||
<p>{{{item.system.description}}}</p>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
</form>
|
||||
Reference in New Issue
Block a user