1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-17 23:55:23 +01:00

initial commit

subgame + mods
This commit is contained in:
Ombridride
2014-10-28 18:01:32 +01:00
parent baab1b3f7c
commit 232b274c55
6451 changed files with 226156 additions and 0 deletions

24
mods/markers/marker_stone.lua Executable file
View File

@@ -0,0 +1,24 @@
minetest.register_node("markers:stone", {
description = "Boundary marker for land administration",
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" },
} });