From 6c1b56ede17640feae139a1e4fe2f303adad4361 Mon Sep 17 00:00:00 2001 From: Ammerhai Date: Thu, 31 Oct 2024 20:48:19 +0100 Subject: [PATCH] add rework of module.json --- module.json | 86 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 53 insertions(+), 33 deletions(-) diff --git a/module.json b/module.json index 8e24733..ce72a94 100644 --- a/module.json +++ b/module.json @@ -1,7 +1,7 @@ { "id": "curse-of-strahd", "title": "Curse of Strahd", - "version": "0.1.0", + "version": "0.1.1", "compatibility": { "minimum": "12", "verified": "12" @@ -10,66 +10,86 @@ { "name": "Holgorgrim", "flags": {} + }, + { + "name": "Ammerhai", + "flags": {} } ], + "url": "https://gitea.ammerhai.com/foundry/curse-of-strahd/", "packs": [ { "name": "cos-actors", "label": "CoS - Akteure", - "path": "/packs/cos-actors.db", - "entity": "Actor", + "path": "packs/cos-actors", "type": "Actor", - "system": "dnd5e" + "system": "dnd5e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "name": "cos-playlists", "label": "CoS - Playlists", - "path": "/packs/cos-playlists.db", - "entity": "Playlist", + "path": "packs/cos-playlists", "type": "Playlist", - "system": "dnd5e" + "system": "dnd5e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "name": "cos-tarokka-deck", "label": "CoS - Tarokka Deck", - "path": "/packs/cos-tarokka-deck.db", - "entity": "Playlist", - "type": "Actor", - "system": "dnd5e" + "path": "packs/cos-tarokka-deck", + "type": "Cards", + "system": "dnd5e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "name": "cos-items", "label": "CoS - Items", - "path": "/packs/cos-items.db", - "entity": "Item", + "path": "packs/cos-items", "type": "Item", - "system": "dnd5e" + "system": "dnd5e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "name": "cos-scenes", "label": "CoS - Scenes", - "path": "/packs/cos-scenes.db", - "entity": "Scene", - "type": "Scene", - "system": "dnd5e" + "path": "packs/cos-scenes", + "type": "JournalEntry", + "system": "dnd5e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } } ], "packFolders": [ - { - "name": "Curse of Strahd", - "sorting": "a", - "color": "#e10e0e", - "packs": - [ - "cos-actors", - "cos-playlists", - "cos-tarokka-deck", - "cos-items", - "cos-scenes" - ] - } + { + "name": "Curse of Strahd", + "sorting": "a", + "color": "#e10e0e", + "packs": [ + "cos-actors", + "cos-playlists", + "cos-tarokka-deck", + "cos-items", + "cos-scenes" + ], + "folders": [] + } ], - "manifest": "https://gitea.ammerhai.com/foundry/curse-of-strahd/releases/download/latest/module.json", "download": "https://gitea.ammerhai.com/foundry/curse-of-strahd/releases/download/0.1.0/curse-of-strahd.zip" -} \ No newline at end of file +} + \ No newline at end of file