daggerheart/system.json
joaquinpereyra98 b8930b18a4
Bug/103 enrich htmlfield content before its used in applications (#369)
* FIX: Add enritch to HTMLField
FIX: Remove no-HTMLField from Manifest
FIX: Convert Scar's HTMLField to StringField
FIX: Remove unused HTMLField

* REMOVE unused hanldebars helpers

* FEAT: add inventory-fieldset-items-V2 and inventory-item-V2  partials for Actors

* FIX showLabels to hideTags

* FEAT: add template to items sheet

* FEAT: add effects tabs on ItemSheet

* FEAT: add context menus for all inventory-items

* FEAT: add resources to inventory-item template

* FEAT: add enritch on inventory-item description
FEAT: add extensible behavior on inventory-item-content
FEAT: add fade effect on item-img to roll-itmg

* FEAT: add eritch to NPC description
FIX: missing htmlFieldss on manfiest
FIX: add misisng localizations

* FIX_ minor fixes

* Little resource fix. Noone will notice ._.

* FIX: remove default list styles
FIX: .extended css reduce max-height, shorten animation duration to 0.5s, and set overflow to auto.
FIX: set enriched=notes.enriche on notes.hbs
FIX: set experience.value on sidebar.hbs
FIX: move tooltip from item-img to img-portrait on inventory-item-V2.hbs
REMOVE: unused files

---------

Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com>
Co-authored-by: WBHarry <williambjrklund@gmail.com>
2025-07-19 22:21:46 +02:00

249 lines
6.6 KiB
JSON

{
"id": "daggerheart",
"title": "Daggerheart",
"description": "An unofficial implementation of the Daggerheart system",
"version": "0.0.1",
"compatibility": {
"minimum": "13",
"verified": "13.346",
"maximum": "13"
},
"authors": [
{
"name": "WBHarry"
},
{
"name": "cptn-cosmo"
},
{
"name": "Ikraik"
},
{
"name": "IrkTheImp"
},
{
"name": "jacobwojoski"
},
{
"name": "moliloo"
},
{
"name": "Mysteryusy"
},
{
"name": "JimCanE"
},
{
"name": "Po0lp"
},
{
"name": "JoaquinP",
"url": "https://github.com/joaquinpereyra98",
"email": "joaquinpereyra98@gmail.com",
"discord": "joaquinp98"
}
],
"esmodules": ["build/daggerheart.js"],
"styles": ["styles/daggerheart.css"],
"packs": [
{
"name": "classes",
"label": "Classes",
"system": "daggerheart",
"path": "packs/classes.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "subclasses",
"label": "Subclasses",
"system": "daggerheart",
"path": "packs/subclasses.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "domains",
"label": "Domains",
"system": "daggerheart",
"path": "packs/domains.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "ancestries",
"label": "Ancestry",
"system": "daggerheart",
"path": "packs/ancestries.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "communities",
"label": "Communities",
"system": "daggerheart",
"path": "packs/communities.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "weapons",
"label": "Weapons",
"system": "daggerheart",
"path": "packs/items/weapons.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "armors",
"label": "Armors",
"system": "daggerheart",
"path": "packs/items/armors.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "consumables",
"label": "Consumables",
"system": "daggerheart",
"path": "packs/items/consumables.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "miscellaneous",
"label": "Miscellaneous",
"system": "daggerheart",
"path": "packs/items/miscellaneous.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "adversaries",
"label": "Adversaries",
"system": "daggerheart",
"path": "packs/adversaries.db",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "environments",
"label": "Environments",
"system": "daggerheart",
"path": "packs/environments.db",
"type": "Item",
"private": false,
"flags": {}
}
],
"packFolders": [
{
"name": "Daggerheart",
"sorting": "m",
"color": "#08718c",
"packs": ["adversaries", "environments"],
"folders": [
{
"name": "Character Options",
"sorting": "m",
"color": "#000000",
"packs": ["ancestries", "communities", "classes", "subclasses", "domains"]
},
{
"name": "Items",
"sorting": "m",
"color": "#000000",
"packs": ["armors", "weapons", "consumables", "miscellaneous"]
}
]
}
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
}
],
"socket": true,
"initiative": "1d20",
"grid": {
"distance": 5,
"units": "feet"
},
"documentTypes": {
"Actor": {
"character": {
"htmlFields": ["biography.background", "biography.connections"]
},
"companion": {},
"adversary": {
"htmlFields": ["notes", "description"]
},
"environment": {
"htmlFields": ["notes", "description"]
}
},
"Item": {
"ancestry": {
"htmlFields": ["description"]
},
"community": {
"htmlFields": ["description"]
},
"class": {
"htmlFields": ["description"]
},
"subclass": {
"htmlFields": ["description"]
},
"feature": {
"htmlFields": ["description"]
},
"domainCard": {
"htmlFields": ["description"]
},
"miscellaneous": {
"htmlFields": ["description"]
},
"consumable": {
"htmlFields": ["description"]
},
"weapon": {
"htmlFields": ["description"]
},
"armor": {
"htmlFields": ["description"]
},
"beastform": {}
},
"ActiveEffect": {
"beastform": {}
},
"Combat": {
"combat": {}
},
"ChatMessage": {
"dualityRoll": {},
"adversaryRoll": {},
"damageRoll": {},
"abilityUse": {},
"applyEffect": {}
}
},
"primaryTokenAttribute": "resources.hitPoints",
"secondaryTokenAttribute": "resources.stress",
"url": "https://your/hosted/system/repo/",
"manifest": "https://your/hosted/system/repo/system.json",
"download": "https://your/packaged/download/archive.zip"
}