Files
wnsrc/gamemodes/darkrp/plugins/willardskills/recipes/cooking/sh_cooking_drinks.lua

49 lines
1.5 KiB
Lua
Raw Normal View History

2024-08-04 23:54:45 +03:00
--[[
| 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 = "Bir Bardak Çay"
RECIPE.category = "İçecekler"
RECIPE.description = "Rahatlatıcı ve sıcak bir dokunuş."
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 = "Bir Fincan Kahve"
RECIPE.category = "İçecekler"
RECIPE.description = "Güçlü ve içilebilecek kadar sıcak."
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()