mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
116 lines
4.1 KiB
Lua
116 lines
4.1 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/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
RECIPE = ix.recipe:New()
|
||
|
|
RECIPE.uniqueID = "cooking_antlion_sandwich"
|
||
|
|
RECIPE.name = "Sandwich au Fourmilion"
|
||
|
|
RECIPE.category = "Exogène"
|
||
|
|
RECIPE.subcategory = "Fourmilion"
|
||
|
|
RECIPE.description = "Deux tranches de pain garnies de viande de fourmilion grillée et d'ingrédients frais."
|
||
|
|
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 = "Brochette de viande de fourmilion"
|
||
|
|
RECIPE.category = "Exogène"
|
||
|
|
RECIPE.subcategory = "Fourmilion"
|
||
|
|
RECIPE.description = "Des morceaux de viande de fourmilion grillés sur une brochette en bois."
|
||
|
|
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 = "Viande de fourmilion rôtie"
|
||
|
|
RECIPE.category = "Exogène"
|
||
|
|
RECIPE.subcategory = "Fourmilion"
|
||
|
|
RECIPE.description = "Une tranche de viande de fourmilion rôtie ne vous remplit pas autant que vous le voudriez, elle est assez filandreuse et a une texture étrange."
|
||
|
|
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 = "Ragoût de Fourmilion"
|
||
|
|
RECIPE.category = "Exogène"
|
||
|
|
RECIPE.subcategory = "Fourmilion"
|
||
|
|
RECIPE.description = "Un plat chaud et épicé rempli de viande de fourmilion mijotée."
|
||
|
|
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 = 20
|
||
|
|
RECIPE.experience = {
|
||
|
|
{level = 30, exp = 250}, -- full xp
|
||
|
|
{level = 40, exp = 125}, -- half xp
|
||
|
|
{level = 45, exp = 0} -- no xp
|
||
|
|
}
|
||
|
|
RECIPE:Register()
|