pompeiian style
57
init.lua
@ -130,7 +130,8 @@ local styles = {
|
|||||||
"attic",
|
"attic",
|
||||||
"versailles",
|
"versailles",
|
||||||
"medieval",
|
"medieval",
|
||||||
"gothic"
|
"gothic",
|
||||||
|
"pompeiian"
|
||||||
}
|
}
|
||||||
|
|
||||||
--The chisel to carve the marble
|
--The chisel to carve the marble
|
||||||
@ -373,6 +374,34 @@ local pavements= {
|
|||||||
{'', 'stairs:slab_marble_brick', ''},
|
{'', 'stairs:slab_marble_brick', ''},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{name= "jonez:pompeiian_wall", description= "Ancient Pompeiian Wall", texture= "jonez_pompeiian_wall.png",
|
||||||
|
recipe = {
|
||||||
|
{'', 'stairs:slab_marble_brick_polished', ''},
|
||||||
|
{'stairs:slab_marble_brick', 'stairs:slab_marble_brick_polished', 'stairs:slab_marble_brick'},
|
||||||
|
{'', 'stairs:slab_marble_brick_polished', ''},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{name= "jonez:pompeiian_pavement", description= "Ancient Pompeiian Pavement", texture= "jonez_pompeiian_pavement.png",
|
||||||
|
recipe = {
|
||||||
|
{'stairs:slab_marble_brick', 'stairs:slab_marble_brick_polished', 'stairs:slab_marble_brick'},
|
||||||
|
{'stairs:slab_marble_brick', 'stairs:slab_marble_brick_polished', 'stairs:slab_marble_brick'},
|
||||||
|
{'stairs:slab_marble_brick', 'stairs:slab_marble_brick_polished', 'stairs:slab_marble_brick'},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{name= "jonez:pompeiian_path", description= "Ancient Pompeiian Path", texture= "jonez_pompeiian_path.png", amount = 4,
|
||||||
|
recipe = {
|
||||||
|
{'stairs:slab_marble_brick', 'default:gravel', 'stairs:slab_marble_brick'},
|
||||||
|
{'stairs:slab_marble_brick', 'default:gravel', 'stairs:slab_marble_brick'},
|
||||||
|
{'stairs:slab_marble_brick', 'default:gravel', 'stairs:slab_marble_brick'},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{name= "jonez:pompeiian_path", description= "Ancient Pompeiian Path", texture= "jonez_pompeiian_path.png", amount = 4,
|
||||||
|
recipe = {
|
||||||
|
{'stairs:slab_marble_brick', 'default:gravel', 'stairs:slab_marble_brick'},
|
||||||
|
{'stairs:slab_marble_brick', 'default:gravel', 'stairs:slab_marble_brick'},
|
||||||
|
{'stairs:slab_marble_brick', 'default:gravel', 'stairs:slab_marble_brick'},
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for i = 1, #pavements do
|
for i = 1, #pavements do
|
||||||
@ -383,8 +412,14 @@ for i = 1, #pavements do
|
|||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
local amount
|
||||||
|
if pavements[i].amount then
|
||||||
|
amount = " ".. tostring(pavements[i].amount)
|
||||||
|
else
|
||||||
|
amount = "1"
|
||||||
|
end
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = pavements[i].name,
|
output = pavements[i].name .. amount,
|
||||||
type = 'shaped',
|
type = 'shaped',
|
||||||
recipe = pavements[i].recipe,
|
recipe = pavements[i].recipe,
|
||||||
})
|
})
|
||||||
@ -460,3 +495,21 @@ minetest.register_craft({
|
|||||||
'jonez:diamond_pavement', 'stairs:slab_marble_brick', 'jonez:diamond_pavement',
|
'jonez:diamond_pavement', 'stairs:slab_marble_brick', 'jonez:diamond_pavement',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("jonez:pompeiian_altar", {
|
||||||
|
description = S("Ancient Pompeiian Altar"),
|
||||||
|
tiles = {"jonez_pompeiian_top_bottom.png", "jonez_pompeiian_top_bottom.png", "jonez_pompeiian_altar.png"},
|
||||||
|
is_ground_content = false,
|
||||||
|
groups = {cracky=3},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'jonez:pompeiian_altar',
|
||||||
|
type = "shaped",
|
||||||
|
recipe = {
|
||||||
|
{'', '', ''},
|
||||||
|
{'', 'stairs:slab_marble_brick_polished', ''},
|
||||||
|
{'', 'jonez:marble_polished', ''},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
@ -18,6 +18,7 @@ Attic=Ático
|
|||||||
Versailles=Versalles
|
Versailles=Versalles
|
||||||
Medieval=Medieval
|
Medieval=Medieval
|
||||||
Gothic=Gótico
|
Gothic=Gótico
|
||||||
|
Pompeiian=Pompeyano
|
||||||
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
|
||||||
@ -48,3 +49,7 @@ Palace Window (Top)=Ventana palaciega (superior)
|
|||||||
Palace Window (Bottom)=Ventana palaciega (inferior)
|
Palace Window (Bottom)=Ventana palaciega (inferior)
|
||||||
Versailles Pavement=Pavimento versallesco
|
Versailles Pavement=Pavimento versallesco
|
||||||
Versailles Tile=Mosaico versallesco
|
Versailles Tile=Mosaico versallesco
|
||||||
|
Ancient Pompeiian Wall=Muro antiguo pompeyano
|
||||||
|
Ancient Pompeiian Pavement=Pavimento antiguo pompeyano
|
||||||
|
Ancient Pompeiian Path=Camino antiguo pompeyano
|
||||||
|
Ancient Pompeiian Altar=Altar antiguo pompeyano
|
||||||
|
BIN
textures/jonez_pompeiian_altar.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
textures/jonez_pompeiian_architrave.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/jonez_pompeiian_base.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/jonez_pompeiian_capital.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
textures/jonez_pompeiian_path.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
textures/jonez_pompeiian_pavement.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
textures/jonez_pompeiian_shaft.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/jonez_pompeiian_top_bottom.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/jonez_pompeiian_wall.png
Normal file
After Width: | Height: | Size: 3.1 KiB |