2016-09-15 03:47:09 +02:00
|
|
|
------------------------------------------------------------
|
|
|
|
-- Copyright (c) 2016 tacigar. All rights reserved.
|
|
|
|
-- https://github.com/tacigar/maidroid
|
|
|
|
------------------------------------------------------------
|
|
|
|
|
|
|
|
minetest.register_craft{
|
|
|
|
output = "maidroid_tool:core_writer",
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "default:diamond", "default:steel_ingot"},
|
|
|
|
{ "default:cobble", "default:steel_ingot", "default:cobble"},
|
|
|
|
{ "default:cobble", "default:cobble", "default:cobble"},
|
|
|
|
},
|
|
|
|
}
|
2016-12-16 15:03:36 +01:00
|
|
|
|
|
|
|
minetest.register_craft{
|
|
|
|
output = "maidroid_tool:egg_writer",
|
|
|
|
recipe = {
|
2016-12-17 15:20:31 +01:00
|
|
|
{ "default:diamond", "bucket:bucket_water", "default:diamond"},
|
2016-12-16 15:03:36 +01:00
|
|
|
{ "default:cobble", "default:steel_ingot", "default:cobble"},
|
|
|
|
{"default:steel_ingot", "default:cobble", "default:steel_ingot"},
|
|
|
|
},
|
|
|
|
}
|
2016-12-21 08:54:52 +01:00
|
|
|
|
|
|
|
minetest.register_craft{
|
|
|
|
output = "maidroid_tool:nametag",
|
|
|
|
recipe = {
|
|
|
|
{ "", "farming:cotton", ""},
|
|
|
|
{ "default:paper", "default:paper", "default:paper"},
|
|
|
|
{"default:steel_ingot", "dye:black", "default:steel_ingot"},
|
|
|
|
},
|
|
|
|
}
|
2017-01-08 14:38:11 +01:00
|
|
|
|
|
|
|
minetest.register_craft{
|
|
|
|
output = "maidroid_tool:capture_rod",
|
|
|
|
recipe = {
|
|
|
|
{ "wool:white", "dye:pink", "default:mese_crystal"},
|
|
|
|
{ "", "default:steel_ingot", "dye:pink"},
|
|
|
|
{"default:steel_ingot", "", "wool:white"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|