texture updated. recipe added, adjustments
This commit is contained in:
parent
cf270b4e9e
commit
2b6b8f55fc
16
init.lua
16
init.lua
@ -119,8 +119,8 @@ end
|
|||||||
-- tool definition
|
-- tool definition
|
||||||
minetest.register_tool("subspacewalker:walker", {
|
minetest.register_tool("subspacewalker:walker", {
|
||||||
description = "Subspace Walker",
|
description = "Subspace Walker",
|
||||||
inventory_image = "default_torch_on_floor.png",
|
inventory_image = "subspace_walker.png",
|
||||||
wield_image = "default_torch_on_floor.png",
|
wield_image = "subspace_walker.png",
|
||||||
tool_capabilities = {},
|
tool_capabilities = {},
|
||||||
range = 0,
|
range = 0,
|
||||||
on_use = subspacewalker.enable_ssw,
|
on_use = subspacewalker.enable_ssw,
|
||||||
@ -142,6 +142,8 @@ minetest.register_node("subspacewalker:subspace", {
|
|||||||
diggable = false,
|
diggable = false,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
groups = {not_in_creative_inventory=1},
|
groups = {not_in_creative_inventory=1},
|
||||||
|
pointable = false,
|
||||||
|
drop = ""
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
@ -152,3 +154,13 @@ minetest.register_abm({
|
|||||||
chance = 1,
|
chance = 1,
|
||||||
action = subspacewalker.restore_blocks
|
action = subspacewalker.restore_blocks
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "subspacewalker:walker",
|
||||||
|
width = 1,
|
||||||
|
recipe = {
|
||||||
|
{"default:diamond"},
|
||||||
|
{"default:mese_crystal"},
|
||||||
|
{"group:stick"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
BIN
textures/subspace_walker.png
Normal file
BIN
textures/subspace_walker.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 450 B |
Loading…
x
Reference in New Issue
Block a user