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

Fixed the Trollshaws quest completion

git-svn-id: http://svn.net-core.org/repos/t-engine4@1156 51575b47-30f0-44d4-a5cc-537603b46e54
parent 787027e2
No related branches found
No related tags found
No related merge requests found
......@@ -69,8 +69,7 @@ newTalent{
return true
end,
info = function(self, t)
return ([[Project a bolt of time distortion, decreasing the target's global speed by %d%% for 7 turns.
The speed decrease improves with the Magic stat]]):format(self:getTalentLevel(t) * 7)
return ([[Project a bolt of time distortion, decreasing the target's global speed by %d%% for 7 turns.]]):format(self:getTalentLevel(t) * 7)
end,
}
......@@ -97,8 +96,7 @@ newTalent{
return true
end,
info = function(self, t)
return ([[Increases the caster's global speed by %d%%.
The speed increase improves with the Magic stat]]):format(self:getTalentLevel(t) * 7)
return ([[Increases the caster's global speed by %d%%.]]):format(self:getTalentLevel(t) * 7)
end,
}
......
......@@ -60,4 +60,8 @@ newEntity{ define_as = "TROLL_BILL",
autolevel = "warrior",
ai = "dumb_talented_simple", ai_state = { talent_in=4, ai_move="move_astar", },
on_die = function(self, who)
game.player:resolveSource():setQuestStatus("start-dunadan", engine.Quest.COMPLETED, "trollshaws")
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