First setup

This commit is contained in:
2021-01-19 22:54:53 +01:00
parent e78b2ac67d
commit 8c5b6e9c82
26 changed files with 199 additions and 61 deletions

View File

@ -69,12 +69,13 @@
}
},
"internals": {
"deck": []
"deck": {}
},
"scores": {
"edge": {
"label": "SCORES.Edge",
"value": 0
"value": 0,
"bonus": 0
},
"wealth": {
"label": "SCORES.Wealth",
@ -132,37 +133,74 @@
}
},
"Item": {
"types": ["object", "weapon", "armor", "container", "skills" ],
"skills": {
"stat":"",
"types": ["gear", "weapon", "armor", "container", "skill" ],
"templates": {
"commongear": {
"big": 0,
"computer": 0,
"conceal": 0,
"container": 0,
"implant": 0,
"neg": false,
"mil": false,
"software": 0,
"worn": false,
"description": "",
"quantity": 0,
"costrating": 0,
"defensive": 0
}
},
"skill": {
"value": 0,
"xp": 0,
"description": ""
},
"skillexperience": {
"skillname": "",
"skill": "",
"description": ""
},
"object": {
"description": "",
"quantity": 1,
"enc": 0,
"price": 0
"gear": {
"templates": [ "commongear" ]
},
"container": {
"description": "",
"enc": 0,
"price": 0
"templates": [ "commongear" ],
"container": 0
},
"weapon": {
"description": "",
"enc": 0,
"price": 0
"templates": [ "commongear" ],
"area": 0,
"autofire": 0,
"damage": "",
"hands": 1,
"pierce": 0,
"range": 0,
"reload": 1,
"shots": 0,
"stun": false,
"thrown": false,
"reach": false,
"shallow": false,
"spread": false
},
"armor": {
"description": "",
"enc": 0,
"price": 0
"templates": [ "commongear" ],
"bulky": 0,
"dr": 0,
"gel": 0,
"reflect": 0,
"str": 0,
"vac": false
},
"vehicle": {
"templates": [ "commongear" ],
"cruise": 0,
"defense": "",
"dr": 0,
"handling": 0,
"shock": 0,
"structure": 0
}
}
}