Misc crafting changes (#773)
* Crafting Changes * Smoke Grenade Crafting Change * using group:wood instead of default:wood * Adding Diamonds Craftable * Update init.lua * Changing value of the "ctf_traps:dirt" to 5 to craft at a time Co-authored-by: Toby1710 <69259430+Toby1710@users.noreply.github.com> * Equality between ctf_traps:dirt n ctf_traps:cobble Co-authored-by: Toby1710 <69259430+Toby1710@users.noreply.github.com>
This commit is contained in:
parent
87d9057278
commit
02fa088b24
1 changed files with 7 additions and 25 deletions
|
@ -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,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue