Files
wnsrc/gamemodes/darkrp/plugins/willardskills/recipes/medicine/sh_break_unrefinedchemical.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

110 lines
3.6 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--[[
| 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 = "break_battery_chemical"
RECIPE.name = "Özütle: Araba Aküsü"
RECIPE.description = "Eski bir araba aküsünden rafine edilmemiş kimyasal bileşikler çıkarın."
RECIPE.model = "models/Items/car_battery01.mdl"
RECIPE.category = "Alkol/kimyasal özütleme"
RECIPE.subcategory = "Rafine Edilmemiş Kimyasallar"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["junk_battery"] = 1}
RECIPE.result = {["comp_chemicals"] = 2}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 80}, -- full xp
{level = 10, exp = 40}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artwhiskey_chemical"
RECIPE.name = "Özütle: Yapay Viski"
RECIPE.description = "Bu yapay içecekten rafine edilmemiş kimyasal bileşikler çıkarın."
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
RECIPE.category = "Alkol/kimyasal özütleme"
RECIPE.subcategory = "Rafine Edilmemiş Kimyasallar"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_whiskey"] = 1}
RECIPE.result = {["comp_chemicals"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 80}, -- full xp
{level = 10, exp = 40}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artvodka_chemical"
RECIPE.name = "Özütle: Yapay Votka"
RECIPE.description = "Bu yapay içecekten rafine edilmemiş kimyasal bileşikler çıkarın."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alkol/kimyasal özütleme"
RECIPE.subcategory = "Rafine Edilmemiş Kimyasallar"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_vodka"] = 1}
RECIPE.result = {["comp_chemicals"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 80}, -- full xp
{level = 10, exp = 40}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artbourbon_chemical"
RECIPE.name = "Özütle: Yapay Bourbon"
RECIPE.description = "Bu yapay içecekten rafine edilmemiş kimyasal bileşikler çıkarın."
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
RECIPE.category = "Alkol/kimyasal özütleme"
RECIPE.subcategory = "Rafine Edilmemiş Kimyasallar"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_bourbon"] = 1}
RECIPE.result = {["comp_chemicals"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 80}, -- full xp
{level = 10, exp = 40}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artbeer_chemical"
RECIPE.name = "Özütle: Yapay Bira"
RECIPE.description = "Bu yapay içecekten rafine edilmemiş kimyasal bileşikler çıkarın."
RECIPE.model = "models/willardnetworks/food/beer.mdl"
RECIPE.category = "Alkol/kimyasal özütleme"
RECIPE.subcategory = "Rafine Edilmemiş Kimyasallar"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_beer"] = 1}
RECIPE.result = {["comp_chemicals"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 80}, -- full xp
{level = 10, exp = 40}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()