blast-resistant concrete stairs/slopes/et. al (#455)

if moreblocks is installed.
This commit is contained in:
Vanessa Dannenberg 2018-11-23 14:48:23 -05:00 committed by Nathanaël Courant
parent 8409be32fc
commit 2b2411d1ee
2 changed files with 15 additions and 1 deletions

View File

@ -1,4 +1,4 @@
default
basic_materials
intllib?
moreblocks?

View File

@ -61,6 +61,20 @@ minetest.register_node(":technic:blast_resistant_concrete", {
end,
})
if minetest.get_modpath("moreblocks") then
stairsplus:register_all("technic","blast_resistant_concrete","technic:blast_resistant_concrete",{
description = "Blast-resistant Concrete",
tiles = {"technic_blast_resistant_concrete_block.png",},
groups = {cracky=1, level=3, concrete=1},
sounds = default.node_sound_stone_defaults(),
on_blast = function(pos, intensity)
if intensity > 1 then
minetest.remove_node(pos)
minetest.add_item(pos, "technic:blast_resistant_concrete")
end
end,
})
end
local box_platform = {-0.5, 0.3, -0.5, 0.5, 0.5, 0.5}
local box_post = {-0.15, -0.5, -0.15, 0.15, 0.5, 0.15}