From ded45de7799ed2cd1b39cc165fb2b0b62a845682 Mon Sep 17 00:00:00 2001
From: jc_gargma <jc_gargma@iserlohn-fortress.net>
Date: Mon, 4 Oct 2021 23:06:30 -0700
Subject: Add Reconstitued Blood + Synthetic + Recipes

---
 .../Modification_Files/Items/Misc/v_materials.json | 24 ++++++++++++++++++++--
 .../Modification_Files/Recipes/recipe_blood.json   | 20 ++++++++++++++++++
 2 files changed, 42 insertions(+), 2 deletions(-)

(limited to 'vamp_stuff')

diff --git a/vamp_stuff/Modification_Files/Items/Misc/v_materials.json b/vamp_stuff/Modification_Files/Items/Misc/v_materials.json
index 9e16673..5884a8b 100644
--- a/vamp_stuff/Modification_Files/Items/Misc/v_materials.json
+++ b/vamp_stuff/Modification_Files/Items/Misc/v_materials.json
@@ -21,6 +21,16 @@
     "spoils_in": "1 days",
     "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE", "VAMPIRISM" ]
   },
+  {
+    "id": "blood_reconstituted",
+    "type": "COMESTIBLE",
+    "comestible_type": "DRINK",
+    "copy-from": "blood",
+    "name": { "str": "reconstituted blood", "str_pl": "reconstituted blood" },
+    "description": "Reconstituted blood, possibly originally that of a human.  Disgusting!",
+    "healthy": 3,
+    "fun": 8
+  },
   {
     "id": "synthblood",
     "type": "COMESTIBLE",
@@ -33,13 +43,23 @@
     "healthy": 2,
     "fun": 5
   },
+  {
+    "id": "synthblood_reconstituted",
+    "type": "COMESTIBLE",
+    "comestible_type": "DRINK",
+    "copy-from": "blood",
+    "name": { "str": "reconstituted synthetic blood", "str_pl": "reconstituted synthetic blood" },
+    "description": "Reconstituted synthetic blood, not possibly originally that of a human.  Disgusting!",
+    "healthy": 1,
+    "fun": 4
+  },
   {
     "id": "bloodpowder",
     "type": "COMESTIBLE",
     "comestible_type": "FOOD",
     "looks_like": "protein_powder",
     "name": { "str": "powdered blood" },
-    "description": "Dehydrated blood powder. Useful as a crafting material, or as a food source if you are desperate.",
+    "description": "Dehydrated blood powder. Mix with water to make drinkable blood.",
     "weight": "10 g",
     "volume": "3 ml",
     "price": "0 cent",
@@ -60,7 +80,7 @@
     "copy-from": "bloodpowder",
     "looks_like": "bloodpowder",
     "name": { "str": "powdered synthetic blood" },
-    "description": "Dehydrated synthetic blood powder. It lacks the supernatural potency of real blood for crafting, but can still be used as a food source if you are desperate.",
+    "description": "Dehydrated synthetic blood powder. Mix with water to make drinkable synthetic blood.",
     "healthy": 0
   },
   {
diff --git a/vamp_stuff/Modification_Files/Recipes/recipe_blood.json b/vamp_stuff/Modification_Files/Recipes/recipe_blood.json
index 9ad6a03..7effab3 100644
--- a/vamp_stuff/Modification_Files/Recipes/recipe_blood.json
+++ b/vamp_stuff/Modification_Files/Recipes/recipe_blood.json
@@ -32,6 +32,16 @@
         ]
     ]
   },
+  {
+    "type": "recipe",
+    "result": "blood_reconstituted",
+    "category": "CC_FOOD",
+    "subcategory": "CSC_FOOD_DRINKS",
+    "skill_used": "cooking",
+    "time": "1 m",
+    "book_learn": [ [ "vamp_upgradebook1", 4 ] ],
+    "components": [ [ [ "bloodpowder", 1 ] ], [ [ "water_clean", 1 ] ] ]
+  },
   {
     "type": "recipe",
     "result": "synthblood",
@@ -46,6 +56,16 @@
     "tools": [ [ [ "water_boiling_heat", 3, "LIST" ] ] ],
     "components": [ [ [ "protein_powder", 1 ] ], [ [ "water_clean", 1 ] ], [ [ "sugar", 5 ] ], [ [ "salt", 5 ] ] ]
   },
+  {
+    "type": "recipe",
+    "result": "synthblood_reconstituted",
+    "category": "CC_FOOD",
+    "subcategory": "CSC_FOOD_DRINKS",
+    "skill_used": "cooking",
+    "time": "1 m",
+    "book_learn": [ [ "vamp_upgradebook1", 4 ] ],
+    "components": [ [ [ "synthbloodpowder", 1 ] ], [ [ "water_clean", 1 ] ] ]
+  },
   {
     "result": "bloodpowder",
     "type": "recipe",
-- 
cgit v1.2.1