This commit is contained in:
root 2020-08-24 01:37:13 +02:00
parent f2961f08c4
commit 7d69661fbe
7 changed files with 48 additions and 4 deletions

View File

@ -131,7 +131,8 @@ local styles = {
"versailles",
"medieval",
"gothic",
"pompeiian"
"pompeiian",
"corinthian"
}
--The chisel to carve the marble
@ -151,6 +152,48 @@ minetest.register_craft({
}
})
-- The Crafting of the Greek Set
minetest.register_craft({
output = 'jonez:greek_shaft 3',
type = "shaped",
recipe = {
{'', 'jonez:marble_polished', ''},
{'', 'jonez:marble_polished', ''},
{'', 'jonez:marble_polished', ''},
},
})
minetest.register_craft({
output = 'jonez:greek_architrave 3',
type = "shaped",
recipe = {
{'', '', ''},
{'', '', ''},
{'stairs:slab_marble_polished', 'stairs:slab_marble_polished', 'stairs:slab_marble_polished'},
},
})
minetest.register_craft({
output = 'jonez:greek_base 2',
type = "shaped",
recipe = {
{'', '', ''},
{'', 'jonez:marble_polished', ''},
{'', 'stairs:slab_marble_polished', ''},
},
})
minetest.register_craft({
output = 'jonez:greek_capital 2',
type = "shaped",
recipe = {
{'', '', ''},
{'', 'stairs:slab_marble_polished', ''},
{'', 'jonez:marble_polished', ''},
},
})
local function save_meta(pos, i, element)
local meta = minetest.get_meta(pos)
meta:set_int("jonez:style", i)
@ -275,21 +318,21 @@ local panels = {
{"dye:green", "dye:red", "dye:orange"},
}
},
{name= "jonez: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"},
recipe = {
{'', '', ''},
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
}
},
{name= "jonez: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"},
recipe = {
{'', 'xpanes:pane_flat', ''},
{'', 'xpanes:pane_flat', ''},
{'', '', ''},
}
},
{name= "jonez: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"},
recipe = {
{'', '', ''},
{'', 'xpanes:pane_flat', ''},

View File

@ -19,6 +19,7 @@ Versailles=Versalles
Medieval=Medieval
Gothic=Gótico
Pompeiian=Pompeyano
Corinthian=Corintio
Ancient Marble Stair=Escalera de mármol antiguo
Ancient Marble Slab=Losa de mármol antiguo
Ancient Marble Brick Stair=Escalera de ladrillo de mármol antiguo

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB