2012-03-05 19:21:26 +01:00
|
|
|
-- HYDRO_TURBINE
|
2012-12-08 22:28:46 +01:00
|
|
|
-- Water turbine:
|
|
|
|
-- Active if flowing >water< above it
|
|
|
|
-- (does not work with other liquids)
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
|
2014-11-24 00:05:01 +01:00
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "jeija_hydro_turbine.obj",
|
2015-05-20 09:40:59 +02:00
|
|
|
tiles = {
|
|
|
|
"jeija_hydro_turbine_sides_off.png",
|
|
|
|
"jeija_hydro_turbine_top_bottom.png",
|
|
|
|
"jeija_hydro_turbine_turbine_top_bottom.png",
|
|
|
|
"jeija_hydro_turbine_turbine_misc.png"
|
|
|
|
},
|
2014-11-24 00:05:01 +01:00
|
|
|
inventory_image = "jeija_hydro_turbine_inv.png",
|
|
|
|
wield_scale = {x=0.75, y=0.75, z=0.75},
|
2012-12-08 22:28:46 +01:00
|
|
|
groups = {dig_immediate=2},
|
2015-05-20 09:40:59 +02:00
|
|
|
description="Water Turbine",
|
2012-07-20 15:26:13 +02:00
|
|
|
paramtype = "light",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2014-11-24 00:05:01 +01:00
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 },
|
2012-07-20 15:26:13 +02:00
|
|
|
},
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-08 22:28:46 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.off
|
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
|
2014-11-24 00:05:01 +01:00
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "jeija_hydro_turbine.obj",
|
|
|
|
wield_scale = {x=0.75, y=0.75, z=0.75},
|
2015-05-20 09:40:59 +02:00
|
|
|
tiles = {
|
|
|
|
"jeija_hydro_turbine_sides_on.png",
|
|
|
|
"jeija_hydro_turbine_top_bottom.png",
|
|
|
|
"jeija_hydro_turbine_turbine_top_bottom.png",
|
|
|
|
"jeija_hydro_turbine_turbine_misc.png"
|
|
|
|
},
|
2014-11-24 00:05:01 +01:00
|
|
|
inventory_image = "jeija_hydro_turbine_inv.png",
|
2013-04-28 12:40:08 +02:00
|
|
|
drop = "mesecons_hydroturbine:hydro_turbine_off 1",
|
2012-12-08 22:28:46 +01:00
|
|
|
groups = {dig_immediate=2,not_in_creative_inventory=1},
|
2012-08-01 11:58:19 +02:00
|
|
|
description="Water Turbine",
|
2012-07-20 15:26:13 +02:00
|
|
|
paramtype = "light",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2014-11-24 00:05:01 +01:00
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 },
|
2012-07-20 15:26:13 +02:00
|
|
|
},
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-08 22:28:46 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on
|
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"mesecons_hydroturbine:hydro_turbine_off"},
|
|
|
|
interval = 1,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
local waterpos={x=pos.x, y=pos.y+1, z=pos.z}
|
2013-12-01 04:13:00 +01:00
|
|
|
if minetest.get_node(waterpos).name=="default:water_flowing" then
|
|
|
|
minetest.add_node(pos, {name="mesecons_hydroturbine:hydro_turbine_on"})
|
2012-03-05 19:21:26 +01:00
|
|
|
nodeupdate(pos)
|
2014-11-22 15:42:22 +01:00
|
|
|
mesecon.receptor_on(pos)
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"mesecons_hydroturbine:hydro_turbine_on"},
|
|
|
|
interval = 1,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
local waterpos={x=pos.x, y=pos.y+1, z=pos.z}
|
2013-12-01 04:13:00 +01:00
|
|
|
if minetest.get_node(waterpos).name~="default:water_flowing" then
|
|
|
|
minetest.add_node(pos, {name="mesecons_hydroturbine:hydro_turbine_off"})
|
2012-03-05 19:21:26 +01:00
|
|
|
nodeupdate(pos)
|
2014-11-22 15:42:22 +01:00
|
|
|
mesecon.receptor_off(pos)
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_hydroturbine:hydro_turbine_off 2",
|
2012-03-05 19:21:26 +01:00
|
|
|
recipe = {
|
2013-04-28 12:40:08 +02:00
|
|
|
{"","default:stick", ""},
|
|
|
|
{"default:stick", "default:steel_ingot", "default:stick"},
|
|
|
|
{"","default:stick", ""},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|