From 7e4f51f7ee338ab740239db2bf360ee9a94e91db Mon Sep 17 00:00:00 2001 From: sladecraven Date: Sun, 17 Jan 2021 20:59:43 +0100 Subject: [PATCH] Initial filling --- system.json | 28 +++++++++++++++++++++++++ template.json | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 system.json create mode 100644 template.json diff --git a/system.json b/system.json new file mode 100644 index 0000000..8d275f1 --- /dev/null +++ b/system.json @@ -0,0 +1,28 @@ +{ + "name": "foundryvtt-shadows-over-sol", + "title": "Shadows over Sol", + "description": "Shadows over Sol for FoundryVTT", + "version": "0.0.1", + "manifestPlusVersion": "1.0.0", + "minimumCoreVersion": "0.7.5", + "compatibleCoreVersion": "0.7.9", + "templateVersion": 1, + "author": "LeRatierBretonnien", + "esmodules": [ "module/sos-main.js" ], + "styles": ["styles/simple.css"], + "media": [ + ], + "packs": [ + ], + "library": false, + "languages": [], + "gridDistance": 5, + "gridUnits": "ft", + "primaryTokenAttribute": "attributes.life", + "secondaryTokenAttribute": "attributes.endurance", + "socket": true, + "url": "https://gitlab.com/LeRatierBretonnien/foundryvtt-shadows-over-sol/", + "manifest": "https://gitlab.com/LeRatierBretonnien/foundryvtt-shadows-over-sol/raw/system.json", + "download": "https://gitlab.com/LeRatierBretonnien/foundryvtt-reve-de-dragon/-/archive/master/foundryvtt-shadows-over-sol.zip", + "license": "LICENSE.txt" +} diff --git a/template.json b/template.json new file mode 100644 index 0000000..e451bee --- /dev/null +++ b/template.json @@ -0,0 +1,58 @@ +{ +"Actor": { + "types": ["character", "npc"], + "templates": { + "description": { + "description": "Description ...", + "gmnotes": "GM notes" + }, + "subactors": { + "subactors": { + "followers": [], + "mounts": [], + "vehicules": [] + } + }, + "background": { + "history": "Histoire personnelle...", + "notes": "Notes", + "gmnotes": "Notes du MJ", + "eyes": "", + "hair": "", + "weight": "", + "sex": "", + "age": 0 + }, + "personnage": { + "templates": [ "background", "common", "subactors" ] + }, + "npc": { + "templates": [ "background", "common" ] + } +}, +"Item": { + "types": ["object", "weapon", "armor", "container" ], + "object": { + "description": "", + "quantity": 1, + "enc": 0, + "price": 0 + }, + "container": { + "description": "", + "enc": 0, + "price": 0 + }, + "weapon": { + "description": "", + "enc": 0, + "price": 0 + }, + "armor": { + "description": "", + "enc": 0, + "price": 0 + } + } + } +}