mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-10-22 11:35:23 +02:00
feat: Add 3x3 and 5x5 frameless clocks
This commit is contained in:
@@ -56,6 +56,24 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:3x3_clock_black',
|
||||
recipe = {
|
||||
{mat.steel_ingot, mat.dye_black, mat.steel_ingot},
|
||||
{'', 'ontime_clocks:frameless_black', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:5x5_clock_black',
|
||||
recipe = {
|
||||
{mat.steel_ingot, mat.dye_black, mat.steel_ingot},
|
||||
{'', 'ontime_clocks:3x3_clock_black', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:frameless_gold',
|
||||
recipe = {
|
||||
@@ -65,6 +83,24 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:3x3_clock_gold',
|
||||
recipe = {
|
||||
{mat.gold_ingot, '', mat.gold_ingot},
|
||||
{'', 'ontime_clocks:frameless_gold', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:5x5_clock_gold',
|
||||
recipe = {
|
||||
{mat.gold_ingot, '', mat.gold_ingot},
|
||||
{'', 'ontime_clocks:3x3_clock_gold', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:frameless_white',
|
||||
recipe = {
|
||||
@@ -74,4 +110,21 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:3x3_clock_white',
|
||||
recipe = {
|
||||
{mat.steel_ingot, mat.dye_white, mat.steel_ingot},
|
||||
{'', 'ontime_clocks:frameless_white', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'ontime_clocks:5x5_clock_white',
|
||||
recipe = {
|
||||
{mat.steel_ingot, mat.dye_white, mat.steel_ingot},
|
||||
{'', 'ontime_clocks:3x3_clock_white', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user