diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-12-30 14:31:52 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-12-30 14:31:52 -0800 |
commit | 2a44054075b42d1a1c7e57ef44a6ba1640a8289f (patch) | |
tree | 34a34e5af9fcade66ec7e10b874108f4f68216c1 /vamp_stuff/Modification_Files/Others | |
parent | Add POWERARMOR_COMPATIBLE flag to crimson coat. (diff) | |
download | cataclysm-bn-mod_vampire-stuff-redone-2a44054075b42d1a1c7e57ef44a6ba1640a8289f.tar.xz |
Convert gave-blood debuff from intensity to effects_on_remove.
Diffstat (limited to 'vamp_stuff/Modification_Files/Others')
-rw-r--r-- | vamp_stuff/Modification_Files/Others/v_effects.json | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/vamp_stuff/Modification_Files/Others/v_effects.json b/vamp_stuff/Modification_Files/Others/v_effects.json index 9925c72..f2cc33d 100644 --- a/vamp_stuff/Modification_Files/Others/v_effects.json +++ b/vamp_stuff/Modification_Files/Others/v_effects.json @@ -31,14 +31,23 @@ { "type": "effect_type", "id": "vamp_given_blood", - "name": [ "Recently Gave Blood", "Just Gave Blood" ], + "name": [ "Just Gave Blood" ], "desc": [ - "You are recovering from having had your blood taken.", "You are woozy from having had your blood recently taken." + "You are woozy from having had your blood recently taken." ], - "max_intensity": 2, "int_dur_factor": "24 h", - "base_mods": { "per_mod": [ 0 ] }, - "scaling_mods": { "str_mod": [ -1 ], "dex_mod": [ -1 ], "int_mod": [ -1 ], "per_mod": [ -1 ] } + "base_mods": { "str_mod": [ -1 ], "dex_mod": [ -1 ], "int_mod": [ -1 ], "per_mod": [ -1 ] }, + "effects_on_remove": [ { "allow_on_remove": true, "effect_type": "vamp_given_blood_2", "duration": "24 h" } ] + }, + { + "type": "effect_type", + "id": "vamp_given_blood_2", + "name": [ "Recently Gave Blood" ], + "desc": [ + "You are recovering from having had your blood taken." + ], + "int_dur_factor": "24 h", + "base_mods": { "per_mod": [ 0 ] } }, { "type": "effect_type", |