Compare commits

..

No commits in common. "1c2c96c5b0bfe2696b3713b986d41628b6fbc8fe" and "4a6dbe33e15952e175ce5cc3544586a28f81914d" have entirely different histories.

3 changed files with 88 additions and 18 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 c3d869011d8b4431a5e14a6cb86da517c3e21ad9

View File

@ -1,8 +1,8 @@
{ {
"id": "sc-adventures-pf2e", "id": "",
"name": "shared-compendia-adventures-pf2e", "name": "",
"title": "Shared Compendia Adventures for pf2e", "title": "",
"description": "Adventures to play", "description": "",
"authors": [ "authors": [
{ {
"name": "leego neit" "name": "leego neit"
@ -19,14 +19,5 @@
"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": "sc-adventures-pf2e",
"label": "new adventure template",
"path": "/packs/sc-adventures-pf2e.db",
"entity": "Adventure",
"type": "Adventure",
"system": "pf2e"
}
]
} }