few recipe changes (thanks RQWorldblender)

This commit is contained in:
TenPlus1 2016-12-04 10:58:20 +00:00
parent 8309e6a777
commit f34b9b00c6
2 changed files with 9 additions and 7 deletions

View File

@ -171,7 +171,6 @@ minetest.register_tool("ethereal:shovel_crystal", {
description = S("Crystal (soft touch) Shovel"),
inventory_image = "crystal_shovel.png",
wield_image = "crystal_shovel.png^[transformR90",
sound = {breaks = "default_tool_breaks"},
on_use = function(itemstack, user, pointed_thing)
@ -232,10 +231,11 @@ minetest.register_tool("ethereal:crystal_gilly_staff", {
})
minetest.register_craft({
type = "shapeless",
output = "ethereal:crystal_gilly_staff",
recipe = {
{"ethereal:green_moss", "ethereal:gray_moss", "ethereal:fiery_moss"},
{"ethereal:crystal_moss", "ethereal:crystal_ingot", "ethereal:mushroom_moss"},
{"", "ethereal:crystal_ingot", ""},
}
"ethereal:green_moss", "ethereal:gray_moss", "ethereal:fiery_moss",
"ethereal:crystal_moss", "ethereal:crystal_ingot", "ethereal:mushroom_moss",
"ethereal:crystal_ingot"
},
})

View File

@ -219,12 +219,14 @@ function ethereal.add_moss(typ, descr, texture, receipe_item)
description = S(descr .. " Moss"),
tiles = {texture},
groups = {crumbly = 3},
sounds = default.node_sound_dirt_defaults()
sounds = default.node_sound_dirt_defaults({
footstep = {name = "default_grass_footstep", gain = 0.4}})
})
minetest.register_craft({
type = "shapeless",
output = "ethereal:"..typ.."_moss",
recipe = {{"default:dirt", receipe_item }}
recipe = {"default:dirt", receipe_item }
})
end