Register

Effective Tray

An Add-on Module for Foundry Virtual Tabletop

Author: alakshana Project Source: Project URL Versions 11 - 11 (Verified 11) Last Updated 2 days, 19 hours ago

Effective Tray (for D&D Fifth Edition)

A module for dnd5e on foundryvtt that allows the effects and damage trays to be used more effectively.

Effects Tray

Allows users to use the effect tray as much or as little as wanted by the GM, up to and including transferal to targets they do not own. If using this feature (which is on by default), left click to apply effects to selected tokens that the user owns (as the system's default behavior), or right click to apply effects to tokens that the user does not own.

Damage Tray

Allows users to use the damage tray for selected tokens that they own, and for targeted tokens (either that they own, or ones they don't own with a setting). User ability to use the damage tray is on by default, but unless the relevant setting is selected, they cannot damage targets.

Settings

API

Now includes three helper functions exposed in the global scope under effectiv, effectiv.applyEffect, effectiv.applyDamage and effective.partitionTargets. These functions have not been heavily tested and are included now in the hopes that, if someone wants to use them, they will also test them for issues.

applyEffect, a helper function to allow users to apply effects. It allows users to apply effects via macro (or other module), and can take a variety of types of data when doing so, allowing effect data to be passed as the full ActiveEffect document, an effect Uuid, or an object (note that passing it as an object will not interact with refreshing duration or deleting effects of same origin, as determined by module setting, because creating an effect from an object will have its own unique origin). Similarly, this function allows target data to be passed as an array of Uuids, a single Uuid, an array of Tokens, or a Set, as game.user.targets.

This helper also allows the use of the other things the effects tray does, primarily flagging effects with spellLevel, or any other arbitrary flags (via effectData), and making an effect dependent on a concentration effect (so it will be deleted when the concentration effect is). If concentration is used, because it passed as an ID, you must also pass the Uuid or Actor document of the actor the concentration effect is on.

/**
 * Helper function to allow for macros or other applications to apply effects to owned and unowned targets.
 * @param {string|object|ActiveEffect5e} effect            The effect to apply.
 * @param {Set|Token5e[]|string[]|string} targets          Targeted tokens.
 * @param {object} [options]
 * @param {object} [options.effectData]                    A generic data object, which typically handles the level the originating spell was cast at, 
 *                                                         if it originated from a spell, if any. Use flags like { "flags.dnd5e.spellLevel": 1 }.
 * @param {string} [options.concentration]                 The ID (not Uuid) of the concentration effect this effect is dependent on, if any.
 * @param {string|Actor5e} [options.caster]                The Uuid or Actor5e document of the actor that cast the spell that requires concentration, if any.
 */
async function applyEffect(
  effect, 
  targets, 
  { effectData: null, concentration: null, caster: null } = {}
)
 
/* in use...*/
effectiv.applyEffect(
  effect, 
  targets, 
  { effectData: null, concentration: null, caster: null } = {}
)
 

applyDamage, helper function to allow users to apply damage. This function has been tested not at all and is included as a courtesy. Personally I find the way damage information must be structured to respect resistances, etc is too much of a mess to test this even a single time, but if someone really wants to do this over a socket but didn't write their own socket handler for it...here you go. Full, extensive documentation of the array that must be created is in scripts/api.mjs, copied directly from dnd5e, with the exception that socket transmission requires the sets to be arrays. Unlike applyEffect, this applies no damage via the requesting client, and so is basically only meant for damaging unowned targets. Users wishing to apply damage to owned targets should simply use the system's Actor#applyDamage.

/**
 * Helper function to allow for macros or other applications to apply damage via socket request.
 * @param {array} damage Array of damage objects; see above.
 * @param {array} opts   Object of options (which may inlude arrays); see above.
 * @param {string} id    Uuid of the target.
 */
async function applyDamage(damage = [], opts = {}, id)
 
/* in use...*/
effectiv.applyDamage(damage = [], opts = {}, id)
 

partitionTargets, a function similar to foundry's Array#partition but specifically designed to handle game.user.targets, a set, or an array of tokens. It sorts them into two arrays, the first array containing tokens that the user owns, and the second array containing those token's document.uuids. This can be useful for determining what information needs to be sent over sockets. I have no idea why anyone would use this function, but here it is.

/**
 * Sort tokens into owned and unowned categories.
 * @param {Set|array} targets The set or array of tokens to be sorted.
 * @returns {array}           An Array of length two, the elements of which are the partitioned pieces of the original.
 */
function partitionTargets(targets)
/* in use...*/
effectiv.partitionTargets(targets)
Hooks

Now includes two hooks, effectiv.preApplyEffect and effectiv.applyEffect. The former allows the data to be modified and explicitly returning false will prevent the effect from being applied. The later passes the same (modified in the case of effectData), information in its final state upon application.

These hooks have not been extensively tested.

/**
 * Hook called before the effect is completed and applied.
 * @param {Actor5e} actor                The actor to create the effect on.
 * @param {ActiveEffect5e} effect        The effect to create.
 * @param {object} effectData            A generic data object that contains spellLevel in a `dnd5e` scoped flag, and whatever else.
 * @param {ActiveEffect5e} concentration The concentration effect on which `effect` is dependent, if it requires concentration.
 */
Hooks.call("effectiv.preApplyEffect", actor, effect, { effectData, concentration });
/**
 * Hook called before the effect is completed and applied. Same as abvove except for effectData
 * @param {Actor5e} actor                The actor to create the effect on.
 * @param {ActiveEffect5e} effect        The effect to create.
 * @param {object} effectData            The packaged effect immediately before application.
 * @param {ActiveEffect5e} concentration The concentration effect on which `effect` is dependent, if it requires concentration.
 */
Hooks.callAll("effectiv.applyEffect", actor, effect, { effectData, concentration });

Technical Details

Scope: Replaces the effects tray in chat messages with a similar one that allows all users, not just GMs or the chat message's creator, to apply active effects to tokens they control (and have selected) by looping over all messages in the "dnd5e.renderChatMessage" hook. Extends the system's damage application element class to allow users who are not GMs to use the damage tray. Additionally, transmits target target and change data via sockets to allow an active GM client to apply effects (or damage) to a non GM user's targets.

License: MIT License.

Additional Info: Thanks to Zhell for help with adding actors to a set and lots of other stuff (and for the github action), and to Flix for much encouragement. Thanks also to ChaosOS for help with sockets, and DrentalBot for help with suppressing the system's context menu.

Supported Game Systems

  1. Dungeons & Dragons Fifth Edition

    Latest Version: Version 3.1.2 Last Updated 1 month ago

Categories

Available Versions

  1. Version 1.1.20

    2 days, 19 hours ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  2. Version 1.1.19

    3 days, 8 hours ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  3. Version 1.1.18

    3 days, 11 hours ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  4. Version 1.1.17

    6 days, 1 hour ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  5. Version 1.1.16

    6 days, 20 hours ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  6. Version 1.1.15

    1 week, 5 days ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  7. Version 1.1.14

    1 week, 6 days ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  8. Version 1.1.13

    1 week, 6 days ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  9. Version 1.1.12

    1 month ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  10. Version 1.1.11

    1 month, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  11. Version 1.1.10

    1 month, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  12. Version 1.1.9

    1 month, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  13. Version 1.1.7

    1 month, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  14. Version 1.1.6

    1 month, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  15. Version 1.1.5

    1 month, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  16. Version 1.1.4

    1 month, 2 weeks ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  17. Version 1.1.3

    1 month, 3 weeks ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  18. Version 1.1.2

    1 month, 3 weeks ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  19. Version 1.1.1

    1 month, 4 weeks ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  20. Version 1.1.0

    1 month, 4 weeks ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  21. Version 1.0.3

    2 months, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  22. Version 1.0.2

    2 months, 1 week ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes