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

@ -39,6 +39,7 @@ technic.chests:register("Iron", {
infotext = false,
color = false,
locked = false,
protected = false,
})
technic.chests:register("Iron", {
@ -49,5 +50,35 @@ technic.chests:register("Iron", {
infotext = false,
color = false,
locked = true,
protected = false,
})
if minetest.get_modpath("protector") then
minetest.register_craft({
output = 'technic:iron_protected_chest 1',
recipe = {
{cast_iron_ingot,cast_iron_ingot,cast_iron_ingot},
{cast_iron_ingot,'protector:chest',cast_iron_ingot},
{cast_iron_ingot,cast_iron_ingot,cast_iron_ingot},
}
})
minetest.register_craft({
output = 'technic:iron_protected_chest 1',
recipe = {
{'default:copper_ingot'},
{'technic:iron_chest'},
}
})
technic.chests:register("Iron", {
width = 9,
height = 5,
sort = true,
autosort = false,
infotext = false,
color = false,
locked = false,
protected = true,
})
end