Skip to content

Commit

Permalink
Adds multiple flooring options.
Browse files Browse the repository at this point in the history
First part of floors PR.
  • Loading branch information
JonahDes authored May 25, 2019
1 parent d4f4dc9 commit 4f8311d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions data/json/construction.json
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,37 @@
"pre_terrain": "t_pit_shallow",
"post_terrain": "t_concrete"
},
{
"type": "construction",
"description": "Fill Pit With Dirt",
"//": "Fills a deep pit with dirt.",
"category": "CONSTRUCT",
"time": 40,
"qualities": [ [ { "id": "SHOVEL", "level": 1 } ],
"components": [ [ "soil", 200 ] ],
"pre_terrain": "t_pit",
"post_terrain": "t_dirt"
},
{
"type": "construction",
"description": "Make Woodchip Floor",
"//": "Adds wood chippings to a shallowed dirt area to prevent plants growing, or for looks.",
"category": "CONSTRUCT",
"time": 40,
"components": [ [ "splintered_wood", 50 ] ],
"pre_terrain": "t_pit_shallow",
"post_terrain": "t_woodchips"
},
{
"type": "construction",
"description": "Build Wooden Floor",
"//": "Makes an outside wooden paving, similar to what would be used in patios.",
"category": "CONSTRUCT",
"time": 100,
"qualities": [ { "id": "HAMMER", "level": 2 } ],
"components": [ [ [ "2x4", 14 ] ], [ [ "nails", 28 ] ] ],
"post_terrain": "t_floor_noroof"
},
{
"type": "construction",
"description": "Build Simple Concrete Wall",
Expand Down

0 comments on commit 4f8311d

Please sign in to comment.