From d0ff16883a703a512482c1681b306b1f384180ea Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Fri, 31 May 2013 07:58:15 +0000
Subject: [PATCH] Easy mode now also halves all detrimental status effects

git-svn-id: http://svn.net-core.org/repos/t-engine4@6809 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Actor.lua            | 4 ++++
 game/modules/tome/data/birth/descriptors.lua | 1 +
 2 files changed, 5 insertions(+)

diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 0fcd85e474..3e17682d11 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -4517,6 +4517,10 @@ function _M:on_set_temporary_effect(eff_id, e, p)
 	if self.player then
 		p.__set_time = core.game.getTime()
 	end
+
+	if game.difficulty == game.DIFFICULTY_EASY and e.status == "detrimental" then
+		p.dur = math.ceil(p.dur / 2)
+	end
 end
 
 --- Called when we are initiating a projection
diff --git a/game/modules/tome/data/birth/descriptors.lua b/game/modules/tome/data/birth/descriptors.lua
index 7194b03961..0c06fba296 100644
--- a/game/modules/tome/data/birth/descriptors.lua
+++ b/game/modules/tome/data/birth/descriptors.lua
@@ -149,6 +149,7 @@ newBirthDescriptor{
 		"Use it if you feel uneasy tackling the harder modes.",
 		"All damage done to the player decreased by 30%",
 		"All healing for the player increased by 30%",
+		"All detrimental status effects durations reduced by 50%",
 		"Achievements are not granted.",
 	},
 	descriptor_choices =
-- 
GitLab