2023-01-04 22:09:18 +01:00
|
|
|
export const WARHERO_CONFIG = {
|
|
|
|
|
|
|
|
weaponTypes : {
|
|
|
|
short: {damage: "1d6", label: "WH.conf.short"},
|
|
|
|
long: {damage: "1d8", label: "WH.conf.long"},
|
|
|
|
twohanded: {damage: "3d6", label: "WH.conf.twohanded"},
|
2023-02-08 19:38:09 +01:00
|
|
|
polearm: {damage: "1d6", label: "WH.conf.polearm"},
|
2023-01-04 22:09:18 +01:00
|
|
|
shooting: {damage: "2d6", label: "WH.conf.shooting"},
|
|
|
|
throwing: {damage: "1d8", label: "WH.conf.throwing"},
|
2023-02-08 21:19:53 +01:00
|
|
|
special: {damage: "1d6", label: "WH.conf.special"},
|
2023-01-04 22:09:18 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
armorTypes : {
|
|
|
|
light: {protection: "2", label: "WH.conf.lightarmor"},
|
|
|
|
medium: {protection: "4", label: "WH.conf.mediumarmor"},
|
|
|
|
heavy: {protection: "6", label: "WH.conf.heavyarmor"},
|
|
|
|
},
|
|
|
|
|
|
|
|
shieldTypes : {
|
2023-01-06 17:45:36 +01:00
|
|
|
light: {parry: "1", label: "WH.conf.lightshield"},
|
|
|
|
medium: {parry: "3", label: "WH.conf.mediumshield"},
|
|
|
|
tower: {parry: "5", label: "WH.conf.towershield"},
|
|
|
|
},
|
2023-03-10 18:32:13 +01:00
|
|
|
|
|
|
|
partySlotNames : {
|
|
|
|
storage: {nbslots: 2000, itemtype:"equipment", label: "WH.conf.partystorage"}
|
|
|
|
},
|
2023-01-06 17:45:36 +01:00
|
|
|
|
|
|
|
slotNames : {
|
2023-02-06 07:37:39 +01:00
|
|
|
head: {nbslots: 1, itemtype:"armor", label: "WH.conf.head"},
|
|
|
|
cloak: {nbslots: 1, itemtype:"equipment", label: "WH.conf.cloak"},
|
|
|
|
weapon1: {nbslots: 1, itemtype:"weapon", label: "WH.conf.weapon1"},
|
|
|
|
weapon2: {nbslots: 1, itemtype:"weapon", label: "WH.conf.weapon2"},
|
|
|
|
gloves: {nbslots: 1, itemtype:"equipment",label: "WH.conf.gloves"},
|
|
|
|
ring: {nbslots: 10, itemtype:"equipment",label: "WH.conf.ring"},
|
|
|
|
dress: {nbslots: 1, itemtype:"equipment",label: "WH.conf.dress"},
|
|
|
|
boots: {nbslots: 1, itemtype:"equipment",label: "WH.conf.boots"},
|
|
|
|
armor: {nbslots: 1, itemtype:"armor",label: "WH.conf.armor"},
|
|
|
|
shield: {nbslots: 1, itemtype:"shield",label: "WH.conf.shield"},
|
2023-03-10 18:32:13 +01:00
|
|
|
belt: {nbslots: 6, itemtype:"equipment", container: true, available: true, parent: undefined, label: "WH.conf.belt"},
|
|
|
|
quiver: {nbslots: 20, itemtype:"equipment",container: true, available: true, parent: undefined, label: "WH.conf.quiver"},
|
|
|
|
backpack: {nbslots: 12, itemtype:"equipment",container: true, available: true, parent: undefined, label: "WH.conf.backpack"},
|
|
|
|
beltpouch1: {nbslots: 4, itemtype:"equipment",container: true, available: true, parent: undefined, label: "WH.conf.beltpouch1"},
|
|
|
|
beltpouch2: {nbslots: 4, itemtype:"equipment", container: true, available: true, parent: undefined, label: "WH.conf.beltpouch2"},
|
|
|
|
beltpouch3: {nbslots: 4, itemtype:"equipment", container: true, available: true, parent: undefined, label: "WH.conf.beltpouch3"},
|
|
|
|
scrollcase: {nbslots: 17, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.scrollcase"},
|
|
|
|
wandcase: {nbslots: 10, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.wandcase"},
|
|
|
|
potioncase: {nbslots: 8, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.potioncase"},
|
|
|
|
bagholding: {nbslots: 30, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.bagholding"},
|
|
|
|
quiverholding: {nbslots: 9999, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.quiverholding"},
|
|
|
|
backpackholding: {nbslots: 90, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.backpackholding"},
|
|
|
|
smallchest: {nbslots: 6, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.smallchest"},
|
|
|
|
mediumchest: {nbslots: 12, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.mediumchest"},
|
|
|
|
largechest: {nbslots: 24, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.largechest"},
|
|
|
|
hugechest: {nbslots: 24, itemtype:"equipment", container: true, available: false, parent: undefined, label: "WH.conf.hugechest"},
|
2023-01-21 17:56:14 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
progressionList: {
|
|
|
|
"high": "High (+6HP/Lvl)",
|
|
|
|
"medium": "Medium (+4HP/Lvl)",
|
|
|
|
"low": "Low (+2 HP/Lvl)"
|
2023-02-27 22:04:03 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
poisonApplication: {
|
|
|
|
touch: "WH.ui.Touch",
|
|
|
|
ingestion: "WH.ui.Ingestion",
|
|
|
|
weapon: "WH.ui.Weapon"
|
|
|
|
},
|
|
|
|
|
|
|
|
saveType: {
|
|
|
|
halfdmg: "WH.ui.halfdamage",
|
|
|
|
ignore: "WH.ui.ignoreeffect"
|
|
|
|
},
|
|
|
|
|
|
|
|
conditionType : {
|
|
|
|
generic: "WH.ui.generic",
|
|
|
|
bless: "WH.ui.bless",
|
|
|
|
spell: "WH.ui.spell",
|
|
|
|
disease: "WH.ui.disease",
|
|
|
|
poison: "WH.ui.poison",
|
|
|
|
curse: "WH.u,i.curse"
|
|
|
|
},
|
|
|
|
|
|
|
|
conditionDuration: {
|
|
|
|
permanent: "WH.ui.permanent",
|
|
|
|
temporary: "WH.ui.temporary"
|
|
|
|
},
|
|
|
|
|
|
|
|
conditionSpecialDuration : {
|
|
|
|
infinite: "WH.ui.infinite",
|
|
|
|
withineor: "WH.uiwithineor",
|
|
|
|
beginr: "WH.ui.beginr",
|
|
|
|
nextr: "WH.ui.nextr",
|
|
|
|
nextcombat: "WH.ui.nextcombat",
|
|
|
|
untilendcombat: "WH.ui.untilendcombat",
|
|
|
|
beginturn: "WH.ui.beginturn",
|
|
|
|
endturn: "WH.ui.endturn"
|
2023-03-04 17:34:18 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
identifiedState: {
|
|
|
|
unknown: "WH.conf.unknown",
|
|
|
|
yes:"WH.conf.yes",
|
|
|
|
no:"WH.conf.no",
|
|
|
|
notapplicable:"WH.conf.notapplicable"
|
2023-01-04 22:09:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|