Skip to content

Commit

Permalink
fix: bugout bags error (#56743)
Browse files Browse the repository at this point in the history
  • Loading branch information
casswedson authored Apr 11, 2022
1 parent 9f9b09d commit 2cb06a4
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions data/json/itemgroups/stashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,34 @@
"subtype": "distribution",
"//": "randomized assortment of possible bugout bags people would have as the apocalypse ramped up",
"entries": [
{ "group": "small_bugout_bag", "prob": 50 },
{
"distribution": [ { "group": "small_bugout_bag_1" }, { "group": "small_bugout_bag_2" }, { "group": "small_bugout_bag_3" } ],
"prob": 50
},
{ "group": "medium_bugout", "prob": 40 },
{ "group": "heavy_bugout", "prob": 10 }
]
},
{
"id": "small_bugout_bag",
"id": "small_bugout_bag_1",
"type": "item_group",
"//": "select a bag for a light bugout",
"subtype": "distribution",
"entries": [
{ "item": "backpack", "contents-group": "small_bugout", "prob": 100 },
{ "item": "daypack", "contents-group": "small_bugout", "prob": 100 },
{ "item": "backpack_leather", "contents-group": "small_bugout", "prob": 100 }
]
"container-item": "backpack",
"on_overflow": "spill",
"items": [ { "group": "small_bugout" } ]
},
{
"id": "small_bugout_bag_2",
"type": "item_group",
"container-item": "daypack",
"on_overflow": "spill",
"items": [ { "group": "small_bugout" } ]
},
{
"id": "small_bugout_bag_3",
"type": "item_group",
"container-item": "backpack_leather",
"on_overflow": "spill",
"items": [ { "group": "small_bugout" } ]
},
{
"id": "small_bugout",
Expand Down

0 comments on commit 2cb06a4

Please sign in to comment.