versailles style
52
init.lua
@ -131,6 +131,7 @@ local styles = {
|
|||||||
"artdeco",
|
"artdeco",
|
||||||
"minoan",
|
"minoan",
|
||||||
"attic",
|
"attic",
|
||||||
|
"versailles"
|
||||||
}
|
}
|
||||||
|
|
||||||
--The chisel to carve the marble
|
--The chisel to carve the marble
|
||||||
@ -281,6 +282,20 @@ local panels = {
|
|||||||
{'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"},
|
||||||
|
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"},
|
||||||
|
recipe = {
|
||||||
|
{'', '', ''},
|
||||||
|
{'', 'xpanes:pane_flat', ''},
|
||||||
|
{'', 'xpanes:pane_flat', ''},
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for j=1, #panels do
|
for j=1, #panels do
|
||||||
@ -388,3 +403,40 @@ minetest.register_craft({
|
|||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("jonez:versailles_pavement", {
|
||||||
|
description = S("Versailles Pavement"),
|
||||||
|
tiles = {"jonez_versailles_pavement.png"},
|
||||||
|
is_ground_content = false,
|
||||||
|
groups = {cracky=3},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'jonez:versailles_pavement',
|
||||||
|
type = "shaped",
|
||||||
|
recipe = {
|
||||||
|
{'', '', ''},
|
||||||
|
{'', 'stairs:slab_marble_brick', ''},
|
||||||
|
{'stairs:slab_marble_brick', '', 'stairs:slab_marble_brick'},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("jonez:versailles_tile", {
|
||||||
|
description = S("Versailles Tile"),
|
||||||
|
tiles = {"jonez_versailles_tile.png"},
|
||||||
|
is_ground_content = false,
|
||||||
|
groups = {cracky=3},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'jonez:versailles_tile 9',
|
||||||
|
type = "shapeless",
|
||||||
|
recipe = {
|
||||||
|
'jonez:diamond_pavement', 'stairs:slab_marble_brick', 'jonez:diamond_pavement',
|
||||||
|
'stairs:slab_marble_brick', 'jonez:diamond_pavement', 'stairs:slab_marble_brick',
|
||||||
|
'jonez:diamond_pavement', 'stairs:slab_marble_brick', 'jonez:diamond_pavement',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
@ -15,6 +15,7 @@ Romanic=Románico
|
|||||||
Nabataean=Nabateo
|
Nabataean=Nabateo
|
||||||
Minoan=Minoico
|
Minoan=Minoico
|
||||||
Attic=Ático
|
Attic=Ático
|
||||||
|
Versailles=Versalles
|
||||||
Ancient Marble Stair=Escalera de mármol antiguo
|
Ancient Marble Stair=Escalera de mármol antiguo
|
||||||
Ancient Marble Slab=Losa de mármol antiguo
|
Ancient Marble Slab=Losa de mármol antiguo
|
||||||
Ancient Marble Brick Stair=Escalera de ladrillo de mármol antiguo
|
Ancient Marble Brick Stair=Escalera de ladrillo de mármol antiguo
|
||||||
@ -38,3 +39,7 @@ Ancient Polished Marble Stair=Escalera de mármol pulido antiguo
|
|||||||
Ancient Polished Marble Slab=Losa de mármol pulido antiguo
|
Ancient Polished Marble Slab=Losa de mármol pulido antiguo
|
||||||
Ancient Polished Marble Brick Stair=Escalera de ladrillo de mármol pulido antiguo
|
Ancient Polished Marble Brick Stair=Escalera de ladrillo de mármol pulido antiguo
|
||||||
Ancient Polished Marble Brick Slab=Losa de ladrillo de mármol pulido antiguo
|
Ancient Polished Marble Brick Slab=Losa de ladrillo de mármol pulido antiguo
|
||||||
|
Palace Window (Top)=Ventana palaciega (superior)
|
||||||
|
Palace Window (Bottom)=Ventana palaciega (inferior)
|
||||||
|
Versailles Pavement=Pavimento versallesco
|
||||||
|
Versailles Tile=Mosaico versallesco
|
||||||
|
BIN
textures/jonez_palace_window_bottom.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
textures/jonez_palace_window_top.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
textures/jonez_versailles_architrave.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
textures/jonez_versailles_base.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/jonez_versailles_capital.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
textures/jonez_versailles_pavement.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
textures/jonez_versailles_shaft.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
textures/jonez_versailles_tile.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
textures/jonez_versailles_top_bottom.png
Normal file
After Width: | Height: | Size: 1.6 KiB |