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

Achievement added for killing the blood master

git-svn-id: http://svn.net-core.org/repos/t-engine4@4105 51575b47-30f0-44d4-a5cc-537603b46e54
parent 53428f0a
No related branches found
No related tags found
No related merge requests found
......@@ -255,3 +255,8 @@ newAchievement{
if zone.void_blast_hits and zone.void_blast_hits == 0 then return true end
end,
}
newAchievement{
name = "The Right thing to do", id = "RING_BLOOD_KILL",
show = "name",
desc = [[You did the righteous thing in the ring of blood and disposed of the Blood Master.]],
}
......@@ -37,6 +37,8 @@ on_status_change = function(self, who, status, sub)
who:setQuestStatus(self.id, engine.Quest.DONE)
if self:isCompleted("won-fight") then
game:setAllowedBuild("warrior_brawler", true)
elseif self:isCompleted("killall") then
world:gainAchievement("RING_BLOOD_KILL", who)
end
end
end
......
......@@ -67,6 +67,7 @@ newEntity{ define_as = "RING_MASTER",
on_die = function(self, who)
game.player:setQuestStatus("ring-of-blood", engine.Quest.COMPLETED, "killall")
game.player:setQuestStatus("ring-of-blood", engine.Quest.COMPLETED)
end,
faction = "slavers",
......
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