-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.json
134 lines (132 loc) · 3.22 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[
{
"id": "wiresaw",
"type": "TOOL",
"symbol": ";",
"color": "light_gray",
"name": "wire saw",
"description": "This is a thin saw, useful for cutting through wood objects.",
"price": 1000,
"material": ["steel", "wood"],
"weight": 283,
"volume": 1,
"to_hit": -2,
"max_charges": 0,
"initial_charges": 0,
"charges_per_use": 0,
"turns_per_charge": 0,
"ammo": "NULL",
"revert_to": "null",
"qualities":[ ["SAW_W", 1] ]
},{
"id": "primitive_mattock",
"type": "TOOL",
"symbol": ";",
"color": "brown",
"name": "stone mattock",
"description": "This is a stone mattock, with both an axe head and an adze head. This is useful for a variety of tasks as well as a passable melee weapon.",
"price": 1000,
"flags" : ["DURABLE_MELEE"],
"material": ["stone", "wood"],
"weight": 3154,
"volume": 15,
"bashing": 12,
"cutting": 12,
"to_hit": 0,
"max_charges": 0,
"initial_charges": 0,
"charges_per_use": 0,
"turns_per_charge": 0,
"ammo": "NULL",
"revert_to": "null",
"qualities":[ ["SAW_W", 1], ["AXE", 2], ["DIG", 2] ],
"use_action": "LUMBER"
},{
"type" : "recipe",
"result": "primitive_mattock",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_TOOLS",
"skill_used": "fabrication",
"skills_required": [ [ "survival", 4 ] ],
"difficulty": 3,
"time": 5000,
"reversible": false,
"autolearn": true,
"qualities":[
{"id":"HAMMER","level":2,"amount":1},
{"id":"CUT","level":1,"amount":1}
],
"components": [
[ [ "stick", 1 ],
[ "2x4", 1 ] ],
[ [ "rock", 3 ],
[ "ceramic_shard", 3 ]
],
[ [ "string_6", 6 ],
[ "sinew", 120 ],
[ "thread", 120 ],
[ "plant_fibre", 120 ]
]
]
},{
"type" : "recipe",
"result": "rope_fiber_6",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_MATERIALS",
"skill_used": "tailor",
"skills_required": [ "survival", 1 ],
"difficulty": 0,
"time": 10000,
"reversible": true,
"autolearn": true,
"components": [
[ [ "withered", 6 ] ]
]
},{
"type" : "recipe",
"result": "rope_fiber_30",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_MATERIALS",
"skill_used": "tailor",
"skills_required": [ "survival", 1 ],
"difficulty": 0,
"time": 10000,
"reversible": true,
"autolearn": true,
"components": [
[ [ "rope_fiber_6", 5 ],
[ "withered", 30 ]
]
]
},{
"type":"GENERIC",
"id" : "rope_fiber_6",
"category" : "spare_parts",
"name" : "short fiber rope",
"description" : "A six-foot long piece of rope, woven from plant fibers. Too small to be of much use.",
"weight" : 216,
"to_hit" : 1,
"color" : "light_gray",
"symbol" : ",",
"material" : ["paper", "veggy"],
"volume" : 2,
"bashing" : 1,
"flags" : ["WRAP", "NO_SALVAGE"],
"price" : 3500
},{
"type":"GENERIC",
"id" : "rope_fiber_30",
"category" : "spare_parts",
"name" : "long fiber rope",
"description" : "A 30-foot long piece of rope, woven from plant fibers.",
"weight" : 1080,
"to_hit" : -1,
"color" : "light_gray",
"symbol" : ",",
"material" : ["paper"],
"volume" : 10,
"bashing" : 1,
"flags" : ["WRAP", "NO_SALVAGE"],
"price" : 7500
}
]