mirror of
https://github.com/minetest-mods/moreores.git
synced 2024-12-29 11:40:21 +01:00
Make ores slower to mine and non-minable with wooden tools
This closes #30.
This commit is contained in:
parent
77dcac7895
commit
b851252996
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
|
|
||||||
- Brazilian and Dutch translations.
|
- Brazilian and Dutch translations.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Ores are now slower to mine and cannot be mined using wooden tools anymore.
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
- Deprecated hoes to follow Minetest Game's deprecation of hoes
|
- Deprecated hoes to follow Minetest Game's deprecation of hoes
|
||||||
|
2
init.lua
2
init.lua
@ -75,7 +75,7 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
minetest.register_node(modname .. ":mineral_" .. mineral_name, {
|
minetest.register_node(modname .. ":mineral_" .. mineral_name, {
|
||||||
description = S("%s Ore"):format(S(description)),
|
description = S("%s Ore"):format(S(description)),
|
||||||
tiles = {"default_stone.png^" .. modname .. "_mineral_" .. mineral_name .. ".png"},
|
tiles = {"default_stone.png^" .. modname .. "_mineral_" .. mineral_name .. ".png"},
|
||||||
groups = {cracky = 3},
|
groups = {cracky = 2},
|
||||||
sounds = default_stone_sounds,
|
sounds = default_stone_sounds,
|
||||||
drop = lump_item
|
drop = lump_item
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user