wood textures

This commit is contained in:
FaceDeer 2017-03-21 22:16:52 -06:00
parent cbc277eb30
commit da8454d478
19 changed files with 51 additions and 12 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 717 B

After

Width:  |  Height:  |  Size: 597 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 385 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

View File

@ -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(),

View File

@ -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",

View File

@ -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(),

View File

@ -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",

View File

@ -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(),

View File

@ -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(),

View File

@ -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(),

View File

@ -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(),