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