diff --git a/game/modules/tome/data/talents/spells/temporal.lua b/game/modules/tome/data/talents/spells/temporal.lua index 2085e9a6af6b1c8c560c47b154d68cfee46fcac8..dca8f6795a93cc9706a57f2f0a6e3f4a6850dd92 100644 --- a/game/modules/tome/data/talents/spells/temporal.lua +++ b/game/modules/tome/data/talents/spells/temporal.lua @@ -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, } diff --git a/game/modules/tome/data/zones/trollshaws/npcs.lua b/game/modules/tome/data/zones/trollshaws/npcs.lua index d1901aa2fc8fcbf5e10785ae68867f66a621cc95..8512a5baf993ee2ef785bcbc3625cde790b9ae06 100644 --- a/game/modules/tome/data/zones/trollshaws/npcs.lua +++ b/game/modules/tome/data/zones/trollshaws/npcs.lua @@ -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, }