From 66ffd7038cf10566bd35bb6713677a5f8de3b6ef Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 12 Sep 2020 22:40:36 -0700 Subject: Initial commit --- .../Spells/Warlock/v_mana_T1.json | 49 ++++++++++++++++++++ .../Spells/Warlock/v_mana_T2.json | 52 +++++++++++++++++++++ .../Spells/Warlock/v_mana_T3.json | 45 ++++++++++++++++++ .../Spells/Warlock/v_mana_T4.json | 26 +++++++++++ .../Spells/Warlock/v_mana_T5.json | 53 ++++++++++++++++++++++ .../Spells/Warlock/v_mana_T6.json | 45 ++++++++++++++++++ .../Spells/Warlock/v_mana_T7.json | 24 ++++++++++ 7 files changed, 294 insertions(+) create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T1.json create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T2.json create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T3.json create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T4.json create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T5.json create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T6.json create mode 100644 vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T7.json (limited to 'vamp_stuff/Modification_Files/Spells/Warlock') diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T1.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T1.json new file mode 100644 index 0000000..a3bf153 --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T1.json @@ -0,0 +1,49 @@ +[ + { + "id": "t1_mana_darkbolt", + "type": "SPELL", + "name": "Dark Bolt", + "description": "A magical burst of profane mana strikes at your foe, dealing pure damage.\n\nThis is a tier 1 spell.", + "valid_targets": [ "hostile" ], + "effect": "projectile_attack", + "base_energy_cost": 100, + "final_energy_cost": 300, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 2, + "min_damage": 25, + "max_damage": 65, + "damage_increment": 2, + "max_level": 30, + "min_range": 5, + "max_range": 15, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 125, + "damage_type": "none" + }, + { + "id": "t1_mana_arcanebinding", + "type": "SPELL", + "name": "Arcane Binding", + "description": "Hits your foe with your weapon imbued in etherean arcane binding, striking its inner self that deals pure damage and immobilizes them.\n\nThis is a tier 1 spell.", + "valid_targets": [ "hostile" ], + "effect": "target_attack", + "effect_str": "v_spell_arcanebinding", + "base_energy_cost": 150, + "final_energy_cost": 300, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 3, + "min_damage": 30, + "max_damage": 60, + "damage_increment": 3, + "max_level": 10, + "min_range": 1, + "max_range": 1, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 100, + "min_duration": 500, + "max_duration": 1000, + "damage_type": "none" + } +] diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T2.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T2.json new file mode 100644 index 0000000..3b29d4e --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T2.json @@ -0,0 +1,52 @@ +[ + { + "id": "t2_mana_darkbeam", + "type": "SPELL", + "name": "Dark Beam", + "description": "A profane mana beam bursts violently, striking your foes within a line that deals pure damage.\n\nThis is a tier 2 spell.", + "valid_targets": [ "hostile", "ground" ], + "effect": "line_attack", + "base_energy_cost": 175, + "final_energy_cost": 325, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 3, + "min_damage": 20, + "max_damage": 50, + "damage_increment": 2, + "max_level": 25, + "min_range": 6, + "max_range": 12, + "min_aoe": 1, + "max_aoe": 4, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 175, + "damage_type": "none" + }, + { + "id": "t2_mana_etherealstrike", + "type": "SPELL", + "name": "Ethereal Strike", + "description": "An etherean silhouette emerges out of thin air, immediately attacking the foe that deals pure damage and grasps at them.\n\nThis is a tier 2 spell.", + "valid_targets": [ "hostile" ], + "effect": "target_attack", + "effect_str": "v_spell_etherealstrike", + "base_energy_cost": 155, + "final_energy_cost": 155, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 2, + "min_damage": 10, + "max_damage": 60, + "damage_increment": 2, + "max_level": 10, + "min_range": 4, + "max_range": 20, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 400, + "final_casting_time": 100, + "min_duration": 200, + "max_duration": 600, + "damage_type": "none" + } +] diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T3.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T3.json new file mode 100644 index 0000000..00ff1b6 --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T3.json @@ -0,0 +1,45 @@ +[ + { + "id": "t3_mana_darkblast", + "type": "SPELL", + "name": "Dark Blast", + "description": "Conjures a volatile profane magic to the targeted area then explodes, dealing pure damage to the surrounding foes.\n\nThis is a tier 3 spell.", + "valid_targets": [ "hostile", "ground" ], + "effect": "projectile_attack", + "base_energy_cost": 275, + "final_energy_cost": 550, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 4, + "min_damage": 40, + "max_damage": 80, + "damage_increment": 2, + "max_level": 20, + "min_range": 6, + "max_range": 10, + "range_increment": 0.2, + "min_aoe": 3, + "max_aoe": 8, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 300, + "damage_type": "none" + }, + { + "id": "t3_mana_manasurge", + "type": "SPELL", + "name": "Mana Surge", + "description": "Empowers your body by channeling your mana.\n\nThis is a tier 3 spell.", + "valid_targets": [ "self" ], + "effect": "target_attack", + "effect_str": "v_spell_manasurge", + "base_energy_cost": 225, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 3, + "max_level": 10, + "flags": [ "SOMATIC", "NO_LEGS" ], + "min_duration": 3200, + "max_duration": 12800, + "base_casting_time": 600 + } +] diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T4.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T4.json new file mode 100644 index 0000000..5bfea38 --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T4.json @@ -0,0 +1,26 @@ +[ + { + "id": "t4_mana_darkburst", + "type": "SPELL", + "name": "Dark Burst", + "description": "A wave of profane magic bursts out of your body, dealing pure damage to the surrounding foes.\n* Foes within a 3 tile radius are pushed back.\n\nThis is a tier 4 spell.", + "valid_targets": [ "hostile", "ground" ], + "effect": "projectile_attack", + "extra_effects": [ { "id": "t4_mana_darkburst_push" } ], + "base_energy_cost": 250, + "final_energy_cost": 600, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 5, + "min_damage": 30, + "max_damage": 90, + "damage_increment": 1.5, + "max_level": 20, + "min_aoe": 4, + "max_aoe": 5, + "aoe_increment": 0.2, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 225, + "damage_type": "none" + } +] diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T5.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T5.json new file mode 100644 index 0000000..4f1f252 --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T5.json @@ -0,0 +1,53 @@ +[ + { + "id": "t5_mana_megamagic", + "type": "SPELL", + "name": "Megamagic", + "description": "Obliterates all foes with a devastating wave of profane magic, dealing immensive pure damage within a wide cone.\n* 25% chance of exhaustion, depleting your stamina and weakens yourself for a short period of time.\n\nThis is a tier 5 spell.", + "valid_targets": [ "hostile", "ground" ], + "effect": "cone_attack", + "extra_effects": [ { "id": "t5_mana_megamagic_exhaust_maybe" } ], + "base_energy_cost": 100, + "energy_increment": 1250, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 8, + "min_damage": 25, + "max_damage": 25, + "damage_increment": 200, + "max_level": 5, + "min_range": 15, + "max_range": 15, + "range_increment": 2, + "min_aoe": 50, + "max_aoe": 50, + "aoe_increment": 10, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 1250, + "damage_type": "none" + }, + { + "id": "t5_mana_danceofthesilhouettes", + "type": "SPELL", + "name": "Dance of the Silhouettes", + "description": "Summons the etherean silhouette(s), striding through the world swiftly and are invulnerable to physical hazards.\n* These minions do not harm with brute strength, but casts a basic warlock spell at foe weights from tier 1 to tier 3. After the duration or casting any spell, they vanish.", + "valid_targets": [ "ground" ], + "effect": "summon", + "effect_str": "mon_ether_shadow", + "base_energy_cost": 375, + "energy_cost_increment": 125, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 5, + "max_level": 10, + "min_damage": 1, + "max_damage": 3, + "min_aoe": 2, + "max_aoe": 5, + "damage_increment": 0.2, + "min_duration": 3000, + "max_duration": 6000, + "flags": [ "SOMATIC", "VERBAL", "CONCENTRATE", "NO_LEGS" ], + "base_casting_time": 500 + } +] diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T6.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T6.json new file mode 100644 index 0000000..d8d7725 --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T6.json @@ -0,0 +1,45 @@ +[ + { + "id": "t6_mana_darkpillar", + "type": "SPELL", + "name": "Dark Pillar", + "description": "Sky-high pillar of disastrous dark magic engulfs the foe, leaving no tracks but a crater.\n* If the foe survives, it is inflicted with ethereal shock, slowing and dealing a maximum total of 300 pure damage over 10 seconds.\n\nThis is a tier 6 spell.", + "valid_targets": [ "hostile" ], + "effect": "projectile_attack", + "effect_str": "v_spell_darkpillar", + "extra_effects": [ { "id": "t6_mana_darkpillar_bash" }, { "id": "t6_mana_darkpillar_bash" }, { "id": "t6_mana_darkpillar_bash" } ], + "base_energy_cost": 5250, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 10, + "min_damage": 2500, + "max_damage": 2500, + "min_range": 20, + "max_range": 20, + "min_duration": 1000, + "max_duration": 1000, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ], + "base_casting_time": 2500, + "damage_type": "none" + }, + { + "id": "t6_mana_etherealenchantment", + "type": "SPELL", + "name": "Ethereal Enchantment", + "description": "You gain an ethereal enchantment, causing your attacks to feel lighter, yet strikes deeper into the inner self of your foe.\n* If worn, your attacks gain 20 armor pierce and its cost is reduced by 15.\n\nThis is a Tier 6 spell.", + "valid_targets": [ "self" ], + "effect": "spawn_item", + "effect_str": "v_war_etherealenchant", + "base_energy_cost": 500, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 4, + "max_level": 10, + "min_damage": 1, + "max_damage": 1, + "min_duration": 10000, + "max_duration": 20000, + "base_casting_time": 1000, + "flags": [ "SOMATIC", "VERBAL", "NO_LEGS" ] + } +] diff --git a/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T7.json b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T7.json new file mode 100644 index 0000000..8084ab3 --- /dev/null +++ b/vamp_stuff/Modification_Files/Spells/Warlock/v_mana_T7.json @@ -0,0 +1,24 @@ +[ + { + "id": "t7_mana_idol_vex", + "type": "SPELL", + "name": "Idol: Vex", + "description": "Calls forth the ancient idol: Vex, the etherean calamity. A deity who fulfills your desire for annihilation with its etherean prowess.\n* Once it is successfully summoned, you are affected with ancient dread, an enormous penalty to intelligence and movement speed.\n* This minion does not harm with brute strength, but casts one from its numerous unique, crowd-control spells.\n\nThis is a tier 7 spell.", + "valid_targets": [ "self", "ground" ], + "effect": "summon", + "effect_str": "mon_idol_vex", + "base_energy_cost": 15000, + "energy_source": "MANA", + "spell_class": "VAMP_MANA_spellcaster", + "difficulty": 15, + "max_level": 5, + "min_damage": 1, + "max_damage": 1, + "min_aoe": 2, + "max_aoe": 2, + "min_duration": 100000, + "max_duration": 125000, + "base_casting_time": 12000, + "flags": [ "SOMATIC", "VERBAL", "CONCENTRATE", "NO_LEGS" ] + } +] -- cgit v1.2.1