-
Notifications
You must be signed in to change notification settings - Fork 1
/
tools.json
48 lines (48 loc) · 1.23 KB
/
tools.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
[
{
"id": "blade_stone",
"type": "TOOL",
"name": "stone blade",
"description": "A knife consisting of crudely-worked, somewhat-sharpened stone surface and a wrapped handle. Primitive, but manages to cut things.",
"weight": 750,
"volume": 1,
"price": 0,
"bashing": 1,
"cutting": 7,
"material": [ "stone" ],
"symbol": ";",
"color": "gray",
"qualities": [ [ "CUT", 1 ], [ "BUTCHER", 1 ] ],
"flags": [ "STAB", "SHEATH_KNIFE" ]
},
{
"id": "whetstone",
"type": "TOOL",
"name": "whetstone",
"description": "a coarse stone with a rough surface, used to sharpen edges or to shave off impurities.",
"weight": 2000,
"volume": 1.5,
"price": 0,
"bashing": 4,
"to_hit": -1,
"material": [ "stone" ],
"symbol": "/",
"color": "gray",
"qualities": [ [ "SHARP", 1] ]
},
{
"id": "weave_rack",
"type": "TOOL",
"name": "weaving rack",
"description": "A rack of about 2 meter's worth of length with small sticks protruding it. Not very stable, but careful weaving should be possible.",
"weight": 5000,
"volume": 5,
"price": 0,
"bashing": 4,
"to_hit": -1,
"material": [ "wood" ],
"symbol": "=",
"color": "brown",
"qualities": [ [ "WEAVING", 1] ]
}
]