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

Fixed Drain range

git-svn-id: http://svn.net-core.org/repos/t-engine4@1585 51575b47-30f0-44d4-a5cc-537603b46e54
parent 116b8b4b
No related branches found
No related tags found
No related merge requests found
......@@ -632,7 +632,7 @@ function _M:setupCommands()
end,
[{"_g","ctrl"}] = function()
if config.settings.tome.cheat then
self:changeLevel(1, "tannen-tower")
self:changeLevel(4, "tannen-tower")
-- self:changeLevel(1, "town-minas-tirith")
-- self.player:grantQuest("east-portal")
end
......
......@@ -26,6 +26,8 @@ defineTile(">", "DOWN")
defineTile(".", "FLOOR")
-- addSpot section
startx = 12
starty = 12
-- ASCII map section
return [[
......
......@@ -19,6 +19,8 @@
startx = 19
starty = 4
endx = 12
endy = 12
-- defineTile section
defineTile("X", "HARDWALL")
......
......@@ -17,8 +17,10 @@
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
startx = 19
starty = 14
startx = 12
starty = 12
endx = 19
endy = 14
-- defineTile section
defineTile("X", "HARDWALL")
......
......@@ -19,6 +19,8 @@
startx = 5
starty = 14
endx = 12
endy = 12
-- defineTile section
defineTile("U", "LAVA_FLOOR", nil, {random_filter={type="demon"}})
......
......@@ -67,6 +67,7 @@ newTalent{
reflectable = true,
proj_speed = 15,
requires_target = true,
range = 15,
action = function(self, t)
local tg = {type="bolt", range=self:getTalentRange(t), talent=t, display={particle="bolt_slime"}}
local x, y = self:getTarget(tg)
......
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