Added effects to domainCards

This commit is contained in:
WBHarry 2025-06-25 17:40:33 +02:00
parent d9c003b64b
commit edbb32ccc0
8 changed files with 68 additions and 13 deletions

View file

@ -4,6 +4,10 @@ export default class DhActiveEffect extends ActiveEffect {
return !this.parent.system.equipped;
}
if (this.parent.type === 'domainCard') {
return this.parent.system.inVault;
}
return super.isSuppressed;
}