condenser : remove test recipes + add basic one

master
D ø u G y 2017-05-16 19:30:22 +02:00
parent b1e7597e2c
commit a6f0f576f0
1 changed files with 6 additions and 9 deletions

View File

@ -1,18 +1,15 @@
local water_generation_delay_in_seconds = 3.0
-- Recipes --
-- TODO : Make a coherent "real" recipe
minetest.register_craft({
type = "shapeless",
type = "shaped",
output = "condenser:condenser",
recipe = {"default:sand"}
})
minetest.register_craft({
type = "shapeless",
output = "condenser:condenser",
recipe = {"default:dirt"}
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "bucket:bucket_empty", "default:steel_ingot"},
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}
}
})
-- Event Handlers --