mirror of
https://github.com/minetest-mods/nether.git
synced 2024-12-28 03:40:28 +01:00
Add slabs and stairs for nether bricks, using "stairs" mod.
This commit is contained in:
parent
bc2ccfbaea
commit
32affba608
23
init.lua
23
init.lua
@ -498,6 +498,28 @@ if minetest.get_modpath("moreblocks") then
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
stairs.register_stair_and_slab("brick", "nether:brick",
|
||||||
|
{cracky=3, oddly_breakable_by_hand=1},
|
||||||
|
{"nether_brick.png"},
|
||||||
|
"nether stair",
|
||||||
|
"nether slab",
|
||||||
|
sounds = default.node_sound_stone_defaults())
|
||||||
|
|
||||||
|
local function replace(old, new)
|
||||||
|
for i=1,8 do
|
||||||
|
minetest.register_ore({
|
||||||
|
ore_type = "scatter",
|
||||||
|
ore = new,
|
||||||
|
wherein = old,
|
||||||
|
clust_scarcity = 1,
|
||||||
|
clust_num_ores = 1,
|
||||||
|
clust_size = 1,
|
||||||
|
height_min = -31000,
|
||||||
|
height_max = NETHER_DEPTH,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Craftitems
|
-- Craftitems
|
||||||
|
|
||||||
minetest.register_craftitem(":default:mese_crystal_fragment", {
|
minetest.register_craftitem(":default:mese_crystal_fragment", {
|
||||||
@ -515,7 +537,6 @@ minetest.register_craftitem(":default:mese_crystal_fragment", {
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
-- Crafting
|
-- Crafting
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
Loading…
Reference in New Issue
Block a user