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
|
||||
minetest.register_tool("subspacewalker:walker", {
|
||||
description = "Subspace Walker",
|
||||
inventory_image = "default_torch_on_floor.png",
|
||||
wield_image = "default_torch_on_floor.png",
|
||||
inventory_image = "subspace_walker.png",
|
||||
wield_image = "subspace_walker.png",
|
||||
tool_capabilities = {},
|
||||
range = 0,
|
||||
on_use = subspacewalker.enable_ssw,
|
||||
@ -142,6 +142,8 @@ minetest.register_node("subspacewalker:subspace", {
|
||||
diggable = false,
|
||||
walkable = false,
|
||||
groups = {not_in_creative_inventory=1},
|
||||
pointable = false,
|
||||
drop = ""
|
||||
})
|
||||
|
||||
|
||||
@ -152,3 +154,13 @@ minetest.register_abm({
|
||||
chance = 1,
|
||||
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