New labels. Time to print them somewhere.

This commit is contained in:
Nikhil Nagarajan 2025-12-15 16:03:00 -05:00
parent 9b4249b100
commit d2f9b3912b
7 changed files with 58 additions and 1 deletions

View file

@ -30,7 +30,13 @@ export default class DHFeature extends BaseDataItem {
initial: null
}),
multiclassOrigin: new fields.BooleanField({ initial: false }),
identifier: new fields.StringField()
identifier: new fields.StringField(),
featureForm: new fields.StringField({
required: true,
initial: "passive",
choices: CONFIG.DH.ITEM.featureForm,
label: "DAGGERHEART.CONFIG.featureForm.label",
})
};
}
}