Skip to content
Snippets Groups Projects
Commit 4ce3b161 authored by dg's avatar dg
Browse files

Thalore experience penalty set to 30%

Thalore's Guardian of the Woods grants more disease resistance (up to 100%) and also grants a bit of resists all


git-svn-id: http://svn.net-core.org/repos/t-engine4@5880 51575b47-30f0-44d4-a5cc-537603b46e54
parent 53778b62
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,6 @@ newBirthDescriptor
"#GOLD#Experience penalty:#LIGHT_BLUE# 35%",
},
inc_stats = { str=2, mag=-2, wil=1, cun=0, dex=3, con=1 },
experience = 1.3,
talents_types = { ["race/thalore"]={true, 0} },
talents = { [ActorTalents.T_THALOREN_WRATH]=1 },
copy = {
......@@ -127,6 +126,6 @@ newBirthDescriptor
resolvers.inscription("INFUSION:_REGENERATION", {cooldown=10, dur=5, heal=60}),
resolvers.inscription("INFUSION:_WILD", {cooldown=12, what={physical=true}, dur=4, power=14}),
},
experience = 1.20,
experience = 1.30,
random_escort_possibilities = { {"norgos-lair", 2, 3}, {"heart-gloom", 1, 2}, {"daikara", 1, 3}, {"old-forest", 1, 4}, {"dreadfell", 1, 8}, {"reknor", 1, 2}, },
}
......@@ -304,16 +304,18 @@ newTalent{
points = 5,
mode = "passive",
on_learn = function(self, t)
self:attr("disease_immune", 0.12)
self:attr("disease_immune", 0.2)
self.resists[DamageType.BLIGHT] = (self.resists[DamageType.BLIGHT] or 0) + 4
self.resists.all = (self.resists.all or 0) + 2
end,
on_unlearn = function(self, t)
self:attr("disease_immune", -0.12)
self:attr("disease_immune", -0.2)
self.resists[DamageType.BLIGHT] = (self.resists[DamageType.BLIGHT] or 0) - 4
self.resists.all = (self.resists.all or 0) - 2
end,
info = function(self, t)
return ([[You are part of the wood, it shields you from corruption.
Increase disease immunity by %d%% and blight resistance by %d%%.]]):format(self:getTalentLevelRaw(t) * 12, self:getTalentLevelRaw(t) * 4)
Increase disease immunity by %d%%, blight resistance by %d%% and all resistances by %d%%.]]):format(self:getTalentLevelRaw(t) * 20, self:getTalentLevelRaw(t) * 4, self:getTalentLevelRaw(t) * 2)
end,
}
......
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