From 3a774b952711ce6b330be181e347f23484734204 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 14 Jan 2023 11:34:25 -0800 Subject: Fix field effects. --- .../Modification_Files/Spells/v_spell_fields.json | 62 +++++++++++++++++----- 1 file 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, -- cgit v1.2.1