Compare commits

..

No commits in common. "f3cd00719c970146105763c2b2509e67f8832232" and "c5a4ce3a12f7190fbfdff7398ecea859dbf73599" have entirely different histories.

12 changed files with 91 additions and 21 deletions

View File

@ -1,4 +1,84 @@
# Приключение "Воины Сеанин" # Файл шаблона для новых репозиториев
## v0.0.0.1 Для дальнейшей работы необходимо:
* создан репозиторий * добавить субмодуль со скриптами: git submodule add https://gitea.kdiva.ru/modules/helper-scripts.git
* заполнить поля в `module.json.template`
```json
"id": "",
"name": "",
"title": "",
"description": "",
...
"packs": []
```
`packs` может включать в себя следующие элементы:
```json
{
"name": "actors",
"label": "new adventure template",
"path": "/packs/actors.db",
"entity": "Actor",
"type": "Actor",
"system": "dnd5e"
},
{
"name": "adventure",
"label": "new adventure template",
"path": "/packs/adventure.db",
"entity": "Adventure",
"type": "Adventure",
"system": "dnd5e"
},
{
"name": "cards",
"label": "new adventure template",
"path": "/packs/cards.db",
"entity": "Cards",
"type": "Cards"
},
{
"name": "items",
"label": "new adventure template",
"path": "/packs/items.db",
"entity": "Item",
"type": "Item",
"system": "dnd5e"
},
{
"name": "journals",
"label": "new adventure template",
"path": "/packs/journals.db",
"entity": "JournalEntry",
"type": "JournalEntry"
},
{
"name": "macros",
"label": "new adventure template",
"path": "/packs/macros.db",
"entity": "Macro",
"type": "Macro"
},
{
"name": "maps",
"label": "new adventure template",
"path": "/packs/maps.db",
"entity": "Scene",
"type": "Scene"
},
{
"name": "playlists",
"label": "new adventure template",
"path": "/packs/playlists.db",
"entity": "Playlist",
"type": "Playlist"
},
{
"name": "rolltables",
"label": "new adventure template",
"path": "/packs/rolltables.db",
"entity": "RollTable",
"type": "RollTable"
}
```

@ -1 +0,0 @@
Subproject commit ce582f5b3835762ea5c67d6669dee0c08f8e09c1

View File

@ -1,32 +1,23 @@
{ {
"id": "adv-warriors-of-sehanine", "id": "",
"name": "", "name": "",
"title": "Воины Сеанин", "title": "",
"description": "Приключение для персонажей 3-5 уровней", "description": "",
"authors": [ "authors": [
{ {
"name": "leego neit" "name": "leego neit"
} }
], ],
"version": "$RELEASE_TAG", "version": "$RELEASE_TAG",
"minimumCoreVersion": "11", "minimumCoreVersion": "9",
"compatibility": { "compatibility": {
"minimum": "11", "minimum": "9",
"verified": "12", "verified": "11",
"maximum": "12" "maximum": "11"
}, },
"url": "${DRONE_REPO_LINK}", "url": "${DRONE_REPO_LINK}",
"manifest": "${DRONE_REPO_LINK}/releases/download/latest/module.json", "manifest": "${DRONE_REPO_LINK}/releases/download/latest/module.json",
"download": "${DRONE_REPO_LINK}/releases/download/$RELEASE_TAG/module.zip", "download": "${DRONE_REPO_LINK}/releases/download/$RELEASE_TAG/module.zip",
"styles": [], "styles": [],
"packs": [ "packs": []
{
"name": "warriors-of-sehanine-adventure",
"label": "Warriors of Sehanine",
"path": "/packs/warriors-of-sehanine-adventure.db",
"entity": "Adventure",
"type": "Adventure",
"system": "dnd5e"
}
]
} }

View File

View File

View File

View File

View File

View File

View File

View File

View File