First prototype

This commit is contained in:
Wuzzy 2015-02-13 21:43:24 +01:00
commit 2f265172d5
4 changed files with 29 additions and 0 deletions

1
depends.txt Normal file
View File

@ -0,0 +1 @@
mana

1
description.txt Normal file
View File

@ -0,0 +1 @@
Adds the “Mirror of Returning”, a magical item which returns the user to a preset point.

27
init.lua Normal file
View File

@ -0,0 +1,27 @@
returnmirror = {}
returnmirror.cost = 100
returnmirror.file = minetest.get_worldpath() .. "/returnmirror.mt"
returnmirror.write = function()
end
returnmirror.load = function()
end
minetest.register_tool("returnmirror:returnmirror", {
description = "Mirror of Returning",
stack_max = 1,
inventory_image = "returnmirror_returnmirror.png",
wield_image = "returnmirror_returnmirror.png",
tool_capabilities = {},
on_use = function(itemstack, user, pointed_thing)
if mana.subtract(user:get_player_name(), returnmirror.cost) then
user:setpos({x=0, y=0, z=0})
return nil
end
end,
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 466 B