36 lines
1.6 KiB
JavaScript
36 lines
1.6 KiB
JavaScript
|
|
export const WEAPON_TYPE = {
|
|
"melee": "LETHALFANTASY.Weapon.WeaponType.melee",
|
|
"ranged": "LETHALFANTASY.Weapon.WeaponType.ranged"
|
|
}
|
|
|
|
export const WEAPON_CLASS = {
|
|
"longblade": "LETHALFANTASY.Weapon.WeaponClass.longblade",
|
|
"shortblade": "LETHALFANTASY.Weapon.WeaponClass.shortblade",
|
|
"mediumblade": "LETHALFANTASY.Weapon.WeaponClass.mediumblade",
|
|
"axe": "LETHALFANTASY.Weapon.WeaponClass.axe",
|
|
"hammer": "LETHALFANTASY.Weapon.WeaponClass.hammer",
|
|
"mace": "LETHALFANTASY.Weapon.WeaponClass.mace",
|
|
"flail": "LETHALFANTASY.Weapon.WeaponClass.flail",
|
|
"bow": "LETHALFANTASY.Weapon.WeaponClass.bow",
|
|
"sling": "LETHALFANTASY.Weapon.WeaponClass.sling",
|
|
"thrown": "LETHALFANTASY.Weapon.WeaponClass.thrown",
|
|
"polearm": "LETHALFANTASY.Weapon.WeaponClass.polearm",
|
|
"unarmed" : "LETHALFANTASY.Weapon.WeaponClass.unarmed"
|
|
}
|
|
|
|
export const WEAPON_CATEGORIES = {
|
|
"longblade": ["mediumblade", "shortblade"],
|
|
"shortblade": ["mediumblade", "longblade"],
|
|
"mediumblade": ["shortblade", "longblade"],
|
|
"axe": ["hammer", "mace", "flail", "bow", "sling", "thrown", "polearm"],
|
|
"hammer": ["axe", "mace", "flail", "bow", "sling", "thrown", "polearm"],
|
|
"mace": ["axe", "hammer", "flail", "bow", "sling", "thrown", "polearm"],
|
|
"flail": ["axe", "hammer", "mace", "bow", "sling", "thrown", "polearm"],
|
|
"bow": ["axe", "hammer", "mace", "flail", "sling", "thrown", "polearm"],
|
|
"sling": ["axe", "hammer", "mace", "flail", "bow", "thrown", "polearm"],
|
|
"thrown": ["axe", "hammer", "mace", "flail", "bow", "sling", "polearm"],
|
|
"polearm": ["axe", "hammer", "mace", "flail", "bow", "sling", "thrown"]
|
|
}
|
|
|