-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
57 lines (57 loc) · 828 Bytes
/
template.json
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
{
"Actor": {
"types": ["hero", "pawn", "villain"],
"templates": {
"background": {
"biography": "",
"hairColor": "blue"
},
"resources": {
"health": {
"min": 0,
"value": 10,
"max": 10
},
"power": {
"min": 0,
"value": 1,
"max": 3
}
}
},
"hero": {
"templates": ["background", "resources"],
"goodness": {
"value": 5,
"max": 10
}
},
"pawn": {
"templates": ["resources"]
},
"villain": {
"templates": ["background", "resources"],
"wickedness": {
"value": 5,
"max": 100
}
}
},
"Item": {
"types": ["weapon", "spell"],
"templates": {
"rarity": {
"rarity": "Common",
"price": 20
}
},
"weapon": {
"templates": ["rarity"],
"damage": 5
},
"spell": {
"templates": ["rarity"],
"cost": 2
}
}
}