forked from mtcontrib/minetest-mod-snow
Mix up the crafts a bit for snow_cobble.
Don't have much ice? no problem! use more snow.
This commit is contained in:
parent
cdf33a3881
commit
7780db088d
@ -126,21 +126,50 @@ minetest.register_craft({
|
|||||||
--Craft icy snow.
|
--Craft icy snow.
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'default:snow_cobble 3',
|
output = 'snow:snow_cobble 6',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
'default:snow',
|
||||||
|
'default:snow',
|
||||||
|
'default:snow',
|
||||||
|
'default:snow',
|
||||||
'default:snow',
|
'default:snow',
|
||||||
'default:snow',
|
'default:snow',
|
||||||
'default:ice',
|
'default:ice',
|
||||||
'defaul:ice'
|
'default:ice'
|
||||||
|
'default:ice'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = 'snow:snow_cobble 4',
|
||||||
|
recipe = {
|
||||||
|
'default:snow',
|
||||||
|
'default:snow',
|
||||||
|
'default:snow',
|
||||||
|
'default:snow',
|
||||||
|
'default:ice',
|
||||||
|
'default:ice'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'default:snow_cobble',
|
output = 'snow:snow_cobble 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
'default:snow',
|
'default:snow',
|
||||||
'defaul:ice'
|
'default:snow',
|
||||||
|
'default:ice'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = 'snow:snow_cobble',
|
||||||
|
recipe = {
|
||||||
|
'default:snow',
|
||||||
|
'default:ice'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user