forked from Mirrorlandia_minetest/digistuff
remove crafts
This commit is contained in:
parent
bf6a5ab0ee
commit
ff32d01fd2
11
camera.lua
11
camera.lua
@ -87,13 +87,4 @@ minetest.register_abm({
|
||||
end
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:camera",
|
||||
recipe = {
|
||||
{"homedecor:plastic_sheeting","homedecor:plastic_sheeting","homedecor:plastic_sheeting"},
|
||||
{"default:glass","homedecor:ic","mesecons_luacontroller:luacontroller0000"},
|
||||
{"homedecor:plastic_sheeting","homedecor:plastic_sheeting","homedecor:plastic_sheeting"},
|
||||
}
|
||||
})
|
||||
})
|
@ -101,20 +101,3 @@ minetest.register_node("digistuff:card_reader",{
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:card",
|
||||
recipe = {
|
||||
{"basic_materials:plastic_sheet",},
|
||||
{"default:iron_lump",},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:card_reader",
|
||||
recipe = {
|
||||
{"basic_materials:plastic_sheet","basic_materials:plastic_sheet","digilines:wire_std_00000000",},
|
||||
{"basic_materials:plastic_sheet","basic_materials:copper_wire","mesecons_luacontroller:luacontroller0000",},
|
||||
{"basic_materials:plastic_sheet","basic_materials:plastic_sheet","",},
|
||||
}
|
||||
})
|
||||
|
@ -49,14 +49,6 @@ minetest.register_tool("digistuff:channelcopier",{
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:channelcopier",
|
||||
recipe = {
|
||||
{"mesecons_fpga:programmer"},
|
||||
{"digilines:wire_std_00000000"}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
--NOTE: Asking to have your own mod added to here is not the right way to add compatibility with the channel copier.
|
||||
--Instead, include a _digistuff_channelcopier_fieldname field in your nodedef set to the name of the metadata field that contains the channel.
|
||||
|
@ -494,90 +494,4 @@ minetest.register_node("digistuff:insulated_fourway", {
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:digimese",
|
||||
recipe = {
|
||||
{"digilines:wire_std_00000000","digilines:wire_std_00000000","digilines:wire_std_00000000"},
|
||||
{"digilines:wire_std_00000000","default:mese","digilines:wire_std_00000000"},
|
||||
{"digilines:wire_std_00000000","digilines:wire_std_00000000","digilines:wire_std_00000000"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:junctionbox",
|
||||
recipe = {
|
||||
{"homedecor:plastic_sheeting","digilines:wire_std_00000000","homedecor:plastic_sheeting",},
|
||||
{"digilines:wire_std_00000000","digilines:wire_std_00000000","digilines:wire_std_00000000",},
|
||||
{"homedecor:plastic_sheeting","digilines:wire_std_00000000","homedecor:plastic_sheeting",},
|
||||
}
|
||||
})
|
||||
|
||||
if minetest.get_modpath("mesecons_materials") then
|
||||
minetest.register_craft({
|
||||
output = "digistuff:insulated_straight 3",
|
||||
recipe = {
|
||||
{"mesecons_materials:fiber","mesecons_materials:fiber","mesecons_materials:fiber",},
|
||||
{"digilines:wire_std_00000000","digilines:wire_std_00000000","digilines:wire_std_00000000",},
|
||||
{"mesecons_materials:fiber","mesecons_materials:fiber","mesecons_materials:fiber",},
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:vertical_bottom 3",
|
||||
recipe = {
|
||||
{"digilines:wire_std_00000000",},
|
||||
{"digilines:wire_std_00000000",},
|
||||
{"digilines:wire_std_00000000",},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:vertical_tap 5",
|
||||
recipe = {
|
||||
{"","digistuff:vertical_bottom",""},
|
||||
{"digilines:wire_std_00000000","digistuff:vertical_bottom","digilines:wire_std_00000000"},
|
||||
{"","digistuff:vertical_bottom",""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:insulated_corner 3",
|
||||
recipe = {
|
||||
{"digistuff:insulated_straight","digistuff:insulated_straight",},
|
||||
{"","digistuff:insulated_straight",},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:insulated_tjunction 4",
|
||||
recipe = {
|
||||
{"digistuff:insulated_straight","digistuff:insulated_straight","digistuff:insulated_straight",},
|
||||
{"","digistuff:insulated_straight","",},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:insulated_fourway 5",
|
||||
recipe = {
|
||||
{"","digistuff:insulated_straight","",},
|
||||
{"digistuff:insulated_straight","digistuff:insulated_straight","digistuff:insulated_straight",},
|
||||
{"","digistuff:insulated_straight","",},
|
||||
}
|
||||
})
|
||||
|
||||
for _,item in ipairs({"digistuff:insulated_corner","digistuff:insulated_tjunction","digistuff:insulated_fourway",}) do
|
||||
minetest.register_craft({
|
||||
output = "digistuff:insulated_straight",
|
||||
type = "shapeless",
|
||||
recipe = {item},
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digilines:wire_std_00000000",
|
||||
type = "shapeless",
|
||||
recipe = {"digistuff:vertical_bottom"},
|
||||
})
|
||||
})
|
@ -241,12 +241,3 @@ minetest.register_lbm({
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:controller",
|
||||
recipe = {
|
||||
{"","digistuff:button","",},
|
||||
{"digistuff:button","group:wool","digistuff:button",},
|
||||
{"","digistuff:button","",},
|
||||
},
|
||||
})
|
||||
|
@ -53,12 +53,3 @@ minetest.register_abm({
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:detector",
|
||||
recipe = {
|
||||
{"mesecons_detector:object_detector_off"},
|
||||
{"mesecons_luacontroller:luacontroller0000"},
|
||||
{"digilines:wire_std_00000000"}
|
||||
}
|
||||
})
|
||||
|
9
gpu.lua
9
gpu.lua
@ -574,12 +574,3 @@ minetest.register_node("digistuff:gpu", {
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:gpu",
|
||||
recipe = {
|
||||
{"","default:steel_ingot",""},
|
||||
{"digilines:wire_std_00000000","mesecons_luacontroller:luacontroller0000","digilines:wire_std_00000000"},
|
||||
{"dye:red","dye:green","dye:blue"},
|
||||
}
|
||||
})
|
||||
|
@ -166,12 +166,3 @@ for i=0,15,1 do
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:ioexpander_0",
|
||||
recipe = {
|
||||
{"","mesecons:wire_00000000_off","",},
|
||||
{"digilines:wire_std_00000000","basic_materials:silicon","mesecons:wire_00000000_off",},
|
||||
{"","mesecons:wire_00000000_off","",},
|
||||
}
|
||||
})
|
||||
|
@ -63,10 +63,3 @@ for i=0,14,1 do
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:light_0",
|
||||
recipe = {
|
||||
{"digilines:wire_std_00000000","mesecons_lamp:lamp_off",},
|
||||
}
|
||||
})
|
||||
|
20
memory.lua
20
memory.lua
@ -155,22 +155,4 @@ minetest.register_node("digistuff:eeprom", {
|
||||
end
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:ram",
|
||||
recipe = {
|
||||
{"basic_materials:plastic_sheet","basic_materials:plastic_sheet","basic_materials:plastic_sheet"},
|
||||
{"mesecons_gates:nand_off","basic_materials:plastic_sheet","mesecons_gates:nand_off"},
|
||||
{"mesecons:wire_00000000_off","basic_materials:silicon","mesecons:wire_00000000_off"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:eeprom",
|
||||
recipe = {
|
||||
{"basic_materials:plastic_sheet","mesecons:wire_00000000_off","basic_materials:plastic_sheet"},
|
||||
{"digilines:wire_std_00000000","basic_materials:plastic_sheet","digilines:wire_std_00000000"},
|
||||
{"mesecons:wire_00000000_off","basic_materials:silicon","mesecons:wire_00000000_off"},
|
||||
}
|
||||
})
|
||||
})
|
@ -273,11 +273,3 @@ minetest.register_node("digistuff:movestone", {
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:movestone",
|
||||
recipe = {
|
||||
{"mesecons_movestones:movestone","digilines:wire_std_00000000"},
|
||||
{"mesecons_movestones:movestone_vertical","mesecons_luacontroller:luacontroller0000"},
|
||||
},
|
||||
})
|
||||
|
9
nic.lua
9
nic.lua
@ -61,11 +61,4 @@ minetest.register_node("digistuff:nic", {
|
||||
end
|
||||
},
|
||||
},
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "digistuff:nic",
|
||||
recipe = {
|
||||
{"","","mesecons:wire_00000000_off"},
|
||||
{"digilines:wire_std_00000000","mesecons_luacontroller:luacontroller0000","mesecons:wire_00000000_off"}
|
||||
}
|
||||
})
|
||||
})
|
@ -90,12 +90,3 @@ minetest.register_node("digistuff:noteblock", {
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:noteblock",
|
||||
recipe = {
|
||||
{"mesecons_noteblock:noteblock"},
|
||||
{"mesecons_luacontroller:luacontroller0000"},
|
||||
{"digilines:wire_std_00000000"},
|
||||
},
|
||||
})
|
||||
|
@ -146,11 +146,3 @@ minetest.register_node("digistuff:panel", {
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:panel",
|
||||
recipe = {
|
||||
{"","digistuff:button",""},
|
||||
{"digistuff:button","digilines:lcd","digistuff:button"},
|
||||
{"","digistuff:button",""}
|
||||
}
|
||||
})
|
||||
|
@ -86,10 +86,3 @@ if not minetest.get_modpath("quartz") then
|
||||
crystal = "default:mese_crystal_fragment"
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:piezo",
|
||||
recipe = {
|
||||
{crystal,"basic_materials:steel_strip"},
|
||||
{"digilines:wire_std_00000000","mesecons_luacontroller:luacontroller0000"},
|
||||
},
|
||||
})
|
||||
|
@ -241,12 +241,3 @@ minetest.register_node("digistuff:piston_pusher", {
|
||||
|
||||
mesecon.register_mvps_stopper("digistuff:piston_ext")
|
||||
mesecon.register_mvps_stopper("digistuff:piston_pusher")
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:piston",
|
||||
recipe = {
|
||||
{"mesecons_pistons:piston_normal_off"},
|
||||
{"mesecons_luacontroller:luacontroller0000"},
|
||||
{"digilines:wire_std_00000000"},
|
||||
},
|
||||
})
|
||||
|
@ -84,11 +84,3 @@ minetest.register_node("digistuff:heatsink_onic", {
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:heatsink",
|
||||
recipe = {
|
||||
{"basic_materials:steel_strip","basic_materials:steel_strip","basic_materials:steel_strip"},
|
||||
{"","default:steel_ingot",""}
|
||||
}
|
||||
})
|
||||
|
18
switches.lua
18
switches.lua
@ -309,15 +309,6 @@ minetest.register_node("digistuff:button_on_pushed", {
|
||||
sounds = default and default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:button",
|
||||
recipe = {
|
||||
{"mesecons_button:button_off"},
|
||||
{"mesecons_luacontroller:luacontroller0000"},
|
||||
{"digilines:wire_std_00000000"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("digistuff:wall_knob", {
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
@ -432,12 +423,3 @@ minetest.register_node("digistuff:wall_knob_configured", {
|
||||
end,
|
||||
sounds = default and default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:wall_knob",
|
||||
recipe = {
|
||||
{"", "mesecons_button:button_off", ""},
|
||||
{"digilines:wire_std_00000000","mesecons_luacontroller:luacontroller0000", "digilines:wire_std_00000000"},
|
||||
{"", "digilines:wire_std_00000000", ""},
|
||||
},
|
||||
})
|
||||
|
@ -71,11 +71,3 @@ minetest.register_node("digistuff:timer", {
|
||||
},
|
||||
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "digistuff:timer 2",
|
||||
recipe = {
|
||||
{"","mesecons:wire_00000000_off","default:coal_lump"},
|
||||
{"digilines:wire_std_00000000","basic_materials:ic","mesecons:wire_00000000_off"},
|
||||
{"","mesecons:wire_00000000_off","default:paper"},
|
||||
}
|
||||
})
|
||||
|
@ -347,13 +347,4 @@ minetest.register_node("digistuff:advtouchscreen", {
|
||||
action = digistuff.ts_on_digiline_receive
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digistuff:touchscreen",
|
||||
recipe = {
|
||||
{"mesecons_luacontroller:luacontroller0000","default:glass","default:glass"},
|
||||
{"default:glass","digilines:lcd","default:glass"},
|
||||
{"default:glass","default:glass","default:glass"}
|
||||
}
|
||||
})
|
||||
})
|
Loading…
Reference in New Issue
Block a user