Skip to content

Commit

Permalink
More Survival Tools Mod Update 11
Browse files Browse the repository at this point in the history
1. Made the stone macuhitl deal a bit more blunt damage, less cutting
damage, and weigh a bit more than beforehand.
2. Cheesemaking should be less derpy now. Uses a small waterskin to hold
the cheese-to-be instead of it being an uncontained item.
  • Loading branch information
chaosvolt committed Mar 31, 2015
1 parent b070e8e commit 57dab53
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 25 deletions.
60 changes: 36 additions & 24 deletions data/mods/More_Survival_Tools/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -497,13 +497,13 @@
"category" : "food",
"symbol": ")",
"color": "white",
"name": "curdling milk",
"name_plural": "curdling milk",
"description": "Milk that is undergoing the process to become a crude form of cheese, having had vinegar and vegetable-based rennet added. For buggy reasons, no container is used for this.",
"name": "sealed waterskin of curdling milk",
"name_plural": "sealed waterskins of curdling milk",
"description": "A small waterskin filled with milk that is undergoing the process to become a crude form of cheese, having had vinegar and vegetable-based rennet added.",
"price": 100,
"material": ["milk"],
"weight": 1700,
"volume": 6,
"volume": 7,
"bashing": 0,
"cutting": 0,
"to_hit": -2,
Expand All @@ -517,27 +517,39 @@
"type": "delayed_transform",
"transform_age": 28800, "//": "2 days",
"not_ready_msg": "The milk is still curdling.",
"msg": "You double-check that the milk has finished curdling.",
"msg": "The milk appears to have finished curdling, and is ready for further processing. Checking on it has exposed the mixture to the atmosphere.",
"moves": 150,
"target": "milk_curdled"
"target": "milk_curdled",
"container": "waterskin"
}
},
{
"type":"GENERIC",
"id": "milk_curdled",
"symbol": ")",
"color": "white",
"name": "curdled milk",
"name_plural": "curdled milk",
"description": "Milk that has been curdled with vinegar and vegetable rennet. It still needs to be salted and drained of whey. For buggy reasons, no container is used for this.",
"price": 100,
"material": ["milk"],
"weight": 1600,
"volume": 6,
"bashing": -2,
"cutting": 0,
"category" : "food",
"to_hit": -1
"type" : "COMESTIBLE",
"id" : "milk_curdled",
"name" : "curdled milk",
"weight" : 234,
"color" : "white",
"addiction_type" : "none",
"spoils_in" : 600,
"stim" : 0,
"container" : "waterskin",
"to_hit" : 0,
"comestible_type" : "DRINK",
"symbol" : "~",
"quench" : 8,
"healthy" : 0,
"addiction_potential" : 0,
"nutrition" : 4,
"description" : "Milk that has been curdled with vinegar and vegetable rennet. It still needs to be salted and drained of whey.",
"price" : 10,
"material" : "milk",
"tool" : "null",
"volume" : 6,
"cutting" : 0,
"phase" : "liquid",
"charges" : 6,
"bashing" : 0,
"fun" : -12
},
{
"type" : "COMESTIBLE",
Expand Down Expand Up @@ -572,14 +584,14 @@
"id" : "stone_macuahuitl",
"name" : "stone macuahuitl",
"description" : "A flat wooden club with sharpened pieces of stone set into the edges. Not as sharp as genuine obsidian or even glass would be, but certainly more durable.",
"weight" : 997,
"weight" : 1134,
"to_hit" : 1,
"color" : "dark_gray",
"symbol" : "/",
"material" : ["wood", "stone"],
"volume" : 9,
"bashing" : 6,
"cutting" : 13,
"bashing" : 8,
"cutting" : 11,
"price" : 6000,
"flags": ["NON_STUCK"]
}
Expand Down
5 changes: 4 additions & 1 deletion data/mods/More_Survival_Tools/recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,9 @@
"book_learn": [["survival_book", 3] , ["textbook_survival", 3] ,
["manual_survival", 3]],
"components": [
[
[ "waterskin", 1 ]
],
[
[ "milk", 5 ]
],
Expand Down Expand Up @@ -854,7 +857,7 @@
],
"components": [
[
[ "milk_curdled", 1 ]
[ "milk_curdled", 6 ]
],
[
[ "salt_water", 1 ],
Expand Down

0 comments on commit 57dab53

Please sign in to comment.