realtest/mods/grounds/init.lua
2013-04-27 00:55:16 +06:00

13 lines
344 B
Lua

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",
})
dofile(minetest.get_modpath("grounds").."/dirt.lua")
dofile(minetest.get_modpath("grounds").."/stone.lua")