1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
--[[
StreetsMod: Poles and signs
]]
minetest.register_node(":streets:pole_bottom",{
description = "Pole",
tiles = {"streets_pole.png"},
groups = {cracky=2},
inventory_image = "streets_pole_inv.png",
wield_image = "streets_pole_inv.png",
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-0.1,-0.5,-0.5,0.1,0.5,-0.4},
{-0.125,-0.5,-0.525,0.125,-0.3,-0.375}
}
},
selection_box = {
type = "fixed",
fixed = {
{-0.1,-0.5,-0.5,0.1,0.5,-0.4}
}
},
after_place_node = function(pos,placer,itemstack)
pos.y = pos.y +1
if minetest.get_node(pos).name == "air" then
minetest.add_node(pos,{name = "streets:pole_top", param2 = minetest.dir_to_facedir(placer:get_look_dir())})
else
minetest.chat_send_player(placer:get_player_name(),"Not enough free space! A pole has a height of 2 blocks!")
pos.y = pos.y -1
minetest.remove_node(pos)
end
end,
after_dig_node = function(pos, oldnode, oldmetadata, digger)
pos.y = pos.y +1
if minetest.get_node(pos).name == "streets:pole_top" then
minetest.remove_node(pos)
end
end
})
minetest.register_node(":streets:pole_top",{
description = "Y u no play minetest without cheating?",
tiles = {"streets_pole.png"},
groups = {cracky=2,not_in_creative_inventory=1},
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox",
can_dig = function(pos,player)
return false
end,
node_box = {
type = "fixed",
fixed = {
{-0.1,-0.5,-0.5,0.1,0.5,-0.4}
}
}
})
minetest.register_craft({
output = "streets:pole_bottom 3",
recipe = {
{"","default:steel_ingot",""},
{"","default:steel_ingot",""},
{"","default:steel_ingot",""}
}
})
|