Après le travail sur les ChatMessage, centraliser les difficultés pour les dialog-roll afin d'afficher tous les ajustements sous forme de tooltips Les ajustements à améliorer: * malus armure * sur-encombrement * encombrement total + fix regression tâches + fix méditation isisPuritication
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<form class="skill-roll-dialog">
 | 
						|
<h2 class="compdialog" id="compdialogTitle"></h2>
 | 
						|
<div class="form-group">
 | 
						|
  <label for="categorie">Difficulté libre</label>
 | 
						|
  <select name="diffLibre" id="diffLibre" data-dtype="number">
 | 
						|
      {{#select diffLibre}}
 | 
						|
      {{#each difficultesLibres as |key|}}
 | 
						|
      <option value={{key}}>{{numberFormat key decimals=0 sign=true}}</option>
 | 
						|
      {{/each}}
 | 
						|
      {{/select}}
 | 
						|
  </select>
 | 
						|
  <label for="categorie">conditions</label>
 | 
						|
  <select name="diffConditions" id="diffConditions" data-dtype="number">
 | 
						|
      {{#select diffConditions}}
 | 
						|
      {{#each ajustementsConditions as |key|}}
 | 
						|
      <option value={{key}}>{{numberFormat key decimals=0 sign=true}}</option>
 | 
						|
      {{/each}}
 | 
						|
      {{/select}}
 | 
						|
  </select>
 | 
						|
  <label class="diffMoral" for="categorie">Moral: {{#if (gt moral 0)}}+{{/if}}{{moral}}</label>
 | 
						|
</div>
 | 
						|
{{>"systems/foundryvtt-reve-de-dragon/templates/dialog-roll-surenc.html"}}
 | 
						|
<div id="tableAjustements">
 | 
						|
</div>
 | 
						|
<div id="tableResolution">
 | 
						|
</div>
 | 
						|
<div id="tableProbaReussite">  
 | 
						|
</div>
 | 
						|
</form>
 | 
						|
 | 
						|
<script>
 | 
						|
</script>
 |