Removed trait useage for companion attack

This commit is contained in:
WBHarry 2025-07-16 00:12:48 +02:00
parent f2176c6238
commit 1ff1ee00dd

View file

@ -60,8 +60,7 @@ export default class DhCompanion extends BaseDataActor {
},
roll: {
type: 'attack',
bonus: 0,
trait: 'instinct'
bonus: 0
},
damage: {
parts: [
@ -87,12 +86,6 @@ export default class DhCompanion extends BaseDataActor {
};
}
get traits() {
return {
instinct: { value: this.attack.roll.bonus }
};
}
get proficiency() {
return this.partner?.system?.proficiency ?? 1;
}