master
runs 2021-01-08 21:37:27 +01:00
parent e4ae324387
commit 8d15758dfb
9 changed files with 12 additions and 3 deletions

View File

@ -231,6 +231,7 @@ for i = 1, #vines do
paramtype = "light",
paramtype2 = "facedir",
tiles = {vines[i].texture},
use_texture_alpha = true,
inventory_image = vines[i].texture,
wield_image = vines[i].texture,
node_box = {
@ -259,21 +260,27 @@ local panels = {
{"dye:green", "dye:red", "dye:orange"},
}
},
{name= "wrought_lattice_bottom", description= "Ancient Wrought Lattice (Bottom)",textures={front="jonez_wrought_lattice_bottom.png", edge="jonez_panes_edge.png"},
{name= "wrought_lattice_bottom", description= "Ancient Wrought Lattice (Bottom)",
textures={front="jonez_wrought_lattice_bottom.png", edge="jonez_panes_edge.png"},
use_texture_alpha = true,
recipe = {
{'', '', ''},
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
}
},
{name= "palace_window_top", description= "Palace Window (Top)",textures={front="jonez_palace_window_top.png", edge="default_wood.png"},
{name= "palace_window_top", description= "Palace Window (Top)",
textures={front="jonez_palace_window_top.png", edge="default_wood.png"},
use_texture_alpha = true,
recipe = {
{'', 'xpanes:pane_flat', ''},
{'', 'xpanes:pane_flat', ''},
{'', '', ''},
}
},
{name= "palace_window_bottom", description= "Palace Window (Bottom)",textures={front="jonez_palace_window_bottom.png", edge="default_wood.png"},
{name= "palace_window_bottom", description= "Palace Window (Bottom)",
textures={front="jonez_palace_window_bottom.png", edge="default_wood.png"},
use_texture_alpha = true,
recipe = {
{'', '', ''},
{'', 'xpanes:pane_flat', ''},
@ -286,6 +293,7 @@ for j=1, #panels do
xpanes.register_pane(panels[j].name, {
description = S(panels[j].description),
textures = {panels[j].textures.front, nil, panels[j].textures.edge},
use_texture_alpha = panels[j].use_texture_alpha,
inventory_image = panels[j].textures.front,
wield_image = panels[j].textures.front,
sounds = default.node_sound_glass_defaults(),
@ -439,6 +447,7 @@ minetest.register_node("jonez:wrought_lattice_top", {
"jonez_wrought_lattice_top.png",
"jonez_wrought_lattice_top.png"
},
use_texture_alpha = true,
})
minetest.register_craft({

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 594 B

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB