first commit
This commit is contained in:
commit
eef69c3b5c
13 changed files with 1575 additions and 0 deletions
24
marker_stone.lua
Normal file
24
marker_stone.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
minetest.register_node("markers:stone", {
|
||||
description = "Grenzstein für die Grundstücksverwaltung",
|
||||
tiles = {"markers_stone.png", "markers_stone.png", "markers_stone_side.png",
|
||||
"markers_stone_side.png", "markers_stone_side.png", "markers_stone_side.png" },
|
||||
-- no facedir here - we want a fixed north indication!
|
||||
-- paramtype2 = "facedir",
|
||||
groups = {cracky=2},
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
|
||||
on_rightclick = function(pos, node, clicker)
|
||||
|
||||
markers.show_marker_stone_formspec( clicker, pos );
|
||||
end,
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "markers:stone",
|
||||
recipe = { { "markers:mark" },
|
||||
{ "default:cobble" },
|
||||
} });
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue