Add some missing recipes with UU-Matter
This commit is contained in:
@@ -121,7 +121,87 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
if industrialtest.mclAvailable then
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output=industrialtest.elementKeys.coal,
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","",""},
|
||||||
|
{"","","industrialtest:uu_matter"},
|
||||||
|
{"industrialtest:uu_matter","",""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output=industrialtest.elementKeys.stoneWithIron,
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||||
|
{"","industrialtest:uu_matter",""},
|
||||||
|
{"industrialtest:uu_matter","","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output=industrialtest.elementKeys.diamond,
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output=industrialtest.elementKeys.stickyResin.." 32",
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||||
|
{"","",""},
|
||||||
|
{"industrialtest:uu_matter","","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output="industrialtest:tin_dust 4",
|
||||||
|
recipe={
|
||||||
|
{"","",""},
|
||||||
|
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||||
|
{"","","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output="industrialtest:copper_dust 4",
|
||||||
|
recipe={
|
||||||
|
{"","","industrialtest:uu_matter"},
|
||||||
|
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||||
|
{"","",""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
if industrialtest.mtgAvailable then
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output="industrialtest:iridium_lump",
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||||
|
{"","industrialtest:uu_matter",""},
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
elseif industrialtest.mclAvailable then
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output="industrialtest:raw_iridium",
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||||
|
{"","industrialtest:uu_matter",""},
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type="shaped",
|
type="shaped",
|
||||||
output="mcl_core:vine 24",
|
output="mcl_core:vine 24",
|
||||||
@@ -141,4 +221,34 @@ if industrialtest.mclAvailable then
|
|||||||
{"industrialtest:uu_matter",""}
|
{"industrialtest:uu_matter",""}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output=industrialtest.elementKeys.powerCarrier.." 10",
|
||||||
|
recipe={
|
||||||
|
{"","",""},
|
||||||
|
{"","industrialtest:uu_matter",""},
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output=industrialtest.elementKeys.blueDye,
|
||||||
|
recipe={
|
||||||
|
{"","industrialtest:uu_matter",""},
|
||||||
|
{"","industrialtest:uu_matter",""},
|
||||||
|
{"","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type="shaped",
|
||||||
|
output="mcl_core:emerald 8",
|
||||||
|
recipe={
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||||
|
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||||
|
{"","industrialtest:uu_matter",""}
|
||||||
|
}
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user