Last active
February 27, 2020 05:29
-
-
Save tpendragon/44ecd650ad98589d3c194f970350f629 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "pf2e", | |
"title": "Pathfinder 2nd Edition", | |
"description": "An early alpha game system for running games of Pathfinder 2nd Edition in the Foundry VTT environment.", | |
"version": 0.453, | |
"schema": 0.411, | |
"minimumCoreVersion": "0.4.5", | |
"author": "hooking", | |
"scripts": [ | |
"./scripts/init.js", | |
"./scripts/config.js", | |
"./scripts/actor/actor.js", | |
"./scripts/actor/sheet/base.js", | |
"./scripts/actor/sheet/character.js", | |
"./scripts/actor/sheet/npc.js", | |
"./scripts/item/item.js", | |
"./scripts/item/sheet.js", | |
"./scripts/actor/trait-selector.js", | |
"./scripts/dice.js", | |
"./scripts/packs/spell-browser.js", | |
"./scripts/chat/chatdamagebuttonsPF2e.js" | |
], | |
"styles": ["./css/pf2e.css"], | |
"packs": [ | |
{ | |
"name": "spells-srd", | |
"label": "Spells (SRD)", | |
"system": "pf2e", | |
"module": "pf2e", | |
"path": "./packs/spells.db", | |
"entity": "Item" | |
}, | |
{ | |
"name": "feats-srd", | |
"label": "Feats (SRD)", | |
"system": "pf2e", | |
"module": "pf2e", | |
"path": "./packs/feats.db", | |
"entity": "Item" | |
}, | |
{ | |
"name": "armor-srd", | |
"label": "Armors (SRD)", | |
"system": "pf2e", | |
"module": "pf2e", | |
"path": "./packs/armor.db", | |
"entity": "Item" | |
}, | |
{ | |
"name": "weapons-srd", | |
"label": "Weapons (SRD)", | |
"system": "pf2e", | |
"module": "pf2e", | |
"path": "./packs/weapons.db", | |
"entity": "Item" | |
}, | |
{ | |
"name": "adventuringgear-srd", | |
"label": "Adventuring Gear (SRD)", | |
"system": "pf2e", | |
"module": "pf2e", | |
"path": "packs/adventuringgearsrd.db", | |
"entity": "Item" | |
}, | |
{ | |
"name": "consumables-srd", | |
"label": "Consumables (SRD)", | |
"path": "packs/consumablessrd.db", | |
"entity": "Item", | |
"module": "pf2e", | |
"system": "pf2e" | |
}, | |
{ | |
"name": "conditionspf2e", | |
"label": "Conditions (PF2e)", | |
"system": "pf2e", | |
"module": "pf2e", | |
"path": "packs/conditionspf2e.db", | |
"entity": "JournalEntry" | |
} | |
], | |
"languages": { | |
"en": "lang/en.json" | |
}, | |
"socket": true, | |
"initiative": "1d20 + @attributes.perception.value + (@abilities.wis.value / 100)", | |
"gridDistance": 5, | |
"gridUnits": "ft", | |
"url": "https://gitlab.com/hooking/foundry-vtt---pathfinder-2e", | |
"manifest": "https://gitlab.com/hooking/foundry-vtt---pathfinder-2e/raw/action_browser/system.json", | |
"download": "https://gitlab.com/hooking/foundry-vtt---pathfinder-2e/-/archive/action_browser/foundry-vtt---pathfinder-2e-master.zip" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment