Added protector mod support

This commit is contained in:
Sires
2020-04-05 16:22:25 -03:00
parent f3828c1943
commit c2bbdc7745
9 changed files with 239 additions and 11 deletions

View File

@ -17,11 +17,11 @@ minetest.register_craft({
})
minetest.register_craft({
output = 'technic:copper_locked_chest 1',
recipe = {
{'basic_materials:padlock'},
{'technic:copper_chest'},
}
output = 'technic:copper_locked_chest 1',
recipe = {
{'basic_materials:padlock'},
{'technic:copper_chest'},
}
})
technic.chests:register("Copper", {
@ -32,6 +32,7 @@ technic.chests:register("Copper", {
infotext = false,
color = false,
locked = false,
protected = false,
})
technic.chests:register("Copper", {
@ -42,5 +43,35 @@ technic.chests:register("Copper", {
infotext = false,
color = false,
locked = true,
protected = false,
})
if minetest.get_modpath("protector") then
minetest.register_craft({
output = 'technic:copper_protected_chest 1',
recipe = {
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
{'default:copper_ingot','technic:iron_protected_chest','default:copper_ingot'},
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
}
})
minetest.register_craft({
output = 'technic:copper_protected_chest 1',
recipe = {
{'default:copper_ingot'},
{'technic:copper_chest'},
}
})
technic.chests:register("Copper", {
width = 12,
height = 5,
sort = true,
autosort = true,
infotext = false,
color = false,
locked = false,
protected = true,
})
end