FIXES:
- French tab too large - Number appearing on two lines - Removed save vs magic for monster - Removed logmaster
parent
9cd35b727f
commit
8c6d595659
|
@ -132,7 +132,7 @@
|
||||||
"OSE.NPCReaction": "Réaction",
|
"OSE.NPCReaction": "Réaction",
|
||||||
"OSE.RetainersMax": "#Suivants",
|
"OSE.RetainersMax": "#Suivants",
|
||||||
|
|
||||||
"OSE.category.attributes": "Caractéristiques",
|
"OSE.category.attributes": "Stats",
|
||||||
"OSE.category.inventory": "Inventaire",
|
"OSE.category.inventory": "Inventaire",
|
||||||
"OSE.category.abilities": "Aptitudes",
|
"OSE.category.abilities": "Aptitudes",
|
||||||
"OSE.category.spells": "Sorts",
|
"OSE.category.spells": "Sorts",
|
||||||
|
|
|
@ -210,7 +210,6 @@ export class OseItem extends Item {
|
||||||
update = values;
|
update = values;
|
||||||
}
|
}
|
||||||
newData.tags = update;
|
newData.tags = update;
|
||||||
console.log(newData);
|
|
||||||
return this.update({ data: newData });
|
return this.update({ data: newData });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -234,7 +234,7 @@
|
||||||
<h4 class="attribute-name box-title" title="{{ localize 'OSE.saves.magic.long' }}">
|
<h4 class="attribute-name box-title" title="{{ localize 'OSE.saves.magic.long' }}">
|
||||||
{{ localize "OSE.saves.magic.long"}}</h4>
|
{{ localize "OSE.saves.magic.long"}}</h4>
|
||||||
<div class="attribute-value flat" title="{{localize 'OSE.scores.wis.long'}}({{data.scores.wis.mod}})">
|
<div class="attribute-value flat" title="{{localize 'OSE.scores.wis.long'}}({{data.scores.wis.mod}})">
|
||||||
{{data.scores.wis.mod}}
|
{{mod data.scores.wis.mod}}
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -189,14 +189,6 @@
|
||||||
<input name="data.saves.spell.value" type="text" value="{{data.saves.spell.value}}"
|
<input name="data.saves.spell.value" type="text" value="{{data.saves.spell.value}}"
|
||||||
placeholder="0" />
|
placeholder="0" />
|
||||||
</li>
|
</li>
|
||||||
<li class="attribute saving-throw">
|
|
||||||
<h4 class="attribute-name box-title" title="{{ localize 'OSE.saves.magic.long' }}">
|
|
||||||
{{ localize "OSE.saves.magic.long"}}</h4>
|
|
||||||
<div class="attribute-value flat"
|
|
||||||
title="{{localize 'OSE.scores.wis.long'}}({{data.scores.wis.mod}})">
|
|
||||||
{{data.scores.wis.mod}}
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -19,9 +19,7 @@
|
||||||
<div class="check appearing-check" title="{{localize 'OSE.roll.appearing'}}"><a><i class="fas fa-dice"></i></a></div>
|
<div class="check appearing-check" title="{{localize 'OSE.roll.appearing'}}"><a><i class="fas fa-dice"></i></a></div>
|
||||||
</li>
|
</li>
|
||||||
<li class="flexrow check-field" data-check="wilderness">
|
<li class="flexrow check-field" data-check="wilderness">
|
||||||
<div>
|
(<div><input type="text" name="data.details.appearing.w" value="{{data.details.appearing.w}}" /></div>)
|
||||||
(<input type="text" name="data.details.appearing.w" value="{{data.details.appearing.w}}" />)
|
|
||||||
</div>
|
|
||||||
<div class="check appearing-check" title="{{localize 'OSE.roll.appearing'}}"><a><i class="fas fa-dice"></i></a></div>
|
<div class="check appearing-check" title="{{localize 'OSE.roll.appearing'}}"><a><i class="fas fa-dice"></i></a></div>
|
||||||
</li>
|
</li>
|
||||||
{{#if config.morale}}
|
{{#if config.morale}}
|
||||||
|
|
Loading…
Reference in New Issue