Automates the sharing of buffs between tokens. This makes handling auras easier. The conditions for automating the auras are listed in the notes below. (It's pretty simple)
Instructions:
Create a buff (item on a character sheet) with the dictionary flag: "radius" of at least 0.
...the buff now automatically shares depending on the flags below:
Mandatory flags for the buff to share:
- radius
- flag type: Dictionary
- setting this above -1 triggers the buff or "aura" to share
Optional flags that can be added to the buff:
- shareInactive
- flag type: Boolean
- shares the buff even if it is toggled off. Great for buffs that only impact allies
- shareEnemies
- flag type: Boolean
- shares the buff with enemies (instead of allies). Typically combined with shareInactive
- shareNeutral
- flag type: Boolean
- shares the buff with targets with neutral disposition
- shareAll
- flag type: Boolean
- shares the buff with everyone regardless of disposition
- shareUnconscious
- flag type: Boolean
- shares the buff even if you're unconscious. (This works like the Diehard feat, but allows DMs more control over individual auras.)
note: these are case sensitive.
Conditions for Applying Auras
Adds the buff to allies if:
- The source actor has a buff with a radius > 0
- The buff is enabled, OR if the source actor's buff has the "shareInactive" Boolean flag
Adds the buff to allies when:
- They enter range (either actor can move)
- The buff is toggled on
- A Token is created in the scene, and allies are in range
- The aura actor's HP rises above 0
Adds the buff to enemies if:
- The buff also has a "shareEnemies" Boolean Flag. Note: You typically would combine this with "shareInactive" so that the buff doesn't hurt the source actor
Deactives or Deletes the buff when:
NOTE: These can be toggled between activate auras and delete auras in the module settings
- The source moves out of range
- The recipient moves out of range
- The source disables the buff, and the buff does not have the "alliesOnly" Boolean Flag
- The source's HP falls below zero, unless: It has the Diehard feat -OR- Unconscious Auras is toggled OFF in the menus
Deletes the buff when:
- The source is deleted