Configuration and customization for Foundry Virtual Tabletop (FVTT)
- dnd5e (the System) ( Project URL, Manifest )
game.modules.filter(m => m.active)
(might not order alphabetically, id
is probably key for ordering while title
is what we use). This list can be updated by Macro. This list is supposed to be to real Production list. Currently there is a bit of a gap during preparing the next update. Maybe in the future it should reflect the accpeted list instead, which would mean it is either Production or what production is supposed to catch up soon, with the list already being somewhat approved.
Reported from RotFM 2024-08-17:
- Autocomplete Whisper (version: 1.0.5) : Project-URL
- Covered Token Rescue HUD (version: 1.2.0) : Project-URL
- DDB-Importer: A D&D Beyond Integrator (version: 5.2.29) : Project-URL
- Dice Tray (version: 2.2.2) : Project-URL
- Tasha's Cauldron of Everything (version: 1.2.0) : Project-URL
- Simple Calendar (version: 2.4.18) : Project-URL
- Item Macro (version: 1.11.1) : Project-URL
- Limithron's Crashed Nautiloid (version: 1.1.0) : Project-URL
- Monk's Bloodsplats (version: 12.01) : Project-URL
- Tablerules - FVTT Module (version: 0.12.2) : Project-URL
- Foundry VTT GitHub, Issues and Documentation only
- Foundry Virtual Tabletop - API Documentation - Version 11
- Foundry VTT Discord Server
- JavaScript
- Roll-Formulas
- Module-Development
- Foundry VTT Community Wiki
- Deleting Properties from Documents
like
game.actors.get("id of actor").update({"system.currency.-=undefined": null})
- Deleting Documents
- dnd5e
- summoning
CONFIG.debug.hooks = true;
- Hooks Listening & Calling
- https://github.com/ruipin/fvtt-lib-wrapper/
CONST.DICE_ROLL_MODES
Note that both have a lot of rolling targets, where items, even if technically simple (but maybe tidious) keep rolling through milestones.
The CPR system did a lot of things fundamentally different from dnd5e.
- cyberpunk-red-core (the System), Project URL
game.modules.filter(m => m.active)
(might not order alphabetically, id
is probably key for ordering while title
is what we use). This list can be updated by Macro. This list is supposed to be to real Production list. Currently there is a bit of a gap during preparing the next update. Maybe in the future it should reflect the accpeted list instead, which would mean it is either Production or what production is supposed to catch up soon, with the list already being somewhat approved.
- Autocomplete Whisper (version: 1.0.4) : Project-URL, Manifest
- Compendium Folders (version: 2.5.7) : Project-URL, Manifest
- Covered Token Rescue HUD (version: 1.0.8) : Project-URL, Manifest
- Simple Calendar (version: 2.2.0) : Project-URL, Manifest
- Frag Maps - Modern, Cyberpunk and Sci-Fi Maps (version: 1.1.1) : Project-URL, Manifest
- FXMaster (version: 3.6.0) : Project-URL, Manifest
- Game Audio Bundle 1 (version: 3.2) : Project-URL, Manifest
- Game Audio Bundle 2 (version: 3.3) : Project-URL, Manifest
- Game Audio Bundle 3 (version: 3.2) : Project-URL, Manifest
- Game Audio Bundle 4 (version: 3.2) : Project-URL, Manifest
- libWrapper (version: 1.12.12.1) : Project-URL, Manifest
- Michael Ghelfi Studios Audio Pack (version: 1.4) : Project-URL, Manifest
- Monk's Bloodsplats (version: 10.1) : Project-URL, Manifest
- Monk's Combat Marker (version: 10.1) : Project-URL, Manifest
- PopOut! (version: 2.13) : Project-URL, Manifest
- Tablerules - CPR Module (version: 0.10.14) : Project-URL, Manifest
- Token Magic FX (version: 0.6.3.2) : Project-URL, Manifest
The ChatMessage is not deeply structured like in dnd5e, but has pretty much everything in content
. A Roll's representation will have the rendered Roll result in content
. Therefore anything modifying afterwards would be String replacements in the HTML and on first glance looks very unlikely to be a good path of doing anything.