Skip to content
Snippets Groups Projects
Commit fe0fddf6 authored by Chris Davidson's avatar Chris Davidson
Browse files

Nerf Rod of Spydric poison

This never gets talked about much and very few players abuse it, but a no-save long range pin is really powerful.  With Charm Mastery you can effectively permanently pin the majority of enemies in the game.  This will still be an incredible item.
parent e195f043
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ newEntity{ base = "BASE_ROD",
desc = [[This rod carved out of a giant spider fang continuously drips venom.]],
cost = 50,
elec_proof = true,
max_power = 75, power_regen = 1,
max_power = 25, power_regen = 1,
use_power = {
name = function(self, who) return ("shoot a bolt of spydric poison out to range %d, dealing %0.2f nature damage (based on Magic) over %d turns while rendering the target unable to move"):
format(self.use_power.range, engine.interface.ActorTalents.damDesc(who, engine.DamageType.NATURE, self.use_power.damage(self, who)), self.use_power.duration)
......@@ -53,7 +53,7 @@ newEntity{ base = "BASE_ROD",
power = 25,
damage = function(self, who) return 200 + who:getMag() * 4 end,
duration = 6,
range = 12,
range = 8,
requires_target = true,
target = function(self, who) return {type="bolt", range=self.use_power.range} end,
tactical = { ATTACK = { NATURE = 1}, DISABLE = { pin = 2 }, CLOSEIN = 1, ESCAPE = 1 },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment