-
Notifications
You must be signed in to change notification settings - Fork 7
/
items.json
68 lines (68 loc) · 1.31 KB
/
items.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
{
"wood": {
"value": 10,
"weight": 5,
"components": [],
"rarity": 1
},
"steel": {
"value": 50,
"weight": 20,
"components": [],
"rarity": 4
},
"food": {
"value": 20,
"weight": 1,
"components": [],
"rarity": 2
},
"water": {
"value": 30,
"weight": 2,
"components": [],
"rarity": 3
},
"silicon": {
"value": 50,
"weight": 1,
"components": [],
"rarity": 6
},
"copper": {
"value": 20,
"weight": 1,
"components": [],
"rarity": 3
},
"watt": {
"value": 40,
"weight": 0,
"components": [],
"rarity": 4
},
"turret": {
"value": 20,
"weight": 20,
"components": ["steel", "steel", "steel", "chip", "steel", "steel"],
"rarity": 8
},
"chip": {
"value": 100,
"weight": 1,
"components": ["wire", "wire", "wire", "silicon"],
"rarity": 8
},
"wire": {
"value": 40,
"weight": 3,
"components": ["copper", "copper", "copper"],
"rarity": 4
},
"gun": {
"value": 100,
"weight": 5,
"components": ["steel", "copper"],
"rarity": 6
}
}