Added Custom Adversary Types

This commit is contained in:
WBHarry 2025-08-22 17:46:39 +02:00
parent e9f7c0c16b
commit 73667a3a03
11 changed files with 156 additions and 10 deletions

View file

@ -108,6 +108,13 @@ export default class DhHomebrew extends foundry.abstract.DataModel {
}),
description: new fields.HTMLField()
})
),
adversaryTypes: new fields.TypedObjectField(
new fields.SchemaField({
id: new fields.StringField({ required: true }),
label: new fields.StringField({ required: true, label: 'DAGGERHEART.GENERAL.label' }),
description: new fields.StringField()
})
)
};
}