mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +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 = "Skewered Bird"
|
||||
RECIPE.category = "Bird"
|
||||
RECIPE.description = "Skewered bird bits firmly stuck on a stick, they look edible."
|
||||
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 = "Roasted Bird Fillet"
|
||||
RECIPE.category = "Bird"
|
||||
RECIPE.description = "A slab of firm roasted bird meat."
|
||||
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 = "Bird Potluck"
|
||||
RECIPE.category = "Bird"
|
||||
RECIPE.description = "Cooked bird mixed in with different spices and vegetables."
|
||||
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 Sandwich"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "Slap two pieces of bread together with a slab of antlion meat in-between and you have yourself a sandwich."
|
||||
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 = "Skewered Antlion Meat"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "Otherworldly freshness skewed appropriately and ready to eat."
|
||||
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 = "Roasted Antlion Meat"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "A roasted slab of antlion meat, doesn't fill you up as much as you'd like it to, it's quite stringy and carries an odd texture."
|
||||
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 = "Spiced Dish of Antlion Meat"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "This dish of otherworldy mixtures of ingredients look strangely rather appetising."
|
||||
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 Stew"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "An otherwordly mixture of meat chunks, vegetables and spice combined to produce a seemingly apetizing stew."
|
||||
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 = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 250}, -- full xp
|
||||
{level = 40, exp = 125}, -- half xp
|
||||
{level = 45, 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 = "Skewered Artificial Meat"
|
||||
RECIPE.category = "Artificial"
|
||||
RECIPE.description = "A protein block of meat skewed and produced as ready to eat."
|
||||
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 = "Artificial Meat Paste"
|
||||
RECIPE.category = "Artificial"
|
||||
RECIPE.description = "White jar of gooey artificial slop, supplemented with bits of artificial meat for improved fill and taste."
|
||||
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 = "Artificial Cheese Paste"
|
||||
RECIPE.category = "Artificial"
|
||||
RECIPE.description = "White jar of gooey artificial slop, supplemented with cheese for a slightly improved texture and fill."
|
||||
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 = "Roasted Artificial Meat"
|
||||
RECIPE.category = "Artificial"
|
||||
RECIPE.description = "A protein block of Artificial meat for easy consumption."
|
||||
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 = "Artificial Meat Stir Fry"
|
||||
RECIPE.category = "Artificial"
|
||||
RECIPE.description = "Stir fried artificial meat, mixed with salt and noodles."
|
||||
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 = "Artificial Meat Stew"
|
||||
RECIPE.category = "Artificial"
|
||||
RECIPE.description = "Artificial meat slabs mixed with gravy and an assortment of vegetable chunks."
|
||||
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()
|
||||
@@ -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 = "Bread"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "Even in times such as these, homemade bread can make all the difference."
|
||||
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 = "Artificial Cheese"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "Non-substitute dairy is hard to come by these days, cows are kept around in factories spread throughout the world and aren’t easy to come by."
|
||||
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 = "Bagel"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "Through inventive means you're able to procure bagels from bread dough, it's somewhat dry but it'll do nicely."
|
||||
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 = "Baking"
|
||||
RECIPE.description = "Soft on the inside, with a slightly tougher, chewy exterior. Salty goodness."
|
||||
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 = 20
|
||||
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 = "Croissant"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "The French were very great connoisseurs... before the invasion."
|
||||
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 = 20
|
||||
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 = "Doughnut"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "Definitely a sugary deluxe. Do you know who ate them all?"
|
||||
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 = 30
|
||||
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 = "Cream Treat"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "A delicious sweet cream treat!"
|
||||
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 = 30
|
||||
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 = "Apple Pie"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "A pie mixed in with apples. How sweet."
|
||||
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 = 40
|
||||
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 = "Sweetroll"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "A skilled cook has made this sweet and tasteful sweetroll."
|
||||
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 = 40
|
||||
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 = "Brick Cheesecake"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "A firm cheesecake, often called the Brick Cheesecake. The scarcity of everyday baking ingredients has led to some rather unconventional outcomes."
|
||||
RECIPE.model = "models/willardnetworks/food/wn_food_cheesecake.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 = 40
|
||||
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 Pie"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "Otherworldly ingredients mixed to become a warm pie. Only a master chef could pull this off."
|
||||
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 = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full xp
|
||||
{level = 50, 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 = "Fried Noodles"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Even during the occupation.. Noodles remain a popular choice for food."
|
||||
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 = "Toast"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "It's crunchy, brings back memories of breakfast with the family."
|
||||
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 = "Sandwich"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Very popular in City Two, a sandwich of artificial meat and cheese."
|
||||
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 = "Scrambled Eggs"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Real eggs scrambled to perfection, its texture superior to powdered eggs."
|
||||
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 = "Scrambled Powdered Eggs"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Powdered eggs scrambled with artificial cheese.. Only a slight metalic aftertaste."
|
||||
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 = "Roasted Chicken"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "An industry collectivized in distant lands, set in foul conditions and factories to produce meat."
|
||||
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 = "Boiled Egg"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "A lovely but reasonable rare breakfast these days."
|
||||
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 = "Pancakes"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "You just can't say no to pancakes."
|
||||
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 = "Vegetable Soup"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "A warm bowl of healthy vegetable soup, a good way to keep a steady mind."
|
||||
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 = 30
|
||||
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 = "Salmon Steak"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "A rare species of fish cooked as a delicious meal. Usually reserved for prestigious figures."
|
||||
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 = 40
|
||||
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 = "Roasted Beef"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "When was the last time you've seen this? Meat from a native animal roasted from a creature once either domesticated, or feral."
|
||||
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 = 40
|
||||
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 = "Cup of Tea"
|
||||
RECIPE.category = "Drinks"
|
||||
RECIPE.description = "Comforting and warm to the touch."
|
||||
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 = "Cup of Coffee"
|
||||
RECIPE.category = "Drinks"
|
||||
RECIPE.description = "Powerful and hot enough to drink."
|
||||
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 Killer"
|
||||
RECIPE.description = "Powdered protein mushed up with painkillers and Breen's Water."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "Spiked Cup of Coffee"
|
||||
RECIPE.description = "Warm cup of coffee, helps keep you alert and awake for these strange times, this one seemingly even more so than usual.."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "Spiked Cup of Tea"
|
||||
RECIPE.description = "Comforting and warm to the touch but with a sour aftertaste."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "Injected Apple"
|
||||
RECIPE.description = "It looks like any other apple, although with a somewhat funny aftertaste.."
|
||||
RECIPE.model = "models/willardnetworks/food/apple.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "Sunshine Vodka"
|
||||
RECIPE.description = "Tastes like artificial sunshine and rainbows!"
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "The Milky Way"
|
||||
RECIPE.description = "To become one with the universe.. At least for a little bit."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "Happy Pie"
|
||||
RECIPE.description = "A delicious apple pie that will certainly make you happy."
|
||||
RECIPE.model = "models/willardnetworks/food/pie.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
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 = "Baked Potato"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.description = "A baked potato."
|
||||
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 = "Farming"
|
||||
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 Sandwich"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Slap two pieces of bread together with a slab of headcrab meat in-between and you have yourself a sandwich."
|
||||
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 = "Skewered Headcrab"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Skewered headcrab bits firmly stuck on a stick, looks edible."
|
||||
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 = "Roasted Headcrab Fillet"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "A slab of firm roasted headcrab meat."
|
||||
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 Potluck"
|
||||
RECIPE.category = "Headcrab"
|
||||
RECIPE.description = "Cooked headcrab mixed in with different spices and vegetables."
|
||||
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 = "Boiled headcrab mixed in with a spicy gravy, vegetables and other ingredients."
|
||||
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 = 30
|
||||
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 = "Bread Dough"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.description = "The first ingredient to attaining delicious bread."
|
||||
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 = "Pastry Dough"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.description = "A dough more suitable for pastry products."
|
||||
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 = 20
|
||||
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 = "Sweetened Pastry Dough"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.description = "Pastry sweetened up with berries suitable for dessert pastries."
|
||||
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 = 20
|
||||
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 = "Sauce Base"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.description = "A mixture of ingredients mixed together to shape the foundations of a sauce."
|
||||
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 = 30
|
||||
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 = "Makeshift Sauce Base"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.description = "A mixture of ingredients mixed together to shape the foundations of a sauce."
|
||||
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 = 30
|
||||
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 = "Skewered Leech"
|
||||
RECIPE.category = "Leech"
|
||||
RECIPE.description = "A skewered parasitic leech that appears juicy."
|
||||
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 = "Roasted Leech"
|
||||
RECIPE.category = "Leech"
|
||||
RECIPE.description = "A once dreaded parasite now roasted and ready to eat."
|
||||
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 = "Leech Goulash"
|
||||
RECIPE.category = "Leech"
|
||||
RECIPE.description = "Various parasitic leeches salted in a pot and fried with herbs ready to be delved into."
|
||||
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 = 20
|
||||
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 = "Creamy Leech Stew"
|
||||
RECIPE.category = "Leech"
|
||||
RECIPE.description = "Various leeches boiled, mixed in and placed into a creamy gravy-sauce. It's hot."
|
||||
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 = 30
|
||||
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 = "Pickled Vegetables"
|
||||
RECIPE.category = "Pickled"
|
||||
RECIPE.description = "A bottle of pickled vegetables, it looks somewhat appetizing."
|
||||
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 = "Pickled Egg"
|
||||
RECIPE.category = "Pickled"
|
||||
RECIPE.description = "Pickled egg, used to be quite a common sight around City Two."
|
||||
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 = "Pickled Eggmush"
|
||||
RECIPE.category = "Pickled"
|
||||
RECIPE.description = "A weird contraption of pickled egg paste mushed together into a somewhat edible form."
|
||||
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 = "Pickled Leech"
|
||||
RECIPE.category = "Pickled"
|
||||
RECIPE.description = "You have to admit, it's a tad disgusting.. However it is edible."
|
||||
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