Neo-Tokyo Neon Noir design pour fiches items

- Nouvelle palette : #080c14 fond, accents néon par type (#00d4d4 item, #ff3d5a kungfu, #4a9eff spell, #cc44ff supernatural)
- Nouveaux composants LESS : .cde-neon-header (clip-path angulaire + accent line), .cde-avatar (clip-path), .cde-stat-grid/.cde-stat-cell (style terminal), .cde-badge (parallélogramme), .cde-neon-tabs (underline néon animé), .cde-check-cell
- Fix layout : .cde-sheet width: 100% + height: 100% + overflow: hidden, .cde-tab-body flex: 1 + min-height: 0, .cde-notes-editor flex stretch
- Fix positions : DEFAULT_OPTIONS height explicite pour tous les types (item 620x580, spell 660x680, kungfu 720x680, supernatural 560x520)
- 4 templates items reécrits avec nouvelles classes et structure épurée

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-26 00:18:04 +01:00
commit 068fca00e5
739 changed files with 7923 additions and 0 deletions

View File

@@ -0,0 +1,130 @@
<form class="flexcol cde-sheet cde-actor {{cssClass}}" autocomplete="off">
{{log 'actor-sheet' this}}
<header class="cde-header cde-actor-header">
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" />
<div class="header-fields">
<div class="cde-header-top">
<h1 class="charname">
<input name="name" type="text" value="{{actor.name}}" placeholder="{{ localize 'CDE.PCName' }}" />
</h1>
<button type="button" class="cde-icon-button click-prefs" title="{{ localize 'CDE.Preferences' }}">
<i class="fas fa-gear"></i>
</button>
</div>
<div class="cde-grid two">
<div class="cde-field">
<label>{{ localize "CDE.Concept" }}</label>
<input type="text" name="system.concept" value="{{systemData.concept}}" placeholder="{{ localize 'CDE.Concept' }}" />
</div>
<div class="cde-field">
<label>{{ localize "CDE.CelestialGuardian" }}</label>
<select name="system.guardian">
{{#select systemData.guardian }}
<option value="0">{{ localize "CDE.CelestialGuardian" }}</option>
<option value="1">{{ localize "CDE.CelestialGuardian1" }}</option>
<option value="2">{{ localize "CDE.CelestialGuardian2" }}</option>
<option value="3">{{ localize "CDE.CelestialGuardian3" }}</option>
<option value="4">{{ localize "CDE.CelestialGuardian4" }}</option>
<option value="5">{{ localize "CDE.CelestialGuardian5" }}</option>
{{/select}}
</select>
</div>
</div>
<div class="cde-quick-meta">
<div class="cde-tag">
<span class="cde-pill character">{{ localize "CDE.PCName" }}</span>
<span>Chroniques de l'Étrange</span>
</div>
<div class="cde-initiative-card">
<label>{{ localize "CDE.Initiative" }}</label>
<div class="cde-initiative-controls">
<img
class="click-initiative"
data-libel-id="minus"
src="systems/fvtt-chroniques-de-l-etrange/images/kung-fu/kung-fu-2-moins.png"
title="{{ localize 'CDE.MinusInitiative' }}"
alt="Init -"
/>
<span class="cde-initiative-value">{{systemData.initiative}}</span>
<img
class="click-initiative"
data-libel-id="create"
src="systems/fvtt-chroniques-de-l-etrange/images/kung-fu/kung-fu-2.png"
title="{{ localize 'CDE.DeterminateInitiative' }}"
alt="Init set"
/>
<img
class="click-initiative"
data-libel-id="plus"
src="systems/fvtt-chroniques-de-l-etrange/images/kung-fu/kung-fu-2-plus.png"
title="{{ localize 'CDE.PlusInitiative' }}"
alt="Init +"
/>
</div>
</div>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="nghang">{{ localize "CDE.NgHang" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="skills">{{ localize "CDE.Skills" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="treasures">{{ localize "CDE.Treasures" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="magics">{{ localize "CDE.Magics" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="spells">{{ localize "CDE.Spells" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="kungfus">{{ localize "CDE.KungFu" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="items">{{ localize "CDE.Items" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="nghang">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-nghang.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="skills">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-skills.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="treasures">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-treasures.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="magics">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-magics.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="spells">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-spells.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="kungfus">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-kungfus.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="items">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-character-items.html"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,73 @@
<form class="flexcol cde-sheet cde-actor {{cssClass}}" autocomplete="off">
{{log 'loksyu-sheet' this}}
<header class="cde-header cde-actor-header">
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" />
<div class="header-fields">
<h1 class="charname">
<input name="name" type="text" value="{{actor.name}}" placeholder="{{ localize 'CDE.LoksyuName' }}" />
</h1>
<div class="cde-tag">
<span class="cde-pill spell">{{ localize "CDE.Loksyu" }}</span>
<span>{{ localize "CDE.ModernJapan" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="loksyu">{{ localize "CDE.Loksyu" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="loksyu">
<div class="cde-card loksyu_wrap">
<div class="schema">
<div class="logo">
<img
src="systems/fvtt-chroniques-de-l-etrange/images/logo_jeu.png"
title="奇闻异事 ● Hong Kong Les Chroniques de l'&Eacute;trange ● R.dHuissier & C.Lameire ● Antre Monde &Eacute;ditions"
alt="Logo"
/>
</div>
<div class="wood-yang">
<input type="number" name="system.wood.yang.value" value="{{systemData.wood.yang.value}}" title="{{ localize 'CDE.WoodYang' }}" />
</div>
<div class="wood-yin">
<input type="number" name="system.wood.yin.value" value="{{systemData.wood.yin.value}}" title="{{ localize 'CDE.WoodYin' }}" />
</div>
<div class="metal-yang">
<input type="number" name="system.metal.yang.value" value="{{systemData.metal.yang.value}}" title="{{ localize 'CDE.MetalYang' }}" />
</div>
<div class="fire-yang">
<input type="number" name="system.fire.yang.value" value="{{systemData.fire.yang.value}}" title="{{ localize 'CDE.FireYang' }}" />
</div>
<div class="earth-yang">
<input type="number" name="system.earth.yang.value" value="{{systemData.earth.yang.value}}" title="{{ localize 'CDE.EarthYang' }}" />
</div>
<div class="earth-yin">
<input type="number" name="system.earth.yin.value" value="{{systemData.earth.yin.value}}" title="{{ localize 'CDE.EarthYin' }}" />
</div>
<div class="metal-yin">
<input type="number" name="system.metal.yin.value" value="{{systemData.metal.yin.value}}" title="{{ localize 'CDE.MetalYin' }}" />
</div>
<div class="fire-yin">
<input type="number" name="system.fire.yin.value" value="{{systemData.fire.yin.value}}" title="{{ localize 'CDE.FireYin' }}" />
</div>
<div class="water-yang">
<input type="number" name="system.water.yang.value" value="{{systemData.water.yang.value}}" title="{{ localize 'CDE.WaterYang' }}" />
</div>
<div class="water-yin">
<input type="number" name="system.water.yin.value" value="{{systemData.water.yin.value}}" title="{{ localize 'CDE.WaterYin' }}" />
</div>
</div>
<img class="loksyu-visual" src="systems/fvtt-chroniques-de-l-etrange/images/loksyu_long.png" title="Loksyu" alt="Loksyu" />
</div>
</div>
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,254 @@
<form class="flexcol cde-sheet cde-actor {{cssClass}}" autocomplete="off">
{{log 'npc-sheet' this}}
<header class="cde-header cde-actor-header">
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" />
<div class="header-fields">
<div class="cde-header-top">
<h1 class="charname">
<input name="name" type="text" value="{{actor.name}}" placeholder="{{ localize 'CDE.NPCName' }}" />
</h1>
</div>
<div class="cde-grid two">
<div class="cde-field">
<label>{{ localize "CDE.TypeOfCreature" }}</label>
<input name="system.type" type="text" value="{{systemData.type}}" placeholder="{{ localize 'CDE.TypeOfCreature' }}" />
</div>
<div class="cde-field">
<label>{{ localize "CDE.Nuisance" }}</label>
<select name="system.nuisance">
{{#select systemData.nuisance }}
<option value="0">{{ localize "CDE.Figurant" }}</option>
<option value="1">{{ localize "CDE.Minion" }}</option>
<option value="2">{{ localize "CDE.Adversary" }}</option>
<option value="3">{{ localize "CDE.Ally" }}</option>
<option value="4">{{ localize "CDE.Boss" }}</option>
<option value="5">{{ localize "CDE.Dininity" }}</option>
{{/select}}
</select>
</div>
</div>
<div class="cde-grid two">
<div class="cde-field">
<label>{{ localize "CDE.Threat" }}</label>
<select name="system.threat">
{{#select systemData.threat }}
<option value="0">{{ localize "CDE.Profane" }}</option>
<option value="1">{{ localize "CDE.Apprentice" }}</option>
<option value="2">{{ localize "CDE.Initiate" }}</option>
<option value="3">{{ localize "CDE.Accomplished" }}</option>
<option value="4">{{ localize "CDE.Reknowned" }}</option>
{{/select}}
</select>
</div>
<div class="cde-initiative-card">
<label>{{ localize "CDE.Initiative" }}</label>
<div class="cde-initiative-controls">
<img
class="click-initiative-npc"
data-libel-id="minus"
src="systems/fvtt-chroniques-de-l-etrange/images/kung-fu/kung-fu-2-moins.png"
title="{{ localize 'CDE.MinusInitiative' }}"
alt="Init -"
/>
<span class="cde-initiative-value">{{systemData.initiative}}</span>
<img
class="click-initiative-npc"
data-libel-id="create"
src="systems/fvtt-chroniques-de-l-etrange/images/kung-fu/kung-fu-2.png"
title="{{ localize 'CDE.DeterminateNPCInitiative' }}"
alt="Init set"
/>
<img
class="click-initiative-npc"
data-libel-id="plus"
src="systems/fvtt-chroniques-de-l-etrange/images/kung-fu/kung-fu-2-plus.png"
title="{{ localize 'CDE.PlusInitiative' }}"
alt="Init +"
/>
</div>
</div>
</div>
<div class="cde-tag">
<span class="cde-pill npc">{{ localize "CDE.NPCName" }}</span>
<span>Chroniques de l'Étrange</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="aptitudes">{{ localize "CDE.Aptitudes" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="supernaturals">{{ localize "CDE.SuperNatural" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="spells">{{ localize "CDE.Spells" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="kungfus">{{ localize "CDE.MartialArts" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="items">{{ localize "CDE.Items" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="aptitudes">
<div class="cde-card cde-data-table cde-aptitudes">
<div class="tab-sous-titre">{{ localize "CDE.Aptitudes" }}</div>
<table>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Physical" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input phys-apt" type="number" placeholder="0" name="system.aptitudes.physical.value" value="{{systemData.aptitudes.physical.value}}" />
</td>
<td class="specialities">
<input
class="input"
type="text"
placeholder="{{ localize 'CDE.Specialities' }}"
name="system.aptitudes.physical.speciality"
value="{{systemData.aptitudes.physical.speciality}}"
/>
</td>
</tr>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Martial" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.aptitudes.martial.value" value="{{systemData.aptitudes.martial.value}}" />
</td>
<td class="specialities">
<input
class="input"
type="text"
placeholder="{{ localize 'CDE.Specialities' }}"
name="system.aptitudes.martial.speciality"
value="{{systemData.aptitudes.martial.speciality}}"
/>
</td>
</tr>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Mental" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.aptitudes.mental.value" value="{{systemData.aptitudes.mental.value}}" />
</td>
<td class="specialities">
<input
class="input"
type="text"
placeholder="{{ localize 'CDE.Specialities' }}"
name="system.aptitudes.mental.speciality"
value="{{systemData.aptitudes.mental.speciality}}"
/>
</td>
</tr>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Social" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.aptitudes.social.value" value="{{systemData.aptitudes.social.value}}" />
</td>
<td class="specialities">
<input
class="input"
type="text"
placeholder="{{ localize 'CDE.Specialities' }}"
name="system.aptitudes.social.speciality"
value="{{systemData.aptitudes.social.speciality}}"
/>
</td>
</tr>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Spiritual" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input spir-apt" type="number" placeholder="0" name="system.aptitudes.spiritual.value" value="{{systemData.aptitudes.spiritual.value}}" />
</td>
<td class="specialities">
<input
class="input"
type="text"
placeholder="{{ localize 'CDE.Specialities' }}"
name="system.aptitudes.spiritual.speciality"
value="{{systemData.aptitudes.spiritual.speciality}}"
/>
</td>
</tr>
</table>
<table>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Vitality" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.vitality.value" value="{{systemData.vitality.value}}" />
</td>
<td class="image2">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<div>-{{systemData.vitality.calcul}}-</div>
</td>
<td class="specialities">
<input class="input" type="text" placeholder="{{ localize 'CDE.Notes' }}" name="system.vitality.note" value="{{systemData.vitality.note}}" />
</td>
</tr>
<tr>
<td class="label"><b>&nbsp;{{ localize "CDE.Hei" }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.hei.value" value="{{systemData.hei.value}}" />
</td>
<td class="image2">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<div>-{{systemData.hei.calcul}}-</div>
</td>
<td class="specialities">
<input class="input" type="text" placeholder="{{ localize 'CDE.Notes' }}" name="system.hei.note" value="{{systemData.hei.note}}" />
</td>
</tr>
</table>
<div class="dragon">
<img
class="logo"
src="systems/fvtt-chroniques-de-l-etrange/images/logo_dore.png"
title="奇闻异事 ● Hong Kong Les Chroniques de l'&Eacute;trange ● R.dHuissier & C.Lameire ● Antre Monde &Eacute;ditions"
alt="Logo"
/>
</div>
</div>
</div>
<div class="tab" data-group="primary" data-tab="supernaturals">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-npc-supernaturals.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="spells">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-npc-spells.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="kungfus">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-npc-kungfus.html"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="items">
<div class="cde-card cde-data-table">
{{> "systems/fvtt-chroniques-de-l-etrange/templates/actor/parts/cde-npc-items.html"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,46 @@
<form class="flexcol cde-sheet cde-actor {{cssClass}}" autocomplete="off">
{{log 'tinji-sheet' this}}
<header class="cde-header cde-actor-header">
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" />
<div class="header-fields">
<h1 class="charname">
<input name="name" type="text" value="{{actor.name}}" placeholder="{{ localize 'CDE.TinJiName' }}" />
</h1>
<div class="cde-tag">
<span class="cde-pill supernatural">{{ localize "CDE.TinJi2" }}</span>
<span>{{ localize "CDE.ModernJapan" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="tinji">{{ localize "CDE.TinJi2" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="tinji">
<div class="cde-card cde-centered-card tinji_wrap">
<div class="tinji schema">
<div class="tinji-value">
<label>{{ localize "CDE.TinJi2" }}</label>
<input type="number" name="system.value" value="{{systemData.value}}" title="{{ localize 'CDE.TinJi2' }}" />
</div>
<img
class="logo"
src="systems/fvtt-chroniques-de-l-etrange/images/logo_jeu.png"
title="奇闻异事 ● Hong Kong Les Chroniques de l'&Eacute;trange ● R.dHuissier & C.Lameire ● Antre Monde &Eacute;ditions"
alt="Logo"
/>
</div>
<img class="tinji-visual" src="systems/fvtt-chroniques-de-l-etrange/images/tinji.webp" title="Tin Ji" alt="Tin Ji" />
</div>
</div>
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each equipments as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.ItemEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.ItemDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.ItemCreate' }}" data-action="create" data-type="item"><i class="fas fa-plus"></i> {{ localize "CDE.ItemCreate" }}</a>
</p>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each kungfus as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.KFEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.KFDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.KFCreate' }}" data-action="create" data-type="kungfu"><i class="fas fa-plus"></i> {{ localize "CDE.KFCreate" }}</a>
</p>

View File

@@ -0,0 +1,139 @@
<div class="tab-sous-titre">{{ localize "CDE.Components2" }}</div>
<table>
<tr>
<td style="width: 2.2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-1.png" alt="Die" /></td>
<td class="value" style="width: 25%">
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}1" name="system.component.one.value" value="{{systemData.component.one.value}}" />
</td>
<td style="width: 2.2%">&nbsp;</td>
<td style="width: 2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-6.png" alt="Die" /></td>
<td class="value" style="width: 25%" ;>
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}6" name="system.component.six.value" value="{{systemData.component.six.value}}" />
</td>
</tr>
<tr>
<td style="width: 2.2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-2.png" alt="Die" /></td>
<td class="value" style="width: 25%">
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}2" name="system.component.two.value" value="{{systemData.component.two.value}}" />
</td>
<td style="width: 2.2%">&nbsp;</td>
<td style="width: 2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-7.png" alt="Die" /></td>
<td class="value" style="width: 25%" ;>
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}7" name="system.component.seven.value" value="{{systemData.component.seven.value}}" />
</td>
</tr>
<tr>
<td style="width: 2.2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-3.png" alt="Die" /></td>
<td class="value" style="width: 25%">
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}3" name="system.component.three.value" value="{{systemData.component.three.value}}" />
</td>
<td style="width: 2.2%">&nbsp;</td>
<td style="width: 2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-8.png" alt="Die" /></td>
<td class="value" style="width: 25%" ;>
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}8" name="system.component.eight.value" value="{{systemData.component.eight.value}}" />
</td>
</tr>
<tr>
<td style="width: 2.2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-4.png" alt="Die" /></td>
<td class="value" style="width: 25%">
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}4" name="system.component.four.value" value="{{systemData.component.four.value}}" />
</td>
<td style="width: 2.2%">&nbsp;</td>
<td style="width: 2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-9.png" alt="Die" /></td>
<td class="value" style="width: 25%" ;>
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}9" name="system.component.nine.value" value="{{systemData.component.nine.value}}" />
</td>
</tr>
<tr>
<td style="width: 2.2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-5.png" alt="Die" /></td>
<td class="value" style="width: 25%">
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}5" name="system.component.five.value" value="{{systemData.component.five.value}}" />
</td>
<td style="width: 2.2%">&nbsp;</td>
<td style="width: 2%" class="image"><img src="systems/fvtt-chroniques-de-l-etrange/images/d10-0.png" alt="Die" /></td>
<td class="value" style="width: 25%" ;>
<input class="input" type="text" placeholder="{{ localize 'CDE.Component' }}0" name="system.component.zero.value" value="{{systemData.component.zero.value}}" />
</td>
</tr>
</table>
<div class="chancethrow" style="display: flex; justify-content: center; align-items: center" ;>
<img
style="width: 27px"
class="click"
data-libel-id="randomize-randomize"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-10.png"
title="{{ localize 'CDE.Die' }}{{ localize 'CDE.ChanceThrow' }}"
alt="Die"
/>
<label class="label"><b>&nbsp;{{ localize "CDE.ChanceThrow" }}</b></label>
</div>
<div class="tab-sous-titre">{{ localize "CDE.TypesOfMagic" }}</div>
{{#each systemData.magics as |magic key|}}
{{log 'magic' key magic}}
<table class="{{getMagicBackground key}}">
<tr>
<td class="check visible">
<input
type="checkbox"
name="system.magics.{{key}}.visible"
{{
checked
magic.visible
}}
title="{{ localize 'CDE.Visible' }}"
/>
</td>
<td class="click" data-libel-id="{{key}}-magic">
<img
id="system.magics.{{@key}}.click"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-10.png"
title="{{ localize 'CDE.Die' }}{{getMagicLabel key}}"
alt="{{ getMagicAspectLabel key }}"
/>
</td>
<td class="label"><b>&nbsp;&nbsp;{{getMagicLabel key}}</b></td>
<td class="image">
<img id="system.magics.{{@key}}.cercle.value" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Circle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.magics.{{@key}}.value" value="{{magic.value}}" />
</td>
<td class="label"><b>&nbsp;&nbsp;,&nbsp;{{ getMagicAspectLabel key }}</b></td>
<td>
{{#if magic.visible}}
<table>
{{#each magic.speciality as |special key2|}}
{{log 'speciality' special key key2}}
<tr class="clickondie">
<td class="check">
<input
type="checkbox"
name="system.magics.{{key}}.speciality.{{key2}}.check"
{{
checked
special.check
}}
title="{{ localize 'CDE.PracticeSpecialty' }}{{ getMagicSpecialityLabel key key2 }}"
/>
</td>
<td class="label"><b>{{ getMagicSpecialityLabel key key2 }}</b></td>
<td class="icon-element"><img src="{{getMagicSpecialityElementIcon key key2}}" title="{{ getMagicSpecialityLabelElement key key2 }}" alt="{{getMagicSpecialityLabelElement key key2}}" /></td>
<td class="{{getMagicSpecialityClassIcon key key2}}"><img src="{{ getMagicSpecialityIcon key key2 }}" title="{{getMagicSpecialityLabelIcon key key2}}" alt="{{getMagicSpecialityLabelIcon key key2}}" /></td>
<td class="click icon-d" data-libel-id="{{key}}-magicspecial-{{key2}}">
<img
id="{{system.magics.magic.speciality.special.click}}"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-10.png"
title="{{ localize 'CDE.DieSP' }}{{ getMagicSpecialityLabel key key2 }}"
alt="Die"
/>
</td>
</tr>
{{/each}}
</table>
{{/if}}
</td>
</tr>
</table>
{{/each}}

View File

@@ -0,0 +1,87 @@
<div class="schema">
<img
class="logo"
src="systems/fvtt-chroniques-de-l-etrange/images/logo_jeu.png"
title="奇闻异事 ● Hong Kong Les Chroniques de l'&Eacute;trange ● R.dHuissier & C.Lameire ● Antre Monde &Eacute;ditions"
alt="Logo"
/>
<div class="clickondie nghangpart1">
<div class="fire">
<img
class="click2"
data-libel-id="fire-aspect"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png"
title="{{ localize 'CDE.Die' }}{{ localize 'CDE.Fire' }}"
alt="Die"
onmouseout="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png';"
;
onmouseover="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-10.png';"
/>
</div>
<input type="number" name="system.aspect.fire.value" value="{{systemData.aspect.fire.value}}" title="{{ localize 'CDE.Fire' }}{{ localize 'CDE.FireQualities' }}" />
</div>
<div class="clickondie nghangpart2">
<div class="wood">
<img
class="click2"
data-libel-id="wood-aspect"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png"
title="{{ localize 'CDE.Die' }}{{ localize 'CDE.Wood' }}"
alt="Die"
onmouseout="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png';"
;
onmouseover="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-10.png';"
/>
</div>
<input type="number" name="system.aspect.wood.value" value="{{systemData.aspect.wood.value}}" title="{{ localize 'CDE.Wood' }}{{ localize 'CDE.WoodQualities' }}" />
</div>
<div class="nghangpart3"></div>
<div class="clickondie nghangpart4">
<div class="earth">
<img
class="click2"
data-libel-id="earth-aspect"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png"
title="{{ localize 'CDE.Die' }}{{ localize 'CDE.Earth' }}"
alt="Die"
onmouseout="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png';"
;
onmouseover="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-10.png';"
/>
</div>
<input type="number" name="system.aspect.earth.value" value="{{systemData.aspect.earth.value}}" title="{{ localize 'CDE.Earth' }}{{ localize 'CDE.EarthQualities' }}" />
</div>
<div class="clickondie nghangpart5">
<div class="water">
<img
class="click2"
data-libel-id="water-aspect"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png"
title="{{ localize 'CDE.Die' }}{{ localize 'CDE.Water' }}"
alt="Die"
onmouseout="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png';"
;
onmouseover="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-10.png';"
/>
</div>
<input type="number" name="system.aspect.water.value" value="{{systemData.aspect.water.value}}" title="{{ localize 'CDE.Water' }}{{ localize 'CDE.WaterQualities' }}" />
</div>
<div class="nghangpart6"></div>
<div class="clickondie nghangpart7">
<div class="metal">
<img
class="click2"
data-libel-id="metal-aspect"
src="systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png"
title="{{ localize 'CDE.Die' }}{{ localize 'CDE.Metal' }}"
alt="Die"
onmouseout="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png';"
;
onmouseover="this.src='/systems/fvtt-chroniques-de-l-etrange/images/d10-10.png';"
/>
</div>
<input type="number" name="system.aspect.metal.value" value="{{systemData.aspect.metal.value}}" title="{{ localize 'CDE.Metal' }}{{ localize 'CDE.MetalQualities' }}" />
</div>
</div>
<img src="systems/fvtt-chroniques-de-l-etrange/images/nghang_long.png" title="Ng Hang" alt="Ng Hang" />

View File

@@ -0,0 +1,42 @@
<div class="tab-sous-titre">{{ localize "CDE.Skills" }}</div>
<table>
{{#each systemData.skills as |skill key|}}
<tr class="clickondie">
<td class="click" data-libel-id="{{key}}-skill">
<img class="d1click" src="systems/fvtt-chroniques-de-l-etrange/images/d10-10.png" title="{{ localize 'CDE.Die' }}{{ localize skill.label }}" alt="Die" />
</td>
<td class="label"><b>&nbsp;{{ localize skill.label }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.skills.{{@key}}.value" value="{{skill.value}}" />
</td>
<td class="specialities">
<input class="input" type="text" placeholder="{{ localize 'CDE.Specialities' }}…" name="system.skills.{{@key}}.specialities" value="{{skill.specialities}}" />
</td>
<td class="bonus"><b>+1 D</b></td>
<td class="click" data-libel-id="{{key}}-special"><img class="d2click" src="systems/fvtt-chroniques-de-l-etrange/images/d10-10.png" title="{{ localize 'CDE.DieSP' }}" alt="Die" /></td>
</tr>
{{/each}}
</table>
<div class="tab-sous-titre">{{ localize "CDE.Resources" }}</div>
<table>
{{#each systemData.resources as |resource key|}}
<tr class="clickondie">
<td class="noclick" data-libel-id="{{key}}-resource"><img class="d1click" src="systems/fvtt-chroniques-de-l-etrange/images/d10-transparent.png" title="" alt="NoDie" /></td>
<td class="label"><b>&nbsp;{{ localize resource.label }}</b></td>
<td class="image">
<img src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="Cercle" alt="Cercle" />
<div class="stick">&nbsp;</div>
<input class="input" type="number" placeholder="0" name="system.resources.{{@key}}.value" value="{{resource.value}}" />
</td>
<td class="specialities">
<input class="input" type="text" placeholder="{{ localize 'CDE.Fields' }}…" name="system.resources.{{@key}}.specialities" value="{{resource.specialities}}" />
</td>
<td class="bonus"><b>+1 D</b></td>
<td class="click" data-libel-id="{{key}}-field"><img class="d2click" src="systems/fvtt-chroniques-de-l-etrange/images/d10-10.png" title="{{ localize 'CDE.DieDM' }}" alt="Die" /></td>
<td class="check"><input type="checkbox" name="system.resources.{{@key}}.debt" {{checked resource.debt}} title="{{ localize 'CDE.Debt' }}{{ localize resource.label }}" /></td>
</tr>
{{/each}}
</table>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each spells as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.SpellEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.SpellDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.SpellCreate' }}" data-action="create" data-type="spell"><i class="fas fa-plus"></i> {{ localize "CDE.SpellCreate" }}</a>
</p>

View File

@@ -0,0 +1,98 @@
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.HEI" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.Essence2" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.YANG-YIN" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
{{ localize "CDE.Max-Present-Present-Max" }}
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img style="width: 7%;margin-top: 0px;" class="cercle-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
<img style="width: 17%;margin-left: -15px;" class="cercle-grand" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<img style="width: 15%;margin-top: 0px;" class="cercle-yinyang" src="systems/fvtt-chroniques-de-l-etrange/images/yin_yang.png" title="Yin Yang" alt="Yin Yang">
<img style="width: 17%;position: relative;" class="cercle-grand" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<img style="width: 7%;margin-left: -15px;" class="cercle-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
</div>
<div style ="position: relative;margin-top: -90px;" class="hei-yang">
<input style="border: none; width: 40px;height: 28px;margin-left: 150px;margin-top: 17px;text-align: center;font-size: 1.5em;" class="input heiyang.max" type="number" name="system.threetreasures.heiyang.max" value="{{systemData.threetreasures.heiyang.max}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 27px;text-align: center;font-size: 1.5em;" class="input heiyang.value" type="number" name="system.threetreasures.heiyang.value" value="{{systemData.threetreasures.heiyang.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 185px;text-align: center;font-size: 1.5em;" class="input heiyin.value" type="number" name="system.threetreasures.heiyin.value" value="{{systemData.threetreasures.heiyin.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 25px;text-align: center;font-size: 1.5em;" class="input heiyin.max" type="number" name="system.threetreasures.heiyin.max" value="{{systemData.threetreasures.heiyin.max}}"/>
</div>
&nbsp;<br>&nbsp;
&nbsp;<br>&nbsp;
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.SAN-ZING" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.MentalHealth-PhysicalHealth" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
{{ localize "CDE.Max-Present-Malus-Present-Max" }}
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img style="width: 7%;margin-top: 0px;" class="cercle-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
<img style="width: 17%;margin-left: -15px;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<b>--</b>
<img style="width: 17%;position: relative;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<img style="width: 7%;margin-left: -15px;" class="cercle.petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
</div>
<div style ="position: relative;margin-top: -90px;" class="hei-yang">
<input style="border: none; width: 40px;height: 28px;margin-left: 195px;margin-top: 17px;text-align: center;font-size: 1.5em;" class="input san1.max" type="number" name="system.threetreasures.dicelevel.level0d.san.max" value="{{systemData.threetreasures.dicelevel.level0d.san.max}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 30px;text-align: center;font-size: 1.5em;" class="input san1.value" type="number" name="system.threetreasures.dicelevel.level0d.san.value" value="{{systemData.threetreasures.dicelevel.level0d.san.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 90px;text-align: center;font-size: 1.5em;" class="input zing1.value" type="number" name="system.threetreasures.dicelevel.level0d.zing.value" value="{{systemData.threetreasures.dicelevel.level0d.zing.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 25px;text-align: center;font-size: 1.5em;" class="input zing1.max" type="number" name="system.threetreasures.dicelevel.level0d.zing.max" value="{{systemData.threetreasures.dicelevel.level0d.zing.max}}"/>
</div>
&nbsp;<br>&nbsp;
&nbsp;<br>&nbsp;
<div style="display: flex; justify-content: center; align-items: center;">
<img style="width: 7%;margin-top: 0px;" class="cercle-tres-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
<img style="width: 17%;margin-left: -15px;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<b>- 1 D</b>
<img style="width: 17%;position: relative;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<img style="width: 7%;margin-left: -15px;" class="cercle-tres_petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
</div>
<div style ="position: relative;margin-top: -90px;" class="hei-yang">
<input style="border: none; width: 40px;height: 28px;margin-left: 185px;margin-top: 17px;text-align: center;font-size: 1.5em;" class="input san2.max" type="number" name="system.threetreasures.dicelevel.level1d.san.max" value="{{systemData.threetreasures.dicelevel.level1d.san.max}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 30px;text-align: center;font-size: 1.5em;" class="input san2.value" type="number" name="system.threetreasures.dicelevel.level1d.san.value" value="{{systemData.threetreasures.dicelevel.level1d.san.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 110px;text-align: center;font-size: 1.5em;" class="input zing2.value" type="number" name="system.threetreasures.dicelevel.level1d.zing.value" value="{{systemData.threetreasures.dicelevel.level1d.zing.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 25px;text-align: center;font-size: 1.5em;" class="input zing2.max" type="number" name="system.threetreasures.dicelevel.level1d.zing.max" value="{{systemData.threetreasures.dicelevel.level1d.zing.max}}"/>
</div>
&nbsp;<br>&nbsp;
&nbsp;<br>&nbsp;
<div style="display: flex; justify-content: center; align-items: center;">
<img style="width: 7%;margin-top: 0px;" class="cercle-tres-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
<img style="width: 17%;margin-left: -15px;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<b>- 2 D</b>
<img style="width: 17%;position: relative;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
<img style="width: 7%;margin-left: -15px;" class="cercle-tres-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Max" }}" alt="Cercle">
</div>
<div style ="position: relative;margin-top: -90px;" class="hei-yang">
<input style="border: none; width: 40px;height: 28px;margin-left: 185px;margin-top: 17px;text-align: center;font-size: 1.5em;" class="input san3.max" type="number" name="system.threetreasures.dicelevel.level2d.san.max" value="{{systemData.threetreasures.dicelevel.level2d.san.max}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 30px;text-align: center;font-size: 1.5em;" class="input san3.value" type="number" name="system.threetreasures.dicelevel.level2d.san.value" value="{{systemData.threetreasures.dicelevel.level2d.san.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 110px;text-align: center;font-size: 1.5em;" class="input zing3.value" type="number" name="system.threetreasures.dicelevel.level2d.zing.value" value="{{systemData.threetreasures.dicelevel.level2d.zing.value}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 25px;text-align: center;font-size: 1.5em;" class="input zing3.max" type="number" name="system.threetreasures.dicelevel.level2d.zing.max" value="{{systemData.threetreasures.dicelevel.level2d.zing.max}}"/>
</div>
&nbsp;<br>&nbsp;
&nbsp;<br>&nbsp;
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.PTAO" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
<b>{{ localize "CDE.Experience" }}</b>
</div>
<div style="display: flex; justify-content: center; align-items: center;text-align: center;">
{{ localize "CDE.Total-Present" }}
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img style="width: 7%;margin-top: 0px;" class="cercle-tres-petit" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Total" }}" alt="Cercle">
<img style="width: 17%;margin-left: -15px;" class="cercle-moyen" src="systems/fvtt-chroniques-de-l-etrange/images/cercle.png" title="{{ localize "CDE.Present" }}" alt="Cercle">
</div>
<div style ="position: relative;margin-top: -90px;" class="hei-yang">
<input style="border: none; width: 40px;height: 28px;margin-left: 278px;margin-top: 17px;text-align: center;font-size: 1.5em;" class="input experience.max" type="number" name="system.experience.max" value="{{systemData.experience.max}}"/>
<input style="border: none; width: 40px;height: 28px;margin-left: 32px;text-align: center;font-size: 1.5em;" class="input experience.value" type="number" name="system.experience.value" value="{{systemData.experience.value}}"/>
</div>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each equipments as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.ItemEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.ItemDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.ItemCreate' }}" data-action="create" data-type="item"><i class="fas fa-plus"></i> {{ localize "CDE.ItemCreate" }}</a>
</p>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each kungfus as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.KFEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.KFDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.KFCreate' }}" data-action="create" data-type="kungfu"><i class="fas fa-plus"></i> {{ localize "CDE.KFCreate" }}</a>
</p>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each spells as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.SpellEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.SpellDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.SpellCreate' }}" data-action="create" data-type="spell"><i class="fas fa-plus"></i> {{ localize "CDE.SpellCreate" }}</a>
</p>

View File

@@ -0,0 +1,15 @@
<ol class="item-list">
{{#each supernaturals as |item id|}}
<li class="item flexrow" data-item-id="{{item._id}}">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24" />
<h4 class="item-name">{{item.name}}</h4>
<div class="item-controls">
<a class="item-control" title="{{ localize 'CDE.SupernaturalEdit' }}" data-action="edit"><i class="fas fa-edit"></i></a>
<a class="item-control" title="{{ localize 'CDE.SupernaturalDelete' }}" data-action="delete"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ol>
<p>
<a class="item-control" title="{{ localize 'CDE.SupernaturalCreate' }}" data-action="create" data-type="supernatural"><i class="fas fa-plus"></i> {{ localize "CDE.SupernaturalCreate" }}</a>
</p>

View File

@@ -0,0 +1,437 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
</header>
{{!-- Sheet Body --}}
<section class="sheet-body">
{{!-- Frame --}}
<div class="frame">
{{#if (eq aspect 'wood')}}
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ successesdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_bois.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseSuccesses" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ auspiciousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_feu.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseAuspiciousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ noxiousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_eau.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseNoxiousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ loksyudice }}&nbsp;{{ loksyurepartition }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_terre.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseLoksyu" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ tinjidice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_metal.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseTinJi" }}</b></span>
</div>
</td>
</tr>
</table>
{{/if}}
{{#if (eq aspect 'fire')}}
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ successesdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_feu.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseSuccesses" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ auspiciousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_terre.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseAuspiciousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ noxiousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_bois.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseNoxiousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ loksyudice }}&nbsp;{{ loksyurepartition }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_metal.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseLoksyu" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ tinjidice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_eau.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseTinJi" }}</b></span>
</div>
</td>
</tr>
</table>
{{/if}}
{{#if (eq aspect 'earth')}}
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ successesdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_terre.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseSuccesses" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ auspiciousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_metal.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseAuspiciousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ noxiousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_feu.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseNoxiousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ loksyudice }}&nbsp;{{ loksyurepartition }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_eau.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseLoksyu" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ tinjidice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_bois.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseTinJi" }}</b></span>
</div>
</td>
</tr>
</table>
{{/if}}
{{#if (eq aspect 'metal')}}
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ successesdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_metal.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseSuccesses" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ auspiciousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_eau.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseAuspiciousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ noxiousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_terre.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseNoxiousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ loksyudice }}&nbsp;{{ loksyurepartition }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_bois.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseLoksyu" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ tinjidice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_feu.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseTinJi" }}</b></span>
</div>
</td>
</tr>
</table>
{{/if}}
{{#if (eq aspect 'water')}}
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ successesdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_eau.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(0, 159, 226, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseSuccesses" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ auspiciousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_bois.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(65, 164, 54, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseAuspiciousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 25px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ noxiousdice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_metal.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="label" style="font-size: 20px; color: rgba(112, 112, 110, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseNoxiousDice" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ loksyudice }}&nbsp;{{ loksyurepartition }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_feu.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(205, 23, 26, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseLoksyu" }}</b></span>
</div>
</td>
</tr>
<tr style="background-color: transparent;">
<td>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 25px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ tinjidice }}</b></span>
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<img class="aspect" style="border: 0px; width:10%;" src="systems/fvtt-chroniques-de-l-etrange/images/cde_terre.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 20px; color: rgba(168, 87, 71, 1); text-align: center;"><b>{{ localize "CDE.UpperCaseTinJi" }}</b></span>
</div>
</td>
</tr>
</table>
{{/if}}
<div class="app">
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td style="width: 18.75%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d1 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d2 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d3 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d4 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d5 }}</b></span>
</td>
</tr>
<tr style="background-color: transparent;">
<td style="width: 18.75%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-1.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-2.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-3.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-4.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-5.png" />
</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td style="width: 18.65%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d6 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d7 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d8 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d9 }}</b></span>
</td>
<td style="width: 18%;">
<span style="display: flex; justify-content: center; align-items: center; font-size: 25px; text-align: center;" class="value"><b>{{ d0 }}</b></span>
</td>
</tr>
<tr style="background-color: transparent;">
<td style="width: 18.65%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-6.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-7.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-8.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-9.png" />
</td>
<td style="width: 18%;">
<img class="plate" style="width: 100%; border: 0px;" src="systems/fvtt-chroniques-de-l-etrange/images/dice-plate/d10-0.png" />
</td>
</tr>
</table>
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,152 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.MagicPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
{{!-- Frame --}}
<div class="frame">
<table style="background-color: transparent; border-top: 0px; border-bottom: 1px; border-color: transparent transparent black;">
<tr style="background-color: transparent;">
<td>
<b>{{ localize "CDE.OneMagicRoll" }}</b>
</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td class="label col1-5" style="width: 20%">&nbsp;</td>
<td class="image col2-5">
<!-- style="display: flex; justify-content: center; align-items: center;" -->
<div style="display: flex; justify-content: center; align-items: center;">
<img class="bigsquare" style="border: 0px; z-index: 4;" src="systems/fvtt-chroniques-de-l-etrange/images/bigsquare.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 30px; text-align: center; margin-top: -47px; z-index: 4;"><b>{{ numberofdice }}</b></span>
</div>
</td>
<td class="label col3-5">&nbsp;</td>
<td class="label col4-5" style="font-size: 30px"><b>&nbsp;+&nbsp;</b><b>1&nbsp;+</b></td>
<td class="label col5-5">&nbsp;</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td class="label col1-5">{{ localize "CDE.AspectSkill" }}</td>
<td class="label col2-5">&nbsp;</td>
<td class="label col3-5">{{ localize "CDE.BonusMalus" }}</td>
<td class="label col4-5">&nbsp;</td>
<td class="label col5-5">{{ localize "CDE.BonusAuspiciousDice" }}</td>
</tr>
<tr style="background-color: transparent;">
<td class="select col1-5">
<select name="aspectskill">
{{#select aspectskill }}
<option value="0">{{ localize "CDE.Metal" }}</option>
<option value="1">{{ localize "CDE.Water" }}</option>
<option value="2">{{ localize "CDE.Earth" }}</option>
<option value="3">{{ localize "CDE.Fire" }}</option>
<option value="4">{{ localize "CDE.Wood" }}</option>
{{/select}}
</select>
</td>
<td class="label col2-5" style="font-size: 25px;">+</td>
<td class="value col3-5"><input class="input" style="text-align: center; width: 60px;" type="number" name="bonusmalusskill" value="{{bonusmalusskill}}"/></td>
<td class="label col4-5">&nbsp;</td>
<td class="select col5-5">
<select name="bonusauspiciousdice">
{{#select bonusauspiciousdice }}
<option value="0">0</option>
<option value="1">+1&nbsp;{{ localize "CDE.AuspiciousDie" }}</option>
<option value="2">+2&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="3">+3&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="4">+4&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="5">+5&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="6">+6&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="7">+7&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="8">+8&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="9">+9&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="10">+10&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="11">+11&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="12">+12&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="13">+13&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="14">+14&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="15">+15&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
{{/select}}
</select>
</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent; margin-top: -10px;">
<tr style="background-color: transparent;">
<td class="small">
<small><i class="click-prefs fas fa-alert"></i>&nbsp;<i>{{ localize "CDE.DoNotModify" }}</i></small>
</td>
</tr>
</table>
<br>
<table style="background-color: transparent; border-top: 0px; border-bottom: 1px; border-color: transparent transparent black;">
<tr style="background-color: transparent;">
<td>
<b>{{ localize "CDE.TwoPowerOfSpell" }}</b>
</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td class="label col1-5">{{ localize "CDE.AspectSpeciality" }}</td>
<td class="label col2-5">&nbsp;</td>
<td class="label col3-5">{{ localize "CDE.RollDifficulty" }}</td>
<td class="label col4-5">&nbsp;</td>
<td class="label col5-5">{{ localize "CDE.BonusMalus" }}</td>
</tr>
<tr style="background-color: transparent;">
<td class="select col1-5">
<select name="aspectspeciality">
{{#select aspectspeciality }}
<option value="0">{{ localize "CDE.Metal" }}</option>
<option value="1">{{ localize "CDE.Water" }}</option>
<option value="2">{{ localize "CDE.Earth" }}</option>
<option value="3">{{ localize "CDE.Fire" }}</option>
<option value="4">{{ localize "CDE.Wood" }}</option>
{{/select}}
</select>
</td>
<td class="label col2-5" style="font-size: 25px;"></td>
<td class="value col3-5"><input class="input" style="text-align: center; width: 60px;" type="number" name="rolldifficulty" value="{{rolldifficulty}}"/></td>
<td class="label col4-5" style="font-size: 25px;">+</td>
<td class="value col3-5"><input class="input" style="text-align: center; width: 60px;" type="number" name="bonusmalusspeciality" value="{{bonusmalusspeciality}}"/></td>
</tr>
</table>
<table style="border: 0px; background-color: transparent; margin-top: -10px;">
<tr style="background-color: transparent;">
<td class="small" style="margin-top: -5px">
<small><i class="click-prefs fas fa-alert"></i>&nbsp;<i>{{ localize "CDE.DoNotModify" }}</i></small>
</td>
</tr>
</table>
<br>&nbsp;<br>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<b>{{ localize "CDE.TypeOfThrow" }}</b>
<td class="select col 1-2">
<select name="typeofthrow">
{{#select typeofthrow }}
<option value="0">{{ localize "CDE.Everybody" }}</option>
<option value="1">{{ localize "CDE.JustDMAndMe" }}</option>
<option value="2">{{ localize "CDE.DMOnly" }}</option>
<option value="3">{{ localize "CDE.MeOnly" }}</option>
{{/select}}
</select>
</td>
</tr>
</table>
</div>
</section>
</form>

View File

@@ -0,0 +1,34 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
>
{{!-- Frame --}}
<div class="frame">
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<b>{{ localize "CDE.TypeOfThrow" }}</b>
<td>
<select name="choice">
{{#select choice }}
<option value="0">{{ localize "CDE.Everybody" }}</option>
<option value="1">{{ localize "CDE.JustDMAndMe" }}</option>
<option value="2">{{ localize "CDE.DMOnly" }}</option>
<option value="3">{{ localize "CDE.MeOnly" }}</option>
{{/select}}
</select>
</td>
<td class="check"><input type="checkbox" name="check" {{ checked check }} title="" /><b>{{ localize "CDE.TypeOfThrowCheck" }}</b></td>
</tr>
</table>
</div>
</section>
</form>

View File

@@ -0,0 +1,102 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
>
{{!-- Frame --}}
<div class="frame">
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td class="label col1-5">&nbsp;</td>
<td class="image col2-5">
<!-- style="display: flex; justify-content: center; align-items: center;" -->
<div style="display: flex; justify-content: center; align-items: center;">
<img class="bigsquare" style="border: 0px; z-index: 4;" src="systems/fvtt-chroniques-de-l-etrange/images/bigsquare.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 30px; text-align: center; margin-top: -47px; z-index: 4;"><b>{{ numberofdice }}</b></span>
</div>
</td>
<td class="label col3-5">&nbsp;</td>
<td class="label col4-5" style="font-size: 30px"><b>&nbsp;+&nbsp;</b></td>
<td class="label col5-5">&nbsp;</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td class="label col1-3">{{ localize "CDE.Aspect" }}</td>
<td class="label col2-3">&nbsp;</td>
<td class="label col3-3">{{ localize "CDE.BonusMalus" }}</td>
</tr>
<tr style="background-color: transparent;">
<td class="select col1-3">
<select name="aspect">
{{#select aspect }}
<option value="0">{{ localize "CDE.Metal" }}</option>
<option value="1">{{ localize "CDE.Water" }}</option>
<option value="2">{{ localize "CDE.Earth" }}</option>
<option value="3">{{ localize "CDE.Fire" }}</option>
<option value="4">{{ localize "CDE.Wood" }}</option>
{{/select}}
</select>
</td>
<td class="label col2-3" style="font-size: 25px">&nbsp;+&nbsp;</td>
<td class="value col3-3"><input class="input" style="text-align: center; width: 60px;" type="number" name="bonusmalus" value="{{bonusmalus}}"/></td>
</tr style="background-color: transparent;">
</table>
<table style="border: 0px; background-color: transparent;">
<tr>
<td class="label col123 totheleft">{{ localize "CDE.BonusAuspiciousDice" }}</td>
</tr>
<tr style="background-color: transparent;">
<td class="select col1-1">
<select name="bonusauspiciousdice">
{{#select bonusauspiciousdice }}
<option value="0">0</option>
<option value="1">+1&nbsp;{{ localize "CDE.AuspiciousDie" }}</option>
<option value="2">+2&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="3">+3&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="4">+4&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="5">+5&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="6">+6&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="7">+7&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="8">+8&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="9">+9&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="10">+10&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="11">+11&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="12">+12&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="13">+13&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="14">+14&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="15">+15&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
{{/select}}
</select>
</td>
</tr>
</table>
<br>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<b>{{ localize "CDE.TypeOfThrow" }}</b>
<td class="select col 1-2">
<select name="typeofthrow">
{{#select typeofthrow }}
<option value="0">{{ localize "CDE.Everybody" }}</option>
<option value="1">{{ localize "CDE.JustDMAndMe" }}</option>
<option value="2">{{ localize "CDE.DMOnly" }}</option>
<option value="3">{{ localize "CDE.MeOnly" }}</option>
{{/select}}
</select>
</td>
</tr>
</table>
</div>
</section>
</form>

View File

@@ -0,0 +1,102 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
>
{{!-- Frame --}}
<div class="frame">
<table style="border: 0px; background-color: transparent;" >
<tr style="background-color: transparent;">
<td class="label col1-5" style="width: 20%;">&nbsp;</td>
<td class="image col2-5">
<!-- style="display: flex; justify-content: center; align-items: center;" -->
<div style="display: flex; justify-content: center; align-items: center;">
<img class="bigsquare" style="border: 0px; z-index: 4;" src="systems/fvtt-chroniques-de-l-etrange/images/bigsquare.png" />
</div>
<div style="display: flex; justify-content: center; align-items: center;">
<span class="value" style="font-size: 30px; text-align: center; margin-top: -47px; z-index: 4;"><b>{{ numberofdice }}</b></span>
</div>
</td>
<td class="label col3-5">&nbsp;</td>
<td class="label col4-5" style="font-size: 30px"><b>&nbsp;+&nbsp;</b><b>1&nbsp;+</b></td>
<td class="label col5-5">&nbsp;</td>
</tr>
</table>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<td class="label col1-3">{{ localize "CDE.Aspect" }}</td>
<td class="label col2-3">&nbsp;</td>
<td class="label col3-3">{{ localize "CDE.BonusMalus" }}</td>
</tr>
<tr style="background-color: transparent;">
<td class="select col1-3">
<select name="aspect">
{{#select aspect }}
<option value="0">{{ localize "CDE.Metal" }}</option>
<option value="1">{{ localize "CDE.Water" }}</option>
<option value="2">{{ localize "CDE.Earth" }}</option>
<option value="3">{{ localize "CDE.Fire" }}</option>
<option value="4">{{ localize "CDE.Wood" }}</option>
{{/select}}
</select>
</td>
<td class="label col2-3" style="font-size: 25px">&nbsp;+&nbsp;</td>
<td class="value col3-3"><input class="input" style="text-align: center; width: 60px;" type="number" name="bonusmalus" value="{{bonusmalus}}"/></td>
</tr style="background-color: transparent;">
</table>
<table style="border: 0px; background-color: transparent;">
<tr>
<td class="label col123 totheleft">{{ localize "CDE.BonusAuspiciousDice" }}</td>
</tr>
<tr style="background-color: transparent;">
<td class="select col1-1">
<select name="bonusauspiciousdice">
{{#select bonusauspiciousdice }}
<option value="0">0</option>
<option value="1">+1&nbsp;{{ localize "CDE.AuspiciousDie" }}</option>
<option value="2">+2&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="3">+3&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="4">+4&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="5">+5&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="6">+6&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="7">+7&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="8">+8&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="9">+9&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="10">+10&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="11">+11&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="12">+12&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="13">+13&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="14">+14&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
<option value="15">+15&nbsp;{{ localize "CDE.AuspiciousDice" }}</option>
{{/select}}
</select>
</td>
</tr>
</table>
<br>
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<b>{{ localize "CDE.TypeOfThrow" }}</b>
<td class="select col 1-2">
<select name="typeofthrow">
{{#select typeofthrow }}
<option value="0">{{ localize "CDE.Everybody" }}</option>
<option value="1">{{ localize "CDE.JustDMAndMe" }}</option>
<option value="2">{{ localize "CDE.DMOnly" }}</option>
<option value="3">{{ localize "CDE.MeOnly" }}</option>
{{/select}}
</select>
</td>
</tr>
</table>
</div>
</section>
</form>

View File

@@ -0,0 +1,29 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
>
{{!-- Frame --}}
<div class="frame">
<div class="select">
<label><b>{{localize "CDE.InitiativeNPCSpeciality"}}</b></label>&nbsp;
<select name="speciality">
{{#select speciality }}
<option value="0">{{ localize "CDE.Physical" }}</option>
<option value="1">{{ localize "CDE.Martial" }}</option>
<option value="2">{{ localize "CDE.Mental" }}</option>
<option value="3">{{ localize "CDE.Social" }}</option>
<option value="4">{{ localize "CDE.Spiritual" }}</option>
{{/select}}
</select>
</div>
<br>
</div>
</section>
</form>

View File

@@ -0,0 +1,44 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
>
{{!-- Frame --}}
<div class="frame">
<div class="select">
<label><b>{{localize "CDE.InitiativeSpeciality"}}</b></label>&nbsp;
<select name="speciality">
{{#select speciality }}
<option value="0">{{ localize "CDE.Art" }}</option>
<option value="1">{{ localize "CDE.Investigation" }}</option>
<option value="2">{{ localize "CDE.Erudition" }}</option>
<option value="3">{{ localize "CDE.Knavery" }}</option>
<option value="4">{{ localize "CDE.Wordliness" }}</option>
<option value="5">{{ localize "CDE.Prowess" }}</option>
<option value="6">{{ localize "CDE.Sciences" }}</option>
<option value="7">{{ localize "CDE.Technologies" }}</option>
<option value="8">{{ localize "CDE.KungFu" }}</option>
<option value="9">{{ localize "CDE.RangedCombat" }}</option>
<option value="10">{{ localize "CDE.Supply" }}</option>
<option value="11">{{ localize "CDE.Inquiry" }}</option>
<option value="12">{{ localize "CDE.Influence" }}</option>
<option value="13">{{ localize "CDE.InternalCinnabar" }}</option>
<option value="14">{{ localize "CDE.Alchemy" }}</option>
<option value="15">{{ localize "CDE.MasteryOfTheWay" }}</option>
<option value="16">{{ localize "CDE.Exorcism" }}</option>
<option value="17">{{ localize "CDE.Geomancy" }}</option>
{{/select}}
</select>
</div>
<br>
</div>
</section>
</form>

View File

@@ -0,0 +1,35 @@
<form class="flexcol {{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="name">
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
>
{{!-- Frame --}}
<div class="frame">
<table style="border: 0px; background-color: transparent;">
<tr style="background-color: transparent;">
<b>{{ localize "CDE.TypeOfThrow4ThisTime" }}</b>
<td>
<select name="choice">
{{#select choice }}
<option value="0">{{ localize "CDE.Everybody" }}</option>
<option value="1">{{ localize "CDE.JustDMAndMe" }}</option>
<option value="2">{{ localize "CDE.DMOnly" }}</option>
<option value="3">{{ localize "CDE.MeOnly" }}</option>
{{/select}}
</select>
</td>
<td class="check"><input type="checkbox" name="check" {{ checked check }} title="" /><b>{{ localize "CDE.TypeOfThrowCheck" }}</b></td>
</tr>
</table>
<i class="click-prefs fas fa-gear"></i>&nbsp;<i>{{ localize "CDE.NextTimeGoToTheSettings" }}</i>
<br>&nbsp;
</div>
</section>
</form>

View File

@@ -0,0 +1,67 @@
<form class="flexcol cde-sheet {{cssClass}}" autocomplete="off">
<header class="cde-neon-header item">
<img class="cde-avatar" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
<div class="cde-header-content">
<h1 class="cde-item-name">
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'CDE.Name' }}" />
</h1>
<div class="cde-stat-grid">
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.TypeOfItem" }}</span>
<select name="system.subtype">
{{selectOptions subtypes selected=systemData.subtype labelAttr="label"}}
</select>
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Reference" }}</span>
<input type="text" name="system.reference" value="{{systemData.reference}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Quantity" }}</span>
<input type="number" name="system.quantity" value="{{systemData.quantity}}" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Weight" }}</span>
<input type="number" name="system.weight" value="{{systemData.weight}}" />
</div>
{{#if isWeapon}}
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Damage" }}</span>
<input type="text" name="system.damage" value="{{systemData.damage}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Range" }}</span>
<input type="text" name="system.range" value="{{systemData.range}}" placeholder="—" />
</div>
{{/if}}
{{#if isArmor}}
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Protection" }}</span>
<input type="text" name="system.protection" value="{{systemData.protection}}" placeholder="—" />
</div>
{{/if}}
</div>
<div style="margin-top:6px;">
<span class="cde-badge item">{{ localize "CDE.Items" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-neon-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="notes">{{ localize "CDE.Notes" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="notes">
<div class="cde-card cde-notes-editor">
{{editor notesHTML target="system.notes" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,141 @@
<form class="flexcol cde-sheet {{cssClass}}" autocomplete="off">
<header class="cde-neon-header kungfu">
<img class="cde-avatar" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
<div class="cde-header-content">
<h1 class="cde-item-name">
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'CDE.Name' }}" />
</h1>
<div class="cde-stat-grid">
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Orientation" }}</span>
<input type="text" name="system.kungfu.orientation" value="{{systemData.kungfu.orientation}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Aspect" }}</span>
<input type="text" name="system.kungfu.aspect" value="{{systemData.kungfu.aspect}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Skill" }}</span>
<input type="text" name="system.kungfu.skill" value="{{systemData.kungfu.skill}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Speciality" }}</span>
<input type="text" name="system.kungfu.speciality" value="{{systemData.kungfu.speciality}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Reference" }}</span>
<input type="text" name="system.reference" value="{{systemData.reference}}" placeholder="—" />
</div>
</div>
<div style="margin-top:6px;">
<span class="cde-badge kungfu">{{ localize "CDE.KungFu" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-neon-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="technique1">{{ localize "CDE.Technique" }} 1</a>
<a class="item" data-action="tab" data-group="primary" data-tab="technique2">{{ localize "CDE.Technique" }} 2</a>
<a class="item" data-action="tab" data-group="primary" data-tab="technique3">{{ localize "CDE.Technique" }} 3</a>
<a class="item" data-action="tab" data-group="primary" data-tab="notes">{{ localize "CDE.Notes" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="technique1">
<div class="cde-card cde-technique-card">
<header class="cde-technique-header">
<div class="cde-technique-title">
<span class="cde-badge kungfu">T1</span>
<input type="text" name="system.techniques.technique1.name"
value="{{systemData.techniques.technique1.name}}"
placeholder="{{ localize 'CDE.Technique' }}" />
</div>
<div class="cde-technique-meta">
<div class="cde-check-cell">
<label>{{ localize "CDE.Masterized" }}</label>
<input type="checkbox" name="system.techniques.technique1.check"
{{ checked systemData.techniques.technique1.check }} />
</div>
<div class="cde-stat-cell" style="min-width:140px;">
<span class="cde-stat-label">{{ localize "CDE.Activation" }}</span>
<input type="text" name="system.techniques.technique1.activation"
value="{{systemData.techniques.technique1.activation}}" placeholder="—" />
</div>
</div>
</header>
<div class="cde-technique-body">
{{editor descriptionTechnique1HTML target="system.techniques.technique1.technique" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</div>
<div class="tab" data-group="primary" data-tab="technique2">
<div class="cde-card cde-technique-card">
<header class="cde-technique-header">
<div class="cde-technique-title">
<span class="cde-badge kungfu">T2</span>
<input type="text" name="system.techniques.technique2.name"
value="{{systemData.techniques.technique2.name}}"
placeholder="{{ localize 'CDE.Technique' }}" />
</div>
<div class="cde-technique-meta">
<div class="cde-check-cell">
<label>{{ localize "CDE.Masterized" }}</label>
<input type="checkbox" name="system.techniques.technique2.check"
{{ checked systemData.techniques.technique2.check }} />
</div>
<div class="cde-stat-cell" style="min-width:140px;">
<span class="cde-stat-label">{{ localize "CDE.Activation" }}</span>
<input type="text" name="system.techniques.technique2.activation"
value="{{systemData.techniques.technique2.activation}}" placeholder="—" />
</div>
</div>
</header>
<div class="cde-technique-body">
{{editor descriptionTechnique2HTML target="system.techniques.technique2.technique" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</div>
<div class="tab" data-group="primary" data-tab="technique3">
<div class="cde-card cde-technique-card">
<header class="cde-technique-header">
<div class="cde-technique-title">
<span class="cde-badge kungfu">T3</span>
<input type="text" name="system.techniques.technique3.name"
value="{{systemData.techniques.technique3.name}}"
placeholder="{{ localize 'CDE.Technique' }}" />
</div>
<div class="cde-technique-meta">
<div class="cde-check-cell">
<label>{{ localize "CDE.Masterized" }}</label>
<input type="checkbox" name="system.techniques.technique3.check"
{{ checked systemData.techniques.technique3.check }} />
</div>
<div class="cde-stat-cell" style="min-width:140px;">
<span class="cde-stat-label">{{ localize "CDE.Activation" }}</span>
<input type="text" name="system.techniques.technique3.activation"
value="{{systemData.techniques.technique3.activation}}" placeholder="—" />
</div>
</div>
</header>
<div class="cde-technique-body">
{{editor descriptionTechnique3HTML target="system.techniques.technique3.technique" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</div>
<div class="tab" data-group="primary" data-tab="notes">
<div class="cde-card cde-notes-editor">
{{editor notesHTML target="system.notes" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,81 @@
<form class="flexcol cde-sheet {{cssClass}}" autocomplete="off">
<header class="cde-neon-header spell">
<img class="cde-avatar" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
<div class="cde-header-content">
<h1 class="cde-item-name">
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'CDE.Name' }}" />
</h1>
<div class="cde-stat-grid">
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.SpecialityName" }}</span>
<input type="text" name="system.specialityname" value="{{systemData.specialityname}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.AssociatedElement" }}</span>
<input type="text" name="system.associatedelement" value="{{systemData.associatedelement}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Hei" }}</span>
<input type="text" name="system.hei" value="{{systemData.hei}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Reference" }}</span>
<input type="text" name="system.reference" value="{{systemData.reference}}" placeholder="—" />
</div>
</div>
<div class="cde-stat-grid" style="margin-top:6px;">
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.RealizationTimeRitual" }}</span>
<input type="text" name="system.realizationtimeritual" value="{{systemData.realizationtimeritual}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.RealizationTimeAccelerated" }}</span>
<input type="text" name="system.realizationtimeaccelerated" value="{{systemData.realizationtimeaccelerated}}" placeholder="—" />
</div>
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Flashback" }}</span>
<input type="text" name="system.flashback" value="{{systemData.flashback}}" placeholder="—" />
</div>
</div>
<div style="margin-top:6px;">
<span class="cde-badge spell">{{ localize "CDE.Spells" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-neon-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="components">{{ localize "CDE.Components" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="effects">{{ localize "CDE.Effects" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="examples">{{ localize "CDE.Examples" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="notes">{{ localize "CDE.Notes" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor spellDescriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="components">
<div class="cde-card cde-notes-editor">
{{editor componentsDescriptionHTML target="system.components" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="effects">
<div class="cde-card cde-notes-editor">
{{editor effectsDescriptionHTML target="system.effects" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="examples">
<div class="cde-card cde-notes-editor">
{{editor examplesDescriptionHTML target="system.examples" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="notes">
<div class="cde-card cde-notes-editor">
{{editor notesHTML target="system.notes" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>

View File

@@ -0,0 +1,37 @@
<form class="flexcol cde-sheet {{cssClass}}" autocomplete="off">
<header class="cde-neon-header supernatural">
<img class="cde-avatar" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
<div class="cde-header-content">
<h1 class="cde-item-name">
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'CDE.Name' }}" />
</h1>
<div class="cde-stat-grid">
<div class="cde-stat-cell">
<span class="cde-stat-label">{{ localize "CDE.Reference" }}</span>
<input type="text" name="system.reference" value="{{systemData.reference}}" placeholder="—" />
</div>
</div>
<div style="margin-top:6px;">
<span class="cde-badge supernatural">{{ localize "CDE.Supernatural" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-neon-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="notes">{{ localize "CDE.Notes" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
<div class="tab" data-group="primary" data-tab="notes">
<div class="cde-card cde-notes-editor">
{{editor notesHTML target="system.notes" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>