diff --git a/License.txt b/License.txt new file mode 100644 index 0000000..c034e5c --- /dev/null +++ b/License.txt @@ -0,0 +1 @@ +WTFPL diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..34de7ba --- /dev/null +++ b/init.lua @@ -0,0 +1,8 @@ +dofile(minetest.get_modpath("adapter") .. "/recipes.lua") + +for i,n in ipairs(recipelist) do + + -- Register the Recipes + minetest.register_craft(n) + +end diff --git a/recipes.lua b/recipes.lua new file mode 100644 index 0000000..c400c7e --- /dev/null +++ b/recipes.lua @@ -0,0 +1,30 @@ +recipelist = + { + + { + type = "shapeless", + output = "farming:raspberries", + recipe = {"farming_plus:raspberry_item"} + }, + + { + type = "shapeless", + output = "farming_plus:raspberry_item", + recipe = {"farming:raspberries"} + }, + + { + type = "shapeless", + output = "bushes:blueberry", + recipe = {"food_sweet:blueberry"} + }, + + + { + type = "shapeless", + output = "food_sweet:blueberry", + recipe = {"bushes:blueberry"} + } + + + } -- recipelist