diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-03-09 12:02:22 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-03-09 12:02:22 -0800 |
commit | c5d4915ecf41b6d097a466fce1b048f80d8e97d4 (patch) | |
tree | 499d4614502c168b5d8a715bd800029eeee2009a /vamp_stuff | |
parent | Many updates to get this mod working properly. See the readme. (diff) | |
download | cataclysm-bn-mod_vampire-stuff-redone-c5d4915ecf41b6d097a466fce1b048f80d8e97d4.tar.xz |
Allow blood hoods to be used with helmets.
Fix blood sheaths to use either limb instead of both.
Add salt to synthetic blood recipe.
Diffstat (limited to 'vamp_stuff')
5 files changed, 8 insertions, 5 deletions
diff --git a/vamp_stuff/Modification_Files/Items/Armor_Set/Infused/v_bloodinfusedset.json b/vamp_stuff/Modification_Files/Items/Armor_Set/Infused/v_bloodinfusedset.json index a2d3ad0..952f14b 100644 --- a/vamp_stuff/Modification_Files/Items/Armor_Set/Infused/v_bloodinfusedset.json +++ b/vamp_stuff/Modification_Files/Items/Armor_Set/Infused/v_bloodinfusedset.json @@ -21,7 +21,7 @@ "material_thickness": 1, "environmental_protection": 2, "techniques": [ "WBLOCK_1" ], - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER" ] + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ] }, { "id": "bloodinfused_survivorpants", diff --git a/vamp_stuff/Modification_Files/Items/Armor_Set/Normal/v_bloodset.json b/vamp_stuff/Modification_Files/Items/Armor_Set/Normal/v_bloodset.json index 25d703d..d42849f 100644 --- a/vamp_stuff/Modification_Files/Items/Armor_Set/Normal/v_bloodset.json +++ b/vamp_stuff/Modification_Files/Items/Armor_Set/Normal/v_bloodset.json @@ -41,7 +41,7 @@ "warmth": 20, "material_thickness": 1, "environmental_protection": 1, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER" ] + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ] }, { "id": "blood_duster", diff --git a/vamp_stuff/Modification_Files/Items/Armor_Set/v_bloodgear.json b/vamp_stuff/Modification_Files/Items/Armor_Set/v_bloodgear.json index a9802a4..f6eadfa 100644 --- a/vamp_stuff/Modification_Files/Items/Armor_Set/v_bloodgear.json +++ b/vamp_stuff/Modification_Files/Items/Armor_Set/v_bloodgear.json @@ -11,7 +11,7 @@ "material": [ "compactblood" ], "symbol": "[", "color": "red", - "covers": [ "FOOT_L", "FOOT_R" ], + "covers": [ "FOOT_EITHER" ], "coverage": 10, "encumbrance": 0, "material_thickness": 1, @@ -38,7 +38,7 @@ "material": [ "compactblood" ], "symbol": "[", "color": "red", - "covers": [ "HAND_L", "HAND_R" ], + "covers": [ "HAND_EITHER" ], "coverage": 5, "encumbrance": 1, "material_thickness": 1, diff --git a/vamp_stuff/Modification_Files/Items/Misc/v_recipe.json b/vamp_stuff/Modification_Files/Items/Misc/v_recipe.json index 5813d4a..cc86351 100644 --- a/vamp_stuff/Modification_Files/Items/Misc/v_recipe.json +++ b/vamp_stuff/Modification_Files/Items/Misc/v_recipe.json @@ -305,6 +305,6 @@ "batch_time_factors": [ 80, 4 ], "qualities": [ { "id": "BOIL", "level": 1 } ], "tools": [ [ [ "water_boiling_heat", 3, "LIST" ] ] ], - "components": [ [ [ "protein_powder", 1 ] ], [ [ "water_clean", 1 ] ], [ [ "sugar", 5 ] ] ] + "components": [ [ [ "protein_powder", 1 ] ], [ [ "water_clean", 1 ] ], [ [ "sugar", 5 ] ], [ [ "salt", 5 ] ] ] } ] diff --git a/vamp_stuff/readme b/vamp_stuff/readme index 9ebe229..93cb087 100644 --- a/vamp_stuff/readme +++ b/vamp_stuff/readme @@ -3,6 +3,8 @@ Add vampire traits from CRT Adjust vampire npc traits Reduce the OP nature of the blood weapons. Adjust the blood backpacks in line with standard ones. +Allow blood hoods with helmets. +Fix blood sheaths to use either limb instead of both. Add synthetic blood and recipe. Fix blood to actually be healthy and enjoyable for vampires. Fix broken ghost town configuration. @@ -21,3 +23,4 @@ Create a way to become a vampire. Rebalance blood more so it won't make you fat so quickly. Add synthetic blood to vampire merchants. Come up with some other way to get human blood without killing. +Patch underwater breathing in the source code. |