2012-03-05 19:21:26 +01:00
|
|
|
-- The POWER_PLANT
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_powerplant:power_plant", {
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1,
|
|
|
|
tile_images = {"jeija_power_plant.png"},
|
|
|
|
inventory_image = "jeija_power_plant.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
2012-04-22 07:48:15 +02:00
|
|
|
groups = {snappy=3},
|
2012-03-05 19:21:26 +01:00
|
|
|
light_source = LIGHT_MAX-9,
|
|
|
|
description="Power Plant",
|
2012-06-05 04:20:04 +02:00
|
|
|
after_place_node = function(pos)
|
|
|
|
mesecon:receptor_on(pos)
|
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_powerplant:power_plant" 1',
|
|
|
|
recipe = {
|
|
|
|
{'"mesecons:mesecon_off"'},
|
|
|
|
{'"mesecons:mesecon_off"'},
|
|
|
|
{'"default:junglegrass"'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
mesecon:add_receptor_node("mesecons_powerplant:power_plant")
|