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

Undead races are now unlocked by killing the Master (a random one will be unlocked each time)

git-svn-id: http://svn.net-core.org/repos/t-engine4@1443 51575b47-30f0-44d4-a5cc-537603b46e54
parent 430713bc
No related branches found
No related tags found
No related merge requests found
......@@ -332,14 +332,6 @@ function _M:die(src)
else
mod.class.Actor.die(self, src)
end
if src and src.type == "undead" and src.subtype == "skeleton" and rng.percent(src.rank + math.ceil(math.max(src.level / 2, 1))) then
game:setAllowedBuild("undead")
game:setAllowedBuild("undead_skeleton", true)
elseif src and src.type == "undead" and src.subtype == "ghoul" and rng.percent(src.rank + math.ceil(math.max(src.level / 2, 1))) then
game:setAllowedBuild("undead")
game:setAllowedBuild("undead_ghoul", true)
end
end
--- Suffocate a bit, lose air
......
......@@ -112,7 +112,7 @@ newEntity{ base = "BASE_NPC_SKELETON",
}
newEntity{ base = "BASE_NPC_SKELETON",
name = "armoured skeleton warrior", color=colors.STEEL_BLUE,
name = "armoured skeleton warrior", color=colors.STEEL_BLUE, image="npc/armored_skeleton_warrior.png",
level_range = {10, nil}, exp_worth = 1,
rarity = 5,
max_life = resolvers.rngavg(90,100),
......
......@@ -20,7 +20,7 @@
return "New Race: #LIGHT_GREEN#Ghoul (Undead)",
[[
Ghouls are evil undead creatures. Usually raised by necromancers to serve as mindless servants, some however manage to keep their sentience and roam the world in a blazing path of destruction.
While you have died at the hands of such a creature, you can now create a new character with the #LIGHT_GREEN#Ghoul race#WHITE#.
While you have killed the Master, a malevolent undead creature. You can now create a new character with the #LIGHT_GREEN#Ghoul race#WHITE#.
Race features:#YELLOW#
- great poison resistance
......
......@@ -20,7 +20,7 @@
return "New Race: #LIGHT_GREEN#Skeleton (Undead)",
[[
Skeletons are evil undead creatures. Usually raised by necromancers to serve as mindless servants, some however manage to keep their sentience and roam the world in a blazing path of destruction.
While you have died at the hands of such a creature, you can now create a new character with the #LIGHT_GREEN#Skeleton race#WHITE#.
While you have killed the Master, a malevolent undead creature. You can now create a new character with the #LIGHT_GREEN#Skeleton race#WHITE#.
Race features:#YELLOW#
- poison immunity
......
......@@ -91,5 +91,12 @@ newEntity{ define_as = "THE_MASTER",
world:gainAchievement("VAMPIRE_CRUSHER", game.player:resolveSource())
game.player:resolveSource():grantQuest("tol-falas")
game.player:resolveSource():setQuestStatus("tol-falas", engine.Quest.DONE)
local ud = {}
if not profile.mod.allow_build.undead_skeleton then ud[#ud+1] = "undead_skeleton" end
if not profile.mod.allow_build.undead_ghoul then ud[#ud+1] = "undead_ghoul" end
if #ud == 0 then return end
game:setAllowedBuild("undead")
game:setAllowedBuild(rng.table(ud), true)
end,
}
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