2015-06-29 19:55:56 +02:00
|
|
|
--
|
|
|
|
-- Lavacooling
|
|
|
|
--
|
|
|
|
|
|
|
|
default.cool_lava_source = function(pos)
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.set_node(pos, {name="default:obsidian"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
default.cool_lava_flowing = function(pos)
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.set_node(pos, {name="default:stone"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:lava_flowing"},
|
|
|
|
neighbors = {"group:water"},
|
|
|
|
interval = 1,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
default.cool_lava_flowing(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:lava_source"},
|
|
|
|
neighbors = {"group:water"},
|
|
|
|
interval = 1,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
default.cool_lava_source(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Papyrus and cactus growing
|
|
|
|
--
|
|
|
|
|
|
|
|
-- Functions
|
2017-01-24 02:31:49 +01:00
|
|
|
local grow_cactus = function(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
pos.y = pos.y-1
|
2015-07-04 04:56:02 +02:00
|
|
|
local name = minetest.get_node(pos).name
|
2015-06-29 19:55:56 +02:00
|
|
|
if minetest.get_item_group(name, "sand") ~= 0 then
|
|
|
|
pos.y = pos.y+1
|
|
|
|
local height = 0
|
2015-07-04 04:56:02 +02:00
|
|
|
while minetest.get_node(pos).name == "default:cactus" and height < 4 do
|
2015-06-29 19:55:56 +02:00
|
|
|
height = height+1
|
|
|
|
pos.y = pos.y+1
|
|
|
|
end
|
2017-01-12 07:13:58 +01:00
|
|
|
if height < 3 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.set_node(pos, {name="default:cactus"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-24 02:31:49 +01:00
|
|
|
local grow_reeds = function(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
pos.y = pos.y-1
|
2015-07-04 04:56:02 +02:00
|
|
|
local name = minetest.get_node(pos).name
|
2017-01-12 06:54:16 +01:00
|
|
|
if minetest.get_node_group(name, "soil_sugarcane") ~= 0 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.find_node_near(pos, 3, {"group:water"}) == nil then
|
2015-06-29 19:55:56 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y+1
|
|
|
|
local height = 0
|
2015-07-04 04:56:02 +02:00
|
|
|
while minetest.get_node(pos).name == "default:reeds" and height < 3 do
|
2015-06-29 19:55:56 +02:00
|
|
|
height = height+1
|
|
|
|
pos.y = pos.y+1
|
|
|
|
end
|
|
|
|
if height < 3 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.set_node(pos, {name="default:reeds"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- ABMs
|
2015-07-01 07:56:51 +02:00
|
|
|
|
2017-01-08 00:22:10 +01:00
|
|
|
|
|
|
|
local function drop_attached_node(p)
|
|
|
|
local nn = minetest.get_node(p).name
|
|
|
|
minetest.remove_node(p)
|
|
|
|
for _, item in pairs(minetest.get_node_drops(nn, "")) do
|
|
|
|
local pos = {
|
|
|
|
x = p.x + math.random()/2 - 0.25,
|
|
|
|
y = p.y + math.random()/2 - 0.25,
|
|
|
|
z = p.z + math.random()/2 - 0.25,
|
|
|
|
}
|
|
|
|
minetest.add_item(pos, item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Remove attached nodes next to flowing water
|
2015-07-01 07:37:51 +02:00
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"group:dig_by_water"},
|
|
|
|
neighbors = {"group:water"},
|
|
|
|
interval = 1,
|
|
|
|
chance = 1,
|
2015-07-01 07:56:51 +02:00
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
for xp=-1,1 do
|
|
|
|
for zp=-1,1 do
|
|
|
|
local p = {x=pos.x+xp, y=pos.y, z=pos.z+zp}
|
2015-07-04 04:56:02 +02:00
|
|
|
local n = minetest.get_node(p)
|
2017-01-06 02:35:45 +01:00
|
|
|
if (n.name=="default:water_flowing") then
|
2017-01-08 00:22:10 +01:00
|
|
|
drop_attached_node(pos)
|
|
|
|
minetest.dig_node(pos)
|
|
|
|
break
|
2017-01-06 02:35:45 +01:00
|
|
|
end
|
2015-07-01 07:37:51 +02:00
|
|
|
end
|
|
|
|
end
|
2015-07-01 07:56:51 +02:00
|
|
|
for yp=-1,1 do
|
|
|
|
local p = {x=pos.x, y=pos.y+yp, z=pos.z}
|
2015-07-04 04:56:02 +02:00
|
|
|
local n = minetest.get_node(p)
|
2017-01-06 02:35:45 +01:00
|
|
|
if (n.name=="default:water_flowing") then
|
|
|
|
drop_attached_node(pos)
|
|
|
|
minetest.dig_node(pos)
|
|
|
|
break
|
|
|
|
end
|
2015-07-01 07:56:51 +02:00
|
|
|
end
|
|
|
|
|
2015-07-01 07:37:51 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:cactus"},
|
|
|
|
neighbors = {"group:sand"},
|
|
|
|
interval = 25,
|
|
|
|
chance = 10,
|
|
|
|
action = function(pos)
|
|
|
|
grow_cactus(pos)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:reeds"},
|
|
|
|
neighbors = {"default:dirt", "default:dirt_with_grass"},
|
|
|
|
interval = 25,
|
|
|
|
chance = 10,
|
|
|
|
action = function(pos)
|
|
|
|
grow_reeds(pos)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Papyrus and cactus drop
|
|
|
|
--
|
|
|
|
|
|
|
|
local timber_nodenames={"default:reeds", "default:cactus"}
|
|
|
|
|
|
|
|
minetest.register_on_dignode(function(pos, node)
|
|
|
|
local i=1
|
|
|
|
while timber_nodenames[i]~=nil do
|
|
|
|
if node.name==timber_nodenames[i] then
|
2017-01-27 13:45:21 +01:00
|
|
|
local np={x=pos.x, y=pos.y+1, z=pos.z}
|
2015-07-04 04:56:02 +02:00
|
|
|
while minetest.get_node(np).name==timber_nodenames[i] do
|
|
|
|
minetest.remove_node(np)
|
|
|
|
minetest.add_item(np, timber_nodenames[i])
|
2015-06-29 19:55:56 +02:00
|
|
|
np={x=np.x, y=np.y+1, z=np.z}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
i=i+1
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Flint and Steel
|
|
|
|
--
|
|
|
|
|
2017-01-27 13:45:21 +01:00
|
|
|
function default.set_fire(pointed_thing)
|
2017-01-16 14:59:16 +01:00
|
|
|
local n = minetest.get_node(pointed_thing.above)
|
|
|
|
if n.name ~= "" and n.name == "air" and not minetest.is_protected(pointed_thing.above, "fire") then
|
|
|
|
minetest.add_node(pointed_thing.above, {name="fire:basic_flame"})
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Fire Particles
|
|
|
|
--
|
|
|
|
|
2017-01-27 13:45:21 +01:00
|
|
|
function default.add_fire(pos)
|
2015-06-29 19:55:56 +02:00
|
|
|
local null = {x=0, y=0, z=0}
|
|
|
|
pos.y = pos.y+0.19
|
|
|
|
minetest.add_particle(pos, null, null, 1.1,
|
|
|
|
1.5, true, "default_fire_particle"..tostring(math.random(1,2)) ..".png")
|
|
|
|
pos.y = pos.y +0.01
|
|
|
|
minetest.add_particle(pos, null, null, 0.8,
|
|
|
|
1.5, true, "default_fire_particle"..tostring(math.random(1,2)) ..".png")
|
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Bone Meal
|
|
|
|
--
|
|
|
|
|
|
|
|
local n
|
|
|
|
local n2
|
|
|
|
local pos
|
|
|
|
|
2017-01-27 13:45:21 +01:00
|
|
|
local function apple_leave()
|
2015-06-29 19:55:56 +02:00
|
|
|
if math.random(0, 10) == 3 then
|
|
|
|
return {name = "default:apple"}
|
|
|
|
else
|
|
|
|
return {name = "default:leaves"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-27 13:45:21 +01:00
|
|
|
local function air_leave()
|
2015-06-29 19:55:56 +02:00
|
|
|
if math.random(0, 50) == 3 then
|
|
|
|
return {name = "air"}
|
|
|
|
else
|
|
|
|
return {name = "default:leaves"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-27 13:45:21 +01:00
|
|
|
local function generate_tree(pos, trunk, leaves, typearbre)
|
2015-06-29 19:55:56 +02:00
|
|
|
pos.y = pos.y-1
|
2015-07-04 04:56:02 +02:00
|
|
|
local nodename = minetest.get_node(pos).name
|
2015-06-29 19:55:56 +02:00
|
|
|
|
|
|
|
pos.y = pos.y+1
|
2015-07-04 04:56:02 +02:00
|
|
|
if not minetest.get_node_light(pos) then
|
2015-06-29 19:55:56 +02:00
|
|
|
return
|
|
|
|
end
|
2017-01-27 13:45:21 +01:00
|
|
|
local node
|
2015-06-29 19:55:56 +02:00
|
|
|
if typearbre == nil or typearbre == 1 then
|
|
|
|
node = {name = ""}
|
|
|
|
for dy=1,4 do
|
|
|
|
pos.y = pos.y+dy
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name ~= "air" then
|
2015-06-29 19:55:56 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y-dy
|
|
|
|
end
|
|
|
|
node = {name = trunk}
|
|
|
|
for dy=0,4 do
|
|
|
|
pos.y = pos.y+dy
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.y = pos.y-dy
|
|
|
|
end
|
|
|
|
|
|
|
|
node = {name = leaves}
|
|
|
|
pos.y = pos.y+3
|
|
|
|
local rarity = 0
|
|
|
|
if math.random(0, 10) == 3 then
|
|
|
|
rarity = 1
|
|
|
|
end
|
|
|
|
for dx=-2,2 do
|
|
|
|
for dz=-2,2 do
|
|
|
|
for dy=0,3 do
|
|
|
|
pos.x = pos.x+dx
|
|
|
|
pos.y = pos.y+dy
|
|
|
|
pos.z = pos.z+dz
|
|
|
|
|
|
|
|
if dx == 0 and dz == 0 and dy==3 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" and math.random(1, 5) <= 4 then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
if rarity == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, apple_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, air_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif dx == 0 and dz == 0 and dy==4 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" and math.random(1, 5) <= 4 then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
if rarity == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, apple_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, air_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif math.abs(dx) ~= 2 and math.abs(dz) ~= 2 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
if rarity == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, apple_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, air_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if math.abs(dx) ~= 2 or math.abs(dz) ~= 2 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" and math.random(1, 5) <= 4 then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
if rarity == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, apple_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, air_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
pos.x = pos.x-dx
|
|
|
|
pos.y = pos.y-dy
|
|
|
|
pos.z = pos.z-dz
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif typearbre == 2 then
|
|
|
|
node = {name = ""}
|
|
|
|
|
|
|
|
-- can place big tree ?
|
|
|
|
local tree_size = math.random(15, 25)
|
|
|
|
for dy=1,4 do
|
|
|
|
pos.y = pos.y+dy
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name ~= "air" then
|
2015-06-29 19:55:56 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y-dy
|
|
|
|
end
|
|
|
|
|
|
|
|
--Cheak for placing big tree
|
|
|
|
pos.y = pos.y-1
|
|
|
|
for dz=0,1 do
|
|
|
|
pos.z = pos.z + dz
|
|
|
|
--> 0
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "default:dirt_with_grass"
|
|
|
|
or minetest.get_node(pos).name == "default:dirt" then else
|
2015-06-29 19:55:56 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.x = pos.x+1
|
|
|
|
--> 1
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "default:dirt_with_grass"
|
|
|
|
or minetest.get_node(pos).name == "default:dirt" then else
|
2015-06-29 19:55:56 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.x = pos.x-1
|
|
|
|
pos.z = pos.z - dz
|
|
|
|
end
|
|
|
|
pos.y = pos.y+1
|
|
|
|
|
|
|
|
|
|
|
|
-- Make tree with vine
|
|
|
|
node = {name = trunk}
|
|
|
|
for dy=0,tree_size do
|
|
|
|
pos.y = pos.y+dy
|
|
|
|
|
|
|
|
for dz=-1,2 do
|
|
|
|
if dz == -1 then
|
|
|
|
pos.z = pos.z + dz
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 3) == 1 and minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = "default:vine", param2 = 4})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x+1
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 3) == 1 and minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = "default:vine", param2 = 4})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x-1
|
|
|
|
pos.z = pos.z - dz
|
|
|
|
elseif dz == 2 then
|
|
|
|
pos.z = pos.z + dz
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 3) == 1 and minetest.get_node(pos).name == "air"then
|
|
|
|
minetest.add_node(pos, {name = "default:vine", param2 = 5})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x+1
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 3) == 1 and minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = "default:vine", param2 = 5})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x-1
|
|
|
|
pos.z = pos.z - dz
|
|
|
|
else
|
|
|
|
pos.z = pos.z + dz
|
|
|
|
pos.x = pos.x-1
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 3) == 1 and minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = "default:vine", param2 = 2})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x+1
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = trunk, param2=2})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x+1
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = trunk, param2=2})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x+1
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 3) == 1 and minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, {name = "default:vine", param2 = 3})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
pos.x = pos.x-2
|
|
|
|
pos.z = pos.z - dz
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
pos.y = pos.y-dy
|
|
|
|
end
|
|
|
|
|
|
|
|
-- make leaves
|
|
|
|
node = {name = leaves}
|
|
|
|
pos.y = pos.y+tree_size-4
|
|
|
|
for dx=-5,5 do
|
|
|
|
for dz=-5,5 do
|
|
|
|
for dy=0,3 do
|
|
|
|
pos.x = pos.x+dx
|
|
|
|
pos.y = pos.y+dy
|
|
|
|
pos.z = pos.z+dz
|
|
|
|
|
|
|
|
if dx == 0 and dz == 0 and dy==3 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" or minetest.get_node(pos).name == "default:vine" and math.random(1, 2) == 1 then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
elseif dx == 0 and dz == 0 and dy==4 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" or minetest.get_node(pos).name == "default:vine" and math.random(1, 5) == 1 then
|
|
|
|
minetest.add_node(pos, node)
|
|
|
|
minetest.add_node(pos, air_leave())
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
elseif math.abs(dx) ~= 2 and math.abs(dz) ~= 2 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" or minetest.get_node(pos).name == "default:vine" then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
else
|
|
|
|
if math.abs(dx) ~= 2 or math.abs(dz) ~= 2 then
|
2015-07-04 04:56:02 +02:00
|
|
|
if minetest.get_node(pos).name == "air" or minetest.get_node(pos).name == "default:vine" and math.random(1, 3) == 1 then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(1, 5) == 1 and minetest.get_node(pos).name == "air" then
|
|
|
|
minetest.add_node(pos, node)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
pos.x = pos.x-dx
|
|
|
|
pos.y = pos.y-dy
|
|
|
|
pos.z = pos.z-dz
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local plant_tab = {}
|
|
|
|
local rnd_max = 5
|
|
|
|
minetest.after(0.5, function()
|
|
|
|
plant_tab[0] = "air"
|
|
|
|
plant_tab[1] = "default:grass"
|
|
|
|
plant_tab[2] = "default:grass"
|
|
|
|
plant_tab[3] = "default:grass"
|
|
|
|
plant_tab[4] = "default:grass"
|
|
|
|
plant_tab[5] = "default:grass"
|
|
|
|
|
2017-01-31 12:03:18 +01:00
|
|
|
if minetest.get_modpath("mcl_flowers") ~= nil then
|
2015-06-29 19:55:56 +02:00
|
|
|
rnd_max = 16
|
2017-01-31 12:03:18 +01:00
|
|
|
plant_tab[6] = "mcl_flowers:dandelion_yellow"
|
|
|
|
plant_tab[7] = "mcl_flowers:rose"
|
|
|
|
plant_tab[8] = "mcl_flowers:oxeye_daisy"
|
|
|
|
plant_tab[9] = "mcl_flowers:tulip_orange"
|
|
|
|
plant_tab[10] = "mcl_flowers:tulip_red"
|
|
|
|
plant_tab[11] = "mcl_flowers:tulip_white"
|
|
|
|
plant_tab[12] = "mcl_flowers:tulip_pink"
|
|
|
|
plant_tab[13] = "mcl_flowers:allium"
|
|
|
|
plant_tab[14] = "mcl_flowers:paeonia"
|
|
|
|
plant_tab[15] = "mcl_flowers:houstonia"
|
|
|
|
plant_tab[16] = "mcl_flowers:blue_orchid"
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
2017-01-27 13:45:21 +01:00
|
|
|
function default.duengen(pointed_thing)
|
2015-06-29 19:55:56 +02:00
|
|
|
pos = pointed_thing.under
|
2015-07-04 04:56:02 +02:00
|
|
|
n = minetest.get_node(pos)
|
2017-01-05 07:23:25 +01:00
|
|
|
if n.name == "" then return false end
|
2015-06-29 19:55:56 +02:00
|
|
|
local stage = ""
|
|
|
|
if n.name == "default:sapling" then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="air"})
|
2015-06-29 19:55:56 +02:00
|
|
|
generate_tree(pos, "default:tree", "default:leaves", 1)
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif string.find(n.name, "farming:wheat_") ~= nil then
|
|
|
|
stage = string.sub(n.name, 15)
|
|
|
|
if stage == "3" then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:wheat"})
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif math.random(1,5) < 3 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:wheat"})
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:wheat_"..math.random(2,3)})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif string.find(n.name, "farming:potato_") ~= nil then
|
|
|
|
stage = tonumber(string.sub(n.name, 16))
|
|
|
|
if stage == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:potato_"..math.random(stage,2)})
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:potato"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif string.find(n.name, "farming:carrot_") ~= nil then
|
|
|
|
stage = tonumber(string.sub(n.name, 16))
|
|
|
|
if stage == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:carrot_"..math.random(stage,2)})
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:carrot"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif string.find(n.name, "farming:pumpkin_") ~= nil then
|
|
|
|
stage = tonumber(string.sub(n.name, 17))
|
|
|
|
if stage == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:pumpkin_"..math.random(stage,2)})
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:pumpkintige_unconnect"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif string.find(n.name, "farming:melontige_") ~= nil then
|
|
|
|
stage = tonumber(string.sub(n.name, 18))
|
|
|
|
if stage == 1 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:melontige_"..math.random(stage,2)})
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="farming:melontige_unconnect"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif n.name ~= "" and n.name == "default:junglesapling" then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="air"})
|
2015-06-29 19:55:56 +02:00
|
|
|
generate_tree(pos, "default:jungletree", "default:jungleleaves", 2)
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif n.name ~="" and n.name == "default:reeds" then
|
|
|
|
grow_reeds(pos)
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif n.name ~="" and n.name == "default:cactus" then
|
|
|
|
grow_cactus(pos)
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
2015-06-29 19:55:56 +02:00
|
|
|
elseif n.name == "default:dirt_with_grass" then
|
|
|
|
for i = -2, 3, 1 do
|
|
|
|
for j = -3, 2, 1 do
|
|
|
|
pos = pointed_thing.above
|
|
|
|
pos = {x=pos.x+i, y=pos.y, z=pos.z+j}
|
2015-07-04 04:56:02 +02:00
|
|
|
n = minetest.get_node(pos)
|
|
|
|
n2 = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
|
2015-06-29 19:55:56 +02:00
|
|
|
|
|
|
|
if n.name ~= "" and n.name == "air" and n2.name == "default:dirt_with_grass" then
|
|
|
|
if math.random(0,5) > 3 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name=plant_tab[math.random(0, rnd_max)]})
|
2015-06-29 19:55:56 +02:00
|
|
|
else
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name=plant_tab[math.random(0, 5)]})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-01-05 07:23:25 +01:00
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------
|
|
|
|
-- Try generate grass dirt ---
|
|
|
|
------------------------------
|
|
|
|
-- turn dirt to dirt with grass
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:dirt"},
|
|
|
|
neighbors = {"air"},
|
|
|
|
interval = 30,
|
|
|
|
chance = 20,
|
|
|
|
action = function(pos)
|
2015-07-03 06:57:09 +02:00
|
|
|
if pos == nil then
|
|
|
|
return
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
local can_change = 0
|
|
|
|
for i=1,4 do
|
2015-07-03 06:57:09 +02:00
|
|
|
local p = {x=pos.x, y=pos.y+i, z=pos.z}
|
2015-07-04 04:56:02 +02:00
|
|
|
local n = minetest.get_node(p)
|
2015-06-29 19:55:56 +02:00
|
|
|
-- On verifie si il y a de l'air
|
|
|
|
if (n.name=="air") then
|
|
|
|
can_change = can_change + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if can_change > 3 then
|
|
|
|
local light = minetest.get_node_light(pos)
|
|
|
|
if light or light > 10 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="default:dirt_with_grass"})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--------------------------
|
|
|
|
-- Try generate tree ---
|
|
|
|
--------------------------
|
2017-01-09 04:44:07 +01:00
|
|
|
-- TODO: Acacia, dark oak, spruce, birch
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
-- Normal tree
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:sapling"},
|
2017-01-12 07:07:30 +01:00
|
|
|
neighbors = {"group:soil_sapling"},
|
2015-06-29 19:55:56 +02:00
|
|
|
interval = 30,
|
|
|
|
chance = 15,
|
|
|
|
action = function(pos)
|
|
|
|
local light = minetest.get_node_light(pos)
|
2017-01-12 07:07:30 +01:00
|
|
|
local soilnode = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
|
2017-01-12 21:01:01 +01:00
|
|
|
local soiltype = minetest.get_item_group(soilnode.name, "soil_sapling")
|
2017-01-12 07:07:30 +01:00
|
|
|
if soiltype >= 1 and light and light >= 9 then
|
|
|
|
minetest.add_node(pos, {name="air"})
|
|
|
|
generate_tree(pos, "default:tree", "default:leaves", 1)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Jungle Tree
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:junglesapling"},
|
2017-01-12 07:07:30 +01:00
|
|
|
neighbors = {"group:soil_sapling"},
|
2015-06-29 19:55:56 +02:00
|
|
|
interval = 30,
|
|
|
|
chance = 15,
|
|
|
|
action = function(pos)
|
|
|
|
local light = minetest.get_node_light(pos)
|
2017-01-12 07:07:30 +01:00
|
|
|
local soilnode = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
|
2017-01-12 21:01:01 +01:00
|
|
|
local soiltype = minetest.get_item_group(soilnode.name, "soil_sapling")
|
2017-01-12 07:07:30 +01:00
|
|
|
if soiltype == 2 and light and light >= 9 then
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(pos, {name="air"})
|
2015-06-29 19:55:56 +02:00
|
|
|
generate_tree(pos, "default:jungletree", "default:jungleleaves", 2)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
---------------------
|
|
|
|
-- Vine generating --
|
|
|
|
---------------------
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:vine"},
|
|
|
|
interval = 80,
|
|
|
|
chance = 5,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
local newpos = {x=pos.x, y=pos.y-1, z=pos.z}
|
2015-07-04 04:56:02 +02:00
|
|
|
local n = minetest.get_node(newpos)
|
2015-06-29 19:55:56 +02:00
|
|
|
if n.name == "air" then
|
2017-01-27 13:45:21 +01:00
|
|
|
local walldir = node.param2
|
2015-07-04 04:56:02 +02:00
|
|
|
minetest.add_node(newpos, {name = "default:vine", param2 = walldir})
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Sounds
|
|
|
|
--
|
|
|
|
|
|
|
|
function default.node_sound_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="", gain=1.0}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_dug_node", gain=0.25}
|
|
|
|
table.place = table.place or
|
|
|
|
{name="default_place_node_hard", gain=1.0}
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
|
|
|
function default.node_sound_stone_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="default_hard_footstep", gain=0.5}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_hard_footstep", gain=1.0}
|
|
|
|
default.node_sound_defaults(table)
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
2017-01-09 13:39:36 +01:00
|
|
|
-- TODO: Maybe add custom metal sounds
|
|
|
|
default.node_sound_metal_defaults = default.node_sound_stone_defaults
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
function default.node_sound_dirt_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="default_dirt_footstep", gain=1.0}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_dirt_footstep", gain=1.5}
|
|
|
|
table.place = table.place or
|
|
|
|
{name="default_place_node", gain=1.0}
|
|
|
|
default.node_sound_defaults(table)
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
|
|
|
function default.node_sound_sand_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="default_sand_footstep", gain=0.5}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_sand_footstep", gain=1.0}
|
|
|
|
table.place = table.place or
|
|
|
|
{name="default_place_node", gain=1.0}
|
|
|
|
default.node_sound_defaults(table)
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
|
|
|
function default.node_sound_wood_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="default_wood_footstep", gain=0.5}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_wood_footstep", gain=1.0}
|
|
|
|
default.node_sound_defaults(table)
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
|
|
|
function default.node_sound_leaves_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="default_grass_footstep", gain=0.35}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_grass_footstep", gain=0.85}
|
|
|
|
table.dig = table.dig or
|
|
|
|
{name="default_dig_crumbly", gain=0.4}
|
|
|
|
table.place = table.place or
|
|
|
|
{name="default_place_node", gain=1.0}
|
|
|
|
default.node_sound_defaults(table)
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
|
|
|
function default.node_sound_glass_defaults(table)
|
|
|
|
table = table or {}
|
|
|
|
table.footstep = table.footstep or
|
|
|
|
{name="default_glass_footstep", gain=0.5}
|
|
|
|
table.dug = table.dug or
|
|
|
|
{name="default_break_glass", gain=1.0}
|
|
|
|
default.node_sound_defaults(table)
|
|
|
|
return table
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Leaf Decay
|
|
|
|
|
|
|
|
-- To enable leaf decay for a node, add it to the "leafdecay" group.
|
|
|
|
--
|
|
|
|
-- The rating of the group determines how far from a node in the group "tree"
|
|
|
|
-- the node can be without decaying.
|
|
|
|
--
|
|
|
|
-- If param2 of the node is ~= 0, the node will always be preserved. Thus, if
|
|
|
|
-- the player places a node of that kind, you will want to set param2=1 or so.
|
|
|
|
--
|
|
|
|
-- If the node is in the leafdecay_drop group then the it will always be dropped
|
|
|
|
-- as an item
|
|
|
|
|
|
|
|
default.leafdecay_trunk_cache = {}
|
|
|
|
default.leafdecay_enable_cache = true
|
|
|
|
-- Spread the load of finding trunks
|
|
|
|
default.leafdecay_trunk_find_allow_accumulator = 0
|
|
|
|
|
|
|
|
minetest.register_globalstep(function(dtime)
|
|
|
|
local finds_per_second = 5000
|
|
|
|
default.leafdecay_trunk_find_allow_accumulator =
|
|
|
|
math.floor(dtime * finds_per_second)
|
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"group:leafdecay"},
|
|
|
|
neighbors = {"air", "group:liquid"},
|
|
|
|
-- A low interval and a high inverse chance spreads the load
|
|
|
|
interval = 2,
|
|
|
|
chance = 5,
|
|
|
|
|
|
|
|
action = function(p0, node, _, _)
|
|
|
|
--print("leafdecay ABM at "..p0.x..", "..p0.y..", "..p0.z..")")
|
|
|
|
local do_preserve = false
|
|
|
|
local d = minetest.registered_nodes[node.name].groups.leafdecay
|
|
|
|
if not d or d == 0 then
|
|
|
|
--print("not groups.leafdecay")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local n0 = minetest.get_node(p0)
|
|
|
|
if n0.param2 ~= 0 then
|
|
|
|
--print("param2 ~= 0")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local p0_hash = nil
|
|
|
|
if default.leafdecay_enable_cache then
|
|
|
|
p0_hash = minetest.hash_node_position(p0)
|
|
|
|
local trunkp = default.leafdecay_trunk_cache[p0_hash]
|
|
|
|
if trunkp then
|
|
|
|
local n = minetest.get_node(trunkp)
|
|
|
|
local reg = minetest.registered_nodes[n.name]
|
|
|
|
-- Assume ignore is a trunk, to make the thing work at the border of the active area
|
|
|
|
if n.name == "ignore" or (reg and reg.groups.tree and reg.groups.tree ~= 0) then
|
|
|
|
--print("cached trunk still exists")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
--print("cached trunk is invalid")
|
|
|
|
-- Cache is invalid
|
|
|
|
table.remove(default.leafdecay_trunk_cache, p0_hash)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if default.leafdecay_trunk_find_allow_accumulator <= 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
default.leafdecay_trunk_find_allow_accumulator =
|
|
|
|
default.leafdecay_trunk_find_allow_accumulator - 1
|
|
|
|
-- Assume ignore is a trunk, to make the thing work at the border of the active area
|
|
|
|
local p1 = minetest.find_node_near(p0, d, {"ignore", "group:tree"})
|
|
|
|
if p1 then
|
|
|
|
do_preserve = true
|
|
|
|
if default.leafdecay_enable_cache then
|
|
|
|
--print("caching trunk")
|
|
|
|
-- Cache the trunk
|
|
|
|
default.leafdecay_trunk_cache[p0_hash] = p1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if not do_preserve then
|
|
|
|
-- Drop stuff other than the node itself
|
2015-07-04 04:56:02 +02:00
|
|
|
local itemstacks = minetest.get_node_drops(n0.name)
|
2015-06-29 19:55:56 +02:00
|
|
|
for _, itemname in ipairs(itemstacks) do
|
|
|
|
if minetest.get_item_group(n0.name, "leafdecay_drop") ~= 0 or
|
|
|
|
itemname ~= n0.name then
|
|
|
|
local p_drop = {
|
|
|
|
x = p0.x - 0.5 + math.random(),
|
|
|
|
y = p0.y - 0.5 + math.random(),
|
|
|
|
z = p0.z - 0.5 + math.random(),
|
|
|
|
}
|
|
|
|
minetest.add_item(p_drop, itemname)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- Remove node
|
|
|
|
minetest.remove_node(p0)
|
2017-01-26 19:14:07 +01:00
|
|
|
core.check_for_falling(p0)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
-- Create Color Glass --
|
|
|
|
------------------------
|
2017-01-27 13:45:21 +01:00
|
|
|
function default.add_glass(desc, recipeitem, color)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-01-04 12:50:23 +01:00
|
|
|
minetest.register_node("default:glass_"..color, {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = desc,
|
|
|
|
drawtype = "glasslike",
|
2017-01-04 22:36:51 +01:00
|
|
|
is_ground_content = false,
|
2017-01-16 13:00:20 +01:00
|
|
|
tiles = {"xpanes_pane_glass_"..color..".png"},
|
2017-01-04 12:50:23 +01:00
|
|
|
inventory_image = minetest.inventorycube("xpanes_pane_glass_"..color..".png"),
|
2015-06-29 19:55:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
use_texture_alpha = true,
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = {cracky=3,oddly_breakable_by_hand=3, building_block=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
drop = "",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-01-04 12:50:23 +01:00
|
|
|
output = 'default:glass_'..color..' 8',
|
2015-06-29 19:55:56 +02:00
|
|
|
recipe = {
|
2017-01-04 12:50:23 +01:00
|
|
|
{'default:glass','default:glass','default:glass'},
|
|
|
|
{'default:glass','group:dye,'..recipeitem,'default:glass'},
|
|
|
|
{'default:glass','default:glass','default:glass'},
|
2015-06-29 19:55:56 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
|