2012-03-05 19:21:26 +01:00
|
|
|
--GLUE
|
|
|
|
minetest.register_craftitem("mesecons_materials:glue", {
|
|
|
|
image = "jeija_glue.png",
|
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
description="Glue",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_materials:glue" 2',
|
2012-08-13 14:36:48 +02:00
|
|
|
type = "cooking",
|
|
|
|
recipe = "default:sapling",
|
|
|
|
cooktime = 2
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Silicon
|
|
|
|
minetest.register_craftitem("mesecons_materials:silicon", {
|
|
|
|
image = "jeija_silicon.png",
|
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
description="Silicon",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_materials:silicon" 4',
|
|
|
|
recipe = {
|
|
|
|
{'"default:sand"', '"default:sand"'},
|
|
|
|
{'"default:sand"', '"default:steel_ingot"'},
|
|
|
|
}
|
|
|
|
})
|