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

Shuffeld the difficulty modes again. Now "Easy" is the old Discover; "Normal"...

Shuffeld the difficulty modes again. Now "Easy" is the old Discover; "Normal" is a multi-lifes mode; "Hardcore" is one life and the rest did not change


git-svn-id: http://svn.net-core.org/repos/t-engine4@2196 51575b47-30f0-44d4-a5cc-537603b46e54
parent 48ef855f
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,9 @@ module(..., package.seeall, class.inherit(engine.GameTurnBased, engine.interface
-- Difficulty settings
DIFFICULTY_EASY = 1
DIFFICULTY_NORMAL = 2
DIFFICULTY_NIGHTMARE = 3
DIFFICULTY_INSANE = 4
DIFFICULTY_HARDCORE = 3
DIFFICULTY_NIGHTMARE = 4
DIFFICULTY_INSANE = 5
function _M:init()
engine.GameTurnBased.init(self, engine.KeyBind.new(), 1000, 100)
......
......@@ -381,7 +381,7 @@ end
function _M:heal(value, src)
-- Difficulty settings
if game.difficulty == game.DIFFICULTY_EASY then
value = value * 1.1
value = value * 1.3
end
mod.class.Actor.heal(self, value, src)
......
......@@ -107,9 +107,9 @@ newBirthDescriptor{
display_name = "Discovery",
desc =
{
"Discovery game mode",
"Easy game mode",
"All damage done to the player decreased by 30%",
"All healing for the player increased by 10%",
"All healing for the player increased by 30%",
"At level 1,2,3,5,7,10,14,18,24,30,40 get one more 'life' that allows to resurrect at the start of the level.",
"Achievements are not granted.",
},
......@@ -128,16 +128,34 @@ newBirthDescriptor{
name = "Normal",
selection_default = profile.mod.allow_build.tutorial_done,
desc =
{
"Normal game mode",
"At level 1,2,3,5,7,10,14,18,24,30,40 get one more 'life' that allows to resurrect at the start of the level.",
},
descriptor_choices =
{
race = { ["Tutorial Human"] = "forbid", },
class = { ["Tutorial Adventurer"] = "forbid", },
},
copy = {
__game_difficulty = 2,
easy_mode_lifes = 1,
},
}
newBirthDescriptor{
type = "difficulty",
name = "Hardcore",
desc =
{
"Normal game setting",
"No changes to the rules.",
"Only one life, unless ways to self-resurrect are found in-game.",
},
descriptor_choices =
{
race = { ["Tutorial Human"] = "forbid", },
class = { ["Tutorial Adventurer"] = "forbid", },
},
copy = { __game_difficulty = 2 },
copy = { __game_difficulty = 3 },
}
newBirthDescriptor{
type = "difficulty",
......@@ -145,6 +163,7 @@ newBirthDescriptor{
desc =
{
"Hard game setting",
"Only one life, unless ways to self-resurrect are found in-game.",
"All zone levels increased by 40% + 5",
"All damage done to the player increased by 30%",
},
......@@ -153,7 +172,7 @@ newBirthDescriptor{
race = { ["Tutorial Human"] = "forbid", },
class = { ["Tutorial Adventurer"] = "forbid", },
},
copy = { __game_difficulty = 3 },
copy = { __game_difficulty = 4 },
}
newBirthDescriptor{
type = "difficulty",
......@@ -161,6 +180,7 @@ newBirthDescriptor{
desc =
{
"Absolutely unfair game setting",
"Only one life, unless ways to self-resurrect are found in-game.",
"All zone levels increased by 100% + 10",
"All damage done to the player increased by 60%",
"Player rank is normal instead of elite",
......@@ -170,7 +190,7 @@ newBirthDescriptor{
race = { ["Tutorial Human"] = "forbid", },
class = { ["Tutorial Adventurer"] = "forbid", },
},
copy = { __game_difficulty = 4, rank=2 },
copy = { __game_difficulty = 5, rank=2 },
}
......
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