Ajout fonts
This commit is contained in:
parent
21590b4331
commit
7e0a67fbc2
@ -29,9 +29,9 @@ export class VadentisUtility extends Entity {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static createDirectOptionList( min, max) {
|
static createDirectOptionList( min, max) {
|
||||||
let options = []
|
let options = {};
|
||||||
for(let i=min; i<=max; i++) {
|
for(let i=min; i<=max; i++) {
|
||||||
options.push( i ) ;
|
options[i] = i;
|
||||||
}
|
}
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
@ -119,8 +119,8 @@
|
|||||||
<li class="stat flexrow" >
|
<li class="stat flexrow" >
|
||||||
<span class="generic-label flexrow tooltip tooltip-nobottom" name="statlabel">Désignation</span>
|
<span class="generic-label flexrow tooltip tooltip-nobottom" name="statlabel">Désignation</span>
|
||||||
<span class="flexrow tooltip tooltip-nobottom" name="statlabel">Valeur</span>
|
<span class="flexrow tooltip tooltip-nobottom" name="statlabel">Valeur</span>
|
||||||
<span class="flexrow tooltip tooltip-nobottom" name="statlabel">Bonus</span>
|
|
||||||
<span class="flexrow tooltip tooltip-nobottom" name="statlabel">Malus</span>
|
<span class="flexrow tooltip tooltip-nobottom" name="statlabel">Malus</span>
|
||||||
|
<span class="flexrow tooltip tooltip-nobottom" name="statlabel">Bonus</span>
|
||||||
</li>
|
</li>
|
||||||
{{#each data.combat as |mycombat key|}}
|
{{#each data.combat as |mycombat key|}}
|
||||||
<li class="stat flexrow list-item" data-attribute="{{key}}">
|
<li class="stat flexrow list-item" data-attribute="{{key}}">
|
||||||
|
Loading…
Reference in New Issue
Block a user