mirror of
https://github.com/tacigar/maidroid.git
synced 2025-01-10 16:20:19 +01:00
Add crafting of empty egg
This commit is contained in:
parent
7d7bd1259e
commit
2af9cf2aa2
13
maidroid/crafting.lua
Normal file
13
maidroid/crafting.lua
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
------------------------------------------------------------
|
||||||
|
-- Copyright (c) 2016 tacigar. All rights reserved.
|
||||||
|
-- https://github.com/tacigar/maidroid
|
||||||
|
------------------------------------------------------------
|
||||||
|
|
||||||
|
minetest.register_craft{
|
||||||
|
output = "maidroid:empty_egg",
|
||||||
|
recipe = {
|
||||||
|
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
|
||||||
|
{"default:bronze_ingot", "default:steel_ingot", "default:bronze_ingot"},
|
||||||
|
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
|
||||||
|
},
|
||||||
|
}
|
@ -10,3 +10,4 @@ maidroid.modpath = minetest.get_modpath(maidroid.modname)
|
|||||||
|
|
||||||
dofile(maidroid.modpath .. "/api.lua")
|
dofile(maidroid.modpath .. "/api.lua")
|
||||||
dofile(maidroid.modpath .. "/register.lua")
|
dofile(maidroid.modpath .. "/register.lua")
|
||||||
|
dofile(maidroid.modpath .. "/crafting.lua")
|
||||||
|
Loading…
Reference in New Issue
Block a user