Update 'mods/ethereal/wood.lua'

This commit is contained in:
thunderdog1138 2020-07-22 22:23:19 +00:00
parent 3928681dd0
commit 026ed30a23
1 changed files with 14 additions and 14 deletions

View File

@ -5,9 +5,9 @@ local S = ethereal.intllib
minetest.register_node("ethereal:jogan_trunk", { minetest.register_node("ethereal:jogan_trunk", {
description = S("Jogan Trunk"), description = S("Jogan Trunk"),
tiles = { tiles = {
"ethereal_jogan_trunk_top.png", "jogan_trunk_top.png",
"ethereal_jogan_trunk_top.png", "jogan_trunk_top.png",
"ethereal_jogan_trunk.png" "jogan_trunk.png"
}, },
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
@ -18,7 +18,7 @@ minetest.register_node("ethereal:jogan_trunk", {
-- jogan wood -- jogan wood
minetest.register_node("ethereal:jogan_wood", { minetest.register_node("ethereal:jogan_wood", {
description = S("Jogan Wood"), description = S("Jogan Wood"),
tiles = {"ethereal_jogan_wood.png"}, tiles = {"jogan_wood.png"},
is_ground_content = false, is_ground_content = false,
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3}, groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
@ -61,9 +61,9 @@ minetest.register_craft({
minetest.register_node("ethereal:palm_trunk", { minetest.register_node("ethereal:palm_trunk", {
description = S("Palm Trunk"), description = S("Palm Trunk"),
tiles = { tiles = {
"moretrees_palm_trunk_top.png", "palm_trunk_top.png",
"moretrees_palm_trunk_top.png", "palm_trunk_top.png",
"moretrees_palm_trunk.png" "palm_trunk.png"
}, },
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
@ -74,7 +74,7 @@ minetest.register_node("ethereal:palm_trunk", {
-- palm wood -- palm wood
minetest.register_node("ethereal:palm_wood", { minetest.register_node("ethereal:palm_wood", {
description = S("Palm Wood"), description = S("Palm Wood"),
tiles = {"moretrees_palm_wood.png"}, tiles = {"palm_wood.png"},
is_ground_content = false, is_ground_content = false,
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3}, groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
@ -117,9 +117,9 @@ minetest.register_craft({
minetest.register_node("ethereal:brylark_trunk", { minetest.register_node("ethereal:brylark_trunk", {
description = S("Brylark Trunk"), description = S("Brylark Trunk"),
tiles = { tiles = {
"ethereal_brylark_trunk_top.png", "brylark_trunk_top.png",
"ethereal_brylark_trunk_top.png", "brylark_trunk_top.png",
"ethereal_brylark_trunk.png" "brylark_trunk.png"
}, },
groups = {cracky = 2}, groups = {cracky = 2},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
@ -267,9 +267,9 @@ minetest.register_node("ethereal:bush_stem", {
description = S("Bush Stem"), description = S("Bush Stem"),
drawtype = "plantlike", drawtype = "plantlike",
visual_scale = 1.41, visual_scale = 1.41,
tiles = {"ethereal_bush_stem.png"}, tiles = {"bush_stem.png"},
inventory_image = "ethereal_bush_stem.png", inventory_image = "bush_stem.png",
wield_image = "ethereal_bush_stem.png", wield_image = "bush_stem.png",
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
groups = {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, groups = {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},