- title/alt remplacés par des data-tooltip - description de ce que font les boutons - description des items survolés
		
			
				
	
	
		
			52 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <form class="{{cssClass}}" autocomplete="off">
 | |
|   <header class="sheet-header">
 | |
|     <img class="profile-img" src="{{img}}" data-edit="img" data-tooltip="{{name}}" />
 | |
|     <div class="header-fields">
 | |
|       <h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
 | |
|       {{>'systems/foundryvtt-reve-de-dragon/templates/item/boutons-comestible.html'}}
 | |
|     </div>
 | |
|   </header>
 | |
| 
 | |
|   <nav class="sheet-tabs tabs" data-group="primary">
 | |
|     <a class="item" data-tab="informations">Informations</a>
 | |
|     {{>"systems/foundryvtt-reve-de-dragon/templates/item/partial-tab-environnement.html"}}
 | |
|   </nav>
 | |
| 
 | |
|   <section class="sheet-body">
 | |
|     <div class="tab items" data-group="primary" data-tab="informations">
 | |
|       <div class="flexcol">
 | |
|         <div class="form-group">
 | |
|           <label for="system.sust">Sustentation (si applicable)</label>
 | |
|           <input class="attribute-value" type="number" name="system.sust" value="{{system.sust}}" data-dtype="Number" min="0"/>
 | |
|         </div>
 | |
|         {{#if (gt system.sust 0)}}
 | |
|         <div class="form-group">
 | |
|           <label for="system.exotisme">Exotisme</label>
 | |
|           <input class="attribute-value" type="number" name="system.exotisme" value="{{system.exotisme}}" data-dtype="Number" min="-10" max="0"/>
 | |
|         </div>
 | |
|         {{/if}}
 | |
|         <div class="form-group">
 | |
|           <label>Créature correspondante</label>
 | |
|           <div>
 | |
|           {{#if system.actor.id}}
 | |
|             {{#if options.isGM}}
 | |
|             <label>
 | |
|               {{>'systems/foundryvtt-reve-de-dragon/templates/common/compendium-link.hbs'
 | |
|                 pack=system.actor.pack id=system.actor.id name=system.actor.name}}
 | |
|             </label>
 | |
|             <a class="linked-actor-delete" data-tooltip="Supprimer"><i class="fas fa-trash"></i></a>
 | |
|             {{else}}
 | |
|             <label>{{system.actor.name}}</label>
 | |
|             {{/if}}
 | |
|           {{else}}
 | |
|             <label>Pas de fiche de créature</label>
 | |
|           {{/if}}
 | |
|           </div>
 | |
|         </div>
 | |
|         {{>"systems/foundryvtt-reve-de-dragon/templates/item/partial-inventaire.html"}}
 | |
|         {{>"systems/foundryvtt-reve-de-dragon/templates/partial-item-description.html"}}
 | |
|       </div>
 | |
|     </div>
 | |
|     {{>"systems/foundryvtt-reve-de-dragon/templates/item/partial-environnement.html"}}
 | |
|   </section>
 | |
| </form> |