mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
376 lines
15 KiB
Lua
376 lines
15 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/
|
||
--]]
|
||
|
||
-- Worn Trousers
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_worn_black"
|
||
RECIPE.name = "Yıpranmış Siyah Pantolon"
|
||
RECIPE.description = "Bir çift siyah yıpranmış pantolon. Uzun ömürlü olmak için yaratıldı, ama iyi hissettirmiyorlar."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Eski Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 20
|
||
RECIPE.result = {["legs_worn_black"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_worn_blue"
|
||
RECIPE.name = "Yıpranmış Mavi Pantolon"
|
||
RECIPE.description = "Bir çift mavi yıpranmış pantolon. Uzun ömürlü olmak için yaratıldı, ama iyi hissettirmiyorlar."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Eski Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 20
|
||
RECIPE.result = {["legs_worn_blue"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_worn_green"
|
||
RECIPE.name = "Yıpranmış Yeşil Pantolon"
|
||
RECIPE.description = "Bir çift yeşil yıpranmış pantolon. Uzun ömürlü olmak için yaratıldı, ama iyi hissettirmiyorlar."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Eski Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 20
|
||
RECIPE.result = {["legs_worn_green"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_worn_grey"
|
||
RECIPE.name = "Yıpranmış Gri Pantolon"
|
||
RECIPE.description = "Bir çift gri yıpranmış pantolon. Uzun ömürlü olmak için yaratıldı, ama iyi hissettirmiyorlar."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Eski Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 20
|
||
RECIPE.result = {["legs_worn_grey"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_worn_red"
|
||
RECIPE.name = "Yıpranmış Kırmızı Pantolon"
|
||
RECIPE.description = "Bir çift kırmızı yıpranmış pantolon. Uzun ömürlü olmak için yaratıldı, ama iyi hissettirmiyorlar."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Eski Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 20
|
||
RECIPE.result = {["legs_worn_red"] = 1}
|
||
RECIPE:Register()
|
||
|
||
-- Jumpsuit Trousers
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit_black"
|
||
RECIPE.name = "Siyah Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit_black"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit_blue"
|
||
RECIPE.name = "Mavi Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit_blue"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit_brown"
|
||
RECIPE.name = "Kahverengi Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit_brown"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit_green"
|
||
RECIPE.name = "Yeşil Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit_green"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit_grey"
|
||
RECIPE.name = "Gri Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit_grey"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit_red"
|
||
RECIPE.name = "Kırmızı Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit_red"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_jumpsuit"
|
||
RECIPE.name = "Sivil Tulum Pantolon"
|
||
RECIPE.description = "Vatandaş tulumu, rejimin standartlaştırılmış kıyafetleri, kasvetli görünümüne uyan pantolonlar olarak kabul edilir."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Tulum Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 25
|
||
RECIPE.result = {["legs_jumpsuit"] = 1}
|
||
RECIPE:Register()
|
||
|
||
-- Civilian Trousers
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_beige"
|
||
RECIPE.name = "Bej Pantolon"
|
||
RECIPE.description = "Bir çift bej pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_beige"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_black"
|
||
RECIPE.name = "Siyah Pantolon"
|
||
RECIPE.description = "Bir çift siyah pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_black"] = 1} -- Old ID name, to let players keep item on update
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_blue"
|
||
RECIPE.name = "Mavi Pantolon"
|
||
RECIPE.description = "Bir çift mavi pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_blue_pants"] = 1} -- Old ID name, to let players keep item on update
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_brown"
|
||
RECIPE.name = "Kahverengi Pantolon"
|
||
RECIPE.description = "Bir çift kahverengi pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_brown"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_darkgreen"
|
||
RECIPE.name = "Koyu Yeşil Pantolon"
|
||
RECIPE.description = "Bir çift koyu yeşil pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_green_pants"] = 1} -- Old ID name, to let players keep item on update
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_darkgrey"
|
||
RECIPE.name = "Koyu Gri Pantolon"
|
||
RECIPE.description = "Bir çift koyu gri pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_grey_pants"] = 1} -- Old ID name, to let players keep item on update
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_darkred"
|
||
RECIPE.name = "Koyu Kırmızı Pantolon"
|
||
RECIPE.description = "Bir çift koyu kırmızı pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_darkred"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_green"
|
||
RECIPE.name = "Yeşil Pantolon"
|
||
RECIPE.description = "Bir çift yeşil pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_green"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_grey"
|
||
RECIPE.name = "Gri Pantolon"
|
||
RECIPE.description = "Bir çift gri pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_light_grey_pants"] = 1} -- Old ID name, to let players keep item on update
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_lightblue"
|
||
RECIPE.name = "Açık Mavi Pantolon"
|
||
RECIPE.description = "Bir çift açık mavi pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_lightblue"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_purple"
|
||
RECIPE.name = "Mor Pantolon"
|
||
RECIPE.description = "Bir çift mor pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_purple"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_red"
|
||
RECIPE.name = "Kırmızı Pantolon"
|
||
RECIPE.description = "Bir çift kırmızı pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_red"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_teal"
|
||
RECIPE.name = "Deniz Mavisi Pantolon"
|
||
RECIPE.description = "Bir çift deniz mavisi pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_teal"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_yellow"
|
||
RECIPE.name = "Sarı Pantolon"
|
||
RECIPE.description = "Bir çift sarı pantolon. Biraz yıpranmış ve kötü görünüyor.. Ama uzun ömürlü oldu."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_yellow"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_twin"
|
||
RECIPE.name = "İkiz Kahverengi Pantolon"
|
||
RECIPE.description = "Bir çift yeşilimsi kahverengi pantolon. Biraz yıpranmış ve kötü durumda... Ama uzun süre dayanacak şekilde üretildi."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_twin"] = 1}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "bartering_legs_civ_bloke"
|
||
RECIPE.name = "Bloke Pantolon"
|
||
RECIPE.description = "Belirli bir kişinin adını taşıyan bir çift siyah pantolon."
|
||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||
RECIPE.category = "Giyim"
|
||
RECIPE.subcategory = "Sivil Pantolonlar"
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "bartering"
|
||
RECIPE.cost = 30
|
||
RECIPE.result = {["legs_civilian_bloke"] = 1}
|
||
RECIPE:Register() |