-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontainers.json
56 lines (56 loc) · 1.36 KB
/
containers.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
[
{
"id": "bowl_wood",
"type": "CONTAINER",
"category": "other",
"name": "wooden bowl",
"description": "A crude bowl made out of a two by four; not really round and without a lid. Can hold 250ml of water.",
"weight": 100,
"volume": 1,
"price": 0,
"to_hit": 1,
"material": "wood",
"symbol": "}",
"color": "brown",
"contains": 1,
"seals": false,
"watertight": true,
"qualities": [ [ "CONTAIN", 1 ] ]
},
{
"id": "bucket_wood",
"type": "CONTAINER",
"category": "other",
"name": "wooden bucket",
"description": "A wooden bucket with a ring of metal hewn around it, but without any form of lid. This can hold 2,5l of water.",
"weight": 2000,
"volume": 12.5,
"price": 0,
"to_hit": -2,
"material": [ "wood", "steel" ],
"symbol": ")",
"color": "brown",
"contains": 10,
"seals": false,
"watertight": true,
"qualities":[ ["CONTAIN", 1 ] ]
},
{
"id": "barrel_small_wood",
"type": "CONTAINER",
"category": "other",
"name": "small wooden barrel",
"description": "A small, homemade wooden barrel able to hold 10 liters worth of liquid.",
"weight": 2000,
"volume": 40,
"price": 0,
"to_hit": -2,
"material": [ "wood", "steel" ],
"symbol": ")",
"color": "brown",
"contains": 40,
"seals": true,
"watertight": true,
"qualities":[ ["CONTAIN", 1 ] ]
}
]