mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-30 21:24:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function displaySchoolLevel (spell) {
 | |
|   let result = ''
 | |
|   if (spell.level == 0 || spell.level == "0") {
 | |
|     result = spell.school + ', Tour de magie'
 | |
|   } else {
 | |
|     result = spell.school + ' de niveau ' + spell.level
 | |
|   }
 | |
|   if (spell.ritual) {
 | |
|     result = result + ' (rituel)'
 | |
|   }
 | |
|   return result
 | |
| }
 | 
