fix broken brass ingot recipe, revise wood and glass

small round -> small square -> large square table recipes.
This commit is contained in:
Vanessa Ezekowitz 2013-04-20 19:39:28 -04:00
parent 276aac92c1
commit 1195132fb0
1 changed files with 55 additions and 51 deletions

View File

@ -274,20 +274,67 @@ minetest.register_craft( {
}, },
}) })
-- minetest.register_craft( {
output = 'homedecor:glass_table_small_square 4',
recipe = {
{'homedecor:glass_table_small_round', 'homedecor:glass_table_small_round' },
{'homedecor:glass_table_small_round', 'homedecor:glass_table_small_round' }
}
})
minetest.register_craft( { minetest.register_craft( {
type = "shapeless", output = 'homedecor:glass_table_large 4',
output = 'homedecor:glass_table_small_square', recipe = {
recipe = { 'homedecor:glass_table_small_round' }, { 'homedecor:glass_table_small_square', 'homedecor:glass_table_small_square' },
{ 'homedecor:glass_table_small_square', 'homedecor:glass_table_small_square' }
}
}) })
-- --
minetest.register_craft( { minetest.register_craft( {
type = "shapeless", output = 'homedecor:wood_table_small_round 15',
output = 'homedecor:glass_table_large', recipe = {
recipe = { 'homedecor:glass_table_small_square' }, { '', 'default:wood', '' },
{ 'default:wood', 'default:wood', 'default:wood' },
{ '', 'default:wood', '' },
},
})
minetest.register_craft( {
output = 'homedecor:wood_table_small_square 4',
recipe = {
{ 'homedecor:wood_table_small_round','homedecor:wood_table_small_round' },
{ 'homedecor:wood_table_small_round','homedecor:wood_table_small_round' }
}
})
minetest.register_craft( {
output = 'homedecor:wood_table_large 4',
recipe = {
{ 'homedecor:wood_table_small_square', 'homedecor:wood_table_small_square' },
{ 'homedecor:wood_table_small_square', 'homedecor:wood_table_small_square' }
}
})
--
minetest.register_craft({
type = 'fuel',
recipe = 'homedecor:wood_table_small_round',
burntime = 30,
})
minetest.register_craft({
type = 'fuel',
recipe = 'homedecor:wood_table_small_square',
burntime = 30,
})
minetest.register_craft({
type = 'fuel',
recipe = 'homedecor:wood_table_large',
burntime = 30,
}) })
-- --
@ -347,49 +394,6 @@ minetest.register_craft( {
}, },
}) })
--
minetest.register_craft( {
output = 'homedecor:wood_table_small_round 15',
recipe = {
{ '', 'default:wood', '' },
{ 'default:wood', 'default:wood', 'default:wood' },
{ '', 'default:wood', '' },
},
})
minetest.register_craft({
type = 'fuel',
recipe = 'homedecor:wood_table_small_round',
burntime = 30,
})
minetest.register_craft( {
type = "shapeless",
output = 'homedecor:wood_table_small_square',
recipe = { 'homedecor:wood_table_small_round' },
})
minetest.register_craft({
type = 'fuel',
recipe = 'homedecor:wood_table_small_square',
burntime = 30,
})
--
minetest.register_craft( {
type = "shapeless",
output = 'homedecor:wood_table_large',
recipe = { 'homedecor:wood_table_small_square' },
})
minetest.register_craft({
type = 'fuel',
recipe = 'homedecor:wood_table_large',
burntime = 30,
})
-- Various colors of shutters -- Various colors of shutters
minetest.register_craft( { minetest.register_craft( {
@ -810,7 +814,7 @@ minetest.register_craft( {
output = 'homedecor:brass_ingot 2', output = 'homedecor:brass_ingot 2',
recipe = { recipe = {
'moreores:silver_ingot', 'moreores:silver_ingot',
'moreores:copper_ingot', 'default:copper_ingot',
}, },
}) })