2013-04-22 21:03:02 +06:00
|
|
|
minetest.register_craftitem("grounds:clay_lump", {
|
|
|
|
description = "Clay Lump",
|
|
|
|
inventory_image = "grounds_clay_lump.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:clay_brick",
|
|
|
|
recipe = "grounds:clay_lump",
|
|
|
|
})
|
|
|
|
|
2013-04-27 00:55:16 +06:00
|
|
|
dofile(minetest.get_modpath("grounds").."/dirt.lua")
|
|
|
|
dofile(minetest.get_modpath("grounds").."/stone.lua")
|