init.
This commit is contained in:
commit
f9f97ba3d5
4 changed files with 26 additions and 0 deletions
11
mcl_vegan_recipes/fabric.lua
Normal file
11
mcl_vegan_recipes/fabric.lua
Normal file
|
@ -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 },
|
||||
},
|
||||
})
|
7
mcl_vegan_recipes/init.lua
Normal file
7
mcl_vegan_recipes/init.lua
Normal file
|
@ -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")
|
4
mcl_vegan_recipes/mod.conf
Normal file
4
mcl_vegan_recipes/mod.conf
Normal file
|
@ -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
|
4
modpack.conf
Normal file
4
modpack.conf
Normal file
|
@ -0,0 +1,4 @@
|
|||
author = trans_soup
|
||||
name = mcl_vegan
|
||||
description = play mineclone2 without simulated specieist violence!
|
||||
title = vegan mineclone2
|
Loading…
Reference in a new issue