The set bonus for FoD and Masochism

Any discussions regarding the spoilers present in ToME 4.x.x should be restricted to this forum

Moderator: Moderator

Post Reply
Message
Author
Mankeli
Spiderkin
Posts: 535
Joined: Sun Dec 22, 2013 2:22 pm

The set bonus for FoD and Masochism

#1 Post 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.

Moander
Halfling
Posts: 88
Joined: Fri Jan 06, 2012 11:48 am

Re: The set bonus for FoD and Masochism

#2 Post 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,

Mankeli
Spiderkin
Posts: 535
Joined: Sun Dec 22, 2013 2:22 pm

Re: The set bonus for FoD and Masochism

#3 Post by Mankeli »

Ok, thanks!

Post Reply