-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55509 from GuardianDll/aaaand_another_magic_stuff
Adding shaman attunement stuff
- Loading branch information
Showing
6 changed files
with
187 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[ | ||
{ | ||
"id": "butterfly_swarm", | ||
"type": "SPELL", | ||
"name": { "str": "Butterfly Swarm" }, | ||
"description": "Summon a pack of butterflies with razor-sharp wings, to cut every creature in your way.", | ||
"valid_targets": [ "ground" ], | ||
"flags": [ "SOMATIC", "VERBAL", "CONCENTRATE" ], | ||
"effect": "summon", | ||
"effect_str": "mon_razor_butterflies", | ||
"shape": "blast", | ||
"spell_class": "SHAMAN", | ||
"energy_source": "MANA", | ||
"difficulty": 7, | ||
"max_level": 35, | ||
"base_casting_time": 500, | ||
"casting_time_increment": -10, | ||
"final_casting_time": 150, | ||
"base_energy_cost": 350, | ||
"energy_increment": -5, | ||
"final_energy_cost": 200, | ||
"min_damage": 1, | ||
"max_damage": 12, | ||
"damage_increment": 0.4, | ||
"min_range": 0, | ||
"max_range": 8, | ||
"range_increment": 0.25, | ||
"min_aoe": 1, | ||
"max_aoe": 8, | ||
"aoe_increment": 0.2, | ||
"min_duration": 14400, | ||
"max_duration": 144000, | ||
"duration_increment": 4000 | ||
}, | ||
{ | ||
"id": "summon_shambling_mound", | ||
"type": "SPELL", | ||
"name": { "str": "Call of Mound" }, | ||
"description": "Summon the Shambling Mound, the giant carnivorous plant mess with devastating area attacks. It is too slow for a common fight, but it is the best defender for a skilled druid.", | ||
"valid_targets": [ "ground" ], | ||
"flags": [ "SOMATIC", "VERBAL", "CONCENTRATE" ], | ||
"effect": "summon", | ||
"effect_str": "mon_shambling_mound", | ||
"shape": "blast", | ||
"spell_class": "SHAMAN", | ||
"energy_source": "MANA", | ||
"difficulty": 7, | ||
"max_level": 35, | ||
"base_casting_time": 1200, | ||
"casting_time_increment": -26, | ||
"final_casting_time": 300, | ||
"base_energy_cost": 800, | ||
"energy_increment": -9, | ||
"final_energy_cost": 500, | ||
"min_damage": 1, | ||
"max_damage": 1, | ||
"min_range": 1, | ||
"max_range": 8, | ||
"range_increment": 0.2, | ||
"min_aoe": 8, | ||
"max_aoe": 1, | ||
"aoe_increment": -0.2, | ||
"min_duration": 14400, | ||
"max_duration": 144000, | ||
"duration_increment": 4000 | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[ | ||
{ | ||
"id": "mind_read", | ||
"type": "SPELL", | ||
"name": "Mind Reading", | ||
"description": "You can predict some movements of your enemies (just slowdown in fact). If you are seeing this spell, you have debugged it in.", | ||
"valid_targets": [ "hostile" ], | ||
"flags": [ "SILENT", "NO_PROJECTILE" ], | ||
"effect": "attack", | ||
"shape": "blast", | ||
"effect_str": "mind_reading", | ||
"min_damage": 0, | ||
"max_damage": 0, | ||
"min_aoe": 7, | ||
"max_aoe": 7 | ||
}, | ||
{ | ||
"type": "enchantment", | ||
"id": "SHAMAN", | ||
"condition": "ALWAYS", | ||
"intermittent_activation": { "effects": [ { "frequency": "5 seconds", "spell_effects": [ { "id": "mind_read" } ] } ] } | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters