Add initial pack definitions

This commit is contained in:
Eldritch-Oliver 2025-10-09 02:03:18 -06:00
parent 5b9e808ea9
commit 8f206baf46
5 changed files with 146 additions and 1 deletions

View file

@ -53,5 +53,74 @@
"skill": {},
"weapon": {}
}
}
},
"packs": [
{
"name": "protection",
"label": "Armour & Shields",
"system": "ripcrypt",
"path": "packs/protection",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "weapons",
"label": "Weapons & Ammo",
"system": "ripcrypt",
"path": "packs/weapons",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "skills",
"label": "Skills",
"system": "ripcrypt",
"path": "packs/skills",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "geist",
"label": "Geist",
"system": "ripcrypt",
"path": "packs/geist",
"type": "Actor",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
}
}
],
"packFolders": [
{
"name": "RipCrypt Sprint Start",
"color": "#04262a",
"sorting": "m",
"folders": [
{
"name": "Character Options",
"color": "#06393f",
"sorting": "m",
"folders": [],
"packs": [
"protection",
"weapons",
"skills"
]
}
],
"packs": [
"geist"
]
}
]
}