mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
110 lines
3.6 KiB
Lua
110 lines
3.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 = "break_battery_chemical"
|
|
RECIPE.name = "Extract Car Battery"
|
|
RECIPE.description = "Extract unrefined chemical compounds from an old car battery."
|
|
RECIPE.model = "models/Items/car_battery01.mdl"
|
|
RECIPE.category = "Alcohol/chemical extraction"
|
|
RECIPE.subcategory = "Unrefined Chemicals"
|
|
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 = "Extract Artificial Whiskey"
|
|
RECIPE.description = "Extract unrefined chemical compounds from this artificial beverage."
|
|
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
|
RECIPE.category = "Alcohol/chemical extraction"
|
|
RECIPE.subcategory = "Unrefined Chemicals"
|
|
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 = "Extract Artificial Vodka"
|
|
RECIPE.description = "Extract unrefined chemical compounds from this artificial beverage."
|
|
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
|
RECIPE.category = "Alcohol/chemical extraction"
|
|
RECIPE.subcategory = "Unrefined Chemicals"
|
|
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 = "Extract Artificial Bourbon"
|
|
RECIPE.description = "Extract unrefined chemical compounds from this artificial beverage."
|
|
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
|
RECIPE.category = "Alcohol/chemical extraction"
|
|
RECIPE.subcategory = "Unrefined Chemicals"
|
|
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 = "Extract Artificial Beer"
|
|
RECIPE.description = "Extract unrefined chemical compounds from this artificial beverage."
|
|
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
|
RECIPE.category = "Alcohol/chemical extraction"
|
|
RECIPE.subcategory = "Unrefined Chemicals"
|
|
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()
|