This commit is contained in:
Dapoolp 2025-07-24 23:48:05 +02:00
parent 9da6a13009
commit 192c739a58
13 changed files with 35 additions and 29 deletions

View file

@ -8,8 +8,8 @@ export default class DHWeapon extends AttachableItem {
label: 'TYPES.Item.weapon',
type: 'weapon',
hasDescription: true,
isInventoryItem: true
// hasInitialAction: true
isInventoryItem: true,
hasActions: true
});
}
@ -63,13 +63,12 @@ export default class DHWeapon extends AttachableItem {
]
}
}
}),
actions: new ActionsField()
})
};
}
get actionsList() {
return new Set([this.attack, ...this.actions]);
return [this.attack, ...this.actions];
}
get customActions() {