mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-30 21:24:18 +00:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
	
		
			651 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			651 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | export const stats = { | ||
|  |   abilities: { | ||
|  |     for: {label: 'Force', abbr: 'For'}, | ||
|  |     dex: {label: 'Dextérité', abbr: 'Dex'}, | ||
|  |     con: {label: 'Constitution', abbr: 'Con'}, | ||
|  |     int: {label: 'Intelligence', abbr: 'Int'}, | ||
|  |     sag: {label: 'Sagesse', abbr: 'Sag'}, | ||
|  |     cha: {label: 'Charisme', abbr: 'Cha'}, | ||
|  |   }, | ||
|  |    | ||
|  |   sizes: { | ||
|  |     tp: { label: "Très petit", abbr: "TP", hitDie: 4 }, | ||
|  |     p: { label: "Petit", abbr: "P", hitDie: 6 }, | ||
|  |     m: { label: "Moyen", abbr: "M", hitDie: 8 }, | ||
|  |     g: { label: "Grand", abbr: "G", hitDie: 10 }, | ||
|  |     tg: { label: "Très grand", abbr: "TG", hitDie: 12 }, | ||
|  |     gig: { label: "Gigantesque", abbr: "Gig", hitDie: 20 }, | ||
|  |   } | ||
|  | } |