initial mcl_more_recipes commit

This commit is contained in:
SmokeyDope 2023-09-05 15:23:08 +00:00
parent a129785606
commit 6a117145f4
2 changed files with 27 additions and 0 deletions

21
mcl_more_recipes/init.lua Normal file
View File

@ -0,0 +1,21 @@
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"},
}
})

View File

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