add rework of module.json

This commit is contained in:
Ammerhai 2024-10-31 20:48:19 +01:00
parent 4150bcde8b
commit 6c1b56ede1

View File

@ -1,7 +1,7 @@
{ {
"id": "curse-of-strahd", "id": "curse-of-strahd",
"title": "Curse of Strahd", "title": "Curse of Strahd",
"version": "0.1.0", "version": "0.1.1",
"compatibility": { "compatibility": {
"minimum": "12", "minimum": "12",
"verified": "12" "verified": "12"
@ -10,66 +10,86 @@
{ {
"name": "Holgorgrim", "name": "Holgorgrim",
"flags": {} "flags": {}
},
{
"name": "Ammerhai",
"flags": {}
} }
], ],
"url": "https://gitea.ammerhai.com/foundry/curse-of-strahd/",
"packs": [ "packs": [
{ {
"name": "cos-actors", "name": "cos-actors",
"label": "CoS - Akteure", "label": "CoS - Akteure",
"path": "/packs/cos-actors.db", "path": "packs/cos-actors",
"entity": "Actor",
"type": "Actor", "type": "Actor",
"system": "dnd5e" "system": "dnd5e",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
}, },
{ {
"name": "cos-playlists", "name": "cos-playlists",
"label": "CoS - Playlists", "label": "CoS - Playlists",
"path": "/packs/cos-playlists.db", "path": "packs/cos-playlists",
"entity": "Playlist",
"type": "Playlist", "type": "Playlist",
"system": "dnd5e" "system": "dnd5e",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
}, },
{ {
"name": "cos-tarokka-deck", "name": "cos-tarokka-deck",
"label": "CoS - Tarokka Deck", "label": "CoS - Tarokka Deck",
"path": "/packs/cos-tarokka-deck.db", "path": "packs/cos-tarokka-deck",
"entity": "Playlist", "type": "Cards",
"type": "Actor", "system": "dnd5e",
"system": "dnd5e" "ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
}, },
{ {
"name": "cos-items", "name": "cos-items",
"label": "CoS - Items", "label": "CoS - Items",
"path": "/packs/cos-items.db", "path": "packs/cos-items",
"entity": "Item",
"type": "Item", "type": "Item",
"system": "dnd5e" "system": "dnd5e",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
}, },
{ {
"name": "cos-scenes", "name": "cos-scenes",
"label": "CoS - Scenes", "label": "CoS - Scenes",
"path": "/packs/cos-scenes.db", "path": "packs/cos-scenes",
"entity": "Scene", "type": "JournalEntry",
"type": "Scene", "system": "dnd5e",
"system": "dnd5e" "ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
} }
], ],
"packFolders": [ "packFolders": [
{ {
"name": "Curse of Strahd", "name": "Curse of Strahd",
"sorting": "a", "sorting": "a",
"color": "#e10e0e", "color": "#e10e0e",
"packs": "packs": [
[ "cos-actors",
"cos-actors", "cos-playlists",
"cos-playlists", "cos-tarokka-deck",
"cos-tarokka-deck", "cos-items",
"cos-items", "cos-scenes"
"cos-scenes" ],
] "folders": []
} }
], ],
"manifest": "https://gitea.ammerhai.com/foundry/curse-of-strahd/releases/download/latest/module.json", "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" "download": "https://gitea.ammerhai.com/foundry/curse-of-strahd/releases/download/0.1.0/curse-of-strahd.zip"
} }