2012-08-01 15:36:32 +02:00
|
|
|
-- The POWER_PLANT
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
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-08-10 23:35:54 +02:00
|
|
|
groups = {dig_immediate=3, mesecon = 1},
|
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)
|
2012-08-01 15:36:32 +02:00
|
|
|
end,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
|
|
|
|
},
|
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")
|