-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.json
More file actions
65 lines (65 loc) · 1.1 KB
/
template.json
File metadata and controls
65 lines (65 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"Actor": {
"types": ["character", "npc"],
"templates": {
"base": {
"biography": "",
"difficulty": 0,
"penalty": 0
}
},
"character": {
"templates": ["base"],
"willpower": {
"value": 1,
"max": 1
},
"xp": {
"unspent": 0,
"total": 0
},
"passions": "",
"duties": ""
},
"npc": {
"templates": ["base"],
"threat": 1,
"number": 0
}
},
"Item": {
"types": ["stat", "skill", "power", "hitloc"],
"templates": {
"base": {
"description": ""
},
"rollable": {
"templates": ["base"],
"d": 0,
"ed": 0,
"ed_set": 10,
"md": 0
}
},
"stat": {
"templates": ["rollable"]
},
"skill": {
"templates": ["rollable"],
"stat": ""
},
"power": {
"templates": ["rollable"],
"cost": 1
},
"hitloc": {
"templates": [],
"name": "New Location",
"noStart": 0,
"noEnd": 0,
"shock": 0,
"killing": 0,
"max": 1
}
}
}