Compare commits
2 Commits
6c28024d23
...
fix-rubber
Author | SHA1 | Date | |
---|---|---|---|
ff2d91d6a0 | |||
47e1876729 |
36
init.lua
36
init.lua
@ -140,7 +140,7 @@ minetest.register_craft(
|
|||||||
{
|
{
|
||||||
output = "technic:mv_centrifuge",
|
output = "technic:mv_centrifuge",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:copper_block", "technic:copper_plate", "default:copper_block"},
|
{"default:copperblock", "technic:copper_plate", "default:copperblock"},
|
||||||
{"technic:copper_plate", "technic:machine_casing", "technic:copper_plate"},
|
{"technic:copper_plate", "technic:machine_casing", "technic:copper_plate"},
|
||||||
{"technic:copper_plate", "technic:mv_cable", "technic:copper_plate"}
|
{"technic:copper_plate", "technic:mv_cable", "technic:copper_plate"}
|
||||||
}
|
}
|
||||||
@ -408,7 +408,7 @@ minetest.register_craft(
|
|||||||
)
|
)
|
||||||
minetest.register_craft(
|
minetest.register_craft(
|
||||||
{
|
{
|
||||||
output = "technic:rubber 2",
|
output = "technic:rubber 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"technic:rubber_tree_grindings", "technic:rubber_tree_grindings", "technic:rubber_tree_grindings"},
|
{"technic:rubber_tree_grindings", "technic:rubber_tree_grindings", "technic:rubber_tree_grindings"},
|
||||||
{"technic:rubber_tree_grindings", "default:coal_lump", "technic:rubber_tree_grindings"},
|
{"technic:rubber_tree_grindings", "default:coal_lump", "technic:rubber_tree_grindings"},
|
||||||
@ -418,7 +418,7 @@ minetest.register_craft(
|
|||||||
)
|
)
|
||||||
minetest.register_craft(
|
minetest.register_craft(
|
||||||
{
|
{
|
||||||
output = "technic:rubber 2",
|
output = "technic:rubber 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"technic:rubber_tree_grindings", "technic:rubber_tree_grindings", "technic:rubber_tree_grindings"},
|
{"technic:rubber_tree_grindings", "technic:rubber_tree_grindings", "technic:rubber_tree_grindings"},
|
||||||
{"technic:rubber_tree_grindings", "technic:coal_dust", "technic:rubber_tree_grindings"},
|
{"technic:rubber_tree_grindings", "technic:coal_dust", "technic:rubber_tree_grindings"},
|
||||||
@ -426,3 +426,33 @@ minetest.register_craft(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = "pipeworks:accelerator_tube_1",
|
||||||
|
recipe = {
|
||||||
|
{"default:mese_crystal", "pipeworks:tube_1", "default:mese_crystal"},
|
||||||
|
{"", "", ""},
|
||||||
|
{"", "", ""}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = "pipeworks:nodebreaker_off",
|
||||||
|
recipe = {
|
||||||
|
{"default:steelblock", "default:steelblock", "default:steelblock"},
|
||||||
|
{"default:stone", "mesecons_pistons:piston_normal_off", "default:stone"},
|
||||||
|
{"group:wood", "mesecons:wire_00000000_off", "group:wood"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = "pipeworks:teleport_tube_1",
|
||||||
|
recipe = {
|
||||||
|
{"default:mese_crystal", "default:copper_ingot", "default:mese_crystal"},
|
||||||
|
{"pipeworks:tube_1", "pipeworks:tube_1", "pipeworks:tube_1"},
|
||||||
|
{"default:mese_crystal", "default:copper_ingot", "default:mese_crystal"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user