From e9f3da31a6cd71b723cf4bee6a682de7146f12f7 Mon Sep 17 00:00:00 2001 From: ClobberXD Date: Fri, 3 Aug 2018 18:55:09 +0530 Subject: [PATCH] Change ladder recipe to use sticks instead of wood --- mods/ctf_crafting/init.lua | 44 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/mods/ctf_crafting/init.lua b/mods/ctf_crafting/init.lua index 748d012..781674f 100644 --- a/mods/ctf_crafting/init.lua +++ b/mods/ctf_crafting/init.lua @@ -107,7 +107,7 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", output = "default:torch 5", - items = { "default:stick", "default:coal_lump"}, + items = { "default:stick", "default:coal_lump" }, always_known = true, level = 1, }) @@ -115,7 +115,47 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", output = "default:ladder 5", - items = { "group:wood 7"}, + items = { "default:stick 7" }, + always_known = true, + level = 1, +}) + +crafting.register_recipe({ + type = "inv", + output = "default:stick 2", + items = { "default:ladder" }, + always_known = true, + level = 1, +}) + +crafting.register_recipe({ + type = "inv", + output = "default:wood 3", + items = { "default:pick_wood" }, + always_known = true, + level = 1, +}) + +crafting.register_recipe({ + type = "inv", + output = "default:wood 2", + items = { "default:sword_wood" }, + always_known = true, + level = 1, +}) + +crafting.register_recipe({ + type = "inv", + output = "default:wood 3", + items = { "default:axe_wood" }, + always_known = true, + level = 1, +}) + +crafting.register_recipe({ + type = "inv", + output = "default:wood 1", + items = { "default:shovel_wood" }, always_known = true, level = 1, })