-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new npc faction special (#32397)
* adds special for new NPC faction also adds a few item groups * remove road connection * add dirth paths around water pumps
- Loading branch information
1 parent
dfdf578
commit 96d7340
Showing
6 changed files
with
2,083 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
[ | ||
{ | ||
"type": "item_group", | ||
"id": "preserved_food", | ||
"ammo": 75, | ||
"magazine": 100, | ||
"items": [ | ||
[ "cooking_oil", 20 ], | ||
[ "cooking_oil2", 20 ], | ||
[ "jar_glass", 50 ], | ||
[ "jar_3l_glass", 40 ], | ||
[ "cheese_hard", 5 ], | ||
[ "vinegar", 15 ], | ||
{ "item": "veggy_pickled", "prob": 8, "charges": 2, "container-item": "jar_glass_sealed" }, | ||
[ "jar_sauerkraut_pickled", 5 ], | ||
{ "item": "meat_pickled", "prob": 4, "charges": 2, "container-item": "jar_glass_sealed" }, | ||
{ "item": "fish_pickled", "prob": 6, "charges": 2, "container-item": "jar_glass_sealed" }, | ||
{ "item": "meat_canned", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "veggy_canned", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "apple_canned", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "can_tomato", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "fish_pickled", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "meat_pickled", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "veggy_pickled", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "fish_pickled", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "sauce_red", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" }, | ||
{ "item": "kompot", "prob": 4, "charges": 12, "container-item": "jar_3l_glass_sealed" } | ||
] | ||
}, | ||
{ | ||
"type": "item_group", | ||
"id": "dry_goods", | ||
"ammo": 75, | ||
"magazine": 100, | ||
"items": [ | ||
[ "flour", 60 ], | ||
[ "yeast", 50 ], | ||
[ "cornmeal", 40 ], | ||
[ "dry_meat", 10 ], | ||
[ "dry_fish", 10 ], | ||
[ "dry_veggy", 10 ], | ||
[ "dry_fruit", 10 ], | ||
[ "oatmeal", 50 ], | ||
[ "fruit_leather", 15 ], | ||
[ "salted_fish", 15 ], | ||
[ "dry_beans", 40 ], | ||
[ "dry_lentils", 30 ], | ||
[ "dry_rice", 40 ] | ||
] | ||
}, | ||
{ | ||
"type": "item_group", | ||
"id": "condiments", | ||
"ammo": 75, | ||
"magazine": 100, | ||
"items": [ | ||
[ "yeast", 50 ], | ||
[ "sugar", 40 ], | ||
[ "salt", 40 ], | ||
[ "pepper", 30 ], | ||
[ "cinnamon", 15 ], | ||
[ "seasoning_italian", 25 ], | ||
[ "seasoning_salt", 25 ], | ||
[ "cookbook_italian", 25 ], | ||
[ "family_cookbook", 6 ], | ||
[ "brewing_cookbook", 4 ], | ||
[ "ketchup", 35 ], | ||
[ "mustard", 35 ], | ||
[ "soysauce", 25 ], | ||
[ "horseradish", 15 ], | ||
[ "honey_bottled", 35 ], | ||
[ "honey_glassed", 35 ] | ||
] | ||
}, | ||
{ | ||
"type": "item_group", | ||
"id": "pantry_liquids", | ||
"ammo": 75, | ||
"magazine": 100, | ||
"items": [ | ||
[ "syrup", 20 ], | ||
[ "molasses", 15 ], | ||
[ "cooking_oil", 20 ], | ||
[ "cooking_oil2", 20 ], | ||
[ "tea_raw", 10 ], | ||
[ "coffee_raw", 15 ], | ||
[ "honey_bottled", 35 ], | ||
[ "honey_glassed", 35 ], | ||
[ "jar_glass", 50 ], | ||
[ "jar_3l_glass", 40 ], | ||
[ "cheese_hard", 5 ], | ||
[ "vinegar", 15 ] | ||
] | ||
} | ||
] |
Oops, something went wrong.