2015-06-29 19:55:56 +02:00
|
|
|
--GLUE
|
|
|
|
minetest.register_craftitem("mesecons_materials:glue", {
|
|
|
|
image = "jeija_glue.png",
|
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2017-01-04 06:20:13 +01:00
|
|
|
description="Slimeball",
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_materials:glue" 2',
|
|
|
|
type = "cooking",
|
|
|
|
recipe = "default:sapling",
|
2017-01-04 11:49:05 +01:00
|
|
|
cooktime = 10,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|