Tirage des tarots

This commit is contained in:
LeRatierBretonnien 2023-02-07 20:21:50 +01:00
parent 04039513bc
commit e146c6ba5b
4 changed files with 14 additions and 4 deletions

View File

@ -15,7 +15,7 @@ export class MaleficesActorSheet extends ActorSheet {
classes: ["fvtt-malefices", "sheet", "actor"],
template: "systems/fvtt-malefices/templates/actors/actor-sheet.hbs",
width: 640,
height: 640,
height:680,
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "skills" }],
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }],
editScore: true

View File

@ -64,7 +64,7 @@
],
"title": "Maléfices, le Jeu de Rôle",
"url": "https://www.uberwald.me/gitea/public/fvtt-malefices",
"version": "10.0.18",
"download": "https://www.uberwald.me/gitea/public/fvtt-malefices/archive/fvtt-malefices-v10.0.18.zip",
"version": "10.0.19",
"download": "https://www.uberwald.me/gitea/public/fvtt-malefices/archive/fvtt-malefices-v10.0.19.zip",
"background": "systems/fvtt-malefices/images/ui/malefice_welcome_page.webp"
}

View File

@ -33,6 +33,8 @@
"lamesdestin": [],
"pointdestin": 1,
"fluide": 5,
"mpmb": 0,
"mpmn": 0,
"attributs": {
"constitution": {
"label": "Constitution",

View File

@ -73,9 +73,17 @@
{{#if isGM}}
<li class="item flexrow list-item">
<span class="item-field-label-long">Fluide (MJ seulement)</span>
<span class="item-field-label-long">Fluide (MJ)</span>
<input type="text" class="item-field-label-short" name="system.fluide" value="{{system.fluide}}" data-dtype="Number"/>
</li>
<li class="item flexrow list-item">
<span class="item-field-label-long">MPMB (MJ)</span>
<input type="text" class="item-field-label-short" name="system.mpmb" value="{{system.mpmb}}" data-dtype="Number"/>
</li>
<li class="item flexrow list-item">
<span class="item-field-label-long">MPMN (MJ)</span>
<input type="text" class="item-field-label-short" name="system.mpmn" value="{{system.mpmn}}" data-dtype="Number"/>
</li>
{{/if}}
</ul>