forked from MTSR/jonez
fixes
This commit is contained in:
parent
f2961f08c4
commit
7d69661fbe
51
init.lua
51
init.lua
@ -131,7 +131,8 @@ local styles = {
|
|||||||
"versailles",
|
"versailles",
|
||||||
"medieval",
|
"medieval",
|
||||||
"gothic",
|
"gothic",
|
||||||
"pompeiian"
|
"pompeiian",
|
||||||
|
"corinthian"
|
||||||
}
|
}
|
||||||
|
|
||||||
--The chisel to carve the marble
|
--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 function save_meta(pos, i, element)
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
meta:set_int("jonez:style", i)
|
meta:set_int("jonez:style", i)
|
||||||
@ -275,21 +318,21 @@ local panels = {
|
|||||||
{"dye:green", "dye:red", "dye:orange"},
|
{"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 = {
|
recipe = {
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
|
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
|
||||||
{'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 = {
|
recipe = {
|
||||||
{'', 'xpanes:pane_flat', ''},
|
{'', 'xpanes:pane_flat', ''},
|
||||||
{'', '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 = {
|
recipe = {
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
{'', 'xpanes:pane_flat', ''},
|
{'', 'xpanes:pane_flat', ''},
|
||||||
|
@ -19,6 +19,7 @@ Versailles=Versalles
|
|||||||
Medieval=Medieval
|
Medieval=Medieval
|
||||||
Gothic=Gótico
|
Gothic=Gótico
|
||||||
Pompeiian=Pompeyano
|
Pompeiian=Pompeyano
|
||||||
|
Corinthian=Corintio
|
||||||
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
|
||||||
|
BIN
textures/jonez_corinthian_architrave.png
Normal file
BIN
textures/jonez_corinthian_architrave.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
BIN
textures/jonez_corinthian_base.png
Normal file
BIN
textures/jonez_corinthian_base.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
BIN
textures/jonez_corinthian_capital.png
Normal file
BIN
textures/jonez_corinthian_capital.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
BIN
textures/jonez_corinthian_shaft.png
Normal file
BIN
textures/jonez_corinthian_shaft.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
BIN
textures/jonez_corinthian_top_bottom.png
Normal file
BIN
textures/jonez_corinthian_top_bottom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in New Issue
Block a user