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

The Overpowered Wyrms on vor armoury can breath water

git-svn-id: http://svn.net-core.org/repos/t-engine4@5148 51575b47-30f0-44d4-a5cc-537603b46e54
parent f61d09fe
No related branches found
No related tags found
No related merge requests found
......@@ -34,11 +34,10 @@ function _M:init()
self.list = l
l[#l+1] = {name="New Game", fct=function() game:registerDialog(require("mod.dialogs.NewGame").new()) end}
l[#l+1] = {name="Load Game", fct=function() game:registerDialog(require("mod.dialogs.LoadGame").new()) end}
l[#l+1] = {name="Player Profile", fct=function() game:registerDialog(require("mod.dialogs.Profile").new()) end}
l[#l+1] = {name="View High Scores", fct=function() game:registerDialog(require("mod.dialogs.ViewHighScores").new()) end}
l[#l+1] = {name="Addons", fct=function() game:registerDialog(require("mod.dialogs.Addons").new()) end}
if config.settings.install_remote then l[#l+1] = {name="Install Module", fct=function() end} end
if config.settings.update_remote then l[#l+1] = {name="Update", fct=function() game:registerDialog(require("mod.dialogs.UpdateAll").new()) end} end
-- if config.settings.install_remote then l[#l+1] = {name="Install Module", fct=function() end} end
-- if config.settings.update_remote then l[#l+1] = {name="Update", fct=function() game:registerDialog(require("mod.dialogs.UpdateAll").new()) end} end
l[#l+1] = {name="Options", fct=function()
local menu menu = require("engine.dialogs.GameMenu").new{
"resume",
......
......@@ -82,6 +82,7 @@ newEntity{ base="GREATER_MULTI_HUED_WYRM", define_as="OVERPOWERED_WYRM",
level_range = {100, nil}, exp_worth = 3,
wyrm_rarity = 1, rarity = false,
rank = 3.5,
no_breath = 1,
seen_by = function(self, who)
if game:getPlayer(true) ~= who then return end
world:gainAchievement("UBER_WYRMS_OPEN", who)
......
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