forked from public/foundryvtt-reve-de-dragon
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| <h4><img class="chat-icon" src="{{actor.img}}" data-tooltip="{{actor.name}}" />
 | |
|   {{actor.name}} a gagné de l'expérience
 | |
| </h4>
 | |
| {{#each xpData as |it|}}
 | |
|   {{#if (gt it.xpCarac 0)}}
 | |
|     <hr>
 | |
|     <p>
 | |
|     {{it.xpCarac}} point{{#if (gt it.xpCarac 1)}}s{{/if}}
 | |
|     {{#if it.caracRepartitionManuelle}}à répartir manuellement dans la caractéristique dérivée{{else}}en{{/if}}
 | |
|     {{it.caracName}}.
 | |
|     {{#if it.checkCarac}}
 | |
|       L'expérience dans cette caractéristique est de {{it.checkCarac.xp}}, elle peut progresser!
 | |
|       <br>Vous devez ouvrir votre fiche de personnage et appliquer l'augmentation manuellement.
 | |
|     {{/if}}
 | |
|     </p>
 | |
|   {{/if}}
 | |
|   {{#if (gt it.xpCompetence 0)}}
 | |
|     <hr>
 | |
|     <p>
 | |
|     {{it.xpCompetence}} point{{#if (gt it.xpCompetence 1)}}s{{/if}} en {{it.competence.name}}.
 | |
|       {{#if it.checkComp}}
 | |
|         L'expérience dans cette compétence est de {{it.checkComp.xp}}, elle peut progresser jusqu'à {{it.checkComp.niveau}}!
 | |
|         Vous devez ouvrir votre fiche de personnage et appliquer l'augmentation manuellement.
 | |
|         {{#if (gt it.checkComp.niveau it.checkComp.archetype)}}
 | |
|           <br>Le niveau d'archétype est de {{it.checkComp.archetype}}.
 | |
|           {{#if it.checkComp.archetypeWarning}}
 | |
|             <br><strong>ATTENTION !!</strong> Si vous appliquez cette augmentation, votre compétence dépassera l'archétype.
 | |
|             Veuillez contrôler que votre archétype est à jour, ou bien ne pas augmenter le niveau de cette compétence.
 | |
|           {{/if}}
 | |
|         {{/if}}
 | |
|       {{/if}}
 | |
|     </p>
 | |
|   {{/if}}
 | |
| {{/each}} |