mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 09:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "loadskil.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    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",
 | 
						|
        "Mercantile",
 | 
						|
        "Speechcraft",
 | 
						|
        "Hand To Hand",
 | 
						|
    };
 | 
						|
}
 |