forked from public/foundryvtt-wh4-lang-fr-fr
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			307 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			307 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| if (this.item.system.quantity.value)
 | |
| {
 | |
| 	this.item.system.reduceQuantity();
 | |
| 	let actor = Array.from(game.user.targets)[0]?.actor || this.actor;
 | |
| 	actor.applyEffect({effectData : [this.item.effects.contents[3].convertToApplied()]})
 | |
| }
 | |
| else
 | |
| {
 | |
| 	this.script.scriptNotification("Quantité insuffisante!", "error")
 | |
| } |