mirror of
https://github.com/tacigar/maidroid.git
synced 2024-11-16 23:30:21 +01:00
Merge pull request #65 from tacigar/tacigar/add_empty_egg_crafting
Add crafting of empty egg Close #64
This commit is contained in:
commit
9b59249373
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