Compare commits

..

2 Commits

Author SHA1 Message Date
dmitry kirdyashkin 0e8c7b7805 v0.0.0.1
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/promote/production Build is passing Details
2024-09-20 23:34:22 +03:00
dmitry kirdyashkin f32096245a v0.0.0.1
continuous-integration/drone/push Build encountered an error Details
2024-09-20 23:31:02 +03:00
4 changed files with 21 additions and 92 deletions

2
CHANGELOG.md 100644
View File

@ -0,0 +1,2 @@
## v0.0.0.1
* создан репозиторий

View File

@ -1,84 +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
helper-scripts 160000

@ -0,0 +1 @@
Subproject commit 709df8cc268343b8db85a61d83678511b4cb5d3d

View File

@ -1,8 +1,8 @@
{ {
"id": "", "id": "adventure-descent-into-avernus",
"name": "", "name": "Нисхождение в Аверно",
"title": "", "title": "Нисхождение в Аверно",
"description": "", "description": "Приключение для персонажей 1-13 уровней",
"authors": [ "authors": [
{ {
"name": "leego neit" "name": "leego neit"
@ -11,13 +11,22 @@
"version": "$RELEASE_TAG", "version": "$RELEASE_TAG",
"minimumCoreVersion": "9", "minimumCoreVersion": "9",
"compatibility": { "compatibility": {
"minimum": "9", "minimum": "11",
"verified": "11", "verified": "12",
"maximum": "11" "maximum": "12"
}, },
"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": "adventure-descent-into-avernus",
"label": "Descent into Avernus",
"path": "/packs/adventure-descent-into-avernus.db",
"entity": "Adventure",
"type": "Adventure",
"system": "dnd5e"
}
]
} }