mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-19 06:33:47 +03:00
128 lines
4.7 KiB
Lua
128 lines
4.7 KiB
Lua
|
|
--[[
|
||
|
|
| This file was obtained through the combined efforts
|
||
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
||
|
|
|
|
||
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
||
|
|
|
|
||
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
local RECIPE = ix.recipe:New()
|
||
|
|
RECIPE.uniqueID = "cooking_artificial_skewer"
|
||
|
|
RECIPE.name = "Syntetyczne mięso na szaszłykach"
|
||
|
|
RECIPE.category = "Syntetyczne"
|
||
|
|
RECIPE.description = "Syntetyczne mięso na szaszłykach to opcja dla wegan i wegetarian, która pozwala poczuć smak grillowania, bez uczucia winy wobec zwierząt."
|
||
|
|
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 = "Syntetyczna pasta mięsna"
|
||
|
|
RECIPE.category = "Syntetyczne"
|
||
|
|
RECIPE.description = "Może i nie jest to jakość znana sprzed okupacji, ale w pewnym sensie przypomina dawne czasy.."
|
||
|
|
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 = "Syntetyczna pasta serowa"
|
||
|
|
RECIPE.category = "Syntetyczne"
|
||
|
|
RECIPE.description = "Nie jest to jakiś 'creme de la creme', ale da się zjeść."
|
||
|
|
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 = "Pieczone syntetyczne mięso"
|
||
|
|
RECIPE.category = "Syntetyczne"
|
||
|
|
RECIPE.description = "Nafaszerowane substancjami chemicznymi i innymi substytutami podtrzymującymi ważność; nie licząc tego, że prawdopodobnie dostaniesz raka - to jest całkiem smaczne."
|
||
|
|
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 = "Syntetyczne mięso z solą i makaronem."
|
||
|
|
RECIPE.category = "Syntetyczne"
|
||
|
|
RECIPE.description = "Raczej nie zalecane jest serwowania tego dania do osób, którzy są koneserami gastronomicznymi."
|
||
|
|
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 = "Syntetyczny gulasz mięsny"
|
||
|
|
RECIPE.category = "Syntetyczne"
|
||
|
|
RECIPE.description = "Gulasz powinien zawsze wyjść smaczny, ale ten napewno taki nie jest."
|
||
|
|
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 = 30
|
||
|
|
RECIPE.experience = {
|
||
|
|
{level = 30, exp = 180}, -- full xp
|
||
|
|
{level = 40, exp = 120}, -- half xp
|
||
|
|
{level = 45, exp = 0} -- no xp
|
||
|
|
}
|
||
|
|
RECIPE:Register()
|