VoxeLibre/mods/redstone/mesecons_materials/init.lua

15 lines
313 B
Lua
Raw Normal View History

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,
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
})