naturalslopes_hades_revisited/simple_nodes.lua

115 lines
2.0 KiB
Lua

local hadesS = minetest.get_translator("hade_core")
local translator = minetest.get_translator("minetestgame_slopes")
local S = function(name)
return translator("@1 Slope", hadesS(name))
end
naturalslopeslib.register_slope("hades_core:stone", {
description = S("Stone"),
},
100
)
naturalslopeslib.register_slope("hades_core:mossystone", {
description = S("Mossy Stone"),
},
100
)
naturalslopeslib.register_slope("hades_core:chondrite", {
description = S("Chondrite"),
},
60
)
naturalslopeslib.register_slope("hades_core:tuff", {
description = S("Tuff"),
},
80
)
naturalslopeslib.register_slope("hades_core:tuff_baked", {
description = S("Burned Tuff"),
},
80
)
naturalslopeslib.register_slope("hades_core:mossytuff", {
description = S("Mossy Tuff"),
},
80
)
naturalslopeslib.register_slope("hades_core:marble", {
description = S("Marble"),
},
80
)
naturalslopeslib.register_slope("hades_core:essexite", {
description = S("Essexite"),
},
100
)
naturalslopeslib.register_slope("hades_core:stone_baked", {
description = S("Burned Stone"),
},
100
)
naturalslopeslib.register_slope("hades_core:ash", {
description = S("Volcanic Ash"),
},
3
)
naturalslopeslib.register_slope("hades_core:fertile_sand", {
description = S("Fertile Sand"),
},
15
)
naturalslopeslib.register_slope("hades_core:gravel", {
description = S("Gravel"),
},
20
)
naturalslopeslib.register_slope("hades_core:gravel_volcanic", {
description = S("Volcanic Gravel"),
},
20
)
naturalslopeslib.register_slope("hades_core:sandstone", {
description = S("Sandtone"),
drop = "hades_core:sandstone",
},
50
)
naturalslopeslib.register_slope("hades_core:clay", {
description = S("Clay"),
},
35
)
naturalslopeslib.register_slope("hades_core:cobble", {
description = S("Cobblestone"),
},
60
)
naturalslopeslib.register_slope("hades_core:cobble_baked", {
description = S("Burned Cobblestone"),
},
60
)
naturalslopeslib.register_slope("hades_core:mossycobble", {
description = S("Mossy Cobblestone"),
},
60
)