diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2022-02-04 14:39:14 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2022-02-04 14:39:14 -0800 |
commit | 6f366c86fde399eb24b9bf6ce4d40d58f2a29b2c (patch) | |
tree | bdf3cd1b38a18627d751a6b76c984dfc7f7d2548 /vamp_stuff/Modification_Files/Spells/Misc | |
parent | min_damage of 0 causes max_damage to apply to all levels. (diff) | |
download | cataclysm-bn-mod_vampire-stuff-redone-6f366c86fde399eb24b9bf6ce4d40d58f2a29b2c.tar.xz |
More balancing.
Add sounds to Hemomancer spells!
Redo the hit_you and hit_me random chance spells to use once_in instead of middleman spells.
Diffstat (limited to 'vamp_stuff/Modification_Files/Spells/Misc')
-rw-r--r-- | vamp_stuff/Modification_Files/Spells/Misc/v_spell_item.json | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/vamp_stuff/Modification_Files/Spells/Misc/v_spell_item.json b/vamp_stuff/Modification_Files/Spells/Misc/v_spell_item.json index ed53eb3..a44967e 100644 --- a/vamp_stuff/Modification_Files/Spells/Misc/v_spell_item.json +++ b/vamp_stuff/Modification_Files/Spells/Misc/v_spell_item.json @@ -50,7 +50,9 @@ { "has": "WORN", "condition": "ALWAYS", - "hit_me_effect": [ { "id": "v_hemo_crimsoncoat_coat_pr_maybe" } ], + "hit_me_effect": [ + { "id": "v_hemo_crimsoncoat_coat_pr", "once_in": 2 } + ], "values": [ { "value": "ARMOR_BASH", "add": 70 }, { "value": "ARMOR_CUT", "add": 70 }, @@ -90,10 +92,22 @@ { "has": "HELD", "condition": "ALWAYS", - "hit_you_effect": [ { "id": "v_hemo_orusform_bloodling_strike_maybe" } ], - "hit_me_effect": [ { "id": "v_hemo_orusform_bloodling_impact_maybe" } ], + "hit_you_effect": [ + { "id": "v_hemo_orusform_bloodling_strike", "once_in": 5 }, + { "id": "v_hemo_orusform_bloodling_strike_greater", "once_in": 20 } + ], + "hit_me_effect": [ + { "id": "v_hemo_orusform_bloodling_impact", "once_in": 10 }, + { "id": "v_hemo_orusform_pr", "once_in": 4 } + ], "values": [ { "value": "MAX_HP", "add": 50 } ], - "intermittent_activation": [ { "effects": [ { "frequency": "30 seconds", "spell_effects": [ { "id": "v_hemo_orusform_bloodling" } ] } ] } ] + "intermittent_activation": [ + { "effects": [ + { "frequency": "30 seconds", "spell_effects": [ + { "id": "v_hemo_orusform_bloodling" } + ] } + ] } + ] } ] }, |