mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
49 lines
1.6 KiB
Lua
49 lines
1.6 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_tea"
|
||
|
|
RECIPE.name = "Tasse de thé"
|
||
|
|
RECIPE.category = "Boissons chaudes"
|
||
|
|
RECIPE.description = "Cette casse de thé exhale une délicieuse vapeur chaude, vous invitant à prendre une pause apaisante dans votre aventure."
|
||
|
|
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 = 150}, -- full xp
|
||
|
|
{level = 14, exp = 75}, -- half xp
|
||
|
|
{level = 15, exp = 0} -- no xp
|
||
|
|
}
|
||
|
|
RECIPE:Register()
|
||
|
|
|
||
|
|
local RECIPE = ix.recipe:New()
|
||
|
|
RECIPE.uniqueID = "cooking_coffee"
|
||
|
|
RECIPE.name = "Gobelet à Café"
|
||
|
|
RECIPE.category = "Boissons chaudes"
|
||
|
|
RECIPE.description = "Puissant et assez chaud pour être bu."
|
||
|
|
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 = 150}, -- full xp
|
||
|
|
{level = 14, exp = 75}, -- half xp
|
||
|
|
{level = 15, exp = 0} -- no xp
|
||
|
|
}
|
||
|
|
RECIPE:Register()
|