Compare commits

..

4 Commits

Author SHA1 Message Date
dmitry kirdyashkin a24fd2bafe v0.0.1.1
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/promote/production Build is passing Details
2024-09-20 23:51:04 +03:00
dmitry kirdyashkin 8e622644c0 v0.0.1.0
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/promote/production Build is passing Details
2024-09-20 23:41:21 +03:00
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
14 changed files with 27 additions and 92 deletions

7
CHANGELOG.md 100644
View File

@ -0,0 +1,7 @@
## v0.0.1.1
* исправлены таблицы
## v0.0.1.0
* удалены ненужные БД
* добавлены случайные таблицы
## 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": "",
"name": "",
"title": "",
"description": "",
"id": "adventure-descent-into-avernus",
"name": "Нисхождение в Аверно",
"title": "Нисхождение в Аверно",
"description": "Приключение для персонажей 1-13 уровней",
"authors": [
{
"name": "leego neit"
@ -11,13 +11,22 @@
"version": "$RELEASE_TAG",
"minimumCoreVersion": "9",
"compatibility": {
"minimum": "9",
"verified": "11",
"maximum": "11"
"minimum": "11",
"verified": "12",
"maximum": "12"
},
"url": "${DRONE_REPO_LINK}",
"manifest": "${DRONE_REPO_LINK}/releases/download/latest/module.json",
"download": "${DRONE_REPO_LINK}/releases/download/$RELEASE_TAG/module.zip",
"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"
}
]
}

View File

File diff suppressed because one or more lines are too long

View File

View File

View File

View File

View File

View File

View File