Make ores slower to mine and non-minable with wooden tools

This closes #30.
This commit is contained in:
Hugo Locurcio
2019-02-24 16:33:48 +01:00
parent 77dcac7895
commit b851252996
2 changed files with 5 additions and 1 deletions

View File

@ -75,7 +75,7 @@ local function add_ore(modname, description, mineral_name, oredef)
minetest.register_node(modname .. ":mineral_" .. mineral_name, {
description = S("%s Ore"):format(S(description)),
tiles = {"default_stone.png^" .. modname .. "_mineral_" .. mineral_name .. ".png"},
groups = {cracky = 3},
groups = {cracky = 2},
sounds = default_stone_sounds,
drop = lump_item
})