Added VaultActive and LoadoutIgnore

This commit is contained in:
WBHarry 2026-01-11 11:03:06 +01:00
parent 0b343c9f52
commit 7429369212
19 changed files with 62 additions and 39 deletions

View file

@ -29,7 +29,17 @@ export default class DHDomainCard extends BaseDataItem {
required: true,
initial: CONFIG.DH.DOMAIN.cardTypes.ability.id
}),
inVault: new fields.BooleanField({ initial: false })
inVault: new fields.BooleanField({ initial: false }),
vaultActive: new fields.BooleanField({
required: true,
nullable: false,
initial: false
}),
loadoutIgnore: new fields.BooleanField({
required: true,
nullable: false,
initial: false
})
};
}