remove_crafts
This commit is contained in:
@ -1,64 +0,0 @@
|
||||
|
||||
-- Created by jogag
|
||||
-- Part of the Digiline Stuff pack
|
||||
-- Mod: crafting recipes for all devices
|
||||
-- Also adds recipes for RTC and Lightsensor
|
||||
|
||||
------------------------------
|
||||
-- DIGILINE BUILTIN DEVICES --
|
||||
------------------------------
|
||||
|
||||
-- RTC
|
||||
minetest.register_craft({
|
||||
output = "digilines_rtc:rtc 2",
|
||||
recipe = {
|
||||
{ "default:steel_ingot" },
|
||||
{ "mesecons_materials:silicon" },
|
||||
{ "digilines:wire_std_00000000" },
|
||||
},
|
||||
})
|
||||
|
||||
-- Light sensor
|
||||
minetest.register_craft({
|
||||
output = "digilines_lightsensor:lightsensor 2",
|
||||
recipe = {
|
||||
{ "homedecor:plastic", "default:glass" },
|
||||
{ "", "mesecons_materials:silicon" },
|
||||
{ "", "digilines:wire_std_00000000" },
|
||||
},
|
||||
})
|
||||
|
||||
-------------------------
|
||||
-- DIGILINE STUFF PACK --
|
||||
-------------------------
|
||||
|
||||
-- Memory chip (16 spaces)
|
||||
minetest.register_craft({
|
||||
output = "digilines_memory:memory_1",
|
||||
recipe = {
|
||||
{ "mesecons_materials:silicon", "mesecons_materials:silicon", "mesecons_materials:silicon" },
|
||||
{ "group:mesecon_conductor_craftable", "default:mese_crystal_fragment", "group:mesecon_conductor_craftable" },
|
||||
{ "mesecons_materials:fiber", "digilines:wire_std_00000000", "mesecons_materials:fiber" },
|
||||
},
|
||||
})
|
||||
|
||||
-- Weather sensor
|
||||
minetest.register_craft({
|
||||
output = "digilines_weather_sensor:sensor 2",
|
||||
recipe = {
|
||||
{ "default:stick" },
|
||||
{ "mesecons_materials:silicon" },
|
||||
{ "digilines:wire_std_00000000" },
|
||||
},
|
||||
})
|
||||
|
||||
-- Digiprinter
|
||||
minetest.register_craft({
|
||||
output = "digiprinter:printer",
|
||||
recipe = {
|
||||
{ "homedecor:plastic_sheeting", "", "" },
|
||||
{ "digilines:wire_std_00000000", "default:mese_crystal", "homedecor:plastic_sheeting" },
|
||||
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
||||
},
|
||||
})
|
||||
|
@ -25,54 +25,6 @@ if not minetest.get_modpath("homedecor") and not minetest.get_modpath("pipeworks
|
||||
inventory_image = "homedecor_plastic_sheeting.png",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:oil_extract 6",
|
||||
recipe = { "default:junglegrass",
|
||||
"default:junglegrass",
|
||||
"default:junglegrass"
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:oil_extract 3",
|
||||
recipe = { "default:dry_shrub",
|
||||
"default:dry_shrub",
|
||||
"default:dry_shrub"
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:oil_extract 4",
|
||||
recipe = { "default:leaves",
|
||||
"default:leaves",
|
||||
"default:leaves",
|
||||
"default:leaves",
|
||||
"default:leaves",
|
||||
"default:leaves"
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "homedecor:paraffin",
|
||||
recipe = "homedecor:oil_extract",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "homedecor:paraffin",
|
||||
burntime = 30,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "homedecor:plastic_sheeting",
|
||||
burntime = 30,
|
||||
})
|
||||
|
||||
minetest.register_alias("pipeworks:oil_extract", "homedecor:oil_extract")
|
||||
minetest.register_alias("pipeworks:paraffin", "homedecor:paraffin")
|
||||
minetest.register_alias("pipeworks:plastic_sheeting", "homedecor:plastic_sheeting")
|
||||
|
Reference in New Issue
Block a user