1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--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',
type = "cooking",
recipe = "default:sapling",
cooktime = 2
})
-- 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"'},
}
})
|