fvtt-hero-system-6/modules/hero6-config.js

57 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-12-15 21:44:23 +01:00
export const Hero6_CONFIG = {
2023-02-21 20:22:08 +01:00
equipmentSubType: {
equipment: "Equipment",
weapon: "Weapon",
armor: "Armor",
2023-03-21 14:01:27 +01:00
shield: "Shield",
money: "Money"
2023-02-21 20:22:08 +01:00
},
2023-03-21 20:43:41 +01:00
maneuverTypes: {
"general": "General",
"offensive": "Offensive",
"defensive": "Defensive"
},
2022-12-15 21:44:23 +01:00
rollCharac : {
"str": "Strength",
"dex": "Dexterity",
"con": "Constitution",
2022-12-28 10:30:56 +01:00
"int": "Intelligence",
"ego": "Ego",
"pre": "Presence",
"manual": "Manual",
2022-12-15 21:44:23 +01:00
},
skillType: {
"agility": "Agility",
"interaction": "Interaction",
"intellect": "Intellect" ,
"background": "Background" ,
"combat": "Combat" ,
2022-12-28 10:30:56 +01:00
"custom": "Custom"
},
powerEquipmentType: {
2022-12-29 20:30:28 +01:00
"adjustment": "Adjustment",
"mental": "Mental",
"movement": "Movement",
"size": "Size",
"special": "Special",
"standard": "Standard"
},
powerTypeModifiers : {
"none": "None",
2022-12-28 10:30:56 +01:00
"attack": "Attack",
2022-12-29 20:30:28 +01:00
"automaton": "Automaton",
2023-01-04 22:43:01 +01:00
"bodyaffecting": "Body-Affecting",
2022-12-28 10:30:56 +01:00
"defense": "Defense",
2022-12-29 20:30:28 +01:00
"sensory": "Sensory"
},
powerSenseAffecting: {
"none": "None",
2023-01-04 22:43:01 +01:00
"senseaffecting": "Sense-Affecting",
2023-04-06 16:57:19 +02:00
},
powerEffectRoll: {
"standard": "Standard",
"normal": "Normal",
"killing": "Killing",
2022-12-15 21:44:23 +01:00
}
}