diff --git a/mods/ctf/ctf_crafting/init.lua b/mods/ctf/ctf_crafting/init.lua index 9dc605b..a819871 100644 --- a/mods/ctf/ctf_crafting/init.lua +++ b/mods/ctf/ctf_crafting/init.lua @@ -52,15 +52,6 @@ for ore, ore_item in pairs(full_ores) do }) end --- Bronze ingot <== Steel + Coal + wood -crafting.register_recipe({ - type = "inv", - output = "default:bronze_ingot", - items = { "default:steel_ingot", "default:coal_lump", "group:wood"}, - always_known = true, - level = 1, -}) - -- Mese crystal x9 <== Mese block crafting.register_recipe({ type = "inv", @@ -110,7 +101,7 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", output = "default:stick 4", - items = { "default:wood" }, + items = { "group:wood" }, always_known = true, level = 1, }) @@ -142,20 +133,11 @@ crafting.register_recipe({ level = 1, }) --- Arrow x5 -crafting.register_recipe({ - type = "inv", - output = "shooter:arrow_white 5", - items = { "default:stick 5", "default:cobble" }, - always_known = true, - level = 1, -}) - -- 7.62mm sniper rifle (unloaded) crafting.register_recipe({ type = "inv", output = "sniper_rifles:rifle_762", - items = { "default:steel_ingot 10", "default:mese_crystal", "default:wood 2" }, + items = { "default:steel_ingot 10", "default:mese_crystal", "group:wood 2" }, always_known = false, level = 1 }) @@ -164,7 +146,7 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", output = "sniper_rifles:rifle_magnum", - items = { "default:steel_ingot 5", "default:bronze_ingot 5", "default:diamond", "default:wood 3" }, + items = { "default:steel_ingot 10", "default:coal_lump 5", "default:diamond", "group:wood 2" }, always_known = false, level = 1, }) @@ -198,7 +180,7 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", - output = "ctf_traps:dirt 1", + output = "ctf_traps:dirt 5", items = { "default:dirt 5", "default:coal_lump" }, always_known = true, level = 1, @@ -206,7 +188,7 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", - output = "ctf_traps:cobble 1", + output = "ctf_traps:cobble 4", items = { "default:cobble 4", "default:coal_lump" }, always_known = true, level = 1, @@ -267,7 +249,7 @@ end crafting.register_recipe({ type = "inv", output = "grenades:frag 1", - items = { "default:steel_ingot 5", "default:iron_lump" }, + items = { "default:steel_ingot 5", "default:iron_lump", "group:wood", "default:coal_lump",}, always_known = true, level = 1, }) @@ -283,7 +265,7 @@ crafting.register_recipe({ crafting.register_recipe({ type = "inv", output = "grenades:smoke 1", - items = { "default:steel_ingot 5", "default:coal_lump 4" }, + items = { "default:steel_ingot 5", "default:coal_lump 5", "group:wood" }, always_known = true, level = 1, })