Compare commits

..

No commits in common. "ad80802af60abb887f5735f4f78ceb75f9ee704f" and "b866c95ebd43e86c3e64170ab526521d77170b2a" have entirely different histories.

4 changed files with 9 additions and 8 deletions

View File

@ -292,7 +292,6 @@ export class RdDUtility {
Handlebars.registerHelper('array-includes', (array, value) => array.includes(value)); Handlebars.registerHelper('array-includes', (array, value) => array.includes(value));
Handlebars.registerHelper('min', (...args) => Math.min(...args.slice(0, -1))); Handlebars.registerHelper('min', (...args) => Math.min(...args.slice(0, -1)));
Handlebars.registerHelper('isLastIndex', (index, list) => index+1 >= list.length);
Handlebars.registerHelper('regle-optionnelle', (option) => ReglesOptionnelles.isUsing(option)); Handlebars.registerHelper('regle-optionnelle', (option) => ReglesOptionnelles.isUsing(option));
Handlebars.registerHelper('trier', list => list.sort((a, b) => a.name.localeCompare(b.name))); Handlebars.registerHelper('trier', list => list.sort((a, b) => a.name.localeCompare(b.name)));
Handlebars.registerHelper('filtreTriCompetences', competences => RdDItemCompetence.triVisible(competences)); Handlebars.registerHelper('filtreTriCompetences', competences => RdDItemCompetence.triVisible(competences));

View File

@ -60,11 +60,11 @@
</div> </div>
<hr> <hr>
<div> <div>
{{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/competences.hbs" competences=competences}} {{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/competences.hbs" competences= competences}}
</div> </div>
<hr> <hr>
<div> <div>
{{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/competences.hbs" competences=draconic }} {{export.draconic.value}}
</div> </div>
<hr> <hr>
<div> <div>

View File

@ -1,9 +1,10 @@
{{#each competences as |group|}} {{#each competences as |group|}}
{{#if @index}}/{{/if}} {{#if @index}}/{{/if}}
{{#with group}} {{#each group.list as |comp|}}
{{#each list as |comp|}} {{#if @index}}, {{/if}}
<span class="item" data-item-id="{{comp._id}}"><a class="roll-competence">{{comp.name}}</a></span>{{~#unless (isLastIndex @index ../list)~}},{{/unless~}} <span class="item" data-item-id="{{comp._id}}">
<a class="roll-competence">{{comp.name}}</a>
</span>
{{/each}} {{/each}}
{{numberFormat niveau decimals=0 sign=true}} {{numberFormat group.niveau decimals=0 sign=true}}
{{/with}}
{{/each}} {{/each}}

View File

@ -1,6 +1,7 @@
{{#if protectionnaturelle.value}} {{#if protectionnaturelle.value}}
{{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/carac-derivee.hbs" carac=protectionnaturelle}} {{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/carac-derivee.hbs" carac=protectionnaturelle}}
{{/if}} {{/if}}
{{log 'protectionarmure' protectionarmure}}
{{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/carac-derivee.hbs" carac=protectionarmure}} {{>"systems/foundryvtt-reve-de-dragon/templates/actor/export-scriptarium/carac-derivee.hbs" carac=protectionarmure}}
{{#if armure.value}} {{#if armure.value}}
<div class="flexrow flex-group-right"><i>{{armure.value}}</i></div> <div class="flexrow flex-group-right"><i>{{armure.value}}</i></div>