mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-17 23:49:02 +01:00
Merge branch 'main' into feature/416-reaction-roll-query
This commit is contained in:
commit
36959156d0
247 changed files with 13334 additions and 825 deletions
101
lang/en.json
101
lang/en.json
|
|
@ -8,7 +8,7 @@
|
|||
"feature": "Feature",
|
||||
"domainCard": "Domain Card",
|
||||
"consumable": "Consumable",
|
||||
"miscellaneous": "Miscellaneous",
|
||||
"loot": "Loot",
|
||||
"weapon": "Weapon",
|
||||
"armor": "Armor",
|
||||
"beastform": "Beastform"
|
||||
|
|
@ -28,25 +28,6 @@
|
|||
},
|
||||
"DAGGERHEART": {
|
||||
"ACTIONS": {
|
||||
"Config": {
|
||||
"beastform": {
|
||||
"exact": "Beastform Max Tier",
|
||||
"exactHint": "The Character's Tier is used if empty",
|
||||
"label": "Beastform"
|
||||
}
|
||||
},
|
||||
"Settings": {
|
||||
"attackBonus": "Attack Bonus",
|
||||
"attackName": "Attack Name",
|
||||
"includeBase": { "label": "Include Item Damage" },
|
||||
"multiplier": "Multiplier",
|
||||
"resultBased": {
|
||||
"label": "Formula based on Hope/Fear result."
|
||||
},
|
||||
"applyTo": {
|
||||
"label": "Targeted Resource"
|
||||
}
|
||||
},
|
||||
"TYPES": {
|
||||
"attack": {
|
||||
"name": "Attack",
|
||||
|
|
@ -76,6 +57,35 @@
|
|||
"name": "Summon",
|
||||
"tooltip": "Create tokens in the scene."
|
||||
}
|
||||
},
|
||||
"Config": {
|
||||
"beastform": {
|
||||
"exact": "Beastform Max Tier",
|
||||
"exactHint": "The Character's Tier is used if empty",
|
||||
"label": "Beastform"
|
||||
},
|
||||
"displayInChat": "Display in chat"
|
||||
},
|
||||
"RollField": {
|
||||
"diceRolling": {
|
||||
"compare": "Should be",
|
||||
"dice": "Dice Type",
|
||||
"flatMultiplier": "Flat Multiplier",
|
||||
"multiplier": "Dice Number",
|
||||
"threshold": "Threshold"
|
||||
}
|
||||
},
|
||||
"Settings": {
|
||||
"attackBonus": "Attack Bonus",
|
||||
"attackName": "Attack Name",
|
||||
"includeBase": { "label": "Include Item Damage" },
|
||||
"multiplier": "Multiplier",
|
||||
"resultBased": {
|
||||
"label": "Formula based on Hope/Fear result."
|
||||
},
|
||||
"applyTo": {
|
||||
"label": "Targeted Resource"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ACTORS": {
|
||||
|
|
@ -706,7 +716,7 @@
|
|||
"abbreviation": "HO"
|
||||
},
|
||||
"armorStack": {
|
||||
"name": "Armor Stack",
|
||||
"name": "Armor Slot",
|
||||
"abbreviation": "AS"
|
||||
},
|
||||
"fear": {
|
||||
|
|
@ -1022,6 +1032,9 @@
|
|||
},
|
||||
"damageRoll": {
|
||||
"name": "Damage Roll"
|
||||
},
|
||||
"healingRoll": {
|
||||
"name": "Healing Roll"
|
||||
}
|
||||
},
|
||||
"Duration": {
|
||||
|
|
@ -1109,10 +1122,30 @@
|
|||
},
|
||||
"DamageResistance": {
|
||||
"none": "None",
|
||||
"resistance": "Resistance",
|
||||
"immunity": "Immunity",
|
||||
"physicalReduction": "Physical Damage Reduction",
|
||||
"magicalReduction": "Magical Damage Reduction"
|
||||
"physicalResistance": {
|
||||
"label": "Damage Resistance: Physical",
|
||||
"hint": "Physical Damage is halved if this is set to 1"
|
||||
},
|
||||
"magicalResistance": {
|
||||
"label": "Damage Resistance: Magical",
|
||||
"hint": "Magical Damage is halved if this is set to 1"
|
||||
},
|
||||
"physicalImmunity": {
|
||||
"label": "Damage Immunity: Physical",
|
||||
"hint": "Immune to Physical Damage if this is set to 1"
|
||||
},
|
||||
"magicalImmunity": {
|
||||
"label": "Damage Immunity: Magical",
|
||||
"hint": "Immune to Magical Damage if this is set to 1"
|
||||
},
|
||||
"physicalReduction": {
|
||||
"label": "Damage Reduction: Physical",
|
||||
"hint": "Physical Damage is reduced by the amount set here"
|
||||
},
|
||||
"magicalReduction": {
|
||||
"label": "Damage Reduction: Magical",
|
||||
"hint": "Magical Damage is reduced by the amount set here"
|
||||
}
|
||||
},
|
||||
"DamageThresholds": {
|
||||
"title": "Damage Thresholds",
|
||||
|
|
@ -1245,7 +1278,14 @@
|
|||
},
|
||||
"attack": {
|
||||
"damage": {
|
||||
"value": { "label": "Base Attack: Damage" }
|
||||
"dice": {
|
||||
"label": "Base Attack: Damage Dice Index",
|
||||
"hint": "Index for the damage dice used on the basic attack. 0=d4, 1=d6, 2=d8, 3=d10, 4=d12, 5=d20"
|
||||
},
|
||||
"bonus": { "label": "Base Attack: Damage Bonus" }
|
||||
},
|
||||
"roll": {
|
||||
"trait": { "label": "Base Attack: Trait" }
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -1596,6 +1636,10 @@
|
|||
"hint": "test"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ResetSettings": {
|
||||
"resetConfirmationTitle": "Reset Settings",
|
||||
"resetConfirmationText": "Are you sure you want to reset the {settings}?"
|
||||
}
|
||||
},
|
||||
"UI": {
|
||||
|
|
@ -1633,8 +1677,9 @@
|
|||
"subclassFeatureTitle": "Subclass Feature"
|
||||
},
|
||||
"healingRoll": {
|
||||
"title": "Heal - {healing}",
|
||||
"heal": "Heal"
|
||||
"title": "Heal - {damage}",
|
||||
"heal": "Heal",
|
||||
"applyHealing": "Apply Healing"
|
||||
},
|
||||
"reroll": {
|
||||
"confirmTitle": "Reroll Dice",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue