diff --git a/lang/en.json b/lang/en.json
index 4e9a9b11..3b2ebec7 100755
--- a/lang/en.json
+++ b/lang/en.json
@@ -33,6 +33,10 @@
}
},
"Settings": {
+ "attackBonus": "Attack Bonus",
+ "attackName": "Attack Name",
+ "includeBase": { "label": "Include Item Damage" },
+ "multiplier": "Multiplier",
"resultBased": {
"label": "Formula based on Hope/Fear result."
}
@@ -134,7 +138,9 @@
"partner": { "label": "Partner" },
"resources": {
"stress": {
- "value": { "label": "Stress" }
+ "value": { "label": "Stress" },
+ "currentStress": { "label": "Current Stress" },
+ "maxStress": { "label": "Max Stress" }
}
}
},
@@ -1229,6 +1235,8 @@
"single": "Trait",
"plural": "Traits"
},
+ "actorName": "Actor Name",
+ "amount": "Amount",
"armorScore": "Armor Score",
"activeEffects": "Active Effects",
"armorSlots": "Armor Slots",
@@ -1259,6 +1267,7 @@
},
"hope": "Hope",
"hordeHp": "Horde HP",
+ "imagePath": "Image Path",
"inactiveEffects": "Inactive Effects",
"inventory": "Inventory",
"level": "Level",
diff --git a/module/data/action/actionDice.mjs b/module/data/action/actionDice.mjs
index d71b390a..a9dd6e56 100644
--- a/module/data/action/actionDice.mjs
+++ b/module/data/action/actionDice.mjs
@@ -87,7 +87,10 @@ export class DHDamageField extends fields.SchemaField {
constructor(options, context = {}) {
const damageFields = {
parts: new fields.ArrayField(new fields.EmbeddedDataField(DHDamageData)),
- includeBase: new fields.BooleanField({ initial: false })
+ includeBase: new fields.BooleanField({
+ initial: false,
+ label: 'DAGGERHEART.ACTIONS.Settings.includeBase.label'
+ })
};
super(damageFields, options, context);
}
diff --git a/templates/actionTypes/damage.hbs b/templates/actionTypes/damage.hbs
index 3c125bd7..0458a5ac 100644
--- a/templates/actionTypes/damage.hbs
+++ b/templates/actionTypes/damage.hbs
@@ -6,7 +6,7 @@
{{#unless (or @root.isNPC path)}}
{{#if @root.hasBaseDamage}}
- {{formField @root.fields.damage.fields.includeBase value=@root.source.damage.includeBase label="Include Item Damage" name="damage.includeBase" classes="checkbox" }}
+ {{formField @root.fields.damage.fields.includeBase value=@root.source.damage.includeBase name="damage.includeBase" classes="checkbox" localize=true }}
{{/if}}
{{/unless}}
{{#each source.parts as |dmg index|}}
@@ -17,7 +17,7 @@
{{formField ../fields.value.fields.custom.fields.formula value=dmg.value.custom.formula name=(concat ../path "damage.parts." index ".value.custom.formula") localize=true}}
{{else}}
- {{#if @root.isNPC}}{{formField ../fields.value.fields.flatMultiplier value=dmg.value.flatMultiplier name=(concat ../path "damage.parts." index ".value.flatMultiplier") label="Multiplier" classes="inline-child" }}{{/if}}
+ {{#if @root.isNPC}}{{formField ../fields.value.fields.flatMultiplier value=dmg.value.flatMultiplier name=(concat ../path "damage.parts." index ".value.flatMultiplier") label="DAGGERHEART.ACTIONS.Settings.multiplier" classes="inline-child" localize=true }}{{/if}}
{{formField ../fields.value.fields.dice value=dmg.value.dice name=(concat ../path "damage.parts." index ".value.dice") classes="inline-child"}}
{{formField ../fields.value.fields.bonus value=dmg.value.bonus name=(concat ../path "damage.parts." index ".value.bonus") localize=true classes="inline-child"}}
@@ -27,7 +27,7 @@