Initial commit

main
modules 2024-03-13 19:17:34 +00:00
commit 1c14ceb276
13 changed files with 98 additions and 0 deletions

3
.gitignore vendored 100644
View File

@ -0,0 +1,3 @@
temp
*.zip
resources

3
.gitmodules vendored 100644
View File

@ -0,0 +1,3 @@
[submodule "helper-scripts"]
path = helper-scripts
url = https://gitea.kdiva.ru/modules/helper-scripts.git

91
src/module.json 100644
View File

@ -0,0 +1,91 @@
{
"id": "sc-styles",
"title": "new adventure template",
"description": "Различные стили оформления документов",
"version": "1.0.0",
"compatibility": {
"minimum": "10",
"verified": "10",
"maximum": "10"
},
"authors": [
{
"name": "leego_neit"
}
],
"packs": [
{
"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"
}
],
"esmodules": [
"./scripts/init.js"
],
"url": "https://gitea.kdiva.ru/modules/sc-styles",
"manifest": "https://gitea.kdiva.ru/modules/sc-styles/raw/branch/main/src/module.json",
"download": "",
"manifestPlusVersion": "1.2.0"
}

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

@ -0,0 +1 @@
// Module specific code goes here. See https://foundryvtt.com/article/module-development/ for help.