mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 14:13:46 +03:00
335 lines
12 KiB
Lua
335 lines
12 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_legs_padded_blue"
|
|||
|
|
RECIPE.name = "Mavi Yastıklı Pantolon"
|
|||
|
|
RECIPE.description = "A pair of padded blue pants, often worn by resistance figures."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel2.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_toolkit"
|
|||
|
|
RECIPE.ingredients = {["legs_blue_pants"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
|||
|
|
RECIPE.result = {["legs_blue_padded_pants"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 10
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 10, exp = 140}, -- full xp
|
|||
|
|
{level = 20, exp = 70}, -- half xp
|
|||
|
|
{level = 25, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_legs_padded_black"
|
|||
|
|
RECIPE.name = "Siyah Yastıklı Pantolon"
|
|||
|
|
RECIPE.description = "Genellikle direniş figürleri tarafından giyilen bir çift yastıklı siyah pantolon."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel3.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_toolkit"
|
|||
|
|
RECIPE.ingredients = {["legs_civilian_black"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
|||
|
|
RECIPE.result = {["legs_black_padded_pants"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 10
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 10, exp = 140}, -- full xp
|
|||
|
|
{level = 20, exp = 70}, -- half xp
|
|||
|
|
{level = 25, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_legs_padded_green"
|
|||
|
|
RECIPE.name = "Yeşil Yastıklı Pantolon"
|
|||
|
|
RECIPE.description = "Genellikle direniş figürleri tarafından giyilen bir çift dolgulu yeşil pantolon."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel1.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_toolkit"
|
|||
|
|
RECIPE.ingredients = {["legs_civilian_green"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
|||
|
|
RECIPE.result = {["legs_green_padded_pants"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 10
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 10, exp = 140}, -- full xp
|
|||
|
|
{level = 20, exp = 70}, -- half xp
|
|||
|
|
{level = 25, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_torso_uniform_green"
|
|||
|
|
RECIPE.name = "Yeşil Direniş Üniforması"
|
|||
|
|
RECIPE.description = "Kayışları olan yeşil bir üst. Ayrıca rütbe işaretleri için mükemmel bir kol plakası vardır. Az miktarda zırh sağlar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel02.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.station = "tool_craftingbench"
|
|||
|
|
RECIPE.ingredients = {["denim_green"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_iron"] = 1}
|
|||
|
|
RECIPE.result = {["torso_green_rebel_uniform"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 15
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 15, exp = 120}, -- full xp
|
|||
|
|
{level = 25, exp = 60}, -- half xp
|
|||
|
|
{level = 35, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_torso_uniform_blue"
|
|||
|
|
RECIPE.name = "Mavi Direniş Üniforması"
|
|||
|
|
RECIPE.description = "Kayışları olan mavi bir üst. Ayrıca nişanlar için mükemmel bir kol plakası vardır. Az miktarda zırh sağlar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel01.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.station = "tool_craftingbench"
|
|||
|
|
RECIPE.ingredients = {["denim_blue"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_iron"] = 1}
|
|||
|
|
RECIPE.result = {["torso_blue_rebel_uniform"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 15
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 15, exp = 120}, -- full xp
|
|||
|
|
{level = 25, exp = 60}, -- half xp
|
|||
|
|
{level = 35, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_torso_uniform_medic"
|
|||
|
|
RECIPE.name = "Tıbbi Direniş Üniforması"
|
|||
|
|
RECIPE.description = "Kayışları olan tıbbi bir üstlük. Ayrıca rütbe işaretleri için mükemmel bir kol plakası vardır. Az miktarda zırh sağlar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebelmedic.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.station = "tool_craftingbench"
|
|||
|
|
RECIPE.ingredients = {["torso_medic_shirt"] = 1, ["comp_adhesive"] = 2, ["comp_iron"] = 1}
|
|||
|
|
RECIPE.result = {["torso_medical_rebel_uniform"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 15
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 15, exp = 120}, -- full xp
|
|||
|
|
{level = 25, exp = 60}, -- half xp
|
|||
|
|
{level = 35, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
local RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_helmet"
|
|||
|
|
RECIPE.name = "Kask"
|
|||
|
|
RECIPE.description = "Metal bir kask. Başınızı düşen nesnelerden ve şarapnel parçalarından korur."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.station = "tool_craftingbench"
|
|||
|
|
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
|||
|
|
RECIPE.result = {["head_helmet"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 15
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 15, exp = 100}, -- full xp
|
|||
|
|
{level = 25, exp = 50}, -- half xp
|
|||
|
|
{level = 35, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
local RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_medichelmet"
|
|||
|
|
RECIPE.name = "Sıhhiye Kaskı"
|
|||
|
|
RECIPE.description = "Metal bir sıhhiye kaskı. Başınızı düşen nesnelerden ve şarapnel parçalarından korur."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet_med.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.station = "tool_craftingbench"
|
|||
|
|
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
|||
|
|
RECIPE.result = {["helmet_medic"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 15
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 15, exp = 100}, -- full xp
|
|||
|
|
{level = 25, exp = 50}, -- half xp
|
|||
|
|
{level = 35, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_beanie_blue"
|
|||
|
|
RECIPE.name = "Mavi Bere"
|
|||
|
|
RECIPE.description = "Mavi bir bere. Soğukta başınızı sıcak tutar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["head_blue_beanie"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 100}, -- full XP
|
|||
|
|
{level = 10, exp = 50}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_beanie_green"
|
|||
|
|
RECIPE.name = "Yeşil Bere"
|
|||
|
|
RECIPE.description = "Yeşil bir bere. Soğukta başınızı sıcak tutar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["head_green_beanie"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 100}, -- full XP
|
|||
|
|
{level = 10, exp = 50}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_beanie_red"
|
|||
|
|
RECIPE.name = "Kırmızı Bere"
|
|||
|
|
RECIPE.description = "Kırmızı bir bere. Soğukta başınızı sıcak tutar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["beanie_red"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 100}, -- full XP
|
|||
|
|
{level = 10, exp = 50}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_beanie_brown"
|
|||
|
|
RECIPE.name = "Kahverengi Bere"
|
|||
|
|
RECIPE.description = "Kahverengi bir bere. Soğukta başınızı sıcak tutar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["beanie_brown"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 100}, -- full XP
|
|||
|
|
{level = 10, exp = 50}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_beanie_grey"
|
|||
|
|
RECIPE.name = "Gri Bere"
|
|||
|
|
RECIPE.description = "Gri bir bere. Soğukta başınızı sıcak tutar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["beanie_grey"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 100}, -- full XP
|
|||
|
|
{level = 10, exp = 50}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_head_beanie_bandana"
|
|||
|
|
RECIPE.name = "Bandana"
|
|||
|
|
RECIPE.description = "Başın alt yarısını saran kırmızı bir bandana. Sporlara karşı hafif bir koruma sağlar."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/head_facewrap.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["face_bandana"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 100}, -- full XP
|
|||
|
|
{level = 10, exp = 50}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_hands_tipless"
|
|||
|
|
RECIPE.name = "Parmaksız Eldivenler"
|
|||
|
|
RECIPE.description = "Parmak uçları olmayan bir çift siyah eldiven. Parmaklarınızı serbest bırakır."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove_fingerless.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["hands_gloves"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.result = {["hands_tipless_gloves"] = 1}
|
|||
|
|
RECIPE.level = 0
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 0, exp = 60}, -- full XP
|
|||
|
|
{level = 10, exp = 30}, -- half XP
|
|||
|
|
{level = 20, exp = 0} -- 0 XP
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_torso_trenchcoat"
|
|||
|
|
RECIPE.name = "Kahverengi Trençkot (Zırhsız)"
|
|||
|
|
RECIPE.description = "A brown, worn trench coat. Keeps the rain off, somewhat..."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.station = "tool_craftingbench"
|
|||
|
|
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_fabric"] = 2, ["comp_adhesive"] = 1, ["comp_iron"] = 2}
|
|||
|
|
RECIPE.result = {["overcoat_trench"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 20
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 20, exp = 150}, -- full xp
|
|||
|
|
{level = 30, exp = 100}, -- half xp
|
|||
|
|
{level = 45, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|
|||
|
|
RECIPE = ix.recipe:New()
|
|||
|
|
RECIPE.uniqueID = "rec_torso_medic"
|
|||
|
|
RECIPE.name = "Sıhhiye Kıyafeti"
|
|||
|
|
RECIPE.description = "Kırmızı bir haç bandı dikilmiş beyaz düğmeli bir üst."
|
|||
|
|
RECIPE.model = "models/willardnetworks/clothingitems/torso_citizen_medic.mdl"
|
|||
|
|
RECIPE.category = "Direniş Kıyafetleri"
|
|||
|
|
RECIPE.tool = "tool_scissors"
|
|||
|
|
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
|||
|
|
RECIPE.result = {["torso_medic_shirt"] = 1}
|
|||
|
|
RECIPE.hidden = false
|
|||
|
|
RECIPE.skill = "crafting"
|
|||
|
|
RECIPE.level = 5
|
|||
|
|
RECIPE.experience = {
|
|||
|
|
{level = 5, exp = 80}, -- full xp
|
|||
|
|
{level = 10, exp = 40}, -- half xp
|
|||
|
|
{level = 15, exp = 0} -- no xp
|
|||
|
|
}
|
|||
|
|
RECIPE:Register()
|
|||
|
|
|