diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-01-14 11:34:25 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-01-14 11:34:25 -0800 |
commit | 3a774b952711ce6b330be181e347f23484734204 (patch) | |
tree | 3378e06bd765472b393e3347afb75c4d3c5c3859 | |
parent | Remove invalid elemental resist effect. (diff) | |
download | cataclysm-bn-mod_vampire-stuff-redone-3a774b952711ce6b330be181e347f23484734204.tar.xz |
Fix field effects.
-rw-r--r-- | vamp_stuff/Modification_Files/Spells/v_spell_fields.json | 62 |
1 files changed, 48 insertions, 14 deletions
diff --git a/vamp_stuff/Modification_Files/Spells/v_spell_fields.json b/vamp_stuff/Modification_Files/Spells/v_spell_fields.json index 4f26ef3..e594f60 100644 --- a/vamp_stuff/Modification_Files/Spells/v_spell_fields.json +++ b/vamp_stuff/Modification_Files/Spells/v_spell_fields.json @@ -117,25 +117,42 @@ "light_emitted": 10, "translucency": 0.7, "convection_temperature_mod": 20, - "effect_id": "v_spell_elem_flame_curse", - "min_duration": "1 seconds", - "max_duration": "1 seconds" + "effects": [ + { + "effect_id": "v_spell_elem_flame_curse", + "intensity": 1, + "min_duration": "1 seconds", + "max_duration": "1 seconds" + } + ] }, { "name": "blaze", "color": "magenta", "light_emitted": 30, "translucency": 0.4, - "min_duration": "1 seconds", - "max_duration": "3 seconds" + "effects": [ + { + "effect_id": "v_spell_elem_flame_curse", + "intensity": 1, + "min_duration": "1 seconds", + "max_duration": "3 seconds" + } + ] }, { "name": "profane blaze", "color": "pink", "light_emitted": 80, "translucency": 0.1, - "min_duration": "1 seconds", - "max_duration": "5 seconds" + "effects": [ + { + "effect_id": "v_spell_elem_flame_curse", + "intensity": 1, + "min_duration": "1 seconds", + "max_duration": "5 seconds" + } + ] } ], "decay_amount_factor": 3, @@ -159,25 +176,42 @@ "light_emitted": 3, "translucency": 0.7, "convection_temperature_mod": -120, - "effect_id": "v_spell_elem_flame_curse", - "min_duration": "1 seconds", - "max_duration": "1 seconds" + "effects": [ + { + "effect_id": "v_spell_elem_flame_curse", + "intensity": 1, + "min_duration": "1 seconds", + "max_duration": "1 seconds" + } + ] }, { "name": "frostburn", "color": "light_blue", "light_emitted": 8, "translucency": 0.4, - "min_duration": "1 seconds", - "max_duration": "2 seconds" + "effects": [ + { + "effect_id": "v_spell_elem_flame_curse", + "intensity": 1, + "min_duration": "1 seconds", + "max_duration": "2 seconds" + } + ] }, { "name": "raging frostburn", "color": "blue", "light_emitted": 20, "translucency": 0.1, - "min_duration": "1 seconds", - "max_duration": "3 seconds" + "effects": [ + { + "effect_id": "v_spell_elem_flame_curse", + "intensity": 1, + "min_duration": "1 seconds", + "max_duration": "3 seconds" + } + ] } ], "decay_amount_factor": 3, |