23 lines
491 B
JavaScript
23 lines
491 B
JavaScript
export const CATEGORY = Object.freeze({
|
|
layperson: {
|
|
id: "layperson",
|
|
label: "LETHALFANTASY.Skill.Category.layperson",
|
|
},
|
|
professional: {
|
|
id: "professional",
|
|
label: "LETHALFANTASY.Skill.Category.professional",
|
|
},
|
|
weapon: {
|
|
id: "weapon",
|
|
label: "LETHALFANTASY.Skill.Category.weapon",
|
|
},
|
|
armor: {
|
|
id: "armor",
|
|
label: "LETHALFANTASY.Skill.Category.armor",
|
|
},
|
|
resist: {
|
|
id: "resist",
|
|
label: "LETHALFANTASY.Skill.Category.resist",
|
|
}
|
|
})
|