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

Buffed Rak'Shor, Gorbat, Grushnak and Vor

git-svn-id: http://svn.net-core.org/repos/t-engine4@5939 51575b47-30f0-44d4-a5cc-537603b46e54
parent 0c97c088
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,8 @@ newEntity{ base="BASE_NPC_ORC_GORBAT", define_as = "GORBAT",
[Talents.T_SPELL_FEEDBACK]=1,
[Talents.T_SPINE_OF_THE_WORLD]=1,
[Talents.T_MASSIVE_BLOW]=1,
[Talents.T_BLIGHTED_SUMMONING]=1,
},
resolvers.sustains_at_birth(),
......
......@@ -91,6 +91,7 @@ newEntity{ base="BASE_NPC_ORC_GRUSHNAK", define_as = "GRUSHNAK",
[Talents.T_BLOODBATH]={base=5, every=6, max=7},
[Talents.T_ETERNAL_GUARD]=1,
[Talents.T_UNBREAKABLE_WILL]=1,
[Talents.T_GIANT_LEAP]=1,
},
resolvers.sustains_at_birth(),
......
......@@ -95,6 +95,12 @@ newEntity{ base="BASE_NPC_ORC_RAK_SHOR", define_as = "RAK_SHOR",
game.player:grantQuest("pre-charred-scar")
end
end,
on_act = function(self)
if self:isTalentActive(self.T_NECROTIC_AURA) then
local pt = self:isTalentActive(self.T_NECROTIC_AURA)
pt.souls = util.bound(pt.souls + 1, 0, pt.souls_max)
end
end,
}
-- Super Undead Uniques!!
......
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