Added intermediate step to terracotta crafting - you must now mix up some

terracotta base material (think of it like red clay), and then smelt that.
This commit is contained in:
Vanessa Ezekowitz 2012-10-01 20:21:24 -04:00
parent 05e7b9f8e3
commit ca612fe3bf
2 changed files with 17 additions and 4 deletions

View File

@ -6,8 +6,21 @@
-- License: GPL
--
-- ====================================
-- Smelting recipes and resultant items
minetest.register_craftitem("homedecor:terracotta_base", {
description = "Uncooked Terracotta Base",
inventory_image = "homedecor_terracotta_base.png",
})
minetest.register_craft( {
type = "shapeless",
output = "homedecor:terracotta_base 4",
recipe = {
"default:dirt",
"default:clay_lump",
"bucket:bucket_water"
},
replacements = { {'bucket:bucket_water', 'bucket:bucket_empty'}, },
})
minetest.register_craftitem("homedecor:roof_tile_terracotta", {
description = "Terracotta Roof Tile",
@ -16,8 +29,8 @@ minetest.register_craftitem("homedecor:roof_tile_terracotta", {
minetest.register_craft({
type = "cooking",
output = "homedecor:roof_tile_terracotta 4",
recipe = "default:dirt",
output = "homedecor:roof_tile_terracotta",
recipe = "homedecor:terracotta_base",
})
minetest.register_craft( {

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B