Merge pull request 'Corrections esthétiques' (#592) from VincentVk/foundryvtt-reve-de-dragon:v10 into v10
Reviewed-on: #592
This commit is contained in:
commit
8c5c01114e
@ -9,7 +9,7 @@ export class DialogRepos extends Dialog {
|
|||||||
}
|
}
|
||||||
|
|
||||||
constructor(html, actor) {
|
constructor(html, actor) {
|
||||||
let options = { classes: ["DialogCreateSigneDraconiqueActorsActors"], width: 500, height: 400, 'z-index': 99999 };
|
let options = { classes: ["DialogCreateSigneDraconiqueActorsActors"], width: 400, height: 'fit-content', 'z-index': 99999 };
|
||||||
let conf = {
|
let conf = {
|
||||||
title: "Se reposer",
|
title: "Se reposer",
|
||||||
content: html,
|
content: html,
|
||||||
|
@ -8,18 +8,18 @@ const xp_par_niveau = [5, 5, 5, 10, 10, 10, 10, 15, 15, 15, 15, 20, 20, 20, 20,
|
|||||||
const niveau_max = xp_par_niveau.length - 10;
|
const niveau_max = xp_par_niveau.length - 10;
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
const limitesArchetypes = [
|
const limitesArchetypes = [
|
||||||
{ "niveau": 0, "nombreMax": 100, "nombre": 0 },
|
{ "niveau": 0, "nombreMax": 100, "reste": 100 },
|
||||||
{ "niveau": 1, "nombreMax": 10, "nombre": 0 },
|
{ "niveau": 1, "nombreMax": 10, "reste": 10 },
|
||||||
{ "niveau": 2, "nombreMax": 9, "nombre": 0 },
|
{ "niveau": 2, "nombreMax": 9, "reste": 9 },
|
||||||
{ "niveau": 3, "nombreMax": 8, "nombre": 0 },
|
{ "niveau": 3, "nombreMax": 8, "reste": 8 },
|
||||||
{ "niveau": 4, "nombreMax": 7, "nombre": 0 },
|
{ "niveau": 4, "nombreMax": 7, "reste": 7 },
|
||||||
{ "niveau": 5, "nombreMax": 6, "nombre": 0 },
|
{ "niveau": 5, "nombreMax": 6, "reste": 6 },
|
||||||
{ "niveau": 6, "nombreMax": 5, "nombre": 0 },
|
{ "niveau": 6, "nombreMax": 5, "reste": 5 },
|
||||||
{ "niveau": 7, "nombreMax": 4, "nombre": 0 },
|
{ "niveau": 7, "nombreMax": 4, "reste": 4 },
|
||||||
{ "niveau": 8, "nombreMax": 3, "nombre": 0 },
|
{ "niveau": 8, "nombreMax": 3, "reste": 3 },
|
||||||
{ "niveau": 9, "nombreMax": 2, "nombre": 0 },
|
{ "niveau": 9, "nombreMax": 2, "reste": 2 },
|
||||||
{ "niveau": 10, "nombreMax": 1, "nombre": 0 },
|
{ "niveau": 10, "nombreMax": 1, "reste": 1 },
|
||||||
{ "niveau": 11, "nombreMax": 1, "nombre": 0 }
|
{ "niveau": 11, "nombreMax": 1, "reste": 1 }
|
||||||
];
|
];
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
@ -267,23 +267,20 @@ export class RdDItemCompetence extends Item {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static computeResumeArchetype(competences) {
|
static computeResumeArchetype(competences) {
|
||||||
const archetype = RdDItemCompetence.getLimitesArchetypes();
|
const computed = duplicate(limitesArchetypes);
|
||||||
competences.map(it => Math.max(0, it.system.niveau_archetype))
|
competences.map(it => Math.max(0, it.system.niveau_archetype))
|
||||||
.forEach(niveau => {
|
.filter(n => n > 0)
|
||||||
archetype[niveau] = archetype[niveau] ?? { "niveau": niveau, "nombreMax": 0, "nombre": 0 };
|
.forEach(n => {
|
||||||
archetype[niveau].nombre = (archetype[niveau]?.nombre ?? 0) + 1;
|
computed[n] = computed[n] ?? { niveau: n, nombreMax: 0, reste: 0 };
|
||||||
|
computed[n].reste = computed[n].reste - 1;
|
||||||
});
|
});
|
||||||
return archetype;
|
return computed.filter(it => it.reste > 0 && it.niveau > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static getLimitesArchetypes() {
|
|
||||||
return duplicate(limitesArchetypes);
|
|
||||||
}
|
|
||||||
|
|
||||||
static triVisible(competences) {
|
static triVisible(competences) {
|
||||||
return competences.filter(it => it.system.isVisible)
|
return competences.filter(it => it.system.isVisible)
|
||||||
.sort((a, b) => RdDItemCompetence.compare(a,b))
|
.sort((a, b) => RdDItemCompetence.compare(a, b))
|
||||||
}
|
}
|
||||||
|
|
||||||
static $positionTri(comp) {
|
static $positionTri(comp) {
|
||||||
@ -308,7 +305,7 @@ export class RdDItemCompetence extends Item {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static compare(a,b) {
|
static compare(a, b) {
|
||||||
const diff = RdDItemCompetence.$positionTri(a) - RdDItemCompetence.$positionTri(b);
|
const diff = RdDItemCompetence.$positionTri(a) - RdDItemCompetence.$positionTri(b);
|
||||||
return diff ? diff : a.name.localeCompare(b.name);
|
return diff ? diff : a.name.localeCompare(b.name);
|
||||||
}
|
}
|
||||||
|
@ -115,17 +115,16 @@ export class RdDRollResolutionTable extends Dialog {
|
|||||||
rollData.finalLevel = this._computeFinalLevel(rollData);
|
rollData.finalLevel = this._computeFinalLevel(rollData);
|
||||||
|
|
||||||
const htmlTable = await RdDResolutionTable.buildHTMLTable({
|
const htmlTable = await RdDResolutionTable.buildHTMLTable({
|
||||||
carac:rollData.caracValue,
|
carac: rollData.caracValue,
|
||||||
level: rollData.finalLevel
|
level: rollData.finalLevel,
|
||||||
|
maxCarac: 20,
|
||||||
|
maxLevel: 10
|
||||||
});
|
});
|
||||||
|
|
||||||
// Mise à jour valeurs
|
// Mise à jour valeurs
|
||||||
this.html.find("[name='carac']").val(rollData.caracValue);
|
this.html.find("[name='carac']").val(rollData.caracValue);
|
||||||
this.html.find(".roll-param-resolution").text(rollData.selectedCarac.value + " / " + Misc.toSignedString(rollData.finalLevel));
|
this.html.find(".roll-param-resolution").text(rollData.selectedCarac.value + " / " + Misc.toSignedString(rollData.finalLevel));
|
||||||
this.html.find(".table-resolution").remove();
|
this.html.find("div.placeholder-resolution").empty().append(htmlTable)
|
||||||
this.html.find(".table-proba-reussite").remove();
|
|
||||||
|
|
||||||
this.html.find("div.placeholder-resolution").append(htmlTable)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,12 +31,12 @@
|
|||||||
:root {
|
:root {
|
||||||
/* =================== 1. ACTOR SHEET FONT STYLES =========== */
|
/* =================== 1. ACTOR SHEET FONT STYLES =========== */
|
||||||
--window-header-title-font-family: CaslonAntique;
|
--window-header-title-font-family: CaslonAntique;
|
||||||
--window-header-title-font-size: 1.5rem;
|
--window-header-title-font-size: 1.6rem;
|
||||||
--window-header-title-font-weight: normal;
|
--window-header-title-font-weight: normal;
|
||||||
--window-header-title-color: #f5f5f5;
|
--window-header-title-color: #f5f5f5;
|
||||||
|
|
||||||
--major-button-font-family: CaslonAntique;
|
--major-button-font-family: CaslonAntique;
|
||||||
--major-button-font-size: 1.25rem;
|
--major-button-font-size: 1.4rem;
|
||||||
--major-button-font-weight: normal;
|
--major-button-font-weight: normal;
|
||||||
--major-button-color: #dadada;
|
--major-button-color: #dadada;
|
||||||
|
|
||||||
@ -88,7 +88,7 @@
|
|||||||
.window-app {
|
.window-app {
|
||||||
font-family: CaslonAntique;
|
font-family: CaslonAntique;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
font-size: 16px;
|
font-size: 1rem;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,7 +116,11 @@ select, button, .item-checkbox, #sidebar, #players, #navigation #nav-toggle {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.strong-text{
|
section.window-content div.dialog-buttons {
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.strong-text {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
i:is(.fas, .far) {
|
i:is(.fas, .far) {
|
||||||
@ -199,7 +203,7 @@ i:is(.fas, .far) {
|
|||||||
|
|
||||||
/* =================== Navigation ============ */
|
/* =================== Navigation ============ */
|
||||||
.sheet nav.sheet-tabs {
|
.sheet nav.sheet-tabs {
|
||||||
font-size: 0.65rem;
|
font-size: 0.7rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
flex: 0 0 4rem;
|
flex: 0 0 4rem;
|
||||||
@ -621,6 +625,9 @@ input:is(.blessure-premiers_soins, .blessure-soins_complets) {
|
|||||||
.rdd-roll-dialog .description-sort {
|
.rdd-roll-dialog .description-sort {
|
||||||
max-width: 550px;
|
max-width: 550px;
|
||||||
}
|
}
|
||||||
|
.rdd-roll-dialog div.dialog-content input {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
.rdd-roll-part {
|
.rdd-roll-part {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: 6px; padding: 3px;
|
border-radius: 6px; padding: 3px;
|
||||||
@ -652,14 +659,12 @@ input:is(.blessure-premiers_soins, .blessure-soins_complets) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.rdd-niveau-requis{
|
.rdd-niveau-requis{
|
||||||
font-size: 0.80rem;
|
font-size: 0.8rem;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.placeholder-ajustements {
|
.placeholder-ajustements {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-resolution-carac {
|
.table-resolution-carac {
|
||||||
background-color: yellow;
|
background-color: yellow;
|
||||||
}
|
}
|
||||||
@ -675,11 +680,11 @@ div.placeholder-resolution span.table-proba-reussite{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.poesie-extrait {
|
.poesie-extrait {
|
||||||
font-size: 0.85rem;
|
font-size: 0.9rem;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
.poesie-reference{
|
.poesie-reference{
|
||||||
font-size: 0.70rem;
|
font-size: 0.7rem;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
.poesie-overflow {
|
.poesie-overflow {
|
||||||
@ -695,7 +700,7 @@ div.placeholder-resolution span.table-proba-reussite{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.type-compendium{
|
.type-compendium{
|
||||||
font-size: 0.60rem;
|
font-size: 0.6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ======================================== */
|
/* ======================================== */
|
||||||
@ -1011,6 +1016,9 @@ ul.list-item-margin6 li {
|
|||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
flex-basis: 1;
|
flex-basis: 1;
|
||||||
}
|
}
|
||||||
|
div.competence-column div.categorie-competence{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
.competence-header {
|
.competence-header {
|
||||||
align-content: flex-start;
|
align-content: flex-start;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
@ -1089,7 +1097,7 @@ ul.list-item-margin6 li {
|
|||||||
/* ======================================== */
|
/* ======================================== */
|
||||||
.table-nombres-astraux {
|
.table-nombres-astraux {
|
||||||
border:1;
|
border:1;
|
||||||
font-size: 0.75rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
.table-nombres-astraux td {
|
.table-nombres-astraux td {
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
@ -1131,7 +1139,7 @@ ul.list-item-margin6 li {
|
|||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
.rdd-hud-menu label {
|
.rdd-hud-menu label {
|
||||||
font-size: 0.75rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
#token-hud .status-effects.active{
|
#token-hud .status-effects.active{
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
@ -1431,8 +1439,8 @@ ul.list-item-margin6 li {
|
|||||||
font-family: "GoudyAcc";
|
font-family: "GoudyAcc";
|
||||||
color: #CCC;
|
color: #CCC;
|
||||||
opacity: 90;
|
opacity: 90;
|
||||||
font-size: 13px;
|
font-size: 0.9rem;
|
||||||
line-height: 1;
|
line-height: 1px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -1598,7 +1606,7 @@ ul.list-item-margin6 li {
|
|||||||
.calendar-time{
|
.calendar-time{
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
grid-row: 2;
|
grid-row: 2;
|
||||||
font-size: 1.10rem;
|
font-size: 1.1rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -1607,7 +1615,7 @@ ul.list-item-margin6 li {
|
|||||||
.calendar-nombre-astral{
|
.calendar-nombre-astral{
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
grid-row: 2;
|
grid-row: 2;
|
||||||
font-size: 1.10rem;
|
font-size: 1.1rem;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -1700,7 +1708,7 @@ display: inline-flex;
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-family: CaslonPro;
|
font-family: CaslonPro;
|
||||||
font-size: 14px;
|
font-size: 0.9px;
|
||||||
padding: 4px 12px 0px 12px;
|
padding: 4px 12px 0px 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-shadow: 0px 1px 0px #4d3534;
|
text-shadow: 0px 1px 0px #4d3534;
|
||||||
|
@ -50,29 +50,28 @@
|
|||||||
{{!-- Compétences Tab --}}
|
{{!-- Compétences Tab --}}
|
||||||
<div class="tab competences" data-group="primary" data-tab="competences">
|
<div class="tab competences" data-group="primary" data-tab="competences">
|
||||||
<div class="flexrow">
|
<div class="flexrow">
|
||||||
<span><a class="vue-detaillee">
|
{{>"systems/foundryvtt-reve-de-dragon/templates/actor/vue-detaillee.html"}}
|
||||||
<i class="fas {{#if options.vueDetaillee}}fa-eye-slash{{else}}fa-eye{{/if}}"></i>
|
<span class="flexrow"><a class="show-hide-competences">
|
||||||
{{#if options.vueDetaillee}}Vue simplifiée{{else}}Vue détaillée{{/if}}</a>
|
{{#if options.showCompNiveauBase}}
|
||||||
</span>
|
<i class="fa-regular fa-filter-slash"></i> Montrer tout
|
||||||
<span><a class="show-hide-competences"><img class="small-button-container"
|
{{else}}
|
||||||
src="systems/foundryvtt-reve-de-dragon/icons/{{#if options.showCompNiveauBase}}no-filter.svg{{else}}filter.svg{{/if}}" alt="filter/montrer tout">
|
<i class="fa-regular fa-filter"></i> Filtrer
|
||||||
{{#if options.showCompNiveauBase}}Montrer tout{{else}}Filtrer{{/if}}</a>
|
{{/if}}
|
||||||
</span>
|
</a></span>
|
||||||
<span class="flexrow">
|
<span>
|
||||||
<input class="recherche flex-grow" type="text" value="{{options.recherche.text}}" name="recherche"
|
<input class="recherche flex-grow" type="text" value="{{options.recherche.text}}" name="recherche" size="8" data-dtype="String" placeholder=""/>
|
||||||
size="8" data-dtype="String" placeholder=""/>
|
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="grid grid-2col">
|
<div class="grid grid-2col">
|
||||||
<div class="flex-group-left flexcol competence-column">
|
<div class="competence-column">
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.generale) categorie="Compétences générales"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.generale) categorie="Compétences générales"}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.particuliere) categorie="Compétences Particulières"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.particuliere) categorie="Compétences Particulières"}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.specialisee) categorie="Compétences Spécialisées"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.specialisee) categorie="Compétences Spécialisées"}}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="competence-column">
|
||||||
<div class="flex-group-left flexcol competence-column">
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/xp-competences.html"}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.melee) categorie="Compétences de Mêlée"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.melee) categorie="Compétences de Mêlée"}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.tir) categorie="Compétences de Tir"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.tir) categorie="Compétences de Tir"}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.lancer) categorie="Compétences de Lancer"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.lancer) categorie="Compétences de Lancer"}}
|
||||||
@ -80,7 +79,6 @@
|
|||||||
{{#if (or system.attributs.hautrevant.value options.vueDetaillee)}}
|
{{#if (or system.attributs.hautrevant.value options.vueDetaillee)}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.draconic) categorie="Draconic"}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence-categorie.html" competences=(filtreTriCompetences byCateg.draconic) categorie="Draconic"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/xp-competences.html"}}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
{{#if competences}}
|
{{#if competences}}
|
||||||
<div class="flex-shrink">
|
<div class="flex-shrink categorie-competence">
|
||||||
|
<ul class="item-list alterne-list competence-list">
|
||||||
|
<li class="item flexrow list-item ">
|
||||||
|
<span>
|
||||||
<header class="competence-header flexrow">
|
<header class="competence-header flexrow">
|
||||||
<span class="competence-title">{{categorie}}</span>
|
<span class="competence-title">{{categorie}}</span>
|
||||||
</header>
|
</header>
|
||||||
<ul class="item-list alterne-list competence-list">
|
</span>
|
||||||
{{#if @root.options.vueDetaillee}}
|
{{#if @root.options.vueDetaillee}}
|
||||||
<li class="item flexrow list-item ">
|
|
||||||
<span class="competence-label"></span>
|
|
||||||
<span class="competence-value" >Niv.</span>
|
<span class="competence-value" >Niv.</span>
|
||||||
<span class="competence-xp">xp</span>
|
<span class="competence-xp">xp</span>
|
||||||
{{#if (eq categorie 'Draconic')}}
|
{{#if (eq categorie 'Draconic')}}
|
||||||
@ -20,11 +21,12 @@
|
|||||||
<i class="far fa-trash"></i>
|
<i class="far fa-trash"></i>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
</li>
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
</li>
|
||||||
{{#each competences as |comp key|}}
|
{{#each competences as |comp key|}}
|
||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence.html" comp}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/actor/competence.html" comp}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
<li></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
<span><a class="vue-detaillee">
|
<span><a class="vue-detaillee">
|
||||||
<i class="fas {{#if options.vueDetaillee}}fa-eye-slash{{else}}fa-eye{{/if}}"></i>
|
{{#if options.vueDetaillee}}
|
||||||
{{#if options.vueDetaillee}}Vue simplifiée{{else}}Vue détaillée{{/if}}</a>
|
<i class="fas fa-eye-slash"></i> Vue simplifiée
|
||||||
|
{{else}}
|
||||||
|
<i class="fas fa-eye"></i> Vue détaillée
|
||||||
|
{{/if}}
|
||||||
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
@ -1,23 +1,30 @@
|
|||||||
<div>
|
<div>
|
||||||
<ul class="item-list">
|
<ul class="item-list">
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<span class="generic-label">Stress transformé</span>
|
<label class="attribut-label" for="system.compteurs.experience.value">Stress transformé</label>
|
||||||
<input class="compteur-edit" type="text" name="experience" value="{{system.compteurs.experience.value}}" data-dtype="number" size="3"/>
|
{{#if options.vueDetaillee}}
|
||||||
|
<input class="compteur-edit" type="text" name="system.compteurs.experience.value" value="{{system.compteurs.experience.value}}" data-dtype="number" size="3"/>
|
||||||
|
{{else}}
|
||||||
|
<label name="system.compteurs.experience.value">{{system.compteurs.experience.value}}</label>
|
||||||
|
{{/if}}
|
||||||
</li>
|
</li>
|
||||||
|
{{#if options.vueDetaillee}}
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<span class="generic-label">Total XP compétences</span>
|
<span class="generic-label">Total XP compétences</span>
|
||||||
<span class="competence-value">{{calc.competenceXPTotal}}</span>
|
<span class="competence-value">{{calc.competenceXPTotal}}</span>
|
||||||
</li>
|
</li>
|
||||||
{{#if options.vueDetaillee}}
|
{{#if calc.comptageArchetype}}
|
||||||
|
<li><hr></li>
|
||||||
<li>Niveaux d'archétype à répartir</li>
|
<li>Niveaux d'archétype à répartir</li>
|
||||||
{{#each calc.comptageArchetype as |archetype key|}}
|
{{#each calc.comptageArchetype as |archetype key|}}
|
||||||
{{#if (lt archetype.nombre archetype.nombreMax)}}
|
{{#if (gt archetype.reste 0)}}
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<label class="generic-label">Archetype {{archetype.niveau}} : {{archetype.nombre}} / {{archetype.nombreMax}}</label>
|
<label class="generic-label">Reste {{archetype.reste}} niveaux {{numberFormat archetype.niveau decimals=0 sign=true}} sur {{archetype.nombreMax}}</label>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
<li> </li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,15 +1,14 @@
|
|||||||
<form class="skill-roll-dialog">
|
<form class="dialog-repos">
|
||||||
<div class="flexcol">
|
|
||||||
<div class="flex-group-left">
|
|
||||||
<div class="flexrow"><span>
|
|
||||||
<img class="chat-icon" src="{{img}}" title="{{name}}" alt="{{name}}" />
|
<img class="chat-icon" src="{{img}}" title="{{name}}" alt="{{name}}" />
|
||||||
<h4>{{name}} se repose</h4>
|
<div class="flexcol">
|
||||||
|
<div class="flexrow"><span>
|
||||||
|
<h2>{{name}} se repose</h2>
|
||||||
</span></div>
|
</span></div>
|
||||||
<div class="flexrow"><span>
|
<div class="flexrow"><span>
|
||||||
<input type="radio" name="repos" id="chateau-dormant" value="chateau-dormant">
|
<input type="radio" name="repos" id="chateau-dormant" value="chateau-dormant">
|
||||||
<label for="chateau-dormant">Château Dormant</label>
|
<label for="chateau-dormant">Château Dormant</label>
|
||||||
</span></div>
|
</span></div>
|
||||||
<hr>
|
<div class="flexrow"><span><hr></span></div>
|
||||||
<div class="flexrow"><span>
|
<div class="flexrow"><span>
|
||||||
<input class type="radio" name="repos" id="sieste" value="sieste">
|
<input class type="radio" name="repos" id="sieste" value="sieste">
|
||||||
<label for="sieste">Sieste de quelques heures</label>
|
<label for="sieste">Sieste de quelques heures</label>
|
||||||
@ -18,21 +17,18 @@
|
|||||||
<input type="radio" name="repos" id="nuit" value="nuit" checked>
|
<input type="radio" name="repos" id="nuit" value="nuit" checked>
|
||||||
<label for="nuit">Dormir la nuit</label>
|
<label for="nuit">Dormir la nuit</label>
|
||||||
</span></div>
|
</span></div>
|
||||||
<br>
|
|
||||||
<div class="flexrow">
|
<div class="flexrow">
|
||||||
<label for="nb-heures">Nombre d'heures</label>
|
<label for="nb-heures">Nombre d'heures</label>
|
||||||
<input type="number" name="nb-heures" value="4" data-dtype="Number" />
|
<input type="number" name="nb-heures" value="4" data-dtype="Number" />
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<div class="flexrow"><span><hr></span></div>
|
||||||
<div class="flexrow"><span>
|
<div class="flexrow"><span>
|
||||||
<input type="radio" name="repos" id="gris-reve" value="gris-reve">
|
<input type="radio" name="repos" id="gris-reve" value="gris-reve">
|
||||||
<label for="gris-reve">Gris rêve</label>
|
<label for="gris-reve">Gris rêve</label>
|
||||||
</span></div>
|
</span></div>
|
||||||
<br>
|
|
||||||
<div class="flexrow">
|
<div class="flexrow">
|
||||||
<label for="nb-jours">Nombre de jours</label>
|
<label for="nb-jours">Nombre de jours</label>
|
||||||
<input type="number" name="nb-jours" value="2" data-dtype="Number" />
|
<input type="number" name="nb-jours" value="2" data-dtype="Number" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</form>
|
</form>
|
@ -24,9 +24,5 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="placeholder-resolution">
|
<div class="placeholder-resolution"></div>
|
||||||
</div>
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -19,6 +19,3 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -21,6 +21,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -81,6 +81,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
||||||
|
@ -22,6 +22,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -22,7 +22,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
||||||
|
|
@ -23,6 +23,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -23,6 +23,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -43,6 +43,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -21,6 +21,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
||||||
|
@ -22,6 +22,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
||||||
|
@ -35,6 +35,3 @@
|
|||||||
{{> "systems/foundryvtt-reve-de-dragon/templates/partial-description-overflow.html" oeuvre.system}}
|
{{> "systems/foundryvtt-reve-de-dragon/templates/partial-description-overflow.html" oeuvre.system}}
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
@ -18,7 +18,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
||||||
|
|
@ -39,6 +39,3 @@
|
|||||||
|
|
||||||
<div class="placeholder-resolution"></div>
|
<div class="placeholder-resolution"></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
</script>
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
{{!-- Sheet Body --}}
|
{{!-- Sheet Body --}}
|
||||||
<section class="sheet-body">
|
<section class="sheet-body">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Catégorie </label>
|
<label for="system.categorie">Catégorie </label>
|
||||||
<select name="system.categorie" class="categorie" data-dtype="String">
|
<select name="system.categorie" class="categorie" data-dtype="String">
|
||||||
{{#select system.categorie}}
|
{{#select system.categorie}}
|
||||||
{{>"systems/foundryvtt-reve-de-dragon/templates/enum-categorie-competence.html"}}
|
{{>"systems/foundryvtt-reve-de-dragon/templates/enum-categorie-competence.html"}}
|
||||||
@ -23,15 +23,15 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="niveau">Niveau </label>
|
<label for="system.niveau">Niveau </label>
|
||||||
<input class="attribute-value" type="text" name="system.niveau" value="{{system.niveau}}" data-dtype="Number"/>
|
<input class="attribute-value" type="text" name="system.niveau" value="{{system.niveau}}" data-dtype="Number"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="xp">XP </label>
|
<label for="system.xp">XP </label>
|
||||||
<input class="attribute-value sheet-competence-xp" type="text" name="system.xp" value="{{system.xp}}" data-dtype="Number"/>
|
<input class="attribute-value sheet-competence-xp" type="text" name="system.xp" value="{{system.xp}}" data-dtype="Number"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="base">Niveau de base </label>
|
<label for="system.base">Niveau de base </label>
|
||||||
{{#if isGM}}
|
{{#if isGM}}
|
||||||
<select name="system.base" data-dtype="Number">
|
<select name="system.base" data-dtype="Number">
|
||||||
{{#select system.base}}
|
{{#select system.base}}
|
||||||
@ -43,25 +43,25 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="defaut_carac">Caractéristique par défaut </label>
|
<label for="system.defaut_carac">Caractéristique par défaut </label>
|
||||||
<select name="system.defaut_carac" id="defaut_carac" data-dtype="String">
|
<select name="system.defaut_carac" data-dtype="String">
|
||||||
{{#select system.defaut_carac}}
|
{{#select system.defaut_carac}}
|
||||||
{{>"systems/foundryvtt-reve-de-dragon/templates/enum-caracteristiques.html"}}
|
{{>"systems/foundryvtt-reve-de-dragon/templates/enum-caracteristiques.html"}}
|
||||||
{{/select}}
|
{{/select}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="default_diffLibre">Difficulté libre par défaut</label>
|
<label for="system.default_diffLibre">Difficulté libre par défaut</label>
|
||||||
<input class="attribute-value" type="text" name="system.default_diffLibre" value="{{system.default_diffLibre}}" data-dtype="Number"/>
|
<input class="attribute-value" type="text" name="system.default_diffLibre" value="{{system.default_diffLibre}}" data-dtype="Number"/>
|
||||||
</div>
|
</div>
|
||||||
{{#if (eq system.categorie 'draconic')}}
|
{{#if (eq system.categorie 'draconic')}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="xp">XP Sort </label>
|
<label for="system.xp_sort">XP Sort </label>
|
||||||
<input class="attribute-value" type="text" name="system.xp_sort" value="{{system.xp_sort}}" data-dtype="Number"/>
|
<input class="attribute-value" type="text" name="system.xp_sort" value="{{system.xp_sort}}" data-dtype="Number"/>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="niveau_archetype">Niveau d'Archetype</label>
|
<label for="system.niveau_archetype">Niveau d'Archetype</label>
|
||||||
<input class="attribute-value" type="text" name="system.niveau_archetype" value="{{system.niveau_archetype}}" data-dtype="Number"/>
|
<input class="attribute-value" type="text" name="system.niveau_archetype" value="{{system.niveau_archetype}}" data-dtype="Number"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user