Skip to content

Commit

Permalink
Add Oversize Reinforced Cardboard Box (#73342)
Browse files Browse the repository at this point in the history
* Add Oversize Reinforced Box Item Entry

* Reinforced Oversize Box Recipe

* Add Reinforced Oversize Box Recipe to Nest

* Requested Changes to Weight/Price
  • Loading branch information
TheMurderUnicorn authored May 3, 2024
1 parent 501997e commit 9c601d0
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
27 changes: 27 additions & 0 deletions data/json/items/containers/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,33 @@
"symbol": ")",
"color": "brown"
},
{
"id": "box_oversize_reinforced",
"type": "GENERIC",
"category": "container",
"name": { "str": "reinforced oversize cardboard box", "str_pl": "reinforced oversize cardboard boxes" },
"looks_like": "box_small",
"description": "An oversize cardboard box, doubled up with a second layer of cardboard and lots of duct tape. It can't be folded anymore.",
"ascii_picture": "box_oversize",
"weight": "4002 g",
"volume": "205000 ml",
"longest_side": "201 cm",
"//": "(200x50x20)",
"price": "10 USD",
"price_postapoc": "20 cent",
"pocket_data": [
{
"pocket_type": "CONTAINER",
"rigid": true,
"max_contains_volume": "200000 ml",
"max_contains_weight": "100 kg",
"max_item_length": "200 cm"
}
],
"material": [ "cardboard" ],
"symbol": ")",
"color": "brown"
},
{
"id": "box_compact_wood",
"type": "GENERIC",
Expand Down
9 changes: 8 additions & 1 deletion data/json/recipes/nested.json
Original file line number Diff line number Diff line change
Expand Up @@ -3846,7 +3846,14 @@
"name": "cardboard boxes",
"description": "Recipes related to constructing cardboard boxes.",
"skill_used": "fabrication",
"nested_category_data": [ "box_small_crafted", "box_medium_crafted", "box_large_crafted", "box_large_reinforced", "box_oversize_crafted" ],
"nested_category_data": [
"box_small_crafted",
"box_medium_crafted",
"box_large_crafted",
"box_large_reinforced",
"box_oversize_crafted",
"box_oversize_reinforced"
],
"difficulty": 1
},
{
Expand Down
13 changes: 13 additions & 0 deletions data/json/recipes/tools/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -1120,6 +1120,19 @@
"autolearn": true,
"components": [ [ [ "box_oversize_folded", 1 ] ], [ [ "duct_tape", 20 ] ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "box_oversize_reinforced",
"category": "CC_*",
"subcategory": "CSC_*_NESTED",
"skill_used": "fabrication",
"difficulty": 1,
"time": "12 m",
"autolearn": true,
"qualities": [ { "id": "CUT", "level": 2 } ],
"components": [ [ [ "box_oversize", 2 ], [ "box_oversize_folded", 2 ] ], [ [ "duct_tape", 80 ] ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
Expand Down

0 comments on commit 9c601d0

Please sign in to comment.