2012-12-09 00:42:30 +01:00
|
|
|
-- The POWER_PLANT
|
|
|
|
-- Just emits power. always.
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
minetest.register_node("mesecons_powerplant:power_plant", {
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1,
|
2012-11-08 20:52:36 +01:00
|
|
|
tiles = {"jeija_power_plant.png"},
|
2012-03-05 19:21:26 +01:00
|
|
|
inventory_image = "jeija_power_plant.png",
|
|
|
|
paramtype = "light",
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2012-03-05 19:21:26 +01:00
|
|
|
walkable = false,
|
2012-08-11 23:39:28 +02:00
|
|
|
groups = {dig_immediate=3, mesecon = 2},
|
2015-05-11 06:28:56 +02:00
|
|
|
light_source = default.LIGHT_MAX-9,
|
2012-03-05 19:21:26 +01:00
|
|
|
description="Power Plant",
|
2012-08-01 15:36:32 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2013-04-20 17:25:12 +02:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3},
|
2012-08-01 15:36:32 +02:00
|
|
|
},
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on
|
2017-10-07 00:44:49 +02:00
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_powerplant:power_plant 1",
|
2012-03-05 19:21:26 +01:00
|
|
|
recipe = {
|
2013-04-28 12:40:08 +02:00
|
|
|
{"group:mesecon_conductor_craftable"},
|
|
|
|
{"group:mesecon_conductor_craftable"},
|
2015-01-20 19:28:44 +01:00
|
|
|
{"group:sapling"},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|