-
Notifications
You must be signed in to change notification settings - Fork 0
/
construction.json
129 lines (122 loc) · 3.04 KB
/
construction.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
[
{
"type" : "construction",
"description" : "Build Fire Pit",
"category" : "FURN",
"difficulty" : 0,
"time" : 5,
"qualities": [
[
{ "id": "DIG", "level": 1 }
]
],
"components" : [
[ [ "rock", 8 ] ]
],
"pre_special" : "check_empty",
"post_terrain" : "f_firepit"
},{
"type" : "construction",
"description" : "Build Fire Pit",
"category" : "FURN",
"difficulty" : 1,
"time" : 10,
"qualities": [
[ { "id": "DIG", "level": 1 } ]
],
"components" : [
[ [ "stick", 4 ] ],
[ [ "rock_pot", 1 ] ]
],
"pre_terrain" : "f_firepit",
"post_terrain" : "f_cookfirepit"
},{
"type" : "furniture",
"id" : "f_firepit",
"name": "fire pit",
"symbol": "0",
"bgcolor": "brown",
"move_cost_mod": 0,
"required_str": -1,
"flags": ["TRANSPARENT", "CONTAINER", "FIRE_CONTAINER", "PLACE_ITEM"],
"deconstruct": {
"items": [
{ "item": "rock", "amount": 8 }
]
},
"bash": {
"str_min": 1, "str_max": 1,
"sound": "crash!",
"sound_fail": "whump!",
"items": [
{ "item": "rock", "amount": 8 }
]
}
},{
"type" : "furniture",
"id" : "f_cookfirepit",
"name": "cooking pit",
"symbol": "0",
"bgcolor": "brown",
"move_cost_mod": 2,
"required_str": -1,
"flags": ["TRANSPARENT", "CONTAINER", "FIRE_CONTAINER", "SUPPRESS_SMOKE", "PLACE_ITEM"],
"crafting_pseudo_item": "rock_pot",
"deconstruct": {
"items": [
{ "item": "rock", "amount": 8 },
{ "item": "stick", "amount": 4 },
{ "item": "rock_pot", "amount": 1 }
]
},
"bash": {
"str_min": 1, "str_max": 1,
"sound": "crash!",
"sound_fail": "whump!",
"items": [
{ "item": "rock", "amount": 8 },
{ "item": "stick", "amount": 4 },
{ "item": "rock_pot", "amount": 1 }
]
}
},{
"type" : "furniture",
"id" : "f_makeshiftfence",
"name": "makeshift fence",
"symbol": "=",
"bgcolor": "h_brown",
"move_cost_mod": 2,
"required_str": -1,
"flags": ["TRANSPARENT", "CONTAINER", "FLAMMABLE_ASH", "NOITEM", "THIN_OBSTACLE", "REDUCE_SCENT", "MOUNTABLE", "SHORT"],
"deconstruct": {
"items": [
{ "item": "2x4", "amount": 8, "minamount": 8 }
]
},
"bash": {
"str_min": 4, "str_max": 20,
"sound": "crack.",
"sound_fail": "wham.",
"items": [
{ "item": "2x4", "amount": 6, "minamount": 2}
]
}
},{
"type" : "construction",
"description" : "Build Makeshift Fence",
"category" : "FURN",
"difficulty" : 2,
"time" : 10,
"qualities": [
[ { "id": "DIG", "level": 2 } ],
[ { "id": "HAMMER", "level": 2 } ],
[ { "id": "SAW_W", "level": 1 } ],
[ { "id": "AXE", "level": 1 } ]
],
"components" : [
[ [ "2x4", 8 ], [ "stick", 8 ] ]
],
"pre_flags" : "DIGGABLE",
"post_terrain" : "f_makeshiftfence"
}
]