Commit 26d3cc540a67519c27a0c06666081214e723dff7

Authored by dg
1 parent f61d09fe

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
... ... @@ -34,11 +34,10 @@ function _M:init()
34 34 self.list = l
35 35 l[#l+1] = {name="New Game", fct=function() game:registerDialog(require("mod.dialogs.NewGame").new()) end}
36 36 l[#l+1] = {name="Load Game", fct=function() game:registerDialog(require("mod.dialogs.LoadGame").new()) end}
37   - l[#l+1] = {name="Player Profile", fct=function() game:registerDialog(require("mod.dialogs.Profile").new()) end}
38 37 l[#l+1] = {name="View High Scores", fct=function() game:registerDialog(require("mod.dialogs.ViewHighScores").new()) end}
39 38 l[#l+1] = {name="Addons", fct=function() game:registerDialog(require("mod.dialogs.Addons").new()) end}
40   - if config.settings.install_remote then l[#l+1] = {name="Install Module", fct=function() end} end
41   - if config.settings.update_remote then l[#l+1] = {name="Update", fct=function() game:registerDialog(require("mod.dialogs.UpdateAll").new()) end} end
  39 +-- if config.settings.install_remote then l[#l+1] = {name="Install Module", fct=function() end} end
  40 +-- if config.settings.update_remote then l[#l+1] = {name="Update", fct=function() game:registerDialog(require("mod.dialogs.UpdateAll").new()) end} end
42 41 l[#l+1] = {name="Options", fct=function()
43 42 local menu menu = require("engine.dialogs.GameMenu").new{
44 43 "resume",
... ...
... ... @@ -82,6 +82,7 @@ newEntity{ base="GREATER_MULTI_HUED_WYRM", define_as="OVERPOWERED_WYRM",
82 82 level_range = {100, nil}, exp_worth = 3,
83 83 wyrm_rarity = 1, rarity = false,
84 84 rank = 3.5,
  85 + no_breath = 1,
85 86 seen_by = function(self, who)
86 87 if game:getPlayer(true) ~= who then return end
87 88 world:gainAchievement("UBER_WYRMS_OPEN", who)
... ...