forked from mrkubax10/industrialtest
Add few more crafts involving UU-Matter
This commit is contained in:
parent
4d544099b1
commit
7391ad34f3
@ -450,6 +450,7 @@ if industrialtest.mclAvailable then
|
||||
industrialtest.elementKeys.stick="mcl_core:stick"
|
||||
industrialtest.elementKeys.flint="mcl_core:flint"
|
||||
industrialtest.elementKeys.snowball="mcl_throwing:snowball"
|
||||
industrialtest.elementKeys.snowBlock="mcl_core:snowblock"
|
||||
industrialtest.elementKeys.string="mcl_mobitems:string"
|
||||
industrialtest.elementKeys.junglePlanks="mcl_core:junglewood"
|
||||
industrialtest.elementKeys.wood="mcl_core:tree"
|
||||
@ -690,6 +691,7 @@ elseif industrialtest.mtgAvailable then
|
||||
industrialtest.elementKeys.stick="default:stick"
|
||||
industrialtest.elementKeys.flint="default:flint"
|
||||
industrialtest.elementKeys.snowball="default:snow"
|
||||
industrialtest.elementKeys.snowBlock="default:snowblock"
|
||||
industrialtest.elementKeys.blueDye="dye:blue"
|
||||
industrialtest.elementKeys.yellowDust="dye:yellow"
|
||||
industrialtest.elementKeys.bucket="bucket:bucket_empty"
|
||||
|
@ -15,14 +15,38 @@
|
||||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
minetest.register_craft({
|
||||
type="shapeless",
|
||||
output=industrialtest.elementKeys.stone.." 16",
|
||||
recipe={"industrialtest:uu_matter"}
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.wood.." 48",
|
||||
recipe={
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"","",""},
|
||||
{"","",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.grassBlock.." 16",
|
||||
output=industrialtest.elementKeys.stone.." 48",
|
||||
recipe={
|
||||
{"","",""},
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"","",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.snowBlock.." 48",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"","",""},
|
||||
{"","",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.grassBlock.." 48",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter"}
|
||||
@ -31,11 +55,10 @@ minetest.register_craft({
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.wood.." 16",
|
||||
output=industrialtest.elementKeys.obsidian.." 16",
|
||||
recipe={
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"","",""},
|
||||
{"industrialtest:uu_matter","",""}
|
||||
{"industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
@ -58,7 +81,57 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.cactus.." 48",
|
||||
recipe={
|
||||
{"","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.flint.." 32",
|
||||
recipe={
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter",""},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.whiteWool.." 12",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"","",""},
|
||||
{"","industrialtest:uu_matter",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.sugarCane.." 48",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
if industrialtest.mclAvailable then
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="mcl_core:vine 24"
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","",""},
|
||||
{"industrialtest:uu_matter","",""},
|
||||
{"industrialtest:uu_matter","",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="mcl_core:stonebrickcarved 48",
|
||||
|
Loading…
x
Reference in New Issue
Block a user