mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
34 lines
649 B
C++
34 lines
649 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",
|
|
};
|
|
}
|