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",
|
|
|
|
})
|
|
|
|
|
2012-08-17 21:32:21 +02:00
|
|
|
minetest.register_craftitem("mesecons_materials:fiber", {
|
2012-08-18 16:16:20 +02:00
|
|
|
image = "jeija_fiber.png",
|
2012-08-17 21:32:21 +02:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
description="Fiber",
|
|
|
|
})
|
|
|
|
|
2012-03-05 19:21:26 +01:00
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_materials:glue 2",
|
2012-08-13 14:36:48 +02:00
|
|
|
type = "cooking",
|
2015-01-09 12:54:32 +01:00
|
|
|
recipe = "group:sapling",
|
2012-08-13 14:36:48 +02:00
|
|
|
cooktime = 2
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
2012-08-17 21:32:21 +02:00
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_materials:fiber 6",
|
2012-08-17 21:32:21 +02:00
|
|
|
type = "cooking",
|
|
|
|
recipe = "mesecons_materials:glue",
|
|
|
|
cooktime = 4
|
|
|
|
})
|
|
|
|
|
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({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_materials:silicon 4",
|
2012-03-05 19:21:26 +01:00
|
|
|
recipe = {
|
2013-04-28 12:40:08 +02:00
|
|
|
{"default:sand", "default:sand"},
|
|
|
|
{"default:sand", "default:steel_ingot"},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|