mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:26:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			490 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			490 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "loadskil.hpp"
 | 
						|
 | 
						|
namespace ESMS
 | 
						|
{
 | 
						|
    const std::string Skill::sSkillNames[Length] = {
 | 
						|
		"Block",
 | 
						|
		"Armorer",
 | 
						|
		"Medium Armor",
 | 
						|
		"Heavy Armor",
 | 
						|
		"Blunt Weapon",
 | 
						|
		"Long Blade",
 | 
						|
		"Axe",
 | 
						|
		"Spear",
 | 
						|
		"Athletics",
 | 
						|
		"Enchant",
 | 
						|
		"Destruction",
 | 
						|
		"Alteration",
 | 
						|
		"Illusion",
 | 
						|
		"Conjuration",
 | 
						|
		"Mysticism",
 | 
						|
		"Restoration",
 | 
						|
		"Alchemy",
 | 
						|
		"Unarmored",
 | 
						|
		"Security",
 | 
						|
		"Sneak",
 | 
						|
		"Acrobatics",
 | 
						|
		"Light Armor",
 | 
						|
		"Short Blade",
 | 
						|
		"Marksman",
 | 
						|
		"Speechcraft",
 | 
						|
		"Hand To Hand",
 | 
						|
	};
 | 
						|
}
 |