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() ...@@ -632,7 +632,7 @@ function _M:setupCommands()
end, end,
[{"_g","ctrl"}] = function() [{"_g","ctrl"}] = function()
if config.settings.tome.cheat then if config.settings.tome.cheat then
self:changeLevel(1, "tannen-tower") self:changeLevel(4, "tannen-tower")
-- self:changeLevel(1, "town-minas-tirith") -- self:changeLevel(1, "town-minas-tirith")
-- self.player:grantQuest("east-portal") -- self.player:grantQuest("east-portal")
end end
......
...@@ -26,6 +26,8 @@ defineTile(">", "DOWN") ...@@ -26,6 +26,8 @@ defineTile(">", "DOWN")
defineTile(".", "FLOOR") defineTile(".", "FLOOR")
-- addSpot section -- addSpot section
startx = 12
starty = 12
-- ASCII map section -- ASCII map section
return [[ return [[
......
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
startx = 19 startx = 19
starty = 4 starty = 4
endx = 12
endy = 12
-- defineTile section -- defineTile section
defineTile("X", "HARDWALL") defineTile("X", "HARDWALL")
......
...@@ -17,8 +17,10 @@ ...@@ -17,8 +17,10 @@
-- Nicolas Casalini "DarkGod" -- Nicolas Casalini "DarkGod"
-- darkgod@te4.org -- darkgod@te4.org
startx = 19 startx = 12
starty = 14 starty = 12
endx = 19
endy = 14
-- defineTile section -- defineTile section
defineTile("X", "HARDWALL") defineTile("X", "HARDWALL")
......
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
startx = 5 startx = 5
starty = 14 starty = 14
endx = 12
endy = 12
-- defineTile section -- defineTile section
defineTile("U", "LAVA_FLOOR", nil, {random_filter={type="demon"}}) defineTile("U", "LAVA_FLOOR", nil, {random_filter={type="demon"}})
......
...@@ -67,6 +67,7 @@ newTalent{ ...@@ -67,6 +67,7 @@ newTalent{
reflectable = true, reflectable = true,
proj_speed = 15, proj_speed = 15,
requires_target = true, requires_target = true,
range = 15,
action = function(self, t) action = function(self, t)
local tg = {type="bolt", range=self:getTalentRange(t), talent=t, display={particle="bolt_slime"}} local tg = {type="bolt", range=self:getTalentRange(t), talent=t, display={particle="bolt_slime"}}
local x, y = self:getTarget(tg) 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