This commit is contained in:
BuckarooBanzay 2020-05-04 08:13:43 +02:00
commit c98d352944
5 changed files with 20 additions and 5 deletions

View File

@ -19,7 +19,10 @@ minetest.register_craft({
minetest.register_craft({ minetest.register_craft({
output = 'technic:copper_locked_chest 1', output = 'technic:copper_locked_chest 1',
type = "shapeless", type = "shapeless",
recipe = {'basic_materials:padlock', 'technic:copper_chest'} recipe = {
'basic_materials:padlock',
'technic:copper_chest',
}
}) })
technic.chests:register("Copper", { technic.chests:register("Copper", {

View File

@ -30,7 +30,10 @@ end
minetest.register_craft({ minetest.register_craft({
output = 'technic:gold_locked_chest', output = 'technic:gold_locked_chest',
type = "shapeless", type = "shapeless",
recipe = {'basic_materials:padlock', 'technic:gold_chest'} recipe = {
'basic_materials:padlock',
'technic:gold_chest',
}
}) })
technic.chests:register("Gold", { technic.chests:register("Gold", {

View File

@ -26,7 +26,10 @@ minetest.register_craft({
minetest.register_craft({ minetest.register_craft({
output = 'technic:iron_locked_chest 1', output = 'technic:iron_locked_chest 1',
type = "shapeless", type = "shapeless",
recipe = {'basic_materials:padlock', 'technic:iron_chest'} recipe = {
'basic_materials:padlock',
'technic:iron_chest',
}
}) })
technic.chests:register("Iron", { technic.chests:register("Iron", {

View File

@ -21,7 +21,10 @@ end
minetest.register_craft({ minetest.register_craft({
output = 'technic:mithril_locked_chest 1', output = 'technic:mithril_locked_chest 1',
type = "shapeless", type = "shapeless",
recipe = {'basic_materials:padlock', 'technic:mithril_chest'} recipe = {
'basic_materials:padlock',
'technic:mithril_chest',
}
}) })
-- plain chest -- plain chest

View File

@ -21,7 +21,10 @@ end
minetest.register_craft({ minetest.register_craft({
output = 'technic:silver_locked_chest', output = 'technic:silver_locked_chest',
type = "shapeless", type = "shapeless",
recipe = {'basic_materials:padlock', 'technic:silver_chest'} recipe = {
'basic_materials:padlock',
'technic:silver_chest',
}
}) })
technic.chests:register("Silver", { technic.chests:register("Silver", {