add redwood+douglasie to moreblocks, closes #13

master
Milan 2021-01-28 21:57:50 +01:00
parent 270d99232d
commit 943a0bf115
2 changed files with 35 additions and 1 deletions

View File

@ -13,4 +13,5 @@ dofile(path .. "/bonemeal.lua")
dofile(path .. "/signs.lua")
dofile(path .. "/replacer.lua")
dofile(path .. "/mobs.lua")
dofile(path .. "/portal.lua")
dofile(path .. "/portal.lua")
dofile(path .. "/moreblocks.lua")

View File

@ -0,0 +1,33 @@
stairsplus:register_all("illuna_ethereal", "douglasie_trunk", "illuna_ethereal:douglasie_trunk", {
description = "Douglasie Trunk",
tiles = {"douglasie_trunk.png"},
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
sounds = default.node_sound_wood_defaults(),
})
stairsplus:register_all("illuna_ethereal", "douglasie_wood", "illuna_ethereal:douglasie_wood", {
description = "Douglasie Wood",
tiles = {"douglasie_wood.png"},
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1},
sounds = default.node_sound_wood_defaults(),
})
table.insert(circular_saw.known_stairs, "illuna_ethereal:douglasie_trunk")
table.insert(circular_saw.known_stairs, "illuna_ethereal:douglasie_wood")
stairsplus:register_all("ethereal", "redwood_trunk", "ethereal:redwood_trunk", {
description = "Redwood Trunk",
tiles = {"redwood_trunk.png"},
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
sounds = default.node_sound_wood_defaults(),
})
stairsplus:register_all("ethereal", "redwood_wood", "ethereal:redwood_wood", {
description = "Redwood Wood",
tiles = {"redwood_wood.png"},
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1},
sounds = default.node_sound_wood_defaults(),
})
table.insert(circular_saw.known_stairs, "ethereal:redwood_trunk")
table.insert(circular_saw.known_stairs, "ethereal:redwood_wood")