From 90927b4d5ceb7d0eb130e23160fd9625ce9bfe42 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Mon, 20 Dec 2010 00:54:40 +0000 Subject: [PATCH] Level feeling when entering a level lower than your own or higher git-svn-id: http://svn.net-core.org/repos/t-engine4@2172 51575b47-30f0-44d4-a5cc-537603b46e54 --- game/modules/tome/class/Game.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index 4f4af8f02c..fe5af8cfb1 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -521,6 +521,23 @@ function _M:changeLevel(lev, zone, keep_old_lev, force_down) self.zone_name_s = nil self.level.map:redisplay() + -- Level feeling + local feeling + if self.level.special_feeling then + feeling = self.level.special_feeling + else + local lev = self.zone.base_level + self.level.level - 1 + if self.zone.level_adjust_level then lev = self.zone.level_adjust_level(self.level) end + local diff = lev - game.player.level + if diff >= 5 then feeling = "You feel a thrill of terror and your heart begins to pound in your chest. You feel terribly threatened upon entering this area." + elseif diff >= 2 then feeling = "You feel mildly anxious, and walk with caution." + elseif diff >= -2 then feeling = nil + elseif diff >= -5 then feeling = "You feel very confident walking into this place." + else feeling = "You stride into this area without a second thought, while stifling a yawn. You feel your time might be better spent elsewhere." + end + end + if feeling then game.log("#TEAL#%s", feeling) end + -- Autosave if config.settings.tome.autosave and left_zone and left_zone.short_name ~= "wilderness" and left_zone.short_name ~= self.zone.short_name then self:saveGame() end end -- GitLab