Page 1 of 1

The set bonus for FoD and Masochism

Posted: Tue Jun 17, 2014 7:38 am
by Mankeli
...is what? I have both of them but with different characters. Currently, I'm having hard time figuring why I would want to use them instead of black robe + Dakhtun's gauntlets (which are of course amazing so this doesn't necessarily mean that the new artifacts are weak at all) on a defiler.

Re: The set bonus for FoD and Masochism

Posted: Tue Jun 17, 2014 12:14 pm
by Moander
The armor gets some demon defense, 15 fire/darkness resists and 5 all resist.

Code: Select all

on_set_complete = function(self, who)
    self:specialSetAdd({"wielder","demonblood_def"}, 0.03)
    self:specialSetAdd({"wielder","resists"}, { [engine.DamageType.FIRE] = 15, [engine.DamageType.DARKNESS] = 15, all = 5 })
end,
The Gloves gets the corresponding damage increase.

Code: Select all

on_set_complete = function(self, who)
    game.logPlayer(who, "#STEEL_BLUE#The fist and the mangled clothing glow ominously!")
    self:specialSetAdd({"wielder","demonblood_dam"}, 0.02)
    self:specialSetAdd({"wielder","inc_damage"}, { [engine.DamageType.FIRE] = 15, [engine.DamageType.DARKNESS] = 15, all = 5 })
end,

Re: The set bonus for FoD and Masochism

Posted: Wed Jun 18, 2014 9:58 am
by Mankeli
Ok, thanks!