diff --git a/mcl_more_recipes/init.lua b/mcl_more_recipes/init.lua new file mode 100644 index 0000000..5491669 --- /dev/null +++ b/mcl_more_recipes/init.lua @@ -0,0 +1,26 @@ +local modname = minetest.get_current_modname() +local modpath = minetest.get_modpath(modname) +local S = minetest.get_translator(modname) + +minetest.register_craft({ + output = "mcl_chests:chest 4", + recipe = { + {"group:tree", "group:tree", "group:tree"}, + {"group:tree", "", "group:tree"}, + {"group:tree", "group:tree", "group:tree"}, + } +}) + +minetest.register_craft({ + output = "mcl_core:stick 16", + recipe = { + {"group:tree"}, + {"group:tree"}, + } +}) + +minetest.register_craft({ + type = "shapeless", + output = "mcl_core:flint", + recipe = { "mcl_core:gravel", "mcl_core:gravel", "mcl_core:gravel", }, +}) \ No newline at end of file diff --git a/mcl_more_recipes/mod.conf b/mcl_more_recipes/mod.conf new file mode 100644 index 0000000..56302da --- /dev/null +++ b/mcl_more_recipes/mod.conf @@ -0,0 +1,6 @@ +name = mcl_more_recipes +depends = mcl_core, +description = Adds extra recipes for items in Mineclone2 +release = 0.1 +author = SmokeyDope +title = MineClone2 More Recipes