commit f9f97ba3d55ba4b17e16f0dadeaf40088b1be2b8 Author: trans_soup <> Date: Sun Jul 16 18:48:57 2023 +0200 init. diff --git a/mcl_vegan_recipes/fabric.lua b/mcl_vegan_recipes/fabric.lua new file mode 100644 index 0000000..daad404 --- /dev/null +++ b/mcl_vegan_recipes/fabric.lua @@ -0,0 +1,11 @@ +local cane = "mcl_core:reeds" +local string = "mcl_mobitems:string" +-- local web = "mcl_core:cobweb" + +minetest.register_craft({ + output = string .. " 3", + recipe = { + { cane }, + { cane }, + }, +}) diff --git a/mcl_vegan_recipes/init.lua b/mcl_vegan_recipes/init.lua new file mode 100644 index 0000000..8ab9666 --- /dev/null +++ b/mcl_vegan_recipes/init.lua @@ -0,0 +1,7 @@ +local function include (filename) + local modname = minetest.get_current_modname() + local path = minetest.get_modpath(modname) + return dofile(path .. "/" .. filename .. ".lua") +end + +include("fabric") diff --git a/mcl_vegan_recipes/mod.conf b/mcl_vegan_recipes/mod.conf new file mode 100644 index 0000000..6fa6b3d --- /dev/null +++ b/mcl_vegan_recipes/mod.conf @@ -0,0 +1,4 @@ +name = mcl_vegan_recipes +description = adds vegan recipes to mineclone2, utilizing already existing items. +title = mineclone2 vegan recipes +depends = mcl_core, mcl_mobitems, mcl_wool diff --git a/modpack.conf b/modpack.conf new file mode 100644 index 0000000..d3097a6 --- /dev/null +++ b/modpack.conf @@ -0,0 +1,4 @@ +author = trans_soup +name = mcl_vegan +description = play mineclone2 without simulated specieist violence! +title = vegan mineclone2