elepower/elepower_dynamics/conduits.lua

19 lines
510 B
Lua
Raw Normal View History

2018-06-18 09:09:43 +02:00
2018-06-18 18:15:15 +02:00
-- Electric power
2018-06-18 09:09:43 +02:00
ele.register_conduit("elepower_dynamics:conduit", {
description = "Power Conduit",
tiles = {"elepower_conduit.png"},
use_texture_alpha = "clip",
ele_conductor_density = 1/8,
2018-06-18 09:09:43 +02:00
groups = {oddly_breakable_by_hand = 1, cracky = 1}
})
2018-12-17 16:38:10 +01:00
-- Fluid
fluid_lib.register_transfer_node("elepower_dynamics:opaque_duct", {
description = "Opaque Fluid Duct",
tiles = {"elepower_opaque_duct.png"},
use_texture_alpha = "clip",
2018-12-17 16:38:10 +01:00
duct_density = 1/5,
groups = {oddly_breakable_by_hand = 1, cracky = 1}
})