Moss Now Slowly Degrades HardStone

master
wintersknight94 2022-01-26 13:12:56 -06:00 committed by GitHub
parent fe37eb1f69
commit db08f10fc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -192,3 +192,17 @@ minetest.register_abm({
and nodecore.set_node(picked, {name = grp.dying})
end
})
------------------------------------------------------------------------
-- Hardstone Degradation --
minetest.register_alias(modname.. ":mossy_hstone0", modname.. ":mossy_stone")
for i = 1,7 do
nodecore.register_limited_abm({
label = "moss soften stone",
nodenames = {modname.. ":mossy_hstone"..i},
interval = 100,
chance = 10,
action = function(pos)
nodecore.set_node(pos, {name = modname .. ":mossy_hstone"..i-1})
end
})
end