Skip to content

Commit

Permalink
Make plastic containers craftable from scratch (Jug+jerrycan) + tweaks (
Browse files Browse the repository at this point in the history
cataclysmbnteam#2347)

* Make plastic containers craftable from scratch (Jug+jerrycan), weight correction of jug

* Update containers.json

* that should do it.
  • Loading branch information
Lamandus authored Feb 22, 2023
1 parent 203e945 commit e1e420f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 9 deletions.
2 changes: 1 addition & 1 deletion data/json/items/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@
"category": "container",
"name": { "str": "gallon jug" },
"description": "A standard plastic jug used for milk and household cleaning chemicals.",
"weight": "190 g",
"weight": "19 g",
"volume": "3750 ml",
"price": 0,
"price_postapoc": 10,
Expand Down
43 changes: 35 additions & 8 deletions data/json/recipes/other/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,21 @@
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 3,
"time": "40 m",
"autolearn": true,
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 30, "LIST" ] ] ],
"components": [ [ [ "plastic_chunk", 15 ] ] ]
},
{
"type": "recipe",
"result": "jug_plastic",
"id_suffix": "ducted",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 1,
"time": "30 m",
"time": "20 m",
"autolearn": true,
"qualities": [ { "id": "CUT", "level": 1 } ],
"components": [ [ [ "duct_tape", 10 ] ], [ [ "bottle_plastic", 8 ], [ "bottle_plastic_small", 16 ] ] ]
Expand All @@ -56,8 +69,22 @@
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 3,
"time": "50 m",
"autolearn": true,
"using": [ [ "cordage", 1 ] ],
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 30, "LIST" ] ] ],
"components": [ [ [ "plastic_chunk", 40 ] ] ]
},
{
"type": "recipe",
"result": "jerrycan",
"id_suffix": "ducted",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 1,
"time": "30 m",
"time": "15 m",
"autolearn": true,
"using": [ [ "cordage", 1 ] ],
"qualities": [ { "id": "CUT", "level": 1 } ],
Expand Down Expand Up @@ -123,9 +150,9 @@
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 3,
"time": "30 m",
"time": "20 m",
"autolearn": true,
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 5, "LIST" ] ] ],
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 4, "LIST" ] ] ],
"components": [ [ [ "plastic_chunk", 2 ] ] ]
},
{
Expand All @@ -135,9 +162,9 @@
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 3,
"time": "20 m",
"time": "15 m",
"autolearn": true,
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 3, "LIST" ] ] ],
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 2, "LIST" ] ] ],
"components": [ [ [ "plastic_chunk", 1 ] ] ]
},
{
Expand All @@ -147,9 +174,9 @@
"subcategory": "CSC_OTHER_CONTAINERS",
"skill_used": "fabrication",
"difficulty": 3,
"time": "1 h",
"time": "30 m",
"autolearn": true,
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 10, "LIST" ] ] ],
"tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 16, "LIST" ] ] ],
"components": [ [ [ "plastic_chunk", 8 ] ] ]
},
{
Expand Down

0 comments on commit e1e420f

Please sign in to comment.