mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 13:11:08 +01:00
Added so effects can be applied from a partner to a companion and vice versa
This commit is contained in:
parent
fa21baf8bf
commit
f3cf850355
6 changed files with 55 additions and 3 deletions
11
module/data/activeEffect/companionEffect.mjs
Normal file
11
module/data/activeEffect/companionEffect.mjs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import BaseEffect from './baseEffect.mjs';
|
||||
|
||||
export default class CompanionEffect extends BaseEffect {
|
||||
static defineSchema() {
|
||||
const fields = foundry.data.fields;
|
||||
|
||||
return {
|
||||
...BaseEffect.defineSchema()
|
||||
};
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue