foundryvtt-reve-de-dragon/templates/dialog-roll-meditation.html

46 lines
2.3 KiB
HTML
Raw Normal View History

<form class="dialog-roll-meditation">
2021-04-21 20:43:03 +02:00
<h2>{{meditation.name}}</h2>
<div class="grid grid-2col">
<div class="flex-group-left">
<img class="chat-icon" src="{{competence.img}}" alt="{{competence.name}}" />
<div class="flexcol">
2022-06-12 12:23:33 +02:00
<label><strong>{{meditation.system.theme}}</strong></label>
2021-04-21 20:43:03 +02:00
<hr>
2022-06-12 12:23:33 +02:00
<label>Support: <strong>{{upperFirst meditation.system.support}}</strong></label>
<label>Case TMR: <strong>{{typeTmr-name meditation.system.tmr}}</strong></label>
2021-04-21 20:43:03 +02:00
<label>Durée: 60 minutes</label>
<hr>
<label>Intellect / {{competence.name}}:
2022-06-12 12:23:33 +02:00
{{numberFormat carac.intellect.value decimals=0 sign=false}} / {{numberFormat competence.system.niveau decimals=0 sign=true}}</label>
2021-04-21 20:43:03 +02:00
</div>
</div>
<div class="flex-group-left">
<div class="flexrow">
<label><strong>Conditions Optionnelles : </strong></label>
</div>
<div class="flexrow">
2022-06-12 12:23:33 +02:00
<label>Comportement antérieur : {{upperFirst meditation.system.comportement}}</label>
<input class="attribute-value conditionMeditation" type="checkbox" name="isComportement" {{#if conditionMeditation.isComportement}}checked{{/if}} />
2021-04-21 20:43:03 +02:00
</div>
<div class="flexrow">
2022-06-12 12:23:33 +02:00
<label>Heure : {{upperFirst meditation.system.heure}}</label>
<input class="attribute-value conditionMeditation" type="checkbox" name="isHeure" {{#if conditionMeditation.isHeure}}checked{{/if}} />
2021-04-21 20:43:03 +02:00
</div>
<div class="flexrow">
2022-06-12 12:23:33 +02:00
<label>Purification : {{upperFirst meditation.system.purification}}</label>
<input class="attribute-value conditionMeditation" type="checkbox" name="isPurification" {{#if conditionMeditation.isPurification}}checked{{/if}} />
2021-04-21 20:43:03 +02:00
</div>
<div class="flexrow">
2022-06-12 12:23:33 +02:00
<label>Vêture : {{upperFirst meditation.system.veture}}</label>
<input class="attribute-value conditionMeditation" type="checkbox" name="isVeture" {{#if conditionMeditation.isVeture}}checked{{/if}} />
2021-04-21 20:43:03 +02:00
</div>
<hr>
{{>"systems/foundryvtt-reve-de-dragon/templates/partial-roll-diffCondition.html"}}
{{>"systems/foundryvtt-reve-de-dragon/templates/partial-roll-forcer.html"}}
<div class="placeholder-ajustements"></div>
2021-04-21 20:43:03 +02:00
</div>
</div>
<div class="placeholder-resolution"></div>
</form>