-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpk_construction.json
94 lines (94 loc) · 3.5 KB
/
pk_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
[
{
"type": "construction",
"skill": "survival",
"description": "Construct makeshift post-fence",
"category": "CONSTRUCT",
"required_skills": [ [ "survival", 2 ], [ "fabrication", 3 ] ],
"time": 200,
"qualities": [
[
{ "id": "CUT", "level": 1 },
{ "id": "HAMMER", "level": 1 }
]
],
"components": [
[ [ "stick", 8 ], [ "2x4", 4 ] ],
[ [ "rock", 8 ], [ "steel_chunk", 8 ] ],
[ [ "pine_bough", 4 ], [ "willowbark", 8 ], [ "leather", 8 ], [ "rag", 10 ] ],
[ [ "pine_bough", 4 ], [ "willowbark", 8 ], [ "leather", 8 ], [ "rag", 10 ] ]
],
"pre_terrain": "t_pit_shallow",
"post_terrain": "t_improvised_fence"
},
{
"type": "construction",
"skill": "survival",
"description": "Build Improvised Shelter",
"category": "CONSTRUCT",
"required_skills": [ [ "survival", 2 ] ],
"time": 100,
"qualities": [
[
{ "id": "CUT", "level": 1 },
{ "id": "HAMMER", "level": 1 }
]
],
"components": [
[ [ "stick", 12 ], [ "2x4", 6 ] ],
[ [ "pine_bough", 3 ], [ "willowbark", 6 ], [ "leather", 6 ] ],
[ [ "pine_bough", 3 ], [ "willowbark", 6 ], [ "leather", 6 ] ],
[ [ "pine_bough", 3 ], [ "willowbark", 6 ], [ "leather", 6 ] ]
],
"pre_terrain": "t_dirt",
"post_terrain": "t_improvised_shelter"
},
{
"type": "construction",
"description": "Tunnel-Out Foxhole",
"category": "DIG",
"required_skills": [ [ "survival", 1 ] ],
"time": 15, "//": "Digging a foxhole from a mound of dirt, assuming the mound is large enough to slow your passage over it, should be possible and in some ways easier than digging into the ground. For the sake of acidic rain's current hardcoding it'll work.",
"qualities": [ [ { "id": "DIG", "level": 1 } ] ],
"components": [
[ [ "pine_bough", 2 ], [ "willowbark", 4 ], [ "leather", 4 ], [ "plastic_chunk", 4 ] ],
[ [ "pine_bough", 1 ], [ "willowbark", 2 ], [ "leather", 2 ], [ "plastic_chunk", 2 ] ]
],
"pre_terrain": "t_dirtmound",
"post_terrain": "t_pit_foxhole"
},
{
"type": "construction",
"description": "Dig Foxhole",
"category": "DIG",
"required_skills": [ [ "survival", 1 ] ],
"time": 15, "//": "With a few well-placed pine boughs or coverings, and some continued digging, you could make a poor shelter from rain. For the sake of acidic rain's current hardcoding it'll work.",
"qualities": [ [ { "id": "DIG", "level": 1 } ] ],
"components": [
[ [ "pine_bough", 2 ], [ "willowbark", 4 ], [ "leather", 4 ], [ "plastic_chunk", 4 ] ],
[ [ "pine_bough", 1 ], [ "willowbark", 2 ], [ "leather", 2 ], [ "plastic_chunk", 2 ] ]
],
"pre_terrain": "t_pit_shallow",
"post_terrain": "t_pit_foxhole"
},
{
"type": "construction",
"description": "Dig Pit",
"category": "DIG",
"required_skills": [ [ "survival", 0 ] ],
"time": 20, "//": "Unfortunately there are a lot of rocks buried just under the topsoil in New England, and its not easy at all to dig significant holes by hand with improvised shovels.",
"qualities": [ [ { "id": "DIG", "level": 1 } ] ],
"pre_flags": "DIGGABLE",
"post_terrain": "t_pit_shallow"
},
{
"type": "construction",
"description": "Dig Pit",
"category": "DIG",
"required_skills": [ [ "survival", 0 ] ],
"time": 60, "//": "Reduced the time req for sanity's sake.",
"qualities": [ [ { "id": "DIG", "level": 2 } ] ],
"pre_terrain": "t_pit_shallow",
"post_terrain": "t_pit"
}
]