Skip to content
Snippets Groups Projects
Commit 84827617 authored by DarkGod's avatar DarkGod
Browse files

New debug menu option to create a test dummy

parent 8cbd496b
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,23 @@ function _M:use(item)
game.player:sortInven()
end
end
elseif act == "test-dummy" then
local m = mod.class.NPC.new{define_as="TRAINING_DUMMY",
type = "training", subtype = "dummy",
name = "Test Dummy", color=colors.GREY,
desc = "Test dummy.", image = "npc/lure.png",
level_range = {1, 1}, exp_worth = 0,
rank = 3,
max_life = 300000, life_rating = 0,
life_regen = 300000,
never_move = 1,
training_dummy = 1,
}
local x, y = util.findFreeGrid(game.player.x, game.player.y, 20, true, {[engine.Map.ACTOR]=true})
if not x then return end
m:resolve()
m:resolve(nil, true)
game.zone:addEntity(game.level, m, "actor", x, y)
else
self:triggerHook{"DebugMain:use", act=act}
end
......@@ -167,6 +184,7 @@ function _M:generateList()
list[#list+1] = {name="Semi-Godmode", action="semigodmode"}
list[#list+1] = {name="Give all ingredients", action="all-ingredients"}
list[#list+1] = {name="Weakdamage", action="weakdamage"}
list[#list+1] = {name="Test Dummy", action="test-dummy"}
self:triggerHook{"DebugMain:generate", menu=list}
local chars = {}
......
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