diff --git a/init.lua b/init.lua index ca3578c..89a206e 100644 --- a/init.lua +++ b/init.lua @@ -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', ''}, diff --git a/locale/jonez.es.tr b/locale/jonez.es.tr index ec810be..44dfabd 100644 --- a/locale/jonez.es.tr +++ b/locale/jonez.es.tr @@ -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 diff --git a/textures/jonez_corinthian_architrave.png b/textures/jonez_corinthian_architrave.png new file mode 100644 index 0000000..c5b4bf2 Binary files /dev/null and b/textures/jonez_corinthian_architrave.png differ diff --git a/textures/jonez_corinthian_base.png b/textures/jonez_corinthian_base.png new file mode 100644 index 0000000..019268e Binary files /dev/null and b/textures/jonez_corinthian_base.png differ diff --git a/textures/jonez_corinthian_capital.png b/textures/jonez_corinthian_capital.png new file mode 100644 index 0000000..2db53a5 Binary files /dev/null and b/textures/jonez_corinthian_capital.png differ diff --git a/textures/jonez_corinthian_shaft.png b/textures/jonez_corinthian_shaft.png new file mode 100644 index 0000000..be0a7bf Binary files /dev/null and b/textures/jonez_corinthian_shaft.png differ diff --git a/textures/jonez_corinthian_top_bottom.png b/textures/jonez_corinthian_top_bottom.png new file mode 100644 index 0000000..0c31d9e Binary files /dev/null and b/textures/jonez_corinthian_top_bottom.png differ