The set bonus for FoD and Masochism
Moderator: Moderator
The set bonus for FoD and Masochism
...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
The armor gets some demon defense, 15 fire/darkness resists and 5 all resist.
The Gloves gets the corresponding damage increase.
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,
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,