This commit is contained in:
lifestorm
2024-08-05 18:40:29 +03:00
parent 9f505a0646
commit c6d9b6f580
8044 changed files with 1853472 additions and 21 deletions

View File

@@ -0,0 +1,189 @@
--[[
| 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_artwhiskey_alcohol"
RECIPE.name = "Extract Artificial Whiskey"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_whiskey"] = 1}
RECIPE.result = {["comp_alcohol"] = 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()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artvodka_alcohol"
RECIPE.name = "Extract Artificial Vodka"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_vodka"] = 1}
RECIPE.result = {["comp_alcohol"] = 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()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artbourbon_alcohol"
RECIPE.name = "Extract Artificial Bourbon"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_bourbon"] = 1}
RECIPE.result = {["comp_alcohol"] = 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()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_artbeer_alcohol"
RECIPE.name = "Extract Artificial Beer"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/beer.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_proc_beer"] = 1}
RECIPE.result = {["comp_alcohol"] = 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()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_whiskey_alcohol"
RECIPE.name = "Extract Whiskey"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["bottle_whiskey"] = 1}
RECIPE.result = {["comp_alcohol"] = 2}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 75}, -- full xp
{level = 10, exp = 50}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_vodka_alcohol"
RECIPE.name = "Extract Vodka"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["bottle_vodka"] = 1}
RECIPE.result = {["comp_alcohol"] = 2}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 75}, -- full xp
{level = 10, exp = 50}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_bourbon_alcohol"
RECIPE.name = "Extract Bourbon"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["bottle_bourbon"] = 1}
RECIPE.result = {["comp_alcohol"] = 2}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 75}, -- full xp
{level = 10, exp = 50}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_beer_alcohol"
RECIPE.name = "Extract Beer"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/beer.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_beer"] = 1}
RECIPE.result = {["comp_alcohol"] = 2}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 75}, -- full xp
{level = 10, exp = 50}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "break_sake_alcohol"
RECIPE.name = "Extract Sake"
RECIPE.description = "Extract the alcohol content from this beverage."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alcohol/chemical extraction"
RECIPE.subcategory = "Alcohol"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["bottle_sake"] = 1}
RECIPE.result = {["comp_alcohol"] = 2}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 75}, -- full xp
{level = 10, exp = 50}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()

View File

@@ -0,0 +1,109 @@
--[[
| 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()

View File

@@ -0,0 +1,66 @@
--[[
| 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 = "rec_comp_adhesive"
RECIPE.name = "Adhesive"
RECIPE.description = "An Adhesive for sticking objects together. Very sticky."
RECIPE.model = "models/willardnetworks/props/glue.mdl"
RECIPE.category = "Ingredients"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1, ["comp_alcohol"] = 1}
RECIPE.result = {["comp_adhesive"] = 3}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 80}, -- full xp
{level = 10, exp = 40}, -- half xp
{level = 15, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_comp_chemcomp"
RECIPE.name = "Refined Chemicals"
RECIPE.description = "A dangerous, toxic substance disposed for radioactive emittance. Be careful."
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
RECIPE.category = "Ingredients"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemicals"] = 1, ["comp_alcohol"] = 1}
RECIPE.result = {["comp_chemcomp"] = 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 = 20, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_comp_purifier"
RECIPE.name = "Purifier"
RECIPE.description = "Strange dust which can purify any mixture or substance of any toxic compounds"
RECIPE.model = "models/willardnetworks/skills/pill_bottle.mdl"
RECIPE.category = "Ingredients"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_chemicals"] = 2}
RECIPE.result = {["comp_purifier"] = 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 = 20, exp = 0} -- no xp
}
RECIPE:Register()

View File

@@ -0,0 +1,200 @@
--[[
| 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 = "rec_artfun"
RECIPE.name = "Artificial Fun"
RECIPE.description = "Mushed up artificial paste with a bit of car battery acid for good measure."
RECIPE.model = "models/props_lab/jar01b.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["proc_paste"] = 1, ["ing_protein"] = 1, ["comp_chemicals"] = 1}
RECIPE.result = {["drug_artificialfun"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 210}, -- full xp
{level = 20, exp = 105}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_blueberry"
RECIPE.name = "Blue Berry"
RECIPE.description = "A strange vial filled with blue liquid, it tastes like a berry juice but smells disgustingly."
RECIPE.model = "models/willardnetworks/skills/chemical_flask4.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_charcoal"] = 1, ["fruit_berries"] = 1}
RECIPE.result = {["drug_blueberry"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 210}, -- full xp
{level = 20, exp = 105}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_ozz"
RECIPE.name = "Ozz's Potion"
RECIPE.description = "Strange liquid in a glass jar, upon opening it has a strong and strange smell. It tastes like gasoline but makes you feel clever and perceptive."
RECIPE.model = "models/props_junk/glassjug01.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["disinfectant_bottle"] = 1}
RECIPE.result = {["drug_ozz"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 210}, -- full xp
{level = 20, exp = 105}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_bobmix"
RECIPE.name = "Bob's Trail Mix"
RECIPE.description = "What would happen if you took the distillate of every bob drink (publicly) available, mixed them together and injected the resulting product right into your arm? Scientists said 'Nothing Good', while the Crackhead down in the slums said 'you ascend'. Go prove one or the other right."
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["drink_bobfizz"] = 1, ["drink_bobgrape"] = 1, ["drink_boboriginal"] = 1}
RECIPE.result = {["drug_bobmix"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 210}, -- full xp
{level = 20, exp = 105}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_darkshot"
RECIPE.name = "Dark Shot"
RECIPE.description = "Blood mixed with various medications, upon consuming it you can feel a burning sensation in your throat."
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_bloodsyringe"] = 1, ["basic_red"] = 1, ["comp_chemicals"] = 1, ["drink_proc_whiskey"] = 1}
RECIPE.result = {["drug_darkshot"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 240}, -- full xp
{level = 30, exp = 150}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_demon"
RECIPE.name = "Demon's Bees"
RECIPE.description = "A syringe filled with dark red liquid inside, upon injection you can feel extreme burning sensation in the location of injection."
RECIPE.model = "models/willardnetworks/skills/medx.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_syringe"] = 1, ["painkillers"] = 1, ["comp_chemcomp"] = 1}
RECIPE.result = {["drug_demon"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 240}, -- full xp
{level = 30, exp = 120}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_speed"
RECIPE.name = "Speed"
RECIPE.description = "A crushed pack of pills mixed in a can. Gives you feeling of being fast."
RECIPE.model = "models/props_junk/popcan01a.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["crafting_water"] = 1, ["adrenaline"] = 1}
RECIPE.result = {["drug_speed"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 240}, -- full xp
{level = 30, exp = 120}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_thirdeye"
RECIPE.name = "The Third Eye"
RECIPE.description = "A white liquid inside of the syringe, after usage someone could feel increased awareness of the surroundings."
RECIPE.model = "models/willardnetworks/skills/pyscho.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_syringe"] = 1, ["ing_coffee_powder"] = 1, ["basic_yellow"] = 1}
RECIPE.result = {["drug_thirdeye"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 240}, -- full xp
{level = 30, exp = 120}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_transhumano"
RECIPE.name = "Transhumano"
RECIPE.description = "A refined pill that makes you feel ultra-strong, some believe this is what transhumans use."
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["bloodstabilizer"] = 1, ["adrenaline"] = 1}
RECIPE.result = {["drug_transhumano"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 40
RECIPE.experience = {
{level = 40, exp = 250}, -- full xp
{level = 45, exp = 125}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_xp"
RECIPE.name = "XP"
RECIPE.description = "Brown liquid in an old bottle, upon smelling to it you can feel really light. It tastes like old cough syrup."
RECIPE.model = "models/willardnetworks/food/wine4.mdl"
RECIPE.category = "Drugs"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["morphine"] = 2, ["bottle_wine_white"] = 1, ["orange_pill"] = 1}
RECIPE.result = {["drug_xp"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 40
RECIPE.experience = {
{level = 40, exp = 250}, -- full xp
{level = 45, exp = 125}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()

View File

@@ -0,0 +1,233 @@
--[[
| 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 = "rec_disinfectant"
RECIPE.name = "Bottle of Disinfectant"
RECIPE.description = "A bottle of disinfectant, used to cleanse wounds of bacteria."
RECIPE.model = "models/willardnetworks/props/disinfectant.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_alcohol"] = 1, ["comp_purifier"] = 1}
RECIPE.result = {["disinfectant_bottle"] = 3}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 150}, -- full xp
{level = 10, exp = 75}, -- half xp
{level = 20, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_bandage"
RECIPE.name = "Bandage Roll"
RECIPE.description = "A roll of sanitary bandages. Used to stop bleeding."
RECIPE.model = "models/stuff/bandages.mdl"
RECIPE.category = "Medical"
RECIPE.ingredients = {["comp_cloth"] = 4, ["comp_alcohol"] = 1}
RECIPE.result = {["bandage"] = 4}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 150}, -- full xp
{level = 10, exp = 75}, -- half xp
{level = 20, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_makeshift_into_bandage"
RECIPE.name = "Bandage Roll"
RECIPE.description = "A cloth bandage roll doused in alcohol."
RECIPE.model = "models/stuff/bandages.mdl"
RECIPE.category = "Medical"
RECIPE.ingredients = {["makeshift_bandage"] = 6, ["comp_alcohol"] = 1}
RECIPE.result = {["bandage"] = 6}
RECIPE.hidden = false
RECIPE.skill = "crafting"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 50}, -- full xp
{level = 10, exp = 25}, -- half xp
{level = 20, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_disinfected_bandage"
RECIPE.name = "Disinfected Bandage"
RECIPE.description = "A roll of disinfected sanitary bandages. Used to stop bleeding and clean wounds."
RECIPE.model = "models/stuff/bandages.mdl"
RECIPE.category = "Medical"
RECIPE.ingredients = {["bandage"] = 4, ["disinfectant_bottle"] = 3}
RECIPE.result = {["disinfected_bandage"] = 4}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 150}, -- full xp
{level = 10, exp = 75}, -- half xp
{level = 20, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_painkillers"
RECIPE.name = "Painkillers"
RECIPE.description = "A package of painkillers. It provides temporary relief from minor pains."
RECIPE.model = "models/willardnetworks/skills/pills1.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_chemcomp"] = 1}
RECIPE.result = {["painkillers"] = 4}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 0
RECIPE.experience = {
{level = 0, exp = 180}, -- full xp
{level = 10, exp = 90}, -- half xp
{level = 20, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_bloodstabilizer"
RECIPE.name = "Blood Stabilizer"
RECIPE.description = "A syringe filled with red compound and painkiller, good to ease pain build recovery."
RECIPE.model = "models/willardnetworks/skills/stimpak.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_bloodsyringe"] = 4, ["comp_chemcomp"] = 2, ["painkillers"] = 1}
RECIPE.result = {["bloodstabilizer"] = 4}
RECIPE.hidden = false
RECIPE.skill = "medicine"
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 = "rec_bloodbag"
RECIPE.name = "Bloodbag"
RECIPE.description = "A plastic bag with a hose and needle attached. It seems to have blood in it."
RECIPE.model = "models/willardnetworks/skills/bloodbag.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_bloodsyringe"] = 4, ["disinfectant_bottle"] = 2, ["comp_plastic"] = 4}
RECIPE.result = {["bloodbag"] = 4}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 260}, -- full xp
{level = 20, exp = 130}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_firstaid"
RECIPE.name = "First Aid Kit"
RECIPE.description = "A small red bag with a decent and immediate response to health issues."
RECIPE.model = "models/willardnetworks/skills/medkit.mdl"
RECIPE.category = "Medical"
RECIPE.ingredients = {["bandage"] = 3, ["disinfectant_bottle"] = 3, ["bloodstabilizer"] = 3, ["comp_stitched_cloth"] = 1}
RECIPE.result = {["firstaid"] = 3}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 260}, -- full xp
{level = 30, exp = 130}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_adrenaline"
RECIPE.name = "Adrenaline"
RECIPE.description = "A syringe filled with adrenaline. It provides temporary relief from harsh pains."
RECIPE.model = "models/willardnetworks/skills/adrenaline.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_green"] = 1, ["comp_syringe"] = 1}
RECIPE.result = {["adrenaline"] = 3}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 260}, -- full xp
{level = 30, exp = 130}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_morphine"
RECIPE.name = "Morphine"
RECIPE.description = "A syringe filled with morphine. It provides relief from severe pain."
RECIPE.model = "models/willardnetworks/skills/adrenaline.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["basic_red"] = 1, ["comp_syringe"] = 1}
RECIPE.result = {["morphine"] = 3}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 300}, -- full xp
{level = 45, exp = 150}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_med_surgerykit"
RECIPE.name = "Surgery Kit"
RECIPE.description = "A red pouch that unfolds to reveal an assortment of surgical tools. Used by medical professionals for immediate aid."
RECIPE.model = "models/willardnetworks/skills/surgicalkit.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["firstaid"] = 1, ["morphine"] = 3, ["bloodbag"] = 3, ["adrenaline"] = 1}
RECIPE.result = {["surgerykit"] = 3}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 320}, -- full xp
{level = 45, exp = 160}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_med_xenpotion"
RECIPE.name = "Xen Potion"
RECIPE.description = "Highly exotic alien substance concocted through rare Xen ingredients, bringing incredible organic regeneration."
RECIPE.model = "models/willardnetworks/props/xenpotion3.mdl"
RECIPE.category = "Medical"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["ing_xen_herb"] = 4, ["ing_xenberries"] = 4, ["bottle_vodka"] = 1}
RECIPE.result = {["xen_potion"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 50
RECIPE.experience = {
{level = 50, exp = 0}, -- full xp
{level = 50, exp = 0}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()

View File

@@ -0,0 +1,296 @@
--[[
| 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 = "rec_basicgreen"
RECIPE.name = "Basic Green Pills"
RECIPE.description = "A basic and small green pill. It makes you feel... somewhat faster."
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
RECIPE.result = {["basic_green"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 140}, -- full xp
{level = 20, exp = 70}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_basicblue"
RECIPE.name = "Basic Blue Pills"
RECIPE.description = "A basic and small blue pill. It makes you feel... somewhat more intelligent."
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
RECIPE.result = {["basic_blue"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 140}, -- full xp
{level = 20, exp = 70}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_basicred"
RECIPE.name = "Basic Red Pills"
RECIPE.description = "A basic and small red pill. It makes you feel... somewhat stronger."
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
RECIPE.result = {["basic_red"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 140}, -- full xp
{level = 20, exp = 70}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_basicyellow"
RECIPE.name = "Basic Yellow Pills"
RECIPE.description = "A basic and small yellow pill. Your vision seems to have improved slightly."
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
RECIPE.result = {["basic_yellow"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 10
RECIPE.experience = {
{level = 10, exp = 140}, -- full xp
{level = 20, exp = 70}, -- half xp
{level = 25, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_improvedred"
RECIPE.name = "Improved Red Pills"
RECIPE.description = "A small red pill. It makes you feel stronger."
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_red"] = 1}
RECIPE.result = {["improved_red"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 160}, -- full xp
{level = 30, exp = 80}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_improvedgreen"
RECIPE.name = "Improved Green Pills"
RECIPE.description = "A small green pill. It makes you feel faster."
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_green"] = 1}
RECIPE.result = {["improved_green"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 160}, -- full xp
{level = 30, exp = 80}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_improvedblue"
RECIPE.name = "Improved Blue Pills"
RECIPE.description = "A small blue pill. It makes you feel more intelligent."
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_blue"] = 1}
RECIPE.result = {["improved_blue"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 160}, -- full xp
{level = 30, exp = 80}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_improvedyellow"
RECIPE.name = "Improved Yellow Pills"
RECIPE.description = "A small yellow pill. You can suddenly see a lot more clearly."
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_yellow"] = 1}
RECIPE.result = {["improved_yellow"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 160}, -- full xp
{level = 30, exp = 80}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_qualityred"
RECIPE.name = "Quality Red Pills"
RECIPE.description = "An interesting red pill, its taste much more refined than before. It makes you feel super strong."
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_red"] = 1}
RECIPE.result = {["quality_red"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 250}, -- full xp
{level = 45, exp = 125}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_qualitygreen"
RECIPE.name = "Quality Green Pill"
RECIPE.description = "An interesting green pill, its taste much more refined than before. It makes you feel super fast."
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_green"] = 1}
RECIPE.result = {["quality_green"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 250}, -- full xp
{level = 45, exp = 125}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_qualityblue"
RECIPE.name = "Quality Blue Pills"
RECIPE.description = "An interesting blue pill, its taste much more refined than before. It makes you feel super smart... knowledge is just rushing through the mind."
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_blue"] = 1}
RECIPE.result = {["quality_blue"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 250}, -- full xp
{level = 45, exp = 125}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_qualityyellow"
RECIPE.name = "Quality Yellow Pills"
RECIPE.description = "An interesting yellow pill, its taste much more refined than before. It improves your vision a lot... is that a spider on my wall?"
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_yellow"] = 1}
RECIPE.result = {["quality_yellow"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 250}, -- full xp
{level = 45, exp = 125}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_orangepill"
RECIPE.name = "Orange Pills"
RECIPE.description = "This pill seemingly makes you feel a tad stronger and your vision more crisp."
RECIPE.model = "models/willardnetworks/skills/pills7.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["basic_red"] = 1, ["basic_yellow"] = 1}
RECIPE.result = {["orange_pill"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 180}, -- full xp
{level = 30, exp = 90}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_purplepill"
RECIPE.name = "Purple Pills"
RECIPE.description = "This pill seemingly makes you think and run quicker."
RECIPE.model = "models/willardnetworks/skills/pills6.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_mixer"
RECIPE.ingredients = {["basic_green"] = 1, ["basic_blue"] = 1}
RECIPE.result = {["purple_pill"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 20
RECIPE.experience = {
{level = 20, exp = 180}, -- full xp
{level = 30, exp = 90}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "medpill_dark"
RECIPE.name = "Dark Pills"
RECIPE.description = "This odd pill made via a complex route of chemistry seemingly boosts all your senses. There's a sort of adrenalina rush to it.."
RECIPE.model = "models/willardnetworks/skills/pills8.mdl"
RECIPE.category = "Boosters"
RECIPE.station = "tool_chembench"
RECIPE.ingredients = {["orange_pill"] = 1, ["purple_pill"] = 1, ["adrenaline"] = 1}
RECIPE.result = {["dark_pill"] = 1}
RECIPE.hidden = false
RECIPE.skill = "medicine"
RECIPE.level = 35
RECIPE.experience = {
{level = 35, exp = 300}, -- full xp
{level = 45, exp = 150}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()