Update CSS/Look & feel
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<section>
|
||||
|
||||
{{!-- Sheet Header --}}
|
||||
<header class="sheet-header">
|
||||
<div class="header-fields background-sheet-header">
|
||||
<div class="flexrow">
|
||||
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}" />
|
||||
<img class="profile-img" src="{{actor.img}}" data-action="editImage" title="{{actor.name}}" />
|
||||
<div class="flexcol">
|
||||
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
|
||||
<h1 class="charname"><input name="name" type="text" value="{{actor.name}}" placeholder="Name" /></h1>
|
||||
<div class="flexrow">
|
||||
|
||||
<ul class="item-list alternate-list">
|
||||
@@ -21,7 +21,7 @@
|
||||
name="system.balance.pointsloi" value="{{system.balance.pointsloi}}" data-dtype="Number">
|
||||
{{selectOptions config.listeNiveauSkill selected=system.balance.pointsloi}}
|
||||
</select>
|
||||
<label class="item-name-label competence-name item-field-label-medium">Aspect {{aspect}}</label>
|
||||
<label class="item-name-label competence-name item-field-label-medium">Aspect {{system.balance.aspect}}</label>
|
||||
</li>
|
||||
|
||||
<li class="item flexrow ">
|
||||
@@ -34,7 +34,7 @@
|
||||
name="system.balance.pointschaos" value="{{system.balance.pointschaos}}" data-dtype="Number">
|
||||
{{selectOptions config.listeNiveauSkill selected=system.balance.pointschaos}}
|
||||
</select>
|
||||
<label class="item-name-label competence-name item-field-label-medium">Marge {{marge}}</label>
|
||||
<label class="item-name-label competence-name item-field-label-medium">Marge {{system.balance.marge}}</label>
|
||||
</li>
|
||||
|
||||
<li class="item flexrow ">
|
||||
@@ -75,6 +75,9 @@
|
||||
value="{{system.ame.max}}" data-dtype="Number">
|
||||
{{selectOptions ameMaxList selected=system.ame.max valueAttr="value" nameAttr="value" labelAttr="label"}}
|
||||
</select>
|
||||
<button type="button" class="sheet-mode-toggle" data-action="toggleSheet" data-tooltip="{{#if isEditMode}}Mode Visualisation{{else}}Mode Édition{{/if}}">
|
||||
<i class="{{#if isEditMode}}fas fa-eye{{else}}fas fa-edit{{/if}}"></i>
|
||||
</button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
@@ -109,9 +112,9 @@
|
||||
<ul class="item-list alternate-list">
|
||||
{{#each system.attributs as |attr key|}}
|
||||
<li class="item flexrow " data-attr-key="{{key}}">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd2/assets/icons/{{attr.labelnorm}}.webp">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/{{attr.labelnorm}}.webp">
|
||||
<span data-tooltip="Cliquez pour faire un jet" class="item-name-label competence-name item-field-label-medium"><a
|
||||
class="roll-attribut">{{attr.label}}</a></span>
|
||||
data-action="rollAttribut" data-attr-key="{{key}}">{{attr.label}}</a></span>
|
||||
<select class="status-small-label color-class-common edit-item-data competence-niveau" type="text"
|
||||
name="system.attributs.{{key}}.value" value="{{attr.value}}" data-dtype="Number">
|
||||
{{selectOptions @root.config.listeNiveauSkill selected=attr.value}}
|
||||
@@ -120,7 +123,7 @@
|
||||
{{/each}}
|
||||
|
||||
<li class="item flexrow">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd2/assets/icons/vitesse.webp">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/vitesse.webp">
|
||||
<span class="item-name-label competence-name item-field-label-medium">Vitesse</span>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.vitesse.value"
|
||||
value="{{system.vitesse.value}}" data-dtype="Number" />
|
||||
@@ -135,12 +138,12 @@
|
||||
<ul class="item-list alternate-list">
|
||||
{{#each system.adversite as |adv key|}}
|
||||
<li class="item flexrow" data-adversite="{{key}}">
|
||||
<a class="adversite-modify plus-minus-button" data-adversite-value="-1">-</a>
|
||||
<a data-action="modifyAdversite" class="plus-minus-button" data-adversite-value="-1">-</a>
|
||||
<div class="icon-adversite-container">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_{{key}}.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_{{key}}.webp">
|
||||
<div class="adversite-text">{{adv}}</div>
|
||||
</div>
|
||||
<a class="adversite-modify plus-minus-button" data-adversite-value="1">+</a>
|
||||
<a data-action="modifyAdversite" class="plus-minus-button" data-adversite-value="1">+</a>
|
||||
<div class=""> </div>
|
||||
<div class=""> </div>
|
||||
<div class=""> </div>
|
||||
@@ -173,7 +176,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="talent" title="Ajouter un Talent"><i
|
||||
<a class="item-control" data-action="createItem" data-type="talent" title="Ajouter un Talent"><i
|
||||
class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
@@ -185,8 +188,8 @@
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -217,7 +220,7 @@
|
||||
|
||||
<div class="flexcol item-name-label">
|
||||
|
||||
<span class="item-name-label competence-name"><a class="roll-competence item-field-label-short"
|
||||
<span class="item-name-label competence-name"><a data-action="rollCompetence" class="item-field-label-short"
|
||||
data-attr-key="tochoose">{{skill.name}}</a></span>
|
||||
|
||||
<span class="predilection-text">
|
||||
@@ -235,22 +238,22 @@
|
||||
</select>
|
||||
|
||||
{{#if (ne skill.system.attribut1 "none")}}
|
||||
<button class="roll-competence button-sheet-roll" data-attr-key="{{skill.system.attribut1}}">{{upper
|
||||
<button data-action="rollCompetence" class="button-sheet-roll" data-attr-key="{{skill.system.attribut1}}">{{upper
|
||||
skill.system.attribut1}} : {{skill.system.attribut1total}}</button>
|
||||
{{/if}}
|
||||
{{#if (ne skill.system.attribut2 "none")}}
|
||||
<button class="roll-competence button-sheet-roll" data-attr-key="{{skill.system.attribut2}}">{{upper
|
||||
<button data-action="rollCompetence" class="button-sheet-roll" data-attr-key="{{skill.system.attribut2}}">{{upper
|
||||
skill.system.attribut2}} : {{skill.system.attribut2total}}</button>
|
||||
{{/if}}
|
||||
{{#if (ne skill.system.attribut3 "none")}}
|
||||
<button class="roll-competence button-sheet-roll" data-attr-key="{{skill.system.attribut3}}">{{upper
|
||||
<button data-action="rollCompetence" class="button-sheet-roll" data-attr-key="{{skill.system.attribut3}}">{{upper
|
||||
skill.system.attribut3}} : {{skill.system.attribut3total}}</button>
|
||||
{{/if}}
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -277,7 +280,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="don"><i class="fas fa-plus"></i></a>
|
||||
<a class="item-control" data-action="createItem" data-type="don"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each dons as |don key|}}
|
||||
@@ -287,8 +290,8 @@
|
||||
<span class="item-field-label-short">{{don.system.allegeance}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -306,7 +309,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="pacte"><i class="fas fa-plus"></i></a>
|
||||
<a class="item-control" data-action="createItem" data-type="pacte"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each pactes as |pacte key|}}
|
||||
@@ -316,8 +319,8 @@
|
||||
<span class="item-field-label-short">{{pacte.system.allegeance}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -338,7 +341,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="rune"><i class="fas fa-plus"></i></a>
|
||||
<a class="item-control" data-action="createItem" data-type="rune"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each runes as |rune key|}}
|
||||
@@ -349,8 +352,8 @@
|
||||
<span class="item-field-label-short">{{rune.system.seuil}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -368,7 +371,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="tendance"><i class="fas fa-plus"></i></a>
|
||||
<a class="item-control" data-action="createItem" data-type="tendance"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each tendances as |tendance key|}}
|
||||
@@ -378,8 +381,8 @@
|
||||
<span class="item-field-label-short">{{tendance.system.allegeance}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -394,7 +397,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="traitchaotique"><i class="fas fa-plus"></i></a>
|
||||
<a class="item-control" data-action="createItem" data-type="traitchaotique"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each traitsChaotiques as |trait key|}}
|
||||
@@ -403,8 +406,8 @@
|
||||
<span class="item-name-label competence-name">{{trait.name}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -419,7 +422,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="traitespece"><i class="fas fa-plus"></i></a>
|
||||
<a class="item-control" data-action="createItem" data-type="traitespece"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each traitsEspeces as |trait key|}}
|
||||
@@ -428,8 +431,8 @@
|
||||
<span class="item-name-label competence-name">{{trait.name}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -445,7 +448,7 @@
|
||||
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<button class="chat-card-button roll-initiative">Initiative (actuelle : {{initiative}} )</button>
|
||||
<button class="chat-card-button" data-action="rollInitiative">Initiative (actuelle : {{initiative}} )</button>
|
||||
<label class="item-field-label-short"> </label>
|
||||
<label class="item-field-label-short">Monté?</label>
|
||||
<input type="checkbox" name="system.combat.monte" {{checked system.combat.monte}} />
|
||||
@@ -454,11 +457,11 @@
|
||||
<input type="checkbox" name="system.combat.defensetotale" {{checked system.combat.defensetotale}} />
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<button class="chat-card-button roll-assommer">Assommer</button>
|
||||
<button class="chat-card-button roll-coup-bas">Coup bas</button>
|
||||
<button class="chat-card-button roll-immobiliser">Immobiliser</button>
|
||||
<button class="chat-card-button roll-repousser">Repousser</button>
|
||||
<button class="chat-card-button roll-desengager">Se désengager</button>
|
||||
<button class="chat-card-button" data-action="rollAssommer">Assommer</button>
|
||||
<button class="chat-card-button" data-action="rollCoupBas">Coup bas</button>
|
||||
<button class="chat-card-button" data-action="rollImmobiliser">Immobiliser</button>
|
||||
<button class="chat-card-button" data-action="rollRepousser">Repousser</button>
|
||||
<button class="chat-card-button" data-action="rollDesengager">Se désengager</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -481,7 +484,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="arme" title="Ajouter une arme"><i
|
||||
<a class="item-control" data-action="createItem" data-type="arme" title="Ajouter une arme"><i
|
||||
class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
@@ -492,9 +495,9 @@
|
||||
|
||||
<span class="item-field-label-short">
|
||||
{{#if arme.system.equipped}}
|
||||
<button class="roll-arme-offensif button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
<button data-action="rollArmeOffensif" class="button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
{{else}}
|
||||
<button disabled class="roll-arme-offensif button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
<button disabled data-action="rollArmeOffensif" class="button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
{{/if}}
|
||||
</span>
|
||||
|
||||
@@ -508,18 +511,18 @@
|
||||
|
||||
<span class="item-field-label-short">
|
||||
{{#if arme.system.equipped}}
|
||||
<button class="roll-arme-degats button-sheet-roll">{{arme.system.totalDegats}}</button>
|
||||
<button data-action="rollArmeDegats" class="button-sheet-roll">{{arme.system.totalDegats}}</button>
|
||||
{{else}}
|
||||
<button disabled class="roll-arme-degats button-sheet-roll">{{arme.system.totalDegats}}</button>
|
||||
<button disabled data-action="rollArmeDegats" class="button-sheet-roll">{{arme.system.totalDegats}}</button>
|
||||
{{/if}}
|
||||
</span>
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-equip" title="Equipé">{{#if arme.system.equipped}}<i
|
||||
<a class="item-control" data-action="equipItem" title="Equipé">{{#if arme.system.equipped}}<i
|
||||
class="fas fa-circle"></i>{{else}}<i class="fas fa-genderless"></i>{{/if}}</a>
|
||||
<a class="item-control item-edit" title="Editer l' Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Supprimer l'Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Editer l' Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Supprimer l'Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -537,7 +540,7 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="protection" title="Ajouter une arme"><i
|
||||
<a class="item-control" data-action="createItem" data-type="protection" title="Ajouter une arme"><i
|
||||
class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
@@ -550,10 +553,10 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-equip" title="Equipé">{{#if protection.system.equipped}}<i
|
||||
<a class="item-control" data-action="equipItem" title="Equipé">{{#if protection.system.equipped}}<i
|
||||
class="fas fa-circle"></i>{{else}}<i class="fas fa-genderless"></i>{{/if}}</a>
|
||||
<a class="item-control item-edit" title="Editer l'Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Supprimer l'Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Editer l'Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Supprimer l'Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -589,7 +592,7 @@
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="monnaie" title="Ajouter une monnaie"><i
|
||||
<a class="item-control" data-action="createItem" data-type="monnaie" title="Ajouter une monnaie"><i
|
||||
class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
@@ -603,8 +606,8 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -633,7 +636,7 @@
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="equipement" title="Ajouter un équipement"><i
|
||||
<a class="item-control" data-action="createItem" data-type="equipement" title="Ajouter un équipement"><i
|
||||
class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
@@ -647,8 +650,8 @@
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -671,8 +674,8 @@
|
||||
<label class="generic-label">{{historique.name}}</label>
|
||||
<label></label>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -682,8 +685,8 @@
|
||||
<label class="generic-label">{{profil.name}}</label>
|
||||
<label></label>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control" data-action="editItem" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control" data-action="deleteItem" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
@@ -755,4 +758,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<section>
|
||||
|
||||
{{!-- Sheet Header --}}
|
||||
<header class="sheet-header">
|
||||
<div class="header-fields background-sheet-header">
|
||||
<div class="flexrow">
|
||||
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}" />
|
||||
<img class="profile-img" src="{{actor.img}}" data-action="editImage" title="{{actor.name}}" />
|
||||
<div class="flexcol">
|
||||
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
|
||||
<h1 class="charname"><input name="name" type="text" value="{{actor.name}}" placeholder="Name" /></h1>
|
||||
<div class="flexrow">
|
||||
|
||||
<ul class="item-list alternate-list">
|
||||
@@ -45,7 +45,7 @@
|
||||
<ul class="item-list alternate-list">
|
||||
{{#each system.attributs as |attr key|}}
|
||||
<li class="item flexrow " data-attr-key="{{key}}">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd2/assets/icons/{{attr.labelnorm}}.webp">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/{{attr.labelnorm}}.webp">
|
||||
<span class="item-name-label competence-name item-field-label-medium"><a
|
||||
class="roll-attribut">{{attr.label}}</a></span>
|
||||
<select class="status-small-label color-class-common edit-item-data competence-niveau" type="text"
|
||||
@@ -55,7 +55,7 @@
|
||||
</li>
|
||||
{{/each}}
|
||||
<li class="item flexrow">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd2/assets/icons/vitesse.webp">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/vitesse.webp">
|
||||
<span class="item-name-label competence-name item-field-label-medium">Vitesse</span>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.vitesse.value"
|
||||
value="{{system.vitesse.value}}" data-dtype="Number" />
|
||||
@@ -94,7 +94,7 @@
|
||||
<li class="item flexrow" data-adversite="{{key}}">
|
||||
<a class="adversite-modify plus-minus-button" data-adversite-value="-1">-</a>
|
||||
<div class="icon-adversite-container">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_{{key}}.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_{{key}}.webp">
|
||||
<div class="adversite-text">{{adv}}</div>
|
||||
</div>
|
||||
<a class="adversite-modify plus-minus-button" data-adversite-value="1">+</a>
|
||||
@@ -372,4 +372,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -5,13 +5,13 @@
|
||||
<div class="flexrow tokenhudicon">
|
||||
<div class="mournblade-cyd2-hud-adversite hud-adversite-container" data-action-value="-1"
|
||||
data-action-index="bleue" title="Adversite Bleue">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_bleue.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_bleue.webp">
|
||||
<div class="hud-adversite-text"> -1</div>
|
||||
</div>
|
||||
|
||||
<div class="mournblade-cyd2-hud-adversite hud-adversite-container" data-action-value="+1"
|
||||
data-action-index="bleue" title="Adversite Bleue">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_bleue.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_bleue.webp">
|
||||
<div class="hud-adversite-text"> +1</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -19,13 +19,13 @@
|
||||
<div class="flexrow tokenhudicon">
|
||||
<div class="mournblade-cyd2-hud-adversite hud-adversite-container" data-action-value="-1"
|
||||
data-action-index="rouge" title="Adversite Rouge">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_rouge.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_rouge.webp">
|
||||
<div class="hud-adversite-text"> -1</div>
|
||||
</div>
|
||||
|
||||
<div class="mournblade-cyd2-hud-adversite hud-adversite-container" data-action-value="+1"
|
||||
data-action-index="rouge" title="Adversite Rouge">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_rouge.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_rouge.webp">
|
||||
<div class="hud-adversite-text"> +1</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -33,13 +33,13 @@
|
||||
<div class="flexrow tokenhudicon">
|
||||
<div class="mournblade-cyd2-hud-adversite hud-adversite-container" data-action-value="-1"
|
||||
data-action-index="noire" title="Adversite Noire">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_noire.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_noire.webp">
|
||||
<div class="hud-adversite-text"> -1</div>
|
||||
</div>
|
||||
|
||||
<div class="mournblade-cyd2-hud-adversite hud-adversite-container" data-action-value="+1"
|
||||
data-action-index="noire" title="Adversite Noire">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd2/assets/icons/gemme_noire.webp">
|
||||
<img class="icon-adversite" src="systems/fvtt-mournblade-cyd-2-0/assets/icons/gemme_noire.webp">
|
||||
<div class="hud-adversite-text"> +1</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -84,10 +84,10 @@
|
||||
data-dtype="Number" />
|
||||
</li>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-prix.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-prix.hbs}}
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<label class="generic-label item-field-label-long">Attribut 1 </label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
||||
name="system.attribut1" value="{{system.attribut1}}" data-dtype="string">
|
||||
{{selectOptions attributs selected=system.attribut1 }}
|
||||
{{selectOptions config.attributs selected=system.attribut1 }}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
@@ -28,7 +28,7 @@
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
||||
name="system.attribut2" value="{{system.attribut2}}" data-dtype="string">
|
||||
<option value="none">Aucun</option>
|
||||
{{selectOptions attributs selected=system.attribut2 }}
|
||||
{{selectOptions config.attributs selected=system.attribut2 }}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
@@ -36,7 +36,7 @@
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
||||
name="system.attribut3" value="{{system.attribut3}}" data-dtype="string">
|
||||
<option value="none">Aucun</option>
|
||||
{{selectOptions attributs selected=system.attribut3 }}
|
||||
{{selectOptions config.attributs selected=system.attribut3 }}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
@@ -76,4 +76,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,10 +1,10 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
<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 --}}
|
||||
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -43,4 +43,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> 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">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-prix.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-prix.hbs}}
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> 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">
|
||||
@@ -21,4 +21,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
@@ -31,4 +31,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
<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 --}}
|
||||
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> 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">
|
||||
@@ -26,4 +26,4 @@
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> 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">
|
||||
@@ -21,7 +21,7 @@
|
||||
<label class="generic-label item-field-label-long">Attribut principal 1 </label>
|
||||
<select class="status-small-label color-class-common item-field-label-long"" type=" text"
|
||||
name="system.attribut1" value="{{system.attribut1}}" data-dtype="string">
|
||||
{{selectOptions attributs selected=system.attribut1}}
|
||||
{{selectOptions config.attributs selected=system.attribut1}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item ">
|
||||
@@ -29,7 +29,7 @@
|
||||
<select class="status-small-label color-class-common item-field-label-long"" type=" text"
|
||||
name="system.attribut2" value="{{system.attribut2}}" data-dtype="string">
|
||||
<option value="none">Aucun</option>
|
||||
{{selectOptions attributs selected=system.attribut2}}
|
||||
{{selectOptions config.attributs selected=system.attribut2}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item ">
|
||||
@@ -37,7 +37,7 @@
|
||||
<select class="status-small-label color-class-common item-field-label-long"" type=" text"
|
||||
name="system.attribut3" value="{{system.attribut3}}" data-dtype="string">
|
||||
<option value="none">Aucun</option>
|
||||
{{selectOptions attributs selected=system.attribut3}}
|
||||
{{selectOptions config.attributs selected=system.attribut3}}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
@@ -97,4 +97,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -22,9 +22,9 @@
|
||||
value="{{system.adversitepoids}}" data-dtype="Number" />
|
||||
</li>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-prix.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-prix.hbs}}
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -23,4 +23,4 @@
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,10 +1,10 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
<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-cyd2/templates/partial-item-description.html}}
|
||||
{{> 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">
|
||||
@@ -60,4 +60,4 @@
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<section>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
{{> 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-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
type="text"
|
||||
class="padd-right status-small-label color-class-common item-field-label-long"
|
||||
name="system.rune"
|
||||
value="{{data.rune}}"
|
||||
value="{{system.rune}}"
|
||||
data-dtype="String"
|
||||
/>
|
||||
</li>
|
||||
@@ -29,10 +29,10 @@
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
type="text"
|
||||
name="system.mode"
|
||||
value="{{data.mode}}"
|
||||
value="{{system.mode}}"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.effetRuneOptions selected=data.mode}}
|
||||
{{selectOptions config.effetRuneOptions selected=system.mode}}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
type="text"
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
name="system.pointame"
|
||||
value="{{data.pointame}}"
|
||||
value="{{system.pointame}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
@@ -53,10 +53,10 @@
|
||||
type="text"
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
name="system.duree"
|
||||
value="{{data.duree}}"
|
||||
value="{{system.duree}}"
|
||||
data-dtype="String"
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}}
|
||||
<section>
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-header.hbs}}
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-nav.hbs}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
@@ -49,10 +49,10 @@
|
||||
<input class="predilection-maitrise" type="checkbox" name="system.used" {{checked system.used}} />
|
||||
</li>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-automation.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-automation.hbs}}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
@@ -1,10 +1,10 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
<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 --}}
|
||||
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> 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">
|
||||
@@ -26,4 +26,4 @@
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
<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 --}}
|
||||
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details"></div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
<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 --}}
|
||||
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
{{> systems/fvtt-mournblade-cyd-2-0/templates/partial-item-description.hbs}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details"></div>
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="tab description" data-group="primary" data-tab="description">
|
||||
<div class="editor">
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,8 +1,20 @@
|
||||
<header class="sheet-header">
|
||||
<div class="flexrow background-sheet-header">
|
||||
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}" />
|
||||
<div class="header">
|
||||
<header class="sheet-header">
|
||||
<img
|
||||
class="item-sheet-img"
|
||||
src="{{item.img}}"
|
||||
data-action="editImage"
|
||||
title="{{item.name}}"
|
||||
/>
|
||||
<div class="header-fields">
|
||||
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
|
||||
<h1 class="charname">
|
||||
<input name="name" type="text" value="{{item.name}}" placeholder="Name" />
|
||||
</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="header-actions">
|
||||
<button type="button" data-action="postItem" class="chat-card-button" data-tooltip="Poster dans le chat">
|
||||
<i class="fas fa-comment"></i>
|
||||
</button>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user