40 lines
		
	
	
		
			950 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			950 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="chat-message-header">
 | |
|   {{#if actorImg}}
 | |
|   <img class="actor-icon" src="{{actorImg}}" alt="{{alias}}" />
 | |
|   {{/if}}
 | |
|   <h4 class=chat-actor-name>{{alias}}</h4>
 | |
| </div>
 | |
| 
 | |
| <hr>
 | |
| 
 | |
| {{#if actionImg}}
 | |
| <div>
 | |
|   <img class="chat-icon" src="{{actionImg}}" alt="{{name}}" />
 | |
| </div>
 | |
| {{/if}}
 | |
| 
 | |
| <div class="flexcol">ntfabr
 | |
| </div>
 | |
| 
 | |
| <div>
 | |
|   <ul>
 | |
|     <li>Arme : {{arme.name}} {{#if degatsFormula}} (+{{degatsFormula}}) {{/if}}</li>
 | |
|     <li>Information : {{degatsMessage}}</li>
 | |
|     <li>Dégats : {{finalResult}} {{#if arme.system.nonletaux}}(Non létaux){{else}}(Létaux){{/if}}</li>
 | |
|     {{#if nextBonus}}
 | |
|       <li>Bonus pour prochaine attaque : {{nextBonus}}</li>
 | |
|     {{/if}}
 | |
|     {{#if nextMalus}}
 | |
|       <li>Malus au défenseur pour prochaine action : {{nextMalus}}</li>
 | |
|     {{/if}}
 | |
| 
 | |
|       <button class="chat-card-button chat-card-button-degats arme-apply-degats">
 | |
|         Appliquer les dégats/bonus/malus
 | |
|       </button>
 | |
| 
 | |
|     </div> 
 | |
| 
 | |
|   </ul>
 | |
| </div>
 | |
| 
 | |
| </div> |