Skip to content

Commit

Permalink
Improved Soil Storage (#68411)
Browse files Browse the repository at this point in the history
* Update scarfs.json

Added headwrap variant to each scarf

* Update scarfs.json

Fixed item names

* Update scarfs.json

Fixed another item name

* Update scarfs.json

Corrected transform wording, fixed bad transform target

* Update scarfs.json

Fixed descriptions

* Update scarfs.json

Fixed item names

* Added Dirt Mounds

Added three states of dirt mound,
shallow mound, a waist high mound, and a building high mound

* Updated old dirt mound name

Updated t_dirtmound and t_dirtmoundfloor names to avoid confusion and better reflect what they are.

* Added Construction Recipe

* Fixed style error

* Fixed misplaced comment

* Moved mounds to more appropriate file

* Removed NOITEM to support farming

* Added Planting Support

* Added Ability to climb Tall Dirt Mound

* renamed t_dirtmound

* Linting, Syntax
  • Loading branch information
detahramet authored Oct 2, 2023
1 parent 107b70e commit 8e7feb8
Show file tree
Hide file tree
Showing 4 changed files with 443 additions and 3 deletions.
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

0 comments on commit 8e7feb8

Please sign in to comment.