diff --git a/textures/dfcaverns_black_cap_wood.png b/textures/dfcaverns_black_cap_wood.png new file mode 100644 index 0000000..eb4647d Binary files /dev/null and b/textures/dfcaverns_black_cap_wood.png differ diff --git a/textures/dfcaverns_blood_thorn_wood.png b/textures/dfcaverns_blood_thorn_wood.png new file mode 100644 index 0000000..cf8b70b Binary files /dev/null and b/textures/dfcaverns_blood_thorn_wood.png differ diff --git a/textures/dfcaverns_fungiwood_wood.png b/textures/dfcaverns_fungiwood_wood.png new file mode 100644 index 0000000..fa93048 Binary files /dev/null and b/textures/dfcaverns_fungiwood_wood.png differ diff --git a/textures/dfcaverns_goblin_cap_stem_wood.png b/textures/dfcaverns_goblin_cap_stem_wood.png new file mode 100644 index 0000000..f8e638b Binary files /dev/null and b/textures/dfcaverns_goblin_cap_stem_wood.png differ diff --git a/textures/dfcaverns_goblin_cap_wood.png b/textures/dfcaverns_goblin_cap_wood.png new file mode 100644 index 0000000..4c84c64 Binary files /dev/null and b/textures/dfcaverns_goblin_cap_wood.png differ diff --git a/textures/dfcaverns_nether_cap_sapling.png b/textures/dfcaverns_nether_cap_sapling.png index f079201..709d911 100644 Binary files a/textures/dfcaverns_nether_cap_sapling.png and b/textures/dfcaverns_nether_cap_sapling.png differ diff --git a/textures/dfcaverns_nether_cap_wood.png b/textures/dfcaverns_nether_cap_wood.png new file mode 100644 index 0000000..80e73bf Binary files /dev/null and b/textures/dfcaverns_nether_cap_wood.png differ diff --git a/textures/dfcaverns_spore_tree_wood.png b/textures/dfcaverns_spore_tree_wood.png new file mode 100644 index 0000000..2b584b3 Binary files /dev/null and b/textures/dfcaverns_spore_tree_wood.png differ diff --git a/textures/dfcaverns_tower_cap_wood.png b/textures/dfcaverns_tower_cap_wood.png new file mode 100644 index 0000000..82f10a0 Binary files /dev/null and b/textures/dfcaverns_tower_cap_wood.png differ diff --git a/textures/dfcaverns_tunnel_tube_wood_side.png b/textures/dfcaverns_tunnel_tube_wood_side.png new file mode 100644 index 0000000..26a28ec Binary files /dev/null and b/textures/dfcaverns_tunnel_tube_wood_side.png differ diff --git a/textures/dfcaverns_tunnel_tube_wood_top.png b/textures/dfcaverns_tunnel_tube_wood_top.png new file mode 100644 index 0000000..37e9e1a Binary files /dev/null and b/textures/dfcaverns_tunnel_tube_wood_top.png differ diff --git a/trees/black_cap.lua b/trees/black_cap.lua index bdcd42b..4cef78c 100644 --- a/trees/black_cap.lua +++ b/trees/black_cap.lua @@ -63,7 +63,7 @@ minetest.register_node("dfcaverns:black_cap_wood", { description = S("Black Cap Planks"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_black_cap_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, sounds = default.node_sound_wood_defaults(), diff --git a/trees/blood_thorn.lua b/trees/blood_thorn.lua index 7e57fc1..052aa32 100644 --- a/trees/blood_thorn.lua +++ b/trees/blood_thorn.lua @@ -86,15 +86,40 @@ minetest.register_node("dfcaverns:blood_thorn_spike_dead", { }, }) + +--Wood +minetest.register_craft({ + output = 'dfcaverns:blood_thorn_wood 4', + recipe = { + {'dfcaverns:blood_thorn'}, + } +}) + +minetest.register_node("dfcaverns:blood_thorn_wood", { + description = S("Blood Thorn Planks"), + paramtype2 = "facedir", + place_param2 = 0, + tiles = {"dfcaverns_blood_thorn_wood.png"}, + is_ground_content = false, + groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_craft({ + type = "fuel", + recipe = "dfcaverns:blood_thorn_wood", + burntime = 40, +}) + minetest.register_craft({ type = "fuel", recipe = "dfcaverns:blood_thorn", - burntime = 9, + burntime = 150, }) minetest.register_craft({ type = "fuel", recipe = "dfcaverns:blood_thorn_dead", - burntime = 9, + burntime = 120, }) minetest.register_craft({ type = "fuel", diff --git a/trees/fungiwood.lua b/trees/fungiwood.lua index c97b992..ea2da65 100644 --- a/trees/fungiwood.lua +++ b/trees/fungiwood.lua @@ -32,7 +32,7 @@ minetest.register_node("dfcaverns:fungiwood_wood", { description = S("Fungiwood Planks"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_fungiwood_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, sounds = default.node_sound_wood_defaults(), diff --git a/trees/goblin_cap.lua b/trees/goblin_cap.lua index b67e50f..7d95f4f 100644 --- a/trees/goblin_cap.lua +++ b/trees/goblin_cap.lua @@ -52,7 +52,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = 'dfcaverns:goblin_cap_wood 4', + output = 'dfcaverns:goblin_cap_stem_wood 4', recipe = { {'dfcaverns:goblin_cap_stem'}, } @@ -62,17 +62,31 @@ minetest.register_node("dfcaverns:goblin_cap_wood", { description = S("Goblin Cap Planks"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_goblin_cap_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, sounds = default.node_sound_wood_defaults(), }) +minetest.register_node("dfcaverns:goblin_cap_stem_wood", { + description = S("Goblin Cap Stem Planks"), + paramtype2 = "facedir", + place_param2 = 0, + tiles = {"dfcaverns_goblin_cap_stem_wood.png"}, + is_ground_content = false, + groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, + sounds = default.node_sound_wood_defaults(), +}) minetest.register_craft({ type = "fuel", recipe = "dfcaverns:goblin_cap_wood", - burntime = 10, + burntime = 12, +}) +minetest.register_craft({ + type = "fuel", + recipe = "dfcaverns:goblin_cap_stem_wood", + burntime = 7, }) minetest.register_craft({ type = "fuel", @@ -82,7 +96,7 @@ minetest.register_craft({ minetest.register_craft({ type = "fuel", recipe = "dfcaverns:goblin_cap_stem", - burntime = 40, + burntime = 30, }) minetest.register_craft({ type = "fuel", diff --git a/trees/nether_cap.lua b/trees/nether_cap.lua index 1442211..a343e0b 100644 --- a/trees/nether_cap.lua +++ b/trees/nether_cap.lua @@ -62,7 +62,7 @@ minetest.register_node("dfcaverns:nether_cap_wood", { description = S("Nether Cap Planks"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_nether_cap_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, wood = 1}, sounds = default.node_sound_wood_defaults(), diff --git a/trees/spore_tree.lua b/trees/spore_tree.lua index 4a5d4cf..98a2304 100644 --- a/trees/spore_tree.lua +++ b/trees/spore_tree.lua @@ -33,7 +33,7 @@ minetest.register_node("dfcaverns:spore_tree_wood", { description = S("Spore Tree Planks"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_spore_tree_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, sounds = default.node_sound_wood_defaults(), diff --git a/trees/tower_cap.lua b/trees/tower_cap.lua index 87a5424..9a34fcc 100644 --- a/trees/tower_cap.lua +++ b/trees/tower_cap.lua @@ -62,7 +62,7 @@ minetest.register_node("dfcaverns:tower_cap_wood", { description = S("Tower Cap Planks"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_tower_cap_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, sounds = default.node_sound_wood_defaults(), diff --git a/trees/tunnel_tube.lua b/trees/tunnel_tube.lua index 5392f8d..67617c0 100644 --- a/trees/tunnel_tube.lua +++ b/trees/tunnel_tube.lua @@ -43,7 +43,7 @@ minetest.register_node("dfcaverns:tunnel_tube_wood", { description = S("Tunnel Tube Plies"), paramtype2 = "facedir", place_param2 = 0, - tiles = {"default_wood.png"}, + tiles = {"dfcaverns_tunnel_tube_wood_top.png", "dfcaverns_tunnel_tube_wood_top.png", "dfcaverns_tunnel_tube_wood_side.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1}, sounds = default.node_sound_wood_defaults(),