Add stormcloud spell

This commit is contained in:
Electroblob77
2020-05-18 20:41:41 +01:00
parent ebde514c98
commit 650344a0c8
11 changed files with 191 additions and 1 deletions
@@ -485,6 +485,7 @@ entity.ebwizardry\:ring_of_fire.name=Ring of Fire
entity.ebwizardry\:earthquake.name=Earthquake
entity.ebwizardry\:hailstorm.name=Hailstorm
entity.ebwizardry\:lightning_pulse.name=Lightning Pulse
entity.ebwizardry\:stormcloud.name=Stormcloud
itemGroup.ebwizardry=Wizardry
itemGroup.ebwizardryspells=Spells
@@ -747,6 +748,7 @@ spell.ebwizardry\:spectral_pathway=Spectral Pathway
spell.ebwizardry\:speed_time=Speed Time
spell.ebwizardry\:spider_swarm=Spider Swarm
spell.ebwizardry\:static_aura=Static Aura
spell.ebwizardry\:stormcloud=Stormcloud
spell.ebwizardry\:summon_blaze=Summon Blaze
spell.ebwizardry\:summon_ice_giant=Summon Ice Giant
spell.ebwizardry\:summon_ice_wraith=Summon Ice Wraith
@@ -921,6 +923,7 @@ spell.ebwizardry\:spectral_pathway.desc=Creates an indestructible magical bridge
spell.ebwizardry\:speed_time.desc=...day, night, dawn, dusk, sunrise and sunset\: thus is the passage of time, which traps us in an endless cycle of...
spell.ebwizardry\:spider_swarm.desc=Summons a swarm of venomous spiders to fight for you. The spiders will disappear after 30 seconds or if they are killed.
spell.ebwizardry\:static_aura.desc=Surrounds the caster with lightning for 30 seconds, firing a spark of lightning at anything that hits them.
spell.ebwizardry\:stormcloud.desc=Conjures a floating stormcloud where you are pointing that strikes lightning beneath it.
spell.ebwizardry\:summon_blaze.desc=Summons a blaze to fight for you. The blaze will disappear after 30 seconds or if it is killed.
spell.ebwizardry\:summon_ice_giant.desc="Smash them!"
spell.ebwizardry\:summon_ice_wraith.desc=Summons an ice wraith to fight for you. The ice wraith will disappear after 30 seconds or if it is killed.
@@ -485,6 +485,7 @@ entity.ebwizardry\:ring_of_fire.name=Ring of Fire
entity.ebwizardry\:earthquake.name=Earthquake
entity.ebwizardry\:hailstorm.name=Hailstorm
entity.ebwizardry\:lightning_pulse.name=Lightning Pulse
entity.ebwizardry\:stormcloud.name=Stormcloud
itemGroup.ebwizardry=Wizardry
itemGroup.ebwizardryspells=Spells
@@ -747,6 +748,7 @@ spell.ebwizardry\:spectral_pathway=Spectral Pathway
spell.ebwizardry\:speed_time=Speed Time
spell.ebwizardry\:spider_swarm=Spider Swarm
spell.ebwizardry\:static_aura=Static Aura
spell.ebwizardry\:stormcloud=Stormcloud
spell.ebwizardry\:summon_blaze=Summon Blaze
spell.ebwizardry\:summon_ice_giant=Summon Ice Giant
spell.ebwizardry\:summon_ice_wraith=Summon Ice Wraith
@@ -921,6 +923,7 @@ spell.ebwizardry\:spectral_pathway.desc=Creates an indestructible magical bridge
spell.ebwizardry\:speed_time.desc=...day, night, dawn, dusk, sunrise and sunset\: thus is the passage of time, which traps us in an endless cycle of...
spell.ebwizardry\:spider_swarm.desc=Summons a swarm of venomous spiders to fight for you. The spiders will disappear after 30 seconds or if they are killed.
spell.ebwizardry\:static_aura.desc=Surrounds the caster with lightning for 30 seconds, firing a spark of lightning at anything that hits them.
spell.ebwizardry\:stormcloud.desc=Conjures a floating stormcloud where you are pointing that strikes lightning beneath it.
spell.ebwizardry\:summon_blaze.desc=Summons a blaze to fight for you. The blaze will disappear after 30 seconds or if it is killed.
spell.ebwizardry\:summon_ice_giant.desc="Smash them!"
spell.ebwizardry\:summon_ice_wraith.desc=Summons an ice wraith to fight for you. The ice wraith will disappear after 30 seconds or if it is killed.
@@ -33,6 +33,8 @@
"entity.lightning_sigil.trigger": {"category": "spells", "sounds": ["ebwizardry:arc1", "ebwizardry:arc2", "ebwizardry:arc3"]},
"entity.meteor.falling": {"category": "spells", "sounds": ["ebwizardry:flames_loop"]},
"entity.shield.deflect": {"category": "spells", "sounds": ["ebwizardry:effect1", "ebwizardry:effect2"]},
"entity.stormcloud.thunder": {"category": "spells", "sounds": ["ambient/weather/thunder1", "ambient/weather/thunder2", "ambient/weather/thunder3"]},
"entity.stormcloud.attack": {"category": "spells", "sounds": ["ebwizardry:arc1", "ebwizardry:arc2", "ebwizardry:arc3"]},
"entity.tornado.ambient": {"category": "spells", "sounds": ["ebwizardry:wind"]},
"entity.evil_wizard.ambient": {"category": "hostile", "sounds": ["mob/evocation_illager/idle1", "mob/evocation_illager/idle2", "mob/evocation_illager/idle3", "mob/evocation_illager/idle4"]},
@@ -285,6 +287,7 @@
"spell.spider_swarm": {"category": "spells", "sounds": ["random/fizz"]},
"spell.static_aura": {"category": "spells", "sounds": ["ebwizardry:buff"]},
"spell.static_aura.retaliate": {"category": "spells", "sounds": ["ebwizardry:arc1", "ebwizardry:arc2", "ebwizardry:arc3"]},
"spell.stormcloud": {"category": "spells", "sounds": ["ambient/weather/thunder1", "ambient/weather/thunder2", "ambient/weather/thunder3"]},
"spell.summon_blaze": {"category": "spells", "sounds": ["mob/wither/idle1", "mob/wither/idle2", "mob/wither/idle3", "mob/wither/idle4"]},
"spell.summon_ice_giant": {"category": "spells", "sounds": ["mob/evocation_illager/prepare_summon"]},
"spell.summon_ice_wraith": {"category": "spells", "sounds": ["mob/wither/idle1", "mob/wither/idle2", "mob/wither/idle3", "mob/wither/idle4"]},
@@ -0,0 +1,25 @@
{
"enabled": {
"book": true,
"scroll": true,
"wands": true,
"npcs": true,
"dispensers": true,
"commands": true,
"treasure": true,
"trades": true,
"looting": true
},
"tier": "advanced",
"element": "lightning",
"type": "construct",
"cost": 60,
"chargeup": 0,
"cooldown": 150,
"base_properties": {
"duration": 600,
"range": 10,
"damage": 8,
"effect_radius": 3
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB