diff --git a/illuna_aestival/init.lua b/illuna_aestival/init.lua index 9718ae6..ddd079f 100755 --- a/illuna_aestival/init.lua +++ b/illuna_aestival/init.lua @@ -13,4 +13,5 @@ dofile(path .. "/bonemeal.lua") dofile(path .. "/signs.lua") dofile(path .. "/replacer.lua") dofile(path .. "/mobs.lua") -dofile(path .. "/portal.lua") \ No newline at end of file +dofile(path .. "/portal.lua") +dofile(path .. "/moreblocks.lua") \ No newline at end of file diff --git a/illuna_aestival/src/moreblocks.lua b/illuna_aestival/src/moreblocks.lua new file mode 100644 index 0000000..85214b9 --- /dev/null +++ b/illuna_aestival/src/moreblocks.lua @@ -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") \ No newline at end of file