mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 06:03:47 +03:00
125 lines
4.2 KiB
Lua
125 lines
4.2 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
local RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_clothing_gasmask"
|
|
RECIPE.name = "Gas mask"
|
|
RECIPE.description = "Provides adequate protection against harmful fumes, gases, and some foul odours."
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_gasmask.mdl"
|
|
RECIPE.category = "Gas mask"
|
|
RECIPE.station = "tool_craftingbench"
|
|
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_iron"] = 1, ["comp_plastic"] = 2, ["comp_adhesive"] = 1}
|
|
RECIPE.result = {["head_gasmask"] = 1}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 20
|
|
RECIPE.experience = {
|
|
{level = 20, exp = 250}, -- full xp
|
|
{level = 30, exp = 125}, -- half xp
|
|
{level = 35, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
local RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_clothing_gasmask2"
|
|
RECIPE.name = "M40 Gas Mask"
|
|
RECIPE.description = "Provides adequate protection against harmful fumes, gases, and some foul odours."
|
|
RECIPE.model = "models/willardnetworks/clothingitems/m40_item.mdl"
|
|
RECIPE.category = "Gas mask"
|
|
RECIPE.station = "tool_craftingbench"
|
|
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_iron"] = 1, ["comp_plastic"] = 2, ["comp_adhesive"] = 1}
|
|
RECIPE.result = {["head_gasmask2"] = 1}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 20
|
|
RECIPE.experience = {
|
|
{level = 20, exp = 250}, -- full xp
|
|
{level = 30, exp = 125}, -- half xp
|
|
{level = 35, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_craft_charcoal_refill"
|
|
RECIPE.name = "Charcoal Filter Refill"
|
|
RECIPE.description = "Wrap the charcoal into a ready-to-use filter cartridge."
|
|
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
|
RECIPE.category = "Gas mask"
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.tool = "tool_scissors"
|
|
RECIPE.ingredients = {["comp_charcoal"] = 1, ["comp_stitched_cloth"] = 1, ["comp_chemicals"] = 1}
|
|
RECIPE.result = {["comp_charcoal_refill"] = 1}
|
|
RECIPE.level = 20
|
|
RECIPE.experience = {
|
|
{level = 20, exp = 40}, -- full XP
|
|
{level = 30, exp = 20}, -- half XP
|
|
{level = 35, exp = 0} -- 0 XP
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_craft_makeshift_filter"
|
|
RECIPE.name = "Makeshift filter"
|
|
RECIPE.description = "A homemade gasmask filter, which you can open up to refill it."
|
|
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
|
RECIPE.category = "Gas mask"
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.station = "tool_craftingbench"
|
|
RECIPE.ingredients = {["comp_charcoal_refill"] = 1, ["comp_iron"] = 2, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 1}
|
|
RECIPE.result = {["makeshift_filter"] = 1}
|
|
RECIPE.level = 20
|
|
RECIPE.experience = {
|
|
{level = 20, exp = 250}, -- full XP
|
|
{level = 30, exp = 125}, -- half XP
|
|
{level = 35, exp = 0} -- 0 XP
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "break_makeshift_filter"
|
|
RECIPE.name = "Breakdown Makeshift Filter"
|
|
RECIPE.description = "Breakdown this filter down into basic components."
|
|
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
|
RECIPE.category = "Breakdown"
|
|
RECIPE.subcategory = "Gas mask"
|
|
RECIPE.tool = "tool_toolkit"
|
|
RECIPE.ingredients = {["makeshift_filter"] = 1}
|
|
RECIPE.result = {["comp_cloth"] = 1, ["comp_scrap"] = 1}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 0
|
|
RECIPE.experience = {
|
|
{level = 0, exp = 40}, -- full xp
|
|
{level = 10, exp = 20}, -- half xp
|
|
{level = 25, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "break_highquality_filter"
|
|
RECIPE.name = "Breakdown High Quality Filter"
|
|
RECIPE.description = "Breakdown this filter down into basic components."
|
|
RECIPE.model = "models/willardnetworks/props/blackfilter.mdl"
|
|
RECIPE.category = "Breakdown"
|
|
RECIPE.subcategory = "Gas mask"
|
|
RECIPE.tool = "tool_toolkit"
|
|
RECIPE.ingredients = {["highquality_filter"] = 1}
|
|
RECIPE.result = {["comp_cloth"] = 1, ["comp_scrap"] = 1}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 0
|
|
RECIPE.experience = {
|
|
{level = 0, exp = 40}, -- full xp
|
|
{level = 10, exp = 20}, -- half xp
|
|
{level = 25, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register() |