This commit is contained in:
WBHarry 2026-03-27 09:56:26 +01:00
parent 6bf0fffcb7
commit d44c704a40
2 changed files with 13 additions and 3 deletions

View file

@ -97,6 +97,11 @@ export default class DHBeastform extends BaseDataItem {
/* -------------------------------------------- */
get beastformAttackData() {
const effect = this.parent.effects.find(x => x.type === 'beastform');
return DHBeastform.getBeastformAttackData(effect);
}
static getBeastformAttackData(effect) {
if (!effect) return null;