A Foundry VTT module to share Data between worlds via compendia for D&D 4e worlds.
- Go to the Add-on Modules tab within the FoundryVTT Configuration and Setup page.
- Click the
Install Module
button. - Paste the Module's Manifest URL
into the
Manifest URL
field. - Click the
Install
button.
WARNING: If you update this module, FoundryVTT will erase your compendia. |
---|
- Option 1 (easier): Locking your module:
- Option 2: Updating your
module.json
file:- Go to the Module's installation folder within foundry (
~/Data/modules/My Shared Compendia dnd4e
) and update themodule.json
file. - Remove lines 68-69 (
download
andmanifest
) and save the file. - Restart Foundry to reload the module.
- Go to the Module's installation folder within foundry (
Remember that you need to unlock your compendia to be able to add things to them.
This module comes with 13 Default compendia:
Actors (shared)
(Actor)Adventures (shared)
(Adventures)Classes (shared)
(Item)Feats (shared)
(Item)Items (shared)
(Item)Journal Entries (shared)
(JournalEntry)Macros (shared)
(Macro)Monsters (shared)
(Actor)Playlists (shared)
(Playlist)Roll Tables (shared)
(RollTable)Scenes (shared)
(Scene)Spells (shared)
(Item)Subclasses (shared)
(Item)
To change the default setup, edit the module.json
file. All compendia are defined within the "packs" attribute beginning with line 18.
For example:
{
"packs": [
{
"name": "monsters",
"system": "dnd4e",
"label": "Monsters",
"path": "./packs/monsters.db",
"module": "my-shared-compendia-dnd4e",
"type": "Actor"
},
{
"name": "my-custom-items",
"system": "dnd4e",
"label": "My Custom Items",
"path": "./packs/items.db",
"module": "my-shared-compendia-dnd4e",
"type": "Item"
}
]
}
Note: There are no compendium Types for Classes, Feats, and Features in Foundry, so the Item
type is generally used for these.
- D&D 4th Edition is required: The Game System adds some SRD Compendia.
- Using Compendium Folders is highly recommended.
Credit for the cleaner version goes to npiani. Process explained by /u/solfolango on /r/FoundryVTT. And all the authors of the My Shared Compendia module that this one is but a fork of (https://github.com/stschoelzel/My-Shared-Compendia)