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,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()
|
||||
Reference in New Issue
Block a user