Weaponhandling while in beastform

This commit is contained in:
WBHarry 2025-07-19 03:36:32 +02:00
parent 721eb347db
commit 87f29c3bb3
4 changed files with 23 additions and 1 deletions

View file

@ -325,6 +325,14 @@ export default class DhCharacter extends BaseDataActor {
return this.parent.items.find(x => x.type === 'armor' && x.system.equipped);
}
get activeBeastform() {
return this.parent.effects.find(x => x.type === 'beastform');
}
get unarmedIcon() {
return this.activeBeastform ? 'icons/creatures/claws/claw-straight-brown.webp' : this.attack.img;
}
get sheetLists() {
const ancestryFeatures = [],
communityFeatures = [],