Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved Soil Storage #68411

Merged
merged 17 commits into from
Oct 2, 2023
49 changes: 49 additions & 0 deletions data/json/construction.json
Original file line number Diff line number Diff line change
Expand Up @@ -6828,6 +6828,55 @@
"activity_level": "EXTRA_EXERCISE",
"do_turn_special": "do_turn_shovel"
},
{
"type": "construction",
"id": "constr_mound_shallow",
"skill": "survival",
"group": "constr_dirtmound",
"category": "CONSTRUCT",
"difficulty": 0,
"time": "20m",
"on_display": true,
"qualities": [ { "id": "DIG", "level": 1 } ],
"pre_flags": [ "FLAT" ],
"pre_special": "check_empty",
"post_terrain": "f_dirtmound_shallow",
"activity_level": "EXTRA_EXERCISE",
"do_turn_special": "do_turn_shovel",
"components": [ [ [ "material_soil", 200 ] ] ]
},
{
"type": "construction",
"id": "constr_mound_mid",
"skill": "survival",
"group": "constr_dirtmound",
"category": "CONSTRUCT",
"difficulty": 0,
"time": "20m",
"on_display": true,
"qualities": [ { "id": "DIG", "level": 1 } ],
"pre_terrain": "f_dirtmound_shallow",
"post_terrain": "f_dirtmound_pile",
"activity_level": "EXTRA_EXERCISE",
"do_turn_special": "do_turn_shovel",
"components": [ [ [ "material_soil", 200 ] ] ]
},
{
"type": "construction",
"id": "constr_mound_tall",
"skill": "survival",
"group": "constr_dirtmound",
"category": "CONSTRUCT",
"difficulty": 0,
"time": "20m",
"on_display": true,
"qualities": [ { "id": "DIG", "level": 1 } ],
"pre_terrain": "f_dirtmound_pile",
"post_terrain": "f_dirtmound_tall",
"activity_level": "EXTRA_EXERCISE",
"do_turn_special": "do_turn_shovel",
"components": [ [ [ "material_soil", 400 ] ] ]
},
{
"type": "construction",
"id": "constr_water_channel",
Expand Down
5 changes: 5 additions & 0 deletions data/json/construction_group.json
Original file line number Diff line number Diff line change
Expand Up @@ -1809,6 +1809,11 @@
"id": "constr_excavate_forestfloor",
"name": "Turn forest floor into dirt"
},
{
"type": "construction_group",
"id": "constr_dirtmound",
"name": "Build a Mound of Dirt"
},
{
"type": "construction_group",
"id": "build_brick_oven",
Expand Down
Loading
Loading