mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 06:03:47 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
for _, v in pairs(ix.item.list) do
|
||||
if v.category == "Clothing - Citizen" or v.category == "Clothing - Citizen Trousers" then
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_"..v.uniqueID
|
||||
RECIPE.name = "Parçala: "..v.name
|
||||
RECIPE.description = v.name.." kıyafetini birkaç kumaş parçası için parçala."
|
||||
RECIPE.model = v.model
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Kıyafetler"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {[v.uniqueID] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,841 @@
|
||||
--[[
|
||||
| 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_junk_tv"
|
||||
RECIPE.name = "Parçala: Kırık TV Monitörü"
|
||||
RECIPE.description = "Eski bir televizyonun kırık monitörü. Değersiz ama anılar öyle değil."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_monitor001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_tv"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1, ["comp_plastic"] = 2, ["comp_scrap"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 55}, -- full xp
|
||||
{level = 20, exp = 27}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_toy"
|
||||
RECIPE.name = "Parçala: Oyun Parkı Oyuncağı"
|
||||
RECIPE.description = "Bugünlerde bunları çok sık göremiyoruz. Tahtadan yapılmış."
|
||||
RECIPE.model = "models/props_c17/playgroundTick-tack-toe_block01a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_toy"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tire"
|
||||
RECIPE.name = "Parçala: Eski Lastik"
|
||||
RECIPE.description = "Size eski zamanları hatırlatıyor, arabaların bir şey olduğu zamanları."
|
||||
RECIPE.model = "models/props_vehicles/carparts_tire01a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["junk_tire"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 4}
|
||||
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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tincan"
|
||||
RECIPE.name = "Parçala: Teneke Kutu"
|
||||
RECIPE.description = "Sonunda içinde yiyecek olan küçük bir teneke kutu. Senin için işe yaramaz."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan002a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_tincan"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_takeaway"
|
||||
RECIPE.name = "Parçala: Boş Paket Servis"
|
||||
RECIPE.description = "Bir çöp yığınının içinde bulundu, muhtemelen bir zamanlar içinde erişte vardı."
|
||||
RECIPE.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_takeaway"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_sm_cardboard"
|
||||
RECIPE.name = "Parçala: Küçük Karton Kutu"
|
||||
RECIPE.description = "Tüketici ürünlerini taşımak için küçük bir karton kutu,Boş."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_sm_cardboard"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_shoe"
|
||||
RECIPE.name = "Parçala: Kahverengi Ayakkabı"
|
||||
RECIPE.description = "Kahverengi bir ayakkabı, muhtemelen daha önce birine aitti."
|
||||
RECIPE.model = "models/props_junk/Shoe001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_shoe"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_receiver"
|
||||
RECIPE.name = "Parçala: Kırık Alıcı"
|
||||
RECIPE.description = "Bozuk bir elektronik ekipman parçası. Artık çalışmıyor."
|
||||
RECIPE.model = "models/props_lab/reciever01c.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_receiver"] = 1}
|
||||
RECIPE.result = {["comp_screws"] = 1, ["comp_electronics"] = 1, ["comp_scrap"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plastic_bucket"
|
||||
RECIPE.name = "Parçala: Plastik Kova"
|
||||
RECIPE.description = "Muhtemelen kimyasal madde depolamak için kullanılan kirli plastik bir kova."
|
||||
RECIPE.model = "models/props_junk/plasticbucket001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_plastic_bucket"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plasticcrate"
|
||||
RECIPE.name = "Parçala: Plastik Kap"
|
||||
RECIPE.description = "Plastik bir kap. Senin için pek bir değeri yok."
|
||||
RECIPE.model = "models/props_junk/PlasticCrate01a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_plasticcrate"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plantpot"
|
||||
RECIPE.name = "Parçala: Bitki Saksısı"
|
||||
RECIPE.description = "Dikim ve bahçe işleri için kullanılan bir saksı. Hiçbir faydası yok."
|
||||
RECIPE.model = "models/props_junk/terracotta01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_plantpot"] = 1}
|
||||
RECIPE.result = {["comp_crafting_water"] = 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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_pipe"
|
||||
RECIPE.name = "Parçala: Dayanıksız Metal Boru"
|
||||
RECIPE.description = "Çürük bir metal boru. Silah olarak pek kullanışlı değil."
|
||||
RECIPE.model = "models/props_canal/mattpipe.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_pipe"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_paintcan"
|
||||
RECIPE.name = "Parçala: Boş Boya Kutusu"
|
||||
RECIPE.description = "Boş bir boya kutusu. Senin için işe yaramaz."
|
||||
RECIPE.model = "models/props_junk/metal_paintcan001b.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_paintcan"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_mug"
|
||||
RECIPE.name = "Parçala: Boş Kupa"
|
||||
RECIPE.description = "İçinde hiçbir şey olmayan plastik bir kupa."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_mug"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_pc_monitor"
|
||||
RECIPE.name = "Parçala: Bilgisayar Monitörü"
|
||||
RECIPE.description = "Bu cihaz için birçok plan vardı, ne yazık ki hiçbir zaman gerçekleşmedi."
|
||||
RECIPE.model = "models/props_lab/monitor01a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_pc_monitor"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 2, ["comp_electronics"] = 1, ["comp_scrap"] = 2, ["comp_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_lamp"
|
||||
RECIPE.name = "Parçala: Kırık Lamba"
|
||||
RECIPE.description = "Kırık ve işe yaramaz olan bu lamba artık pek bir amaca hizmet etmiyor."
|
||||
RECIPE.model = "models/props_lab/desklamp01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_lamp"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 2, ["comp_screws"] = 1, ["comp_scrap"] = 2}
|
||||
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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_keyboard"
|
||||
RECIPE.name = "Parçala: Kırık Klavye"
|
||||
RECIPE.description = "Neredeyse hiçbir değeri olmayan kırık bir klavye."
|
||||
RECIPE.model = "models/props_c17/computer01_keyboard.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_keyboard"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1, ["comp_plastic"] = 2, ["comp_scrap"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_jug"
|
||||
RECIPE.name = "Parçala: Boş Plastik Sürahi"
|
||||
RECIPE.description = "Boş plastik sürahi, iyi bir temizliğe ihtiyacı var."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_jug"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_jar"
|
||||
RECIPE.name = "Parçala: Boş Kavanoz"
|
||||
RECIPE.description = "Reçel ya da benzeri bir şey koymak için uygun boş bir kavanoz. İşe yaramaz."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_jar"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_empty_bottle"
|
||||
RECIPE.name = "Parçala: Boş Şişe"
|
||||
RECIPE.description = "Boş bir şişeyi parçalayın."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_empty_bottle"] = 1}
|
||||
RECIPE.result = {["comp_crafting_water"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_fruitjuice"
|
||||
RECIPE.name = "Parçala: Boş Meyve Suyu Kartonu"
|
||||
RECIPE.description = "Boş bir plastik meyve suyu kutusunu parçalayın."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle003a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_empty_fruitjuice"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_emptyvial"
|
||||
RECIPE.name = "Parçala: Boş Sağlık Şişesi"
|
||||
RECIPE.description = "Boş bir sağlık şişesini parçalayın."
|
||||
RECIPE.model = "models/willardnetworks/syringeemptyy.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_emptyvial"] = 1}
|
||||
RECIPE.result = {["comp_crafting_water"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_gear"
|
||||
RECIPE.name = "Parçala: Metal Dişli"
|
||||
RECIPE.description = "Bir zamanlar değerli bir şey için uygun olan metalik ekipman parçası. Artık değersiz."
|
||||
RECIPE.model = "models/props_wasteland/gear02.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gear"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 40}, -- full xp
|
||||
{level = 20, exp = 20}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_gascan"
|
||||
RECIPE.name = "Parçala: Boş Benzin Bidonu"
|
||||
RECIPE.description = "Yakıt veya benzeri bir şey taşımak için kullanılan boş bir gaz kutusu. Boş."
|
||||
RECIPE.model = "models/props_junk/metalgascan.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gascan"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_fridge_door"
|
||||
RECIPE.name = "Parçala: Buzdolabı Kapağı"
|
||||
RECIPE.description = "Bir zamanlar buzdolabına takılı olan kırık bir kapı. Ağır ve soğuk."
|
||||
RECIPE.model = "models/props_interiors/refrigeratordoor02a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_fridgedoor"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 4, ["comp_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_frame"
|
||||
RECIPE.name = "Parçala: Ahşap Çerçeve"
|
||||
RECIPE.description = "Ahşap çerçeveler. Muhtemelen pencere takmak için kullanılmış. İşe yaramaz."
|
||||
RECIPE.model = "models/props_c17/frame002a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_frame"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tattered_drawer"
|
||||
RECIPE.name = "Parçala: Parçalanmış Çekmece"
|
||||
RECIPE.description = "Kısa bir süre önce birinin evine aitti."
|
||||
RECIPE.model = "models/props_c17/FurnitureDrawer001a_Chunk01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_tattered_drawer"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 2, ["comp_screws"] = 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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_doll"
|
||||
RECIPE.name = "Parçala: Eskimiş Oyuncak Bebek"
|
||||
RECIPE.description = "Çoktan unutulmuş bir nesilden kalma eski, harap bir oyuncak bebek."
|
||||
RECIPE.model = "models/props_c17/doll01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_doll"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_coffeecup"
|
||||
RECIPE.name = "Parçala: Boş Kahve Fincanı"
|
||||
RECIPE.description = "Boş bir plastik kahve fincanı."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_coffeecup"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_computerparts"
|
||||
RECIPE.name = "Parçala: Bilgisayar Parçaları"
|
||||
RECIPE.description = "2000'lerin başındaki bilgisayarlar için eski savaş öncesi parçalar. Pek etkileyici değil."
|
||||
RECIPE.model = "models/props_lab/harddrive01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computerparts"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 70}, -- full xp
|
||||
{level = 10, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_computer_tower"
|
||||
RECIPE.name = "Parçala: Kırık Bilgisayar"
|
||||
RECIPE.description = "Tekrar çalıştırılması veya kaynaklar için sökülmesi mümkün olmalıdır."
|
||||
RECIPE.model = "models/props_lab/harddrive01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computer_tower"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 2, ["comp_scrap"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_clock"
|
||||
RECIPE.name = "Parçala: Eski Masa Saati"
|
||||
RECIPE.description = "...Zaman, gerçekten yine o zaman mı?"
|
||||
RECIPE.model = "models/props_combine/breenclock.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_clock"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 2, ["comp_electronics"] = 1, ["comp_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_carton"
|
||||
RECIPE.name = "Parçala: Boş Süt Kartonu"
|
||||
RECIPE.description = "Küçük plastik bir karton. Muhtemelen sıvı formda bir şey taşıyordu."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_carton"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_cardboard"
|
||||
RECIPE.name = "Parçala: Karton Kutu"
|
||||
RECIPE.description = "Tüketici ürünlerini taşımak için kullanılan bir karton kutu. Boş."
|
||||
RECIPE.model = "models/props_junk/cardboard_box003a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_cardboard"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_bucket"
|
||||
RECIPE.name = "Parçala: Kova"
|
||||
RECIPE.description = "İçinde küçük eşyalar taşımak için kullanılan metal bir kova."
|
||||
RECIPE.model = "models/props_junk/MetalBucket01a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_bucket"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_empty_can"
|
||||
RECIPE.name = "Parçala: Boş Metal Kutu"
|
||||
RECIPE.description = "Metal bir kutuyu geri dönüştürün."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_empty_can"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_biolock"
|
||||
RECIPE.name = "Parçala: Kırık Biyokilit"
|
||||
RECIPE.description = "Kırılmış bir biyokilit. Ne utanç verici."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 4, ["comp_electronics"] = 2, ["comp_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_cigarettepack"
|
||||
RECIPE.name = "Parçala: Sigara Paketi"
|
||||
RECIPE.description = "Sigara paketini parçalayın ve temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["ciggie_pack"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_plushie"
|
||||
RECIPE.name = "Parçala: Kaplumbağa Peluş"
|
||||
RECIPE.description = "Yumuşak bir Peluş Kaplumbağa, hiçbir amaca hizmet etmiyor ama varlığı biliniyor. Üzerinde 'Mullin'.... yazan küçük bir etiket iliştirilmiş. Ne kadar tuhaf."
|
||||
RECIPE.model = "models/willardnetworks/skills/turtle.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.ingredients = {["junk_turtle"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_battery"
|
||||
RECIPE.name = "Parçala: Araba Aküsü"
|
||||
RECIPE.description = "Eski dünyadan eski bir araba aküsü."
|
||||
RECIPE.model = "models/Items/car_battery01.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Çöp"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_battery"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 2, ["comp_chemicals"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,190 @@
|
||||
--[[
|
||||
| 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 = "break_kitchenspoon"
|
||||
RECIPE.name = "Parçala: Mutfak Kaşığı"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın.+"
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_spoon"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 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 = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_suitcase"
|
||||
RECIPE.name = "Parçala: Bavul"
|
||||
RECIPE.description = "Bavulu temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["suitcase"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 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 = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_fryingpan"
|
||||
RECIPE.name = "Parçala: Kızartma Tavası"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_fryingpan"] = 1}
|
||||
RECIPE.result = {["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 = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_kitchenknife"
|
||||
RECIPE.name = "Parçala: Mutfak Bıçağı"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_knife"] = 1}
|
||||
RECIPE.result = {["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 = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_flashlight"
|
||||
RECIPE.name = "Parçala: Fener"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["flashlight"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1}
|
||||
RECIPE.hidden = true
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_requestdevice"
|
||||
RECIPE.name = "Parçala: Talep Cihazı"
|
||||
RECIPE.description = "Elektronik aksamı için Combine talep cihazını parçalayın."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["request_device"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 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 = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_scissors"
|
||||
RECIPE.name = "Parçala: Makas"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_scissors"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 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 = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_cookingpot"
|
||||
RECIPE.name = "Parçala: Pişirme Tenceresi"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_cookingpot"] = 1}
|
||||
RECIPE.result = {["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 = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_kettle"
|
||||
RECIPE.name = "Parçala: Su Isıtıcısı"
|
||||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Aletler"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_kettle"] = 1}
|
||||
RECIPE.result = {["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 = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
@@ -0,0 +1,124 @@
|
||||
--[[
|
||||
| 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_ammo_357"
|
||||
RECIPE.name = "357 Mermi"
|
||||
RECIPE.description = "Altıpatlar için 357 mermi."
|
||||
RECIPE.model = "models/items/357ammo.mdl"
|
||||
RECIPE.category = "Mermi"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2}
|
||||
RECIPE.result = {["bullets_357"] = 18}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 150}, -- full xp
|
||||
{level = 20, exp = 75}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_sniper"
|
||||
RECIPE.name = "Keskin Nişancı Mermileri"
|
||||
RECIPE.description = "Bir keskin nişancı için gevşek keskin nişancı mermileri."
|
||||
RECIPE.model = "models/items/sniper_round_box.mdl"
|
||||
RECIPE.category = "Mermi"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2, ["comp_explosive"] = 1}
|
||||
RECIPE.result = {["bullets_sniper"] = 15}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_smg"
|
||||
RECIPE.name = "SMG Mermileri"
|
||||
RECIPE.description = "Hafif makineli tüfekler için gevşek mermiler."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Mermi"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2}
|
||||
RECIPE.result = {["bullets_smg1"] = 60}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 25, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_arifle"
|
||||
RECIPE.name = "Taaruz Tüfeği Mermisi"
|
||||
RECIPE.description = "Loose Tüfek Mermisi"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Mermi"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 3,}
|
||||
RECIPE.result = {["bullets_assaultrifle"] = 60}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_pistol"
|
||||
RECIPE.name = "9mm Tabanca Mermileri"
|
||||
RECIPE.description = "Tabanca mermileri."
|
||||
RECIPE.model = "models/items/boxsrounds.mdl"
|
||||
RECIPE.category = "Mermi"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["bullets_pistol"] = 60}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_buckshot"
|
||||
RECIPE.name = "Saçma Mermisi"
|
||||
RECIPE.description = "Hurda bir karton kutu içinde bir yığın av tüfeği fişeği."
|
||||
RECIPE.model = "models/Items/BoxBuckshot.mdl"
|
||||
RECIPE.category = "Mermi"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_alcohol"] = 2, ["comp_explosive"] = 1}
|
||||
RECIPE.result = {["bullets_buckshot"] = 24}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,356 @@
|
||||
--[[
|
||||
| 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_armor_blue_kevlar"
|
||||
RECIPE.name = "Mavi Işık Kevlar Üniforması"
|
||||
RECIPE.description = "İyi bir zırh sağlayan kevlarlı mavi bir üst. Genellikle direniş figürleri tarafından giyilir."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_2.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["torso_blue_rebel_uniform"] = 1, ["comp_adhesive"] = 1, ["comp_iron"] = 4, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["torso_blue_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_green_kevlar"
|
||||
RECIPE.name = "Yeşil Işık Kevlar Üniforması"
|
||||
RECIPE.description = "İyi bir zırh sunan, kevlarlı yeşil bir üstlük. Genellikle direniş figürleri tarafından giyilir."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_1.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_green_rebel_uniform"] = 1, ["comp_adhesive"] = 1, ["comp_iron"] = 4, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["torso_green_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_medical_kevlar"
|
||||
RECIPE.name = "Tıbbi Hafif Kevlar Üniforma"
|
||||
RECIPE.description = "İyi bir zırh sağlayan kevlarlı bir tıbbi üstlük. Genellikle direniş sağlıkçıları tarafından giyilir."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_medic.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_medical_rebel_uniform"] = 1, ["comp_adhesive"] = 1, ["comp_iron"] = 4, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["torso_medical_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c8_com_rebel"
|
||||
RECIPE.name = "C8 Command Unit suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_c8_com"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c8_cp_rebel"
|
||||
RECIPE.name = "C8 CP suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_c8_cp"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c8_cpt_rebel"
|
||||
RECIPE.name = "C8 CPT suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_c8_cpt"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c8_riot_rebel"
|
||||
RECIPE.name = "C8 riot suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_c8_riot"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c8_rl_rebel"
|
||||
RECIPE.name = "C8 RL suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_c8_rl"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c24_com_rebel"
|
||||
RECIPE.name = "C24 Medium Command Unit suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_com"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c24_com_rebel2"
|
||||
RECIPE.name = "C24 Light Command Unit suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_cp_com"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c24_riot_rebel"
|
||||
RECIPE.name = "C24 Riot suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_cp_riot"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c24_cp_rebel"
|
||||
RECIPE.name = "C24 CP suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_cp"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mask_com_rebel"
|
||||
RECIPE.name = "Command Unit Mask salvaging"
|
||||
RECIPE.description = "A Civil Protection mask that's been salvaged and painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice/n7_cp_gasmask7.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["mask_com"] = 1}
|
||||
RECIPE.result = {["mask_com_rebel"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mask_cp_rebel"
|
||||
RECIPE.name = "CP Mask salvaging"
|
||||
RECIPE.description = "A Civil Protection mask that's been salvaged and painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice/n7_cp_gasmask1.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["mask_cp"] = 1}
|
||||
RECIPE.result = {["mask_cp_rebel"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mask_ota_rebel"
|
||||
RECIPE.name = "OTA Mask salvaging"
|
||||
RECIPE.description = "A OTA mask that's been salvaged and painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice/n7_cp_gasmask4.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["mask_ota"] = 1, }
|
||||
RECIPE.result = {["mask_ota_rebel"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_cpt_rebel"
|
||||
RECIPE.name = "CPT suit paintjob"
|
||||
RECIPE.description = "A Civil Protection suit that's been painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["uniform_ofc"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_repair_cp_rebel"
|
||||
RECIPE.name = "CP Uniform Repair"
|
||||
RECIPE.description = "A Civil Protection suit that's been repaired and painted to easily identify someone as a resistance fighter."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Zırh"
|
||||
RECIPE.ingredients = {["broken_cpuniform"] = 1, ["comp_adhesive"] = 1, ["comp_steel"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["uniform_cp_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,57 @@
|
||||
--[[
|
||||
| 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_cigarette"
|
||||
RECIPE.name = "Sigara paketini doldur"
|
||||
RECIPE.description = "Elinde boş bir sigara paketi varsa doldurabilirsin."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_1.mdl"
|
||||
RECIPE.category = "Sigara"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["ciggie_pack"] = 1, ["comp_cloth"] = 1}
|
||||
RECIPE.result = {["ciggie_pack"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
function RECIPE:PlayerCraftRecipe(client)
|
||||
local character = client:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
-- Take all the ingredients
|
||||
for ingredient, amount in pairs(self.ingredients) do
|
||||
for _ = 1, amount do
|
||||
local item = inventory:HasItem(ingredient)
|
||||
|
||||
if (item) then
|
||||
if (item.uniqueID == "ciggie_pack") then
|
||||
item:SetData("relabeled", true)
|
||||
else
|
||||
item:Remove()
|
||||
end
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Set the player's next crafting time
|
||||
client.ixNextCraftTime = CurTime() + 2
|
||||
netstream.Start("CraftTime", client.ixNextCraftTime)
|
||||
|
||||
character:DoAction("recipe_" .. self.uniqueID)
|
||||
end
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,334 @@
|
||||
--[[
|
||||
| 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()
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
-- Metal
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_iron"
|
||||
RECIPE.name = "Demir"
|
||||
RECIPE.description = "Geri dönüştürülmüş metalden yapılmış demir. Eskisinden daha güçlü ve daha ağır."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 4, ["comp_screws"] = 1}
|
||||
RECIPE.result = {["comp_iron"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full XP
|
||||
{level = 20, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_steel"
|
||||
RECIPE.name = "Çelik"
|
||||
RECIPE.description = "Demirden yapılmış güçlendirilmiş metal levha. Son derece güçlü ve iyi yapılmış."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 4, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["comp_steel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 100}, -- full xp
|
||||
{level = 35, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Plastic
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_refined_plastic"
|
||||
RECIPE.name = "Plastik Levha"
|
||||
RECIPE.description = "Plastik levhalar. Plastik çöplerden üretilmiştir."
|
||||
RECIPE.model = "models/props_junk/garbage_bag001a.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4, ["comp_screws"] = 1}
|
||||
RECIPE.result = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Nails
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_screws"
|
||||
RECIPE.name = "Vida Kutusu"
|
||||
RECIPE.description = "Çivi içeren bir kutu. Biraz paslı görünüyorlar."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_screws"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_rivbolts"
|
||||
RECIPE.name = "Vida Kutusu"
|
||||
RECIPE.description = "Deneyimli zanaatkarlar için kullanışlı bir kutu sağlam vida."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_screws"] = 4, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["comp_rivbolts"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Cloth
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_stitched_cloth"
|
||||
RECIPE.name = "Dikişli Kumaş"
|
||||
RECIPE.description = "Dikişli bir kumaş parçası. Eskisinden daha sert."
|
||||
RECIPE.model = "models/willardnetworks/skills/stitched_cloth.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_stitched_cloth"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_fabric"
|
||||
RECIPE.name = "Kumaş"
|
||||
RECIPE.description = "Bir parça kumaş. Oldukça yumuşak."
|
||||
RECIPE.model = "models/willardnetworks/skills/fabric.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_fabric"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Weapons
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_explosive_material"
|
||||
RECIPE.name = "Patlayıcı Bileşik"
|
||||
RECIPE.description = "Yumuşak patlayıcı bir bileşim. Şimdi patlayıcılarla oynamaya kalkma."
|
||||
RECIPE.model = "models/willardnetworks/skills/explosive_material.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_explosive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_weapon_parts"
|
||||
RECIPE.name = "Silah Parçaları"
|
||||
RECIPE.description = "Silah için metal parçalar."
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 2, ["comp_rivbolts"] = 2, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["comp_weapon_parts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- charcoal
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_charcoal"
|
||||
RECIPE.name = "Kömür Bloğu"
|
||||
RECIPE.description = "Bazı kimyasal katkı maddeleri ve ısı kullanarak odunu kömüre dönüştürmek."
|
||||
RECIPE.model = "models/willardnetworks/props/charcoal.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["comp_wood"] = 2, ["comp_chemcomp"] = 1}
|
||||
RECIPE.result = {["comp_charcoal"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, 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_adhesive"
|
||||
RECIPE.name = "El Yapımı Yapıştırıcı"
|
||||
RECIPE.description = "Nesneleri birbirine yapıştırmak için bir Yapıştırıcı. Çok yapışkan."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Bileşenler"
|
||||
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 120}, -- full xp
|
||||
{level = 10, exp = 60}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,29 @@
|
||||
--[[
|
||||
| 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_dummy_emp"
|
||||
RECIPE.name = "Geliştirilmiş EMP Cihazı"
|
||||
RECIPE.description = "Elektronikleri devre dışı bırakmak için kullanılan tek kullanımlık küçük bir EMP cihazı. Artık Combine teknolojisinde de kullanılabilir - güç alanlarını 5 dakika, taretleri 10 dakika boyunca devre dışı bırakabilir ve tarayıcıları tamamen devre dışı bırakabilir."
|
||||
RECIPE.model = "models/Items/car_battery01.mdl"
|
||||
RECIPE.category = "RP Eşyaları"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_steel"] = 3, ["comp_screws"] = 2, ["comp_refined_plastic"] = 2, ["comp_electronics"] = 6}
|
||||
RECIPE.result = {["dummy_emp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 45, exp = 75}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,143 @@
|
||||
--[[
|
||||
| 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_elec_computer"
|
||||
RECIPE.name = "Bilgisayar"
|
||||
RECIPE.description = "Notlara erişimi olan, tehlikeli bir rejim işletim sistemi kullanan, mağazalar için yararlı bir araç olan geri yüklenmiş bir bilgisayar."
|
||||
RECIPE.model = "models/willardnetworks/props/willard_computer.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 2, ["comp_electronics"] = 4, ["comp_screws"] = 2}
|
||||
RECIPE.result = {["cit_computer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 400}, -- full xp
|
||||
{level = 40, exp = 200}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_cmb_tuner"
|
||||
RECIPE.name = "Combine Onaylı Radyo Ayarlayıcısı"
|
||||
RECIPE.description = "Bir radyonun ayarlayabileceği frekansları değiştirmek için kullanılabilen bir radyo ayarlayıcı."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_electronics"] = 10, ["comp_screws"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["tuner_cmb"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 400}, -- full xp
|
||||
{level = 40, exp = 200}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_reb_tuner"
|
||||
RECIPE.name = "Direniş Radyo Ayarlayıcısı"
|
||||
RECIPE.description = "Bir radyonun ayarlayabileceği frekansları değiştirmek için kullanılabilen bir radyo ayarlayıcı. Bu, uzak yayın frekanslarına ulaşabilen daha yüksek aralıklı bir ayarlayıcıdır."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_electronics"] = 12, ["comp_rivbolts"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tuner_reb"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 500}, -- full xp
|
||||
{level = 46, exp = 250}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_handheld"
|
||||
RECIPE.name = "El Telsizi"
|
||||
RECIPE.description = "Analog ve dijital frekansları destekleyen uygun şekilde yapılmış bir el telsizi."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_electronics"] = 2, ["comp_rivbolts"] = 1, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["handheld_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_old_handheld"
|
||||
RECIPE.name = "Eski El Telsizi"
|
||||
RECIPE.description = "Sadece analog frekansları destekleyen geçici radyo."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_electronics"] = 1, ["comp_screws"] = 2, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["old_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_repair_broken_radio"
|
||||
RECIPE.name = "Repair Broken Radio"
|
||||
RECIPE.description = "Repairs your broken radio."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_electronics"] = 4, ["broken_radio"] = 1}
|
||||
RECIPE.result = {["handheld_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_crackedprinter"
|
||||
RECIPE.name = "Çatlak Yazıcı"
|
||||
RECIPE.description = "Artık geçerli bir izin gerektirmeyen kırık bir yazıcı. Kağıt ve siyah mürekkep gerektirir."
|
||||
RECIPE.model = "models/willardnetworks/plotter.mdl"
|
||||
RECIPE.category = "Elektronik"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["newspaper_printer"] = 1, ["comp_electronics"] = 4}
|
||||
RECIPE.result = {["newspaper_printer_cracked"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,114 @@
|
||||
--[[
|
||||
| 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_water_bucket_water"
|
||||
RECIPE.name = "Sulama Kabı (Dolu)"
|
||||
RECIPE.description = "Sulama Kabınızı biraz su ile doldurur."
|
||||
RECIPE.model = "models/props_junk/metalgascan.mdl"
|
||||
RECIPE.category = "Çiftçilik"
|
||||
RECIPE.ingredients = {["water_bucket"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["water_bucket"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
function RECIPE:PlayerCraftRecipe(client)
|
||||
local character = client:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
-- Take all the ingredients
|
||||
for ingredient, amount in pairs(self.ingredients) do
|
||||
for _ = 1, amount do
|
||||
local item = inventory:HasItem(ingredient)
|
||||
|
||||
if (item) then
|
||||
if (item.uniqueID == "water_bucket") then
|
||||
item:SetData("water", 100)
|
||||
else
|
||||
item:Remove()
|
||||
end
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Set the player's next crafting time
|
||||
client.ixNextCraftTime = CurTime() + 2
|
||||
netstream.Start("CraftTime", client.ixNextCraftTime)
|
||||
|
||||
character:DoAction("recipe_" .. self.uniqueID)
|
||||
end
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_water_bucket"
|
||||
RECIPE.name = "Sulama Kabı"
|
||||
RECIPE.description = "Tarımda faydalı bir sulama kabı."
|
||||
RECIPE.model = "models/props_junk/metalgascan.mdl"
|
||||
RECIPE.category = "Çiftçilik"
|
||||
RECIPE.ingredients = {["comp_iron"] = 3}
|
||||
RECIPE.result = {["water_bucket"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 105}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_fertilizer"
|
||||
RECIPE.name = "Gübre"
|
||||
RECIPE.description = "Bitkileri gübrelemek için bahçe işlerinde kullanışlı, topraklanmış kemiklerle dolu bir çuval"
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton001a.mdl"
|
||||
RECIPE.category = "Çiftçilik"
|
||||
RECIPE.ingredients = {["ing_bone"] = 3}
|
||||
RECIPE.result = {["fertilizer"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 5}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_planter"
|
||||
RECIPE.name = "Ekim Alanı"
|
||||
RECIPE.description = "Taşınabilir bir ekim alanı, ne kadar da kullanışlı!"
|
||||
RECIPE.model = "models/wn7new/advcrates/n7_planter_wood.mdl"
|
||||
RECIPE.category = "Çiftçilik"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2, ["comp_plastic"] = 3, ["comp_screws"] = 3, ["comp_wood"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["planter_placer"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,125 @@
|
||||
--[[
|
||||
| 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 = "Gaz Maskesi"
|
||||
RECIPE.description = "Tehlikeli gaz hariç diğer gazlara ve bazı kötü kokulara karşı yeterli koruma sağlar."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_gasmask.mdl"
|
||||
RECIPE.category = "Gaz Maskesi"
|
||||
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 = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, 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 Gaz Maskesi"
|
||||
RECIPE.description = "Zararlı dumanlara, ölümcül gazlara ve bazı kötü kokulara karşı yeterli koruma sağlar."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/m40_item.mdl"
|
||||
RECIPE.category = "Gaz Maskesi"
|
||||
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 = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, 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 = "Kömür Filtresi Dolumu"
|
||||
RECIPE.description = "Wrap the charcoal into a ready-to-use filter cartridge."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Gaz Maskesi"
|
||||
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 = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, 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 = "Derme Çatma Filtre"
|
||||
RECIPE.description = "Yeniden doldurmak için açabileceğiniz ev yapımı bir gaz maskesi filtresi."
|
||||
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
||||
RECIPE.category = "Gaz Maskesi"
|
||||
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 = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, 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 = "Parçala: Eğreti Filtre"
|
||||
RECIPE.description = "Bu filtreyi temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Gaz Maskesi"
|
||||
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 = "Parçala: Yüksek Kalite Filtre"
|
||||
RECIPE.description = "Bu filtreyi temel bileşenlerine ayırın."
|
||||
RECIPE.model = "models/willardnetworks/props/blackfilter.mdl"
|
||||
RECIPE.category = "Parçalama"
|
||||
RECIPE.subcategory = "Gaz Maskesi"
|
||||
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()
|
||||
@@ -0,0 +1,85 @@
|
||||
--[[
|
||||
| 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_wep_frag"
|
||||
RECIPE.name = "Parça Tesirli El Bombası"
|
||||
RECIPE.description = "MK3A2 taarruz tipi parça tesirli el bombası."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Bombalar"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_explosive"] = 1, ["comp_chemcomp"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["frag_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100},
|
||||
{level = 40, exp = 50},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_flash"
|
||||
RECIPE.name = "Flaş Bombası"
|
||||
RECIPE.description = "'Flashbang' olarak da bilinen M84 şok bombası. Patladığında kör edici bir flaş ve sağır edici bir patlama yayar."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_flash.mdl"
|
||||
RECIPE.category = "Bombalar"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_chemcomp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["flash_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80},
|
||||
{level = 40, exp = 40},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_smoke"
|
||||
RECIPE.name = "Duman Bombası"
|
||||
RECIPE.description = "Model 5210 sis bombası. Gri bir duman perdesi üretir."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_smoke.mdl"
|
||||
RECIPE.category = "Bombalar"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_chemcomp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["smoke_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80},
|
||||
{level = 40, exp = 40},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_incendiary"
|
||||
RECIPE.name = "Yangın Çıkarıcı El Bombası"
|
||||
RECIPE.description = "4.000 Fahrenheit derecede yanan termat karışımı ile doldurulmuş AN-M14 yangın bombası."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/wm/w_incend.mdl"
|
||||
RECIPE.category = "Bombalar"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_explosive"] = 1, ["comp_chemcomp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["incendiary_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100},
|
||||
{level = 40, exp = 50},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,470 @@
|
||||
--[[
|
||||
| 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_mag_sniper"
|
||||
RECIPE.name = "5rnd Sniper Şarjörü"
|
||||
RECIPE.description = "5 mermi alabilen bir sniper şarjörü."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_sniper"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_usp"
|
||||
RECIPE.name = "17rnd USP Şarjörü"
|
||||
RECIPE.description = "USP için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_usp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_glock"
|
||||
RECIPE.name = "20rnd Glock Şarjörü"
|
||||
RECIPE.description = "Glock için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_glock"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_akm"
|
||||
RECIPE.name = "30rnd AKM Şarjörü"
|
||||
RECIPE.description = "AKM'ye ait bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_akm"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_jnk"
|
||||
RECIPE.name = "30rnd Hurda Şarjör"
|
||||
RECIPE.description = "Hurda silahlar için bir şajör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_junk30"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_m16"
|
||||
RECIPE.name = "30rnd M16A2 Şarjörü"
|
||||
RECIPE.description = "M16A2 için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_m16"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_30_mp"
|
||||
RECIPE.name = "30rnd MP Şarjörü"
|
||||
RECIPE.description = "MP varyantı hafif makineli tüfekler için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_mp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_popper"
|
||||
RECIPE.name = "6rnd Revolver Şarjörü"
|
||||
RECIPE.description = "Revolver için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_revolver"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_vsv"
|
||||
RECIPE.name = "20rnd VSK Şarjörü"
|
||||
RECIPE.description = "VSK için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_vsv"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_1911"
|
||||
RECIPE.name = "12rnd M1911 Şarjörü"
|
||||
RECIPE.description = "M1911 için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_1911"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun8"
|
||||
RECIPE.name = "8rnd Shotgun Şarjörü"
|
||||
RECIPE.description = "Shotgun için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_shotgun"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun2"
|
||||
RECIPE.name = "2rnd Duplet Magazine"
|
||||
RECIPE.description = "A magazine for the 2rnd Duplet Shotgun."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_duplet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun5"
|
||||
RECIPE.name = "5rnd Shotgun Şarjörü"
|
||||
RECIPE.description = "Shotgun için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_shotgun5"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_15_tikhar"
|
||||
RECIPE.name = "15rnd Tikhar Şarjörü"
|
||||
RECIPE.description = "Tikhar için Bir Top Şarjörü"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_tikhar_15rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_8_helsing"
|
||||
RECIPE.name = "8rnd Helsing Şarjörü"
|
||||
RECIPE.description = "Helsing için bir sürgü şarjörü."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_helsing"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_aksu"
|
||||
RECIPE.name = "30rnd AKSU Şarjörü"
|
||||
RECIPE.description = "AKSU için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_aksu"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_g3"
|
||||
RECIPE.name = "20rnd G3 Şarjörü"
|
||||
RECIPE.description = "G3 için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_g3"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_dmr"
|
||||
RECIPE.name = "20rnd DMR Şarjörü"
|
||||
RECIPE.description = "DMR için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_mini14"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_p90"
|
||||
RECIPE.name = "50rnd P90 Şarjörü"
|
||||
RECIPE.description = "P90 için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_p90"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_ppsh"
|
||||
RECIPE.name = "35rnd PPSH Şarjörü"
|
||||
RECIPE.description = "PPSH için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_ppsh"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_tac"
|
||||
RECIPE.name = "60rnd Tac Şarjörü"
|
||||
RECIPE.description = "Taktiksel Tüfek için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_tac60"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_uzi"
|
||||
RECIPE.name = "30rnd Uzi Şarjör"
|
||||
RECIPE.description = "Uzi için bir şarjör."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_uzi"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_deagle"
|
||||
RECIPE.name = "7rnd Deagle Magazine"
|
||||
RECIPE.description = "A magazine for the Deagle."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Şarjörler"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_deagle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,27 @@
|
||||
--[[
|
||||
| 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_makeshift"
|
||||
RECIPE.name = "Eğreti Bandaj Rulosu"
|
||||
RECIPE.description = "Yırtık pırtık bir bez bandaj rulosu. Kanamayı durdurur ama başka bir şey yapmaz."
|
||||
RECIPE.model = "models/stuff/bandages_dirty.mdl"
|
||||
RECIPE.category = "Tıbbi"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3}
|
||||
RECIPE.result = {["makeshift_bandage"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,218 @@
|
||||
--[[
|
||||
| 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_craft_suitcase"
|
||||
RECIPE.name = "Bavul"
|
||||
RECIPE.description = "Taşımak istemediğiniz her şeyi taşımaya hazır küçük bir bavul."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2, ["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["suitcase"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_small_bag"
|
||||
RECIPE.name = "Küçük Çanta"
|
||||
RECIPE.description = "Kalçanızda duran küçük bir el çantası."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["smallbag"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_large_bag"
|
||||
RECIPE.name = "Büyük Çanta"
|
||||
RECIPE.description = "Üzerinde Combine amblemi olan bir sırt çantası."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["largebag"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100}, -- full XP
|
||||
{level = 25, exp = 50}, -- half XP
|
||||
{level = 30, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_lock"
|
||||
RECIPE.name = "Asma Kilit"
|
||||
RECIPE.description = "Kullanıldığında bir konteynere/kapıya şifre koyar. Sadece sahibi çevrimiçi olduğunda vurulabilir."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_screws"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["cont_lock_t1"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_small"
|
||||
RECIPE.name = "Küçük Konteyner"
|
||||
RECIPE.description = "5x3 boyutunda konteyner. Bu öğeyi hazırladığınızda bu konteyneri kurmak için bir yöneticiyle iletişime geçin. Şifre belirlemek için konteyner kilidi öğesine ihtiyaç duyar."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_refined_plastic"] = 1, ["comp_adhesive"] = 1, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["container_small_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, 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_container_medium"
|
||||
RECIPE.name = "Orta Boy Konteyner"
|
||||
RECIPE.description = "5x8 boyutunda konteyner. Bu öğeyi hazırladığınızda bu konteyneri kurmak için bir yöneticiyle iletişime geçin. Şifre belirlemek için konteyner kilidi öğesine ihtiyaç duyar."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_small_dummy"] = 2, ["comp_rivbolts"] = 2}
|
||||
RECIPE.result = {["container_medium_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 125}, -- full xp
|
||||
{level = 35, exp = 60}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_large"
|
||||
RECIPE.name = "Büyük Konteyner"
|
||||
RECIPE.description = "5+ üyeli bir grup gerektirir - 9x9 boyutlu konteyner. Bu konteyneri kurmak için bir yönetici ile iletişime geçin. Parola belirlemek için bir konteyner kilidi gerekir."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 2, ["comp_rivbolts"] = 2}
|
||||
RECIPE.result = {["container_large_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_scrate"
|
||||
RECIPE.name = "Standart Sandık"
|
||||
RECIPE.description = "6x6 boyutunda konteyner. Bu konteyneri kurmak için bir yönetici ile iletişime geçin. Parola belirlemek için bir konteyner kilidi gerekir."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 1, ["comp_wood"] = 2}
|
||||
RECIPE.result = {["container_scrate_dummy"] = 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 = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_lcrate"
|
||||
RECIPE.name = "Büyük Sandık"
|
||||
RECIPE.description = "5+ üyeli bir grup gerektirir - 9x9 boyutlu konteyner. Bu konteyneri kurmak için bir yönetici ile iletişime geçin. Parola belirlemek için bir konteyner kilidi gerekir."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_large_dummy"] = 1, ["comp_wood"] = 4}
|
||||
RECIPE.result = {["container_lcrate_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_safe"
|
||||
RECIPE.name = "Kasa"
|
||||
RECIPE.description = "Eşyalarınızı saklamak için kırılmaz bir kasa. (Konteyner sınırının üstünde 2 kasanız olabilir.)"
|
||||
RECIPE.model = "models/willardnetworks/safe.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 4, ["comp_refined_plastic"] = 3, ["comp_electronics"] = 1, ["comp_rivbolts"] = 2}
|
||||
RECIPE.result = {["container_safe"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 0}, -- full xp
|
||||
{level = 50, exp = 0},
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_grouplock"
|
||||
RECIPE.name = "Grup Kilidi"
|
||||
RECIPE.description = "Kapılara uygulanan metal bir aparat. Çalışması için bir grup gerektirir."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Depolama"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1, ["comp_electronics"] = 1, ["comp_screws"] = 1}
|
||||
RECIPE.result = {["grouplock"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,455 @@
|
||||
--[[
|
||||
| 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_craft_waterbottle"
|
||||
RECIPE.name = "Su Şişesi"
|
||||
RECIPE.description = "Yeniden doldurulabilir plastik bir şişe. Su ile doldurabilirsiniz."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle002a.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4}
|
||||
RECIPE.result = {["waterbottle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_watercant"
|
||||
RECIPE.name = "Su Matarası"
|
||||
RECIPE.description = "Yeniden doldurulabilir metal bir matara. İçini suyla doldurabilirsiniz."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2}
|
||||
RECIPE.result = {["canteen"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 200}, -- full xp
|
||||
{level = 10, exp = 100}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_watervalve"
|
||||
RECIPE.name = "Su Vanası"
|
||||
RECIPE.description = "Borulardan su çekmek için kullanılır."
|
||||
RECIPE.model = "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_gauge_valve_low.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 2, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["watervalve"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_flashlight"
|
||||
RECIPE.name = "El Yapımı El Feneri"
|
||||
RECIPE.description = "El yapımı el feneri, bilinmeyen karanlığı keşfederken inanılmaz derecede kullanışlıdır."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.result = {["flashlight"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_syringe"
|
||||
RECIPE.name = "Şırınga"
|
||||
RECIPE.description = "Tıbbi amaçlar için yararlı, sıvı benzeri maddeler içerebilen bir şırınga."
|
||||
RECIPE.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 2}
|
||||
RECIPE.result = {["comp_syringe"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_lighter"
|
||||
RECIPE.name = "Plastik Çakmak"
|
||||
RECIPE.description = "Sigara yakmak için yapılmış ucuz bir plastik çakmak."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/lighter.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 2, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["lighter"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_scissors"
|
||||
RECIPE.name = "Makas"
|
||||
RECIPE.description = "Snip, snip, snip!"
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["tool_scissors"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_cooking_pot"
|
||||
RECIPE.name = "Pişirme Tenceresi"
|
||||
RECIPE.description = "Siyah, demir bir tencere. Ocağın üstüne koy!"
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 2, ["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_cookingpot"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_razor"
|
||||
RECIPE.name = "Kuaför aletleri"
|
||||
RECIPE.description = "Aksi takdirde iç karartıcı bir manzarada yaratıcı ruhlar için bir araç."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_adhesive"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beard_razor"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_kitchen_spoon"
|
||||
RECIPE.name = "Mutfak Kaşığı"
|
||||
RECIPE.description = "Güveç yapmak için kullanışlıdır."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_spoon"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tool_kitchen_knife"
|
||||
RECIPE.name = "Mutfak Bıçağı"
|
||||
RECIPE.description = "Kalın, yarı küt bir bıçak. Kesme tahtası veya yüzey üzerindeki yiyecekleri kesmek için kullanılır."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_wood"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_frying_pan"
|
||||
RECIPE.name = "Kızartma Tavası"
|
||||
RECIPE.description = "Siyah, demir bir kızartma tavası. Yemek pişirmek için iyi."
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_fryingpan"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_kettle"
|
||||
RECIPE.name = "Su Isıtıcısı"
|
||||
RECIPE.description = "Mükemmel kaynar su damlatabilen bir su ısıtıcısı."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_kettle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_toolkit"
|
||||
RECIPE.name = "Araç Kiti"
|
||||
RECIPE.description = "Eşyaları birleştirmek için çeşitli inşaat aletleri içeren küçük bir metal sandık."
|
||||
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 6, ["comp_adhesive"] = 3, ["comp_plastic"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["tool_toolkit"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tool_tinderbox"
|
||||
RECIPE.name = "Çıra Kutusu"
|
||||
RECIPE.description = "Kamp ateşi yakmak için bir çıra kutusu."
|
||||
RECIPE.model = "models/willardnetworks/props/tinderbox.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3, ["comp_adhesive"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["tinderbox"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_mixer"
|
||||
RECIPE.name = "Kimyasal Karıştırıcı"
|
||||
RECIPE.description = "Bu, sıvıları veya kimyasalları birbirine karıştırmak için kullanışlı gibi görünüyor. Uyarı etiketinde şöyle yazıyor: Çalışırken açmayın"
|
||||
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
|
||||
RECIPE.category = "Çalışma Tezgahları"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_screws"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_mixer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 200}, -- full xp
|
||||
{level = 20, exp = 100}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_wrench"
|
||||
RECIPE.name = "İngiliz anahtarı"
|
||||
RECIPE.description = "Eski bir İngiliz anahtarı. Bunu sandıklamak için kullanabilirim."
|
||||
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["tool_wrench"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 70}, -- full xp
|
||||
{level = 30, exp = 35}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_chembench"
|
||||
RECIPE.name = "Kimya Çalışma Tezgahı Kiti"
|
||||
RECIPE.description = "Bu çalışma tezgahı, kimyasal bileşenlerin başarılı bir şekilde karıştırılmasını sağlamak için özel olarak tasarlanmıştır."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/chemistrystation02.mdl"
|
||||
RECIPE.category = "Çalışma Tezgahları"
|
||||
RECIPE.ingredients = {["comp_steel"] = 3, ["comp_wood"] = 4, ["comp_refined_plastic"] = 2}
|
||||
RECIPE.result = {["tool_chembench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 300}, -- full xp
|
||||
{level = 30, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_oven_rusty"
|
||||
RECIPE.name = "Paslı Fırın Montaj Kiti"
|
||||
RECIPE.description = "Berbat görünüyor, berbat, ancak bir süre için herhangi bir pişirme ihtiyacında sizi tatmin edecektir."
|
||||
RECIPE.model = "models/willardnetworks/skills/oven_shit.mdl"
|
||||
RECIPE.category = "Çalışma Tezgahları"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 2, ["comp_plastic"] = 4, ["comp_screws"] = 4, ["comp_electronics"] = 2}
|
||||
RECIPE.result = {["tool_oven_rusty_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_craftingbench"
|
||||
RECIPE.name = "Üretim Tezgahı Kiti"
|
||||
RECIPE.description = "Bu çalışma tezgahı, giyim eşyalarının başarılı bir şekilde işlenmesini sağlamak için özel olarak tasarlanmıştır."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench02.mdl"
|
||||
RECIPE.category = "Çalışma Tezgahları"
|
||||
RECIPE.ingredients = {["comp_wood"] = 3, ["comp_iron"] = 1, ["comp_refined_plastic"] = 2, ["comp_rivbolts"] = 3}
|
||||
RECIPE.result = {["tool_craftingbench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 180}, -- full xp
|
||||
{level = 30, exp = 90}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_metalbench"
|
||||
RECIPE.name = "Metal Çalışma Tezgahı Kiti"
|
||||
RECIPE.description = "Bu çalışma tezgahı, silah veya benzeri şeylerin başarılı bir şekilde üretilmesini sağlamak için özel olarak tasarlanmıştır."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench01.mdl"
|
||||
RECIPE.category = "Çalışma Tezgahları"
|
||||
RECIPE.ingredients = {["comp_steel"] = 4, ["comp_wood"] = 4, ["comp_refined_plastic"] = 4, ["tool_craftingbench_assembly"] = 1}
|
||||
RECIPE.result = {["tool_metalbench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 600}, -- full xp
|
||||
{level = 40, exp = 300}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_repair"
|
||||
RECIPE.name = "Onarım Kaplaması"
|
||||
RECIPE.description = "Çeşitli giysilerdeki hasarlı zırhları onarmak için kullanılan el yapımı onarım kaplaması."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_repair"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 40, exp = 50}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_breacher"
|
||||
RECIPE.name = "Combine Kilit Kırıcı"
|
||||
RECIPE.description = "Combine kilitlerini kırmak için üzerlerine yerleştirilen el yapımı bir cihaz."
|
||||
RECIPE.model = "models/transmissions_element120/charger_attachment.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_refined_plastic"] = 1, ["comp_screws"] = 1, ["comp_electronics"] = 2}
|
||||
RECIPE.result = {["lockbreacher"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 0}, -- full XP
|
||||
{level = 50, exp = 0}, -- half XP
|
||||
{level = 55, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_refill_zippo_lighter"
|
||||
RECIPE.name = "Yedek Zippo Çakmak"
|
||||
RECIPE.description = "Sigara yakmak için üretilmiş kaliteli bir metal çakmak."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
|
||||
RECIPE.category = "Aletler"
|
||||
RECIPE.ingredients = {["zippolighter"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["zippolighter"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,345 @@
|
||||
--[[
|
||||
| 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_craft_vort_shackles_fake"
|
||||
RECIPE.name = "Vortigaunt Prangaları (sahte)"
|
||||
RECIPE.description = "Uzuvları daraltan ve hareket etmeyi acı verici hale getiren metal bağlar ve destekler. Yerlerine kilitlenirler ve bir kez uygulandıktan sonra çıkarılamazlar."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_slave_shackles_fake"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 30, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_collar_fake"
|
||||
RECIPE.name = "Vortigaunt Yaka (sahte)"
|
||||
RECIPE.description = "İçinde sınırda uzaylı teknolojisi bulunan ağır, metalik bir tasma. Bir vortigaunt'un etrafındaki enerjileri manipüle etme yeteneğini tamamen etkisiz hale getirir. Bir kez takıldığında, uygun aletler olmadan çıkarılamaz."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_slave_collar_fake"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 70}, -- full XP
|
||||
{level = 30, exp = 35}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_hooks_fake"
|
||||
RECIPE.name = "Vortigaunt Kancaları (sahte)"
|
||||
RECIPE.description = "Hem kelepçelerin hem de yakalıkların temel bileşeni. Bacakların etrafına çok sıkı otururlar. Yerine kilitlenir, bir kez uygulandıktan sonra çıkarılamazlar."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_slave_hooks_fake"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 30}, -- full XP
|
||||
{level = 30, exp = 15}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_meat01"
|
||||
RECIPE.name = "Besin Kemeri"
|
||||
RECIPE.description = "Her köşeden toplanmış lezzetli, ağız sulandıran headcrab derilerinden oluşan bir koleksiyon."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat01.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["headcrab_skewer"] = 3, ["comp_rivbolts"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_meat01"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 200}, -- full XP
|
||||
{level = 10, exp = 100}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_meat02"
|
||||
RECIPE.name = "Outlands Et Kemeri"
|
||||
RECIPE.description = "Combine'ın perdesi altında bulunması zor bir ürün ve bulunduğunda hoş karşılanan bir lezzet."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat02.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["antlion_skewer"] = 3, ["comp_rivbolts"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_meat02"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full XP
|
||||
{level = 10, exp = 150}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_bandanna"
|
||||
RECIPE.name = "Vortigaunt Bandana"
|
||||
RECIPE.description = "Gizlilik son derece önemlidir. Kimsenin burada bir Vortigaunt olduğunu bilmesini istemeyiz."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_bandana"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_helmet"
|
||||
RECIPE.name = "Vortigaunt Kaskı"
|
||||
RECIPE.description = "Pratiklikten önce koruma. Şansınız yaver giderse, düşman biraz daha yükseğe nişan almaya çalışabilir."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 3, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_head_helmet"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 30, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_kevlar"
|
||||
RECIPE.name = "Vortigaunt Kevlar"
|
||||
RECIPE.description = "Standart bir insan kevlar seti, kabaca vortigaunt kullanımına uygun."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 1, ["comp_steel"] = 3, ["comp_rivbolts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_vest"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full XP
|
||||
{level = 40, exp = 75}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_labcoat2"
|
||||
RECIPE.name = "Vortigaunt Laboratuvar Önlüğü"
|
||||
RECIPE.description = "Daha bilimsel bir yaşam tarzı arayan vortigauntlar için bilimsel bir üniforma."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_doc2"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_labcoat"
|
||||
RECIPE.name = "Rozetli Vortigaunt Laboratuvar Önlüğü"
|
||||
RECIPE.description = "Daha bilimsel bir yaşam tarzı arayan vortigauntlar için bilimsel bir üniforma. Bu varyant bir rozetle birlikte gelir."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_scrap"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_doc"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_chef_hat"
|
||||
RECIPE.name = "Vortigaunt Aşcı Şapkası"
|
||||
RECIPE.description = "Vortigauntlar, Vortessence ile olan bağlantıları nedeniyle mutfak sanatlarındaki üstün yetenekleriyle tanınırlar. Bir Vortigaunt'un geçici olarak uzman bir şef gibi davranması için geriye kalan tek adım bu aptal şapkalardan birini takmaktır."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_head_chefhat"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_hoodie"
|
||||
RECIPE.name = "Vortigaunt Kapüşonlu Üst"
|
||||
RECIPE.description = "Daha uzun bir boyun için uzatılmış kapüşonlu. Bir vortigaunt'u en zorlu koşullarda bile sıcak tutmak için mükemmeldir."
|
||||
RECIPE.model = "models/n7/vorti_outfit/hoodie.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_hoodie"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full XP
|
||||
{level = 20, exp = 35}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_trench_coat"
|
||||
RECIPE.name = "Vortigaunt Kahverengi Trençkot"
|
||||
RECIPE.description = "Güneşten yanmış, yenilenmiş bir trençkot. Vücudun sıcak ve biraz kuru olmasını sağlar."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light3_tc"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_poncho"
|
||||
RECIPE.name = "Rafine Vortigaunt Panço"
|
||||
RECIPE.description = "Güvenilir ve sağlam bir örtü, bileşimi tipik insan giysilerinden türetilmiştir. Bol kesim tasarımı ve kullanışlı kesikler rahatlık ve hareket özgürlüğü sağlar."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light01.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full XP
|
||||
{level = 20, exp = 25}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_covering"
|
||||
RECIPE.name = "Eğreti Vortigaunt Kaplaması"
|
||||
RECIPE.description = "Basit, sade bir örtü. Soğuk bir gecede sizi rahat tutmak için iyi, başka bir şey için değil."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light02.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light2"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_armour"
|
||||
RECIPE.name = "Vortigaunt Antlion Muhafız Plakası"
|
||||
RECIPE.description = "Mağlup edilmiş Antlion muhafızlarının kalın zırhlı derilerinden yapılan bu zırh sadece sağlam değil, aynı zamanda deneyimli bir savaşçının işaretidir."
|
||||
RECIPE.model = "models/n7/vorti_outfit/armor.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 8, ["comp_steel"] = 3, ["comp_rivbolts"] = 2, ["comp_fabric"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_armor"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 300}, -- full XP
|
||||
{level = 40, exp = 150}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,322 @@
|
||||
--[[
|
||||
| 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_wep_ms_ballrifle"
|
||||
RECIPE.name = "Tikhar Top Tüfeği"
|
||||
RECIPE.description = "Sadece topların ağırlığı değil aynı zamanda silahın basınç kuvveti sayesinde top şeklindeki topakları oldukça ağır bir etkiyle ateşleyebilen derme çatma bir silah."
|
||||
RECIPE.model = "models/weapons/c_Tikhar.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 3, ["comp_iron"] = 3, ["comp_rivbolts"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_tikhar"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_boltrifle"
|
||||
RECIPE.name = "Helsing Bolt Tüfek"
|
||||
RECIPE.description = "Metal cıvatalar fırlatan sessiz, döner bir hava tabancası."
|
||||
RECIPE.model = "models/weapons/c_Helsing.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 2, ["comp_iron"] = 2, ["comp_rivbolts"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_helsing"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_shotgun"
|
||||
RECIPE.name = "Duplet Double Barrel"
|
||||
RECIPE.description = "A Double Barrel shotgun made from the worst materials around, literally 2 water pipes for a barrel."
|
||||
RECIPE.model = "models/weapons/c_duplet.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 2, ["comp_weapon_parts"] = 1, ["leadpipe"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_duplet"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_smg"
|
||||
RECIPE.name = "Bastard SMG"
|
||||
RECIPE.description = "A creation from scrap and pipe work... someone got bored one day."
|
||||
RECIPE.model = "models/weapons/c_BastardGun.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 2, ["comp_weapon_parts"] = 1, ["leadpipe"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_bassmg"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_popper"
|
||||
RECIPE.name = "Popper"
|
||||
RECIPE.description = "A revolver capable of firing a powerful shot towards its foes. In all fairness, its actually quite decent."
|
||||
RECIPE.model = "models/weapons/c_MetroRevolver.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_weapon_parts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_popper"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_vsk"
|
||||
RECIPE.name = "VSK-94"
|
||||
RECIPE.description = "A somewhat well-made VSK-94. Not sure how you did it, but good job."
|
||||
RECIPE.model = "models/weapons/c_VSV.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_weapon_parts"] = 2, ["comp_wood"] = 4, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_vsv"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_akm"
|
||||
RECIPE.name = "Makeshift AKM"
|
||||
RECIPE.description = "An AKM which someone tried making, made out of all sorts of scrap from the Outlands."
|
||||
RECIPE.model = "models/weapons/c_kalash.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 4, ["comp_weapon_parts"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_ak"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_p90"
|
||||
RECIPE.name = "Odd-looking P90"
|
||||
RECIPE.description = "Is this meant to be a P90 as it has the capacity for one, the firerate for one. But no the looks of one."
|
||||
RECIPE.model = "models/weapons/c_kalash2012.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 4, ["comp_weapon_parts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_p90"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_knife"
|
||||
RECIPE.name = "Mutfak Bıçağı (Bilenmiş)"
|
||||
RECIPE.description = "Combine'ın sunduğu standart bıçağa kıyasla bilenmiş bir mutfak bıçağı... buna kesinlikle izin verilmiyor."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_kitknife.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 4, ["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["kitknife"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 100},
|
||||
{level = 10, exp = 50},
|
||||
{level = 15, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_cleaver"
|
||||
RECIPE.name = "Satır"
|
||||
RECIPE.description = "Et doğramak için bir satır."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_cleaver.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_wood"] = 1, ["comp_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["cleaver"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_hatchet"
|
||||
RECIPE.name = "Balta"
|
||||
RECIPE.description = "Ağaçları veya insanları kesmek için kullanılan standart balta."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_hatchet.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_wood"] = 1, ["comp_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["hatchet"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120},
|
||||
{level = 20, exp = 60},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_baseball_bat"
|
||||
RECIPE.name = "Beyzbol Sopası"
|
||||
RECIPE.description = "Tüm vuruş ihtiyaçlarınız için... artık böyle eğlenmenize izin verildiği sürece."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_bat_metal.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_wood"] = 3, ["comp_rivbolts"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["baseballbat"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_crowbar"
|
||||
RECIPE.name = "Levye"
|
||||
RECIPE.description = "Hmm... bir levye. Şimdi onunla Sivil Koruma'yı öldüresiye dövmeyin."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_crowbar.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["crowbar"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_leadpipe"
|
||||
RECIPE.name = "Su Borusu"
|
||||
RECIPE.description = "Standart bir silah olarak kullanmanız için bir boru, sadece şimdi duvarlardan boruları sökmeye gitmeyin."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_pipe_lead.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["leadpipe"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_sledgehammer"
|
||||
RECIPE.name = "Kızak Çekici"
|
||||
RECIPE.description = "Ağır ve güçlü. Bununla kimseye vurmamaya dikkat edin."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_sledge.mdl"
|
||||
RECIPE.category = "Silahlar"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_wood"] = 3, ["comp_rivbolts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["sledgehammer"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 500},
|
||||
{level = 40, exp = 250},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,66 @@
|
||||
--[[
|
||||
| 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 = "craft_writing_pin"
|
||||
RECIPE.name = "Toplu iğne"
|
||||
RECIPE.description = "Bir iğne. Duvarlara kağıt vb. asmak için kullanılır."
|
||||
RECIPE.model = "models/items/crossbowrounds.mdl"
|
||||
RECIPE.category = "Yazma"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["pin"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_notepad"
|
||||
RECIPE.name = "Not Defteri"
|
||||
RECIPE.description = "Yazmak için bir not defteri."
|
||||
RECIPE.model = "models/props_lab/clipboard.mdl"
|
||||
RECIPE.category = "Yazma"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["paper"] = 1, ["comp_wood"] = 1, ["comp_scrap"] = 1}
|
||||
RECIPE.result = {["notepad"] = 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 = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_ink"
|
||||
RECIPE.name = "Siyah Mürekkep"
|
||||
RECIPE.description = "Siyah mürekkep kartuşu."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Yazma"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_charcoal"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["black_ink"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 70}, -- full xp
|
||||
{level = 30, exp = 35}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
Reference in New Issue
Block a user