mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-09 17:03:58 +01:00
Add digiline_conductor and mesecon_and_digiline_conductor tubes (#195)
* add digiline_connecting_tube * add mesecon and digiline conductiong tube * add more recipes
This commit is contained in:
parent
a5e1bfa0e8
commit
05c0a8670b
@ -15,6 +15,7 @@ local settings = {
|
|||||||
enable_detector_tube = true,
|
enable_detector_tube = true,
|
||||||
enable_digiline_detector_tube = true,
|
enable_digiline_detector_tube = true,
|
||||||
enable_conductor_tube = true,
|
enable_conductor_tube = true,
|
||||||
|
enable_digiline_conductor_tube = true,
|
||||||
enable_accelerator_tube = true,
|
enable_accelerator_tube = true,
|
||||||
enable_crossing_tube = true,
|
enable_crossing_tube = true,
|
||||||
enable_sand_tube = true,
|
enable_sand_tube = true,
|
||||||
|
1
init.lua
1
init.lua
@ -38,6 +38,7 @@ pipeworks.rules_all = {{x=0, y=0, z=1},{x=0, y=0, z=-1},{x=1, y=0, z=0},{x=-1, y
|
|||||||
{x=0, y=1, z=0}, {x=0, y=-1, z=0}}
|
{x=0, y=1, z=0}, {x=0, y=-1, z=0}}
|
||||||
|
|
||||||
pipeworks.mesecons_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}}
|
pipeworks.mesecons_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}}
|
||||||
|
pipeworks.digilines_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}}
|
||||||
|
|
||||||
pipeworks.liquid_texture = "default_water.png"
|
pipeworks.liquid_texture = "default_water.png"
|
||||||
|
|
||||||
|
@ -34,6 +34,9 @@ pipeworks_enable_digiline_detector_tube (Enable Digiline Detector Tube) bool tru
|
|||||||
#Enable mesecon signal conducting tube.
|
#Enable mesecon signal conducting tube.
|
||||||
pipeworks_enable_conductor_tube (Enable Conductor Tube) bool true
|
pipeworks_enable_conductor_tube (Enable Conductor Tube) bool true
|
||||||
|
|
||||||
|
#Enable digiline signal conducting tube.
|
||||||
|
pipeworks_enable_digiline_conductor_tube (Enable Digiline Conductor Tube) bool true
|
||||||
|
|
||||||
#Enable accelerator tube.
|
#Enable accelerator tube.
|
||||||
pipeworks_enable_accelerator_tube (Enable Accelerator Tube) bool true
|
pipeworks_enable_accelerator_tube (Enable Accelerator Tube) bool true
|
||||||
|
|
||||||
|
@ -67,7 +67,8 @@ if pipeworks.enable_detector_tube then
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
if minetest.get_modpath("digilines") and pipeworks.enable_digiline_detector_tube then
|
local digiline_enabled = minetest.get_modpath("digilines") ~= nil
|
||||||
|
if digiline_enabled and pipeworks.enable_digiline_detector_tube then
|
||||||
pipeworks.register_tube("pipeworks:digiline_detector_tube", {
|
pipeworks.register_tube("pipeworks:digiline_detector_tube", {
|
||||||
description = "Digiline Detecting Pneumatic Tube Segment",
|
description = "Digiline Detecting Pneumatic Tube Segment",
|
||||||
inventory_image = "pipeworks_digiline_detector_tube_inv.png",
|
inventory_image = "pipeworks_digiline_detector_tube_inv.png",
|
||||||
@ -147,14 +148,80 @@ if pipeworks.enable_conductor_tube then
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft({
|
||||||
output = "pipeworks:conductor_tube_off_1 6",
|
type = "shapeless",
|
||||||
recipe = {
|
output = "pipeworks:conductor_tube_off_1",
|
||||||
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
recipe = {"pipeworks:tube_1", "mesecons:mesecon"}
|
||||||
{ "mesecons:mesecon", "mesecons:mesecon", "mesecons:mesecon" },
|
|
||||||
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if digiline_enabled and pipeworks.enable_digiline_conductor_tube then
|
||||||
|
pipeworks.register_tube("pipeworks:digiline_conductor_tube", {
|
||||||
|
description = "Digiline Conducting Pneumatic Tube Segment",
|
||||||
|
inventory_image = "pipeworks_tube_inv.png^pipeworks_digiline_conductor_tube_inv.png",
|
||||||
|
short = "pipeworks_tube_short.png^pipeworks_digiline_conductor_tube_short.png",
|
||||||
|
plain = {"pipeworks_tube_plain.png^pipeworks_digiline_conductor_tube_plain.png"},
|
||||||
|
noctr = {"pipeworks_tube_noctr.png^pipeworks_digiline_conductor_tube_noctr.png"},
|
||||||
|
ends = {"pipeworks_tube_end.png^pipeworks_digiline_conductor_tube_end.png"},
|
||||||
|
node_def = {digiline = {wire = {rules = pipeworks.digilines_rules}}},
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "pipeworks:digiline_conductor_tube_1",
|
||||||
|
recipe = {"pipeworks:tube_1", "digilines:wire_std_00000000"}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
if digiline_enabled and pipeworks.enable_digiline_conductor_tube and
|
||||||
|
pipeworks.enable_conductor_tube then
|
||||||
|
pipeworks.register_tube("pipeworks:mesecon_and_digiline_conductor_tube_off", {
|
||||||
|
description = "Mesecon and Digiline Conducting Pneumatic Tube Segment",
|
||||||
|
inventory_image = "pipeworks_conductor_tube_inv.png^pipeworks_digiline_conductor_tube_inv.png",
|
||||||
|
short = "pipeworks_conductor_tube_short.png^pipeworks_digiline_conductor_tube_short.png",
|
||||||
|
plain = {"pipeworks_conductor_tube_plain.png^pipeworks_digiline_conductor_tube_plain.png"},
|
||||||
|
noctr = {"pipeworks_conductor_tube_noctr.png^pipeworks_digiline_conductor_tube_noctr.png"},
|
||||||
|
ends = {"pipeworks_conductor_tube_end.png^pipeworks_digiline_conductor_tube_end.png"},
|
||||||
|
node_def = {
|
||||||
|
digiline = {wire = {rules = pipeworks.digilines_rules}},
|
||||||
|
groups = {mesecon = 2},
|
||||||
|
mesecons = {conductor = {
|
||||||
|
state = "off",
|
||||||
|
rules = pipeworks.mesecons_rules,
|
||||||
|
onstate = "pipeworks:mesecon_and_digiline_conductor_tube_on_#id"
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
pipeworks.register_tube("pipeworks:mesecon_and_digiline_conductor_tube_on", {
|
||||||
|
description = "Mesecon and Digiline Conducting Pneumatic Tube Segment on (you hacker you)",
|
||||||
|
inventory_image = "pipeworks_conductor_tube_inv.png^pipeworks_digiline_conductor_tube_inv.png",
|
||||||
|
short = "pipeworks_conductor_tube_short.png^pipeworks_digiline_conductor_tube_short.png",
|
||||||
|
plain = {"pipeworks_conductor_tube_on_plain.png^pipeworks_digiline_conductor_tube_plain.png"},
|
||||||
|
noctr = {"pipeworks_conductor_tube_on_noctr.png^pipeworks_digiline_conductor_tube_noctr.png"},
|
||||||
|
ends = {"pipeworks_conductor_tube_on_end.png^pipeworks_digiline_conductor_tube_end.png"},
|
||||||
|
node_def = {
|
||||||
|
digiline = {wire = {rules = pipeworks.digilines_rules}},
|
||||||
|
groups = {mesecon = 2, not_in_creative_inventory = 1},
|
||||||
|
drop = "pipeworks:mesecon_and_digiline_conductor_tube_off_1",
|
||||||
|
mesecons = {conductor = {
|
||||||
|
state = "on",
|
||||||
|
rules = pipeworks.mesecons_rules,
|
||||||
|
offstate = "pipeworks:mesecon_and_digiline_conductor_tube_off_#id"}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "pipeworks:mesecon_and_digiline_conductor_tube_off_1",
|
||||||
|
recipe = {"pipeworks:tube_1", "mesecons:mesecon", "digilines:wire_std_00000000"}
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "pipeworks:mesecon_and_digiline_conductor_tube_off_1",
|
||||||
|
recipe = {"pipeworks:conductor_tube_off_1", "digilines:wire_std_00000000"}
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "pipeworks:mesecon_and_digiline_conductor_tube_off_1",
|
||||||
|
recipe = {"pipeworks:digiline_conductor_tube_1", "mesecons:mesecon"}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
BIN
textures/pipeworks_digiline_conductor_tube_end.png
Normal file
BIN
textures/pipeworks_digiline_conductor_tube_end.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 174 B |
BIN
textures/pipeworks_digiline_conductor_tube_inv.png
Normal file
BIN
textures/pipeworks_digiline_conductor_tube_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 337 B |
BIN
textures/pipeworks_digiline_conductor_tube_noctr.png
Normal file
BIN
textures/pipeworks_digiline_conductor_tube_noctr.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 179 B |
BIN
textures/pipeworks_digiline_conductor_tube_plain.png
Normal file
BIN
textures/pipeworks_digiline_conductor_tube_plain.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 169 B |
BIN
textures/pipeworks_digiline_conductor_tube_short.png
Normal file
BIN
textures/pipeworks_digiline_conductor_tube_short.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 162 B |
Loading…
Reference in New Issue
Block a user