Startcommit.

master
acmgit 2017-03-31 21:09:16 +02:00
parent 0cff1684d7
commit 76f1975d28
3 changed files with 39 additions and 0 deletions

1
License.txt Normal file
View File

@ -0,0 +1 @@
WTFPL

8
init.lua Normal file
View File

@ -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

30
recipes.lua Normal file
View File

@ -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