2016-09-15 10:47:09 +09: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 23:03:36 +09:00
|
|
|
|
|
|
|
minetest.register_craft{
|
|
|
|
output = "maidroid_tool:egg_writer",
|
|
|
|
recipe = {
|
2016-12-17 23:20:31 +09:00
|
|
|
{ "default:diamond", "bucket:bucket_water", "default:diamond"},
|
2016-12-16 23:03:36 +09:00
|
|
|
{ "default:cobble", "default:steel_ingot", "default:cobble"},
|
|
|
|
{"default:steel_ingot", "default:cobble", "default:steel_ingot"},
|
|
|
|
},
|
|
|
|
}
|