mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
--[[
|
||||
| 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 = "cooking_bird_skewer"
|
||||
RECIPE.name = "Şişte Kuş"
|
||||
RECIPE.category = "Kuş"
|
||||
RECIPE.description = "Bir çubuğa sıkıca tutturulmuş şişlenmiş kuş parçaları, yenilebilir görünüyorlar."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_bird_meat"] = 2}
|
||||
RECIPE.result = {["bird_skewer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bird_fillet"
|
||||
RECIPE.name = "Kavrulmuş Kuş Fileto"
|
||||
RECIPE.category = "Kuş"
|
||||
RECIPE.description = "Sert kavrulmuş kuş eti."
|
||||
RECIPE.model = "models/willardnetworks/food/meat6.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_bird_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["bird_fillet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bird_potluck"
|
||||
RECIPE.name = "Kuş Yemeği"
|
||||
RECIPE.category = "Kuş"
|
||||
RECIPE.description = "Farklı baharatlar ve sebzelerle karıştırılmış pişmiş kuş."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food3.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["bird_fillet"] = 1, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["bird_potluck"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 29, exp = 125}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,112 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_sandwich"
|
||||
RECIPE.name = "Antlion Sandviçi"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "İki parça ekmeği bir araya getirip arasına bir parça Antlion eti koyun ve işte size bir sandviç."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1, ["antlion_roast"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["antlion_sandwich"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_skewer"
|
||||
RECIPE.name = "Şişte Antlion Eti"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "Diğer dünya tazeliği uygun şekilde çarpıtılmış ve yemeye hazır."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 2}
|
||||
RECIPE.result = {["antlion_skewer"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_roast"
|
||||
RECIPE.name = "Kavrulmuş Antlion Eti"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "Kavrulmuş bir parça antilop eti, sizi istediğiniz kadar doyurmuyor, oldukça lifli ve garip bir dokuya sahip."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_alienmeat.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["antlion_roast"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_dish"
|
||||
RECIPE.name = "Baharatlı Antlion Eti Yemeği"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "Malzemelerin dünya dışı karışımlarından oluşan bu yemek garip bir şekilde oldukça iştah açıcı görünüyor."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food4.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["antlion_roast"] = 1, ["ing_spices"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["antlion_dish"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 29, exp = 125}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_stew"
|
||||
RECIPE.name = "Antlion Yahnisi"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "Et parçaları, sebzeler ve baharatın bir araya gelmesiyle ortaya çıkan iştah açıcı bir güveç."
|
||||
RECIPE.model = "models/willardnetworks/food/meatysoup.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 1, ["ing_sauce"] = 1, ["ing_spices"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["antlion_stew"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 250}, -- full xp
|
||||
{level = 35, exp = 125}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,128 @@
|
||||
--[[
|
||||
| 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 = "cooking_artificial_skewer"
|
||||
RECIPE.name = "Şişte Yapay Et"
|
||||
RECIPE.category = "Yapay"
|
||||
RECIPE.description = "Eğrilmiş ve yemeye hazır olarak üretilmiş bir protein bloğu."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_artificial_meat"] = 2}
|
||||
RECIPE.result = {["artificial_skewer"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 180}, -- full xp
|
||||
{level = 10, exp = 120}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_meatpaste"
|
||||
RECIPE.name = "Yapay Et Ezmesi"
|
||||
RECIPE.category = "Yapay"
|
||||
RECIPE.description = "Daha iyi dolum ve tat için yapay et parçaları ile desteklenmiş beyaz kavanoz yapışkan yapay bulamaç."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.ingredients = {["proc_paste"] = 1, ["artificial_meat"] = 1}
|
||||
RECIPE.result = {["artificial_meatpaste"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 180}, -- full xp
|
||||
{level = 20, exp = 120}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_cheesepaste"
|
||||
RECIPE.name = "Yapay Peynir Ezmesi"
|
||||
RECIPE.category = "Yapay"
|
||||
RECIPE.description = "Biraz daha iyi bir doku ve dolgu için peynirle desteklenmiş beyaz kavanoz yapışkan yapay slop."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.ingredients = {["proc_paste"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["artificial_cheesepaste"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 180}, -- full xp
|
||||
{level = 20, exp = 120}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_meat"
|
||||
RECIPE.name = "Kavrulmuş Yapay Et"
|
||||
RECIPE.category = "Yapay"
|
||||
RECIPE.description = "Kolay tüketim için yapay etten oluşan bir protein bloğu."
|
||||
RECIPE.model = "models/willardnetworks/food/steak2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_artificial_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["artificial_meat"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 180}, -- full xp
|
||||
{level = 20, exp = 120}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_stirfry"
|
||||
RECIPE.name = "Vogda Kızartılmış Yapay Et"
|
||||
RECIPE.category = "Yapay"
|
||||
RECIPE.description = "Kızartılmış yapay et, tuz ve erişte ile karıştırılır."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["artificial_meat"] = 1, ["ing_spices"] = 1, ["ing_noodles"] = 1}
|
||||
RECIPE.result = {["artificial_stirfry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 180}, -- full xp
|
||||
{level = 29, exp = 120}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_stew"
|
||||
RECIPE.name = "Yapay Et Yahnisi"
|
||||
RECIPE.category = "Yapay"
|
||||
RECIPE.description = "Sos ve çeşitli sebze parçalarıyla karıştırılmış yapay et dilimleri."
|
||||
RECIPE.model = "models/willardnetworks/food/meatysoup2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_artificial_meat"] = 1, ["ing_sauce"] = 1, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["artificial_stew"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 180}, -- full xp
|
||||
{level = 40, exp = 120}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,221 @@
|
||||
--[[
|
||||
| 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 = "cooking_bread"
|
||||
RECIPE.name = "Ekmek"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Böyle zamanlarda bile ev yapımı ekmek büyük fark yaratabilir."
|
||||
RECIPE.model = "models/willardnetworks/food/bread_loaf.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_dough"] = 1}
|
||||
RECIPE.result = {["baking_bread"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artcheese"
|
||||
RECIPE.name = "Yapay Peynir"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Bugünlerde ikame olmayan süt ürünleri bulmak zor, inekler dünyanın dört bir yanına yayılmış fabrikalarda tutuluyor ve bulmak kolay değil."
|
||||
RECIPE.model = "models/willardnetworks/food/cheesewheel2c.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["drink_milk"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["artificial_cheese"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bagel"
|
||||
RECIPE.name = "Simit"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Yaratıcı yöntemlerle ekmek hamurundan simit elde edebilirsiniz, biraz kuru ama işinizi görecektir."
|
||||
RECIPE.model = "models/willardnetworks/food/bagel2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_dough"] = 1}
|
||||
RECIPE.result = {["baking_bagel"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pretzel"
|
||||
RECIPE.name = "Pretzel"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "İçi yumuşak, dışı biraz daha sert ve çiğnenebilir. Tuzlu iyilik."
|
||||
RECIPE.model = "models/willardnetworks/food/pretzel.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["baking_pretzel"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_croissant"
|
||||
RECIPE.name = "Kruvasan"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Fransızlar işgalden önce çok büyük uzmanlardı."
|
||||
RECIPE.model = "models/willardnetworks/food/croissant.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["ing_margarine"] = 1}
|
||||
RECIPE.result = {["baking_croissant"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_doughnut"
|
||||
RECIPE.name = "Donut"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Kesinlikle şekerli bir lüks. Hepsini kim yedi biliyor musun?"
|
||||
RECIPE.model = "models/willardnetworks/food/bagel1.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1}
|
||||
RECIPE.result = {["baking_doughnut"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 250}, -- full xp
|
||||
{level = 40, exp = 125}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_creamtreat"
|
||||
RECIPE.name = "Kremalı İkram"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Lezzetli bir tatlı krema ikramı!"
|
||||
RECIPE.model = "models/willardnetworks/food/creamtreat.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1}
|
||||
RECIPE.result = {["baking_treat"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 300}, -- full xp
|
||||
{level = 40, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_applepie"
|
||||
RECIPE.name = "Elmalı Turta"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Elmalarla karışık bir turta. Ne kadar tatlı."
|
||||
RECIPE.model = "models/willardnetworks/food/pie.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["fruit_apple"] = 3}
|
||||
RECIPE.result = {["baking_apple_pie"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 350}, -- full xp
|
||||
{level = 45, exp = 175}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sweetroll"
|
||||
RECIPE.name = "Tatlı Rulo"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Yetenekli bir aşçı bu tatlı ve lezzetli tatlı ruloyu yaptı."
|
||||
RECIPE.model = "models/willardnetworks/food/sweetroll.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["fruit_berries"] = 3}
|
||||
RECIPE.result = {["baking_sweetroll"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 350}, -- full xp
|
||||
{level = 45, exp = 175}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cheesecake"
|
||||
RECIPE.name = "Cheesecake"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Birkaç çilekle karıştırılmış bir cheesecake. Gerçekten de oldukça tatlı ve yapımı biraz beceri gerektiriyor."
|
||||
RECIPE.model = "models/willardnetworks/food/cake.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["artificial_cheese"] = 1, ["fruit_berries"] = 2}
|
||||
RECIPE.result = {["baking_cheesecake"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 350}, -- full xp
|
||||
{level = 45, exp = 175}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_xenpie"
|
||||
RECIPE.name = "Xen Turtası"
|
||||
RECIPE.category = "Pişirme"
|
||||
RECIPE.description = "Başka dünyalara ait malzemeler sıcak bir turtaya dönüşmek için karıştırıldı. Bunu ancak usta bir şef başarabilir."
|
||||
RECIPE.model = "models/willardnetworks/food/xen_pie.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["ing_xen_herb"] = 2, ["ing_xenberries"] = 4}
|
||||
RECIPE.result = {["xen_pie"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 0}, -- full xp
|
||||
{level = 40, exp = 0}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,227 @@
|
||||
--[[
|
||||
| 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 = "cooking_noodles"
|
||||
RECIPE.name = "Kızarmış Erişte"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "İşgal sırasında bile... Erişte popüler bir yemek seçeneği olmaya devam ediyor."
|
||||
RECIPE.model = "models/willardnetworks/food/noodles.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_noodles"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["comfort_noodles"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 75}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_toast"
|
||||
RECIPE.name = "Tost"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Çıtır çıtır, aile ile kahvaltı anılarını geri getiriyor."
|
||||
RECIPE.model = "models/willardnetworks/food/toast.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1}
|
||||
RECIPE.result = {["comfort_toast"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 90}, -- full xp
|
||||
{level = 10, exp = 45}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sandwich"
|
||||
RECIPE.name = "Sandviç"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Şehir İki'de çok popüler, yapay et ve peynirden oluşan bir sandviç."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1, ["artificial_meat"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["comfort_sandwich"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 150}, -- full xp
|
||||
{level = 20, exp = 75}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_scrambled"
|
||||
RECIPE.name = "Çırpılmış Yumurta"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Mükemmel şekilde çırpılmış gerçek yumurta, toz yumurtadan daha üstün bir dokuya sahiptir."
|
||||
RECIPE.model = "models/willardnetworks/food/eggmix.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_egg"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["comfort_scrambled"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking__powder_scrambled"
|
||||
RECIPE.name = "Çırpılmış Toz Yumurta"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Yapay peynirle çırpılmış yumurta tozu. Sadece hafif bir metalik tat."
|
||||
RECIPE.model = "models/willardnetworks/food/eggmix.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["comfort_scrambled"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_comfort_chicken"
|
||||
RECIPE.name = "Kızarmış Tavuk"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Uzak diyarlarda kolektifleştirilmiş, kötü koşullarda ve fabrikalarda et üretmek için kurulmuş bir endüstri."
|
||||
RECIPE.model = "models/willardnetworks/food/meat4.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_chicken"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["comfort_roastedchicken"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_boiledegg"
|
||||
RECIPE.name = "Haşlanmış Yumurta"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Bu günlerde güzel ama makul nadir bir kahvaltı."
|
||||
RECIPE.model = "models/willardnetworks/food/egg2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["ing_egg"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["luxury_boiled_egg"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pancakes"
|
||||
RECIPE.name = "Krep"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Kreplere hayır diyemezsin."
|
||||
RECIPE.model = "models/willardnetworks/food/pancake.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["drink_milk"] = 1}
|
||||
RECIPE.result = {["comfort_pancake"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_vegsoup"
|
||||
RECIPE.name = "Sebze Çorbası"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Sıcak bir kase sağlıklı sebze çorbası, zihni sabit tutmak için iyi bir yol."
|
||||
RECIPE.model = "models/willardnetworks/food/vegetablesoup.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_vegetable_pack"] = 2, ["ing_herbs"] = 1, ["crafting_water"] = 2}
|
||||
RECIPE.result = {["comfort_soup"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 160}, -- full xp
|
||||
{level = 40, exp = 80}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_fish"
|
||||
RECIPE.name = "Somon Biftek"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Lezzetli bir yemek olarak pişirilen nadir bir balık türü. Genellikle prestijli kişiler için ayrılmıştır."
|
||||
RECIPE.model = "models/willardnetworks/food/fishsteak.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_fish"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["comfort_fish"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_beef"
|
||||
RECIPE.name = "Kavrulmuş Sığır Eti"
|
||||
RECIPE.category = "Konforlu Yemek"
|
||||
RECIPE.description = "Bunu en son ne zaman gördünüz? Bir zamanlar evcilleştirilmiş ya da yabani bir yaratıktan kavrulmuş yerli bir hayvanın eti."
|
||||
RECIPE.model = "models/willardnetworks/food/meat4.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_beef"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["comfort_beef"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 150}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,49 @@
|
||||
--[[
|
||||
| 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 = "cooking_tea"
|
||||
RECIPE.name = "Bir Bardak Çay"
|
||||
RECIPE.category = "İçecekler"
|
||||
RECIPE.description = "Rahatlatıcı ve sıcak bir dokunuş."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_kettle"}
|
||||
RECIPE.ingredients = {["crafting_water"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["drink_tea"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 200}, -- full xp
|
||||
{level = 14, exp = 100}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_coffee"
|
||||
RECIPE.name = "Bir Fincan Kahve"
|
||||
RECIPE.category = "İçecekler"
|
||||
RECIPE.description = "Güçlü ve içilebilecek kadar sıcak."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.tools = {"tool_coffeemachine"}
|
||||
RECIPE.ingredients = {["ing_coffee_powder"] = 1, ["junk_coffeecup"] = 1}
|
||||
RECIPE.result = {["drink_coffee"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 200}, -- full xp
|
||||
{level = 14, exp = 100}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,141 @@
|
||||
--[[
|
||||
| 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 = "cooking_proteinkiller"
|
||||
RECIPE.name = "Protein Katili"
|
||||
RECIPE.description = "Toz protein, ağrı kesiciler ve Breen's Water ile karıştırılmış."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["painkillers"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["drug_proteinkiller"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 400}, -- full xp
|
||||
{level = 15, exp = 250}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_spikedcoffee"
|
||||
RECIPE.name = "Çivili Fincan Kahve"
|
||||
RECIPE.description = "Sıcak bir fincan kahve, bu garip zamanlarda sizi uyanık ve tetikte tutmaya yardımcı olur, görünüşe göre bu seferki her zamankinden daha da fazla..."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_coffee"] = 1, ["basic_green"] = 1}
|
||||
RECIPE.result = {["drug_spikedcoffee"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full xp
|
||||
{level = 15, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_spikedtea"
|
||||
RECIPE.name = "Çivili Fincan Çay"
|
||||
RECIPE.description = "Dokunulduğunda rahatlatıcı ve sıcak ama ağızda ekşi bir tat bırakıyor."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_tea"] = 1, ["basic_blue"] = 1}
|
||||
RECIPE.result = {["drug_spikedtea"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full xp
|
||||
{level = 15, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_injectedapple"
|
||||
RECIPE.name = "Enjekte Edilmiş Elma"
|
||||
RECIPE.description = "Tadı biraz garip olsa da diğer elmalara benziyor."
|
||||
RECIPE.model = "models/willardnetworks/food/apple.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["fruit_apple"] = 1, ["comp_syringe"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_injectedapple"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full xp
|
||||
{level = 15, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sunshinevodka"
|
||||
RECIPE.name = "Günışığı Votka"
|
||||
RECIPE.description = "Yapay güneş ışığı ve gökkuşağı gibi bir tat!"
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_proc_vodka"] = 1, ["ing_coffee_powder"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_sunshinevodka"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 350}, -- full xp
|
||||
{level = 20, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_milkyway"
|
||||
RECIPE.name = "Samanyolu"
|
||||
RECIPE.description = "Evrenle bir olmak için. En azından bir süreliğine."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_milk"] = 1, ["drink_bobenergy"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_milkyway"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 300}, -- full xp
|
||||
{level = 20, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_happypie"
|
||||
RECIPE.name = "Mutlu Turta"
|
||||
RECIPE.description = "Sizi kesinlikle mutlu edecek lezzetli bir elmalı turta."
|
||||
RECIPE.model = "models/willardnetworks/food/pie.mdl"
|
||||
RECIPE.category = "Uyuşturuculu Yemek"
|
||||
RECIPE.ingredients = {["baking_apple_pie"] = 1, ["basic_red"] = 1, ["basic_green"] = 1}
|
||||
RECIPE.result = {["drug_happypie"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 300}, -- full xp
|
||||
{level = 25, exp = 150}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,47 @@
|
||||
--[[
|
||||
| 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 = "cooking_potato"
|
||||
RECIPE.name = "Fırında Patates"
|
||||
RECIPE.category = "Çiftçilik"
|
||||
RECIPE.description = "Fırında patates."
|
||||
RECIPE.model = "models/mosi/fnv/props/potato.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["veg_potato"] = 1}
|
||||
RECIPE.result = {["baking_potato"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_tomato"
|
||||
RECIPE.name = "Fresh Tomato"
|
||||
RECIPE.category = "Çiftçilik"
|
||||
RECIPE.description = "A Tomato freshly picked and then cleaned off with water."
|
||||
RECIPE.model = "models/a31/fallout4/props/plants/tato_item.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["veg_tomato"] = 1}
|
||||
RECIPE.result = {["baking_tomato"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,112 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_sandwich"
|
||||
RECIPE.name = "Headcrab Sandviçi"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "İki parça ekmeği, arasına bir parça headcrab koyarak birbirine yapıştırın ve işte size bir sandviç."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1, ["headcrab_fillet"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["headcrab_sandwich"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 350}, -- full xp
|
||||
{level = 10, exp = 150}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_skewer"
|
||||
RECIPE.name = "Şişte Headcrab"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Bir çubuğa sıkıca tutturulmuş şişlenmiş headcrab, yenilebilir görünüyor."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_headcrab_meat"] = 2}
|
||||
RECIPE.result = {["headcrab_skewer"] = 6}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 350}, -- full xp
|
||||
{level = 10, exp = 150}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_fillet"
|
||||
RECIPE.name = "Kavrulmuş Headcrab Fileto"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Bir dilim sert kavrulmuş headcrab eti."
|
||||
RECIPE.model = "models/willardnetworks/food/meat6.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_headcrab_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["headcrab_fillet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 350}, -- full xp
|
||||
{level = 20, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_potluck"
|
||||
RECIPE.name = "Headcrab Yemeği"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Farklı baharatlar ve sebzelerle karıştırılmış pişmiş headcrab."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food3.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["headcrab_fillet"] = 1, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["headcrab_potluck"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 300}, -- full xp
|
||||
{level = 29, exp = 150}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_jambalaya"
|
||||
RECIPE.name = "Headcrab Jambalaya"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Baharatlı sos, sebze ve diğer malzemelerle karıştırılmış haşlanmış headcrab."
|
||||
RECIPE.model = "models/willardnetworks/food/stew1.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_headcrab_meat"] = 1, ["ing_sauce"] = 1, ["ing_spices"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["headcrab_jambalaya"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 300}, -- full xp
|
||||
{level = 40, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,103 @@
|
||||
--[[
|
||||
| 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 = "cooking_ing_bread_dough"
|
||||
RECIPE.name = "Ekmek Hamuru"
|
||||
RECIPE.category = "Malzemeler"
|
||||
RECIPE.description = "Lezzetli ekmek elde etmek için ilk bileşen."
|
||||
RECIPE.model = "models/willardnetworks/food/dough.mdl"
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_flour"] = 1, ["drink_milk"] = 1, ["ing_margarine"] = 1}
|
||||
RECIPE.result = {["ing_dough"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 200}, -- full xp
|
||||
{level = 10, exp = 100}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_pastry_dough"
|
||||
RECIPE.name = "Pasta Hamuru"
|
||||
RECIPE.category = "Malzemeler"
|
||||
RECIPE.description = "Pastacılık ürünleri için daha uygun bir hamur."
|
||||
RECIPE.model = "models/willardnetworks/props/dough.mdl"
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_flour"] = 1, ["drink_milk"] = 1, ["ing_margarine"] = 1}
|
||||
RECIPE.result = {["ing_pastry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sweet_dough"
|
||||
RECIPE.name = "Şekerli Pasta Hamuru"
|
||||
RECIPE.category = "Malzemeler"
|
||||
RECIPE.description = "Tatlı hamur işleri için uygun meyvelerle tatlandırılmış hamur işi."
|
||||
RECIPE.model = "models/willardnetworks/props/sweetdough.mdl"
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["ing_sweet"] = 1, ["fruit_berries"] = 2}
|
||||
RECIPE.result = {["ing_sweetpastry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sauce"
|
||||
RECIPE.name = "Sos Temeli"
|
||||
RECIPE.category = "Malzemeler"
|
||||
RECIPE.description = "Bir sosun temellerini şekillendirmek için bir araya getirilen malzemelerin karışımı."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_flour"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["ing_sauce"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 35, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sauce_makeshift"
|
||||
RECIPE.name = "El Yapımı Sos Tabanı"
|
||||
RECIPE.category = "Malzemeler"
|
||||
RECIPE.description = "Bir sosun temellerini şekillendirmek için bir araya getirilen malzemelerin karışımı."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_flour"] = 1, ["comp_chemcomp"] = 1}
|
||||
RECIPE.result = {["ing_sauce"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 35, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,92 @@
|
||||
--[[
|
||||
| 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 = "cooking_skewered_leech"
|
||||
RECIPE.name = "Şişlenmiş Sülük"
|
||||
RECIPE.category = "Sülük"
|
||||
RECIPE.description = "Sulu görünen şişlenmiş parazit bir sülük."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_raw_leech"] = 5}
|
||||
RECIPE.result = {["leech_skewer"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_roast"
|
||||
RECIPE.name = "Kızartılmış Sülük"
|
||||
RECIPE.category = "Sülük"
|
||||
RECIPE.description = "Bir zamanların korkunç paraziti şimdi kavrulmuş ve yemeye hazır."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_leech.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_raw_leech"] = 2, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["leech_roast"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
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 = "cooking_leech_goulash"
|
||||
RECIPE.name = "Sülük Goulash"
|
||||
RECIPE.category = "Sülük"
|
||||
RECIPE.description = "Bir tencerede tuzlanmış ve içine dalınmaya hazır otlarla kızartılmış çeşitli parazit sülükler."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food1.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["leech_roast"] = 2, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["leech_goulash"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 29, exp = 80}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_stew"
|
||||
RECIPE.name = "Kremalı Sülük Yahnisi"
|
||||
RECIPE.category = "Sülük"
|
||||
RECIPE.description = "Çeşitli sülükler kaynatılır, karıştırılır ve kremalı bir sosun içine konur. Çok sıcak."
|
||||
RECIPE.model = "models/willardnetworks/food/whitesoup.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_raw_leech"] = 2, ["ing_sauce"] = 1, ["drink_milk"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["leech_stew"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 160}, -- full xp
|
||||
{level = 40, exp = 80}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,88 @@
|
||||
--[[
|
||||
| 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 = "cooking_pickled_vegetables"
|
||||
RECIPE.name = "Sebze Turşusu"
|
||||
RECIPE.category = "Turşu"
|
||||
RECIPE.description = "Bir şişe sebze turşusu, biraz iştah açıcı görünüyor."
|
||||
RECIPE.model = "models/willardnetworks/foods/pickled.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_vegetable_pack"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["pickled_vegetables"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_egg"
|
||||
RECIPE.name = "Yumurta Turşusu"
|
||||
RECIPE.category = "Turşu"
|
||||
RECIPE.description = "Yumurta turşusu, eskiden Şehir İki çevresinde oldukça yaygın bir manzaraydı."
|
||||
RECIPE.model = "models/willardnetworks/food/egg2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["ing_egg"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["pickled_egg"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_eggmush"
|
||||
RECIPE.name = "Yumurta Ezmesi Turşusu"
|
||||
RECIPE.category = "Turşu"
|
||||
RECIPE.description = "Turşu haline getirilmiş yumurta hamurunun bir araya getirilerek yenilebilir bir forma sokulmasından oluşan tuhaf bir mekanizma."
|
||||
RECIPE.model = "models/willardnetworks/food/eggmix.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_vinegar"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["pickled_eggmush"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_leech"
|
||||
RECIPE.name = "Sülük Turşusu"
|
||||
RECIPE.category = "Turşu"
|
||||
RECIPE.description = "İtiraf etmelisin ki, biraz iğrenç. Ama yenilebilir."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_leech.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["leech_roast"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["pickled_leech"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
Reference in New Issue
Block a user