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

Nightmare mode achievements

Weaver Queen lost her heal


git-svn-id: http://svn.net-core.org/repos/t-engine4@6161 51575b47-30f0-44d4-a5cc-537603b46e54
parent f4ebe1b5
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,7 @@ function _M:gainAchievement(id, src, ...)
if game.difficulty == game.DIFFICULTY_EASY and not a.tutorial then return end
if game.permadeath == game.PERMADEATH_INFINITE then id = "EXPLORATION_"..id end
if game.difficulty == game.DIFFICULTY_NIGHTMARE and game.permadeath == game.PERMADEATH_ONE then id = "NIGHTMARE_"..id end
if game.difficulty == game.DIFFICULTY_INSANE and game.permadeath == game.PERMADEATH_ONE then id = "INSANE_"..id end
local knew = self.achieved[id]
......
......@@ -36,6 +36,11 @@ function _M:newAchievement(t)
t2.name = t2.name.." (Exploration mode)"
WA.newAchievement(self, t2)
local t2 = table.clone(t)
t2.id = "NIGHTMARE_"..t2.id
t2.name = t2.name.." (Nightmare difficulty)"
WA.newAchievement(self, t2)
local t2 = table.clone(t)
t2.id = "INSANE_"..t2.id
t2.name = t2.name.." (Insane difficulty)"
......
......@@ -129,7 +129,6 @@ newEntity{ base = "BASE_NPC_SPIDER", define_as = "WEAVER_QUEEN",
[Talents.T_RETHREAD]=2,
[Talents.T_STATIC_HISTORY]=2,
[Talents.T_FADE_FROM_TIME]=3,
[Talents.T_BODY_REVERSION]=1,
},
autolevel = "caster",
......
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