mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 07:59:03 +01:00
Removed commented out code
This commit is contained in:
parent
1ecce746b0
commit
201425f247
2 changed files with 6 additions and 7 deletions
|
|
@ -16,10 +16,14 @@ const resourceField = (max, label, reverse = false) =>
|
|||
isReversed: new foundry.data.fields.BooleanField({ initial: reverse })
|
||||
});
|
||||
|
||||
const stressDamageReductionRule = label =>
|
||||
const stressDamageReductionRule = localizationPath =>
|
||||
new foundry.data.fields.SchemaField({
|
||||
enabled: new foundry.data.fields.BooleanField({ required: true, initial: false }),
|
||||
cost: new foundry.data.fields.NumberField({ integer: true, label })
|
||||
cost: new foundry.data.fields.NumberField({
|
||||
integer: true,
|
||||
label: `${localizationPath}.label`,
|
||||
hint: `${localizationPath}.hint`
|
||||
})
|
||||
});
|
||||
|
||||
export default class DhCharacter extends BaseDataActor {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue