-
Notifications
You must be signed in to change notification settings - Fork 1
/
initHeroesD.json
69 lines (69 loc) · 1.09 KB
/
initHeroesD.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
58
59
60
61
62
63
64
65
66
67
68
69
{
"common": {
"items": [
{
"kind":"materials/iron",
"quantity":100
},
{
"kind":"materials/leather",
"quantity":100
},
{
"kind":"materials/cloth"
},
{
"kind": "TestItem"
},
{
"kind":"materials/steel"
},
{
"kind":"PotionOfExperience",
"quantity":100
}
],
"str":9,
"hp": 10,
"magicAffinity": "Common",
"sp": 1,
"maxSp": 1
},
"non_expert": {
"items": [
{
"kind": "Gold",
"quantity":100
}
]
},
"WARRIOR": {
"str": 1,
"sp":1,
"maxSp":1,
"knownItems": [
{
"kind": "PotionOfStrength"
},
{
"kind": "ScrollOfUpgrade"
}
],
"isSpellUser": true,
"magicAffinity": "Combat"
},
"LICH": {
"immunities": [
"Paralysis",
"ToxicGas",
"Terror",
"Death",
"Amok",
"Blindness",
"Sleep",
"Poison",
"Vertigo",
"Bleeding"
]
}
}