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,169 @@
--[[
| 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 = "alcohol_ciggie_pack"
RECIPE.name = "Cigarette Pack"
RECIPE.description = "A combine issued cigarette pack that packs 8 cigarettes."
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["ciggie_pack"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Artificial
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_proc_bourbon"
RECIPE.name = "Artificial Bourbon"
RECIPE.description = "Crafted from synthetic origins, this bourbon presents an unnervingly smooth, artificial sweetness with notes of lab-generated oak and caramel."
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["drink_proc_bourbon"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_proc_whiskey"
RECIPE.name = "Artificial Whiskey"
RECIPE.description = "Concocted from lab-engineered compounds, this hyper-processed whiskey offers a sharp, synthetic tang with hints of plastic and chrome."
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_proc_whiskey"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_proc_beer"
RECIPE.name = "Artificial Beer"
RECIPE.description = "Fermented from synthetic ingredients in sterile vats, this dystopian beer offers a stark, metallic flavor with a touch of artificial hops."
RECIPE.model = "models/willardnetworks/food/beer.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["drink_proc_beer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_proc_vodka"
RECIPE.name = "Artificial Vodka"
RECIPE.description = "Engineered from artificial compounds, this ultra-processed vodka delivers a crisp, synthetic bite with faint hints of rubber and circuitry."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_proc_vodka"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Bottled drinks
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_whiskey"
RECIPE.name = "Whiskey"
RECIPE.description = "Crafted from mysterious substances, this whiskey exudes an eerie, industrial flavor with hauntingly unfamiliar notes."
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["bottle_whiskey"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_vodka"
RECIPE.name = "Vodka"
RECIPE.description = "Forged through ruthless processing, this vodka offers a harsh, chemically-infused kick, devoid of any natural essence."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["bottle_vodka"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_beer"
RECIPE.name = "Beer"
RECIPE.description = "Brewed in sterile chambers, this beer lacks the rustic charm of traditional brewing, offering a cold, clinical taste with metallic undertones."
RECIPE.model = "models/willardnetworks/food/beer.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["drink_beer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_lager_siemens"
RECIPE.name = "Siemens Premium Lager Pils"
RECIPE.description = "A brown glass bottle with a fancy gold Siemens signature logo on the front, surrounded by small interlocking Union symbols. Within it holds a gleaming, golden-yellow liquid. Under the logo, it reads: German Premium Lager Pils. On the back, it reads: Brewed after German tradition, in City-24 with naturally soft Genevian alp water."
RECIPE.model = "models/willardnetworks/food/beer.mdl"
RECIPE.skin = 1
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 23
RECIPE.result = {["drink_siemens_beer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_sake"
RECIPE.name = "City Eight Sake"
RECIPE.description = "An enigmatic brew of unknown origins, this sake delivers a chillingly synthetic flavor, with elusive notes that defy description."
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["bottle_sake"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_bourbon"
RECIPE.name = "Bourbon"
RECIPE.description = "This bourbon lacks the soulful richness of its predecessors, delivering a sterile, flavorless experience with a faint hint of manufactured woodiness."
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["bottle_bourbon"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "alcohol_moonshine"
RECIPE.name = "Moonshine"
RECIPE.description = "A slightly sweet-smelling liquor in an old soviet vodka bottle. It kicks like a mule. You could probably strip paint with it."
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
RECIPE.category = "Alcohol"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["bottle_moonshine"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,113 @@
--[[
| 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 = "bartering_comp_adhesive"
RECIPE.name = "Adhesive"
RECIPE.description = "An Adhesive for sticking objects together. Very sticky."
RECIPE.model = "models/willardnetworks/props/glue.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 7
RECIPE.result = {["comp_adhesive"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_wood"
RECIPE.name = "Scrap Wood"
RECIPE.description = "Bars of wood that appear broken, but useful."
RECIPE.model = "models/Gibs/wood_gib01a.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["comp_wood"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_screws"
RECIPE.name = "Box of Nails"
RECIPE.description = "A box containing nails. They look a bit rusty."
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 9
RECIPE.result = {["comp_screws"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_scraps"
RECIPE.name = "Metal Scraps"
RECIPE.description = "Bits of metal scraps, useful for crafting."
RECIPE.model = "models/gibs/manhack_gib01.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["comp_scrap"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_electronics"
RECIPE.name = "Electronic parts"
RECIPE.description = "Scrapped electronic parts. Wonder what these were used for?"
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["comp_electronics"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_cloth"
RECIPE.name = "Cloth Rags"
RECIPE.description = "A piece of filthy cloth rags, can be used for crafting."
RECIPE.model = "models/willardnetworks/skills/cloth.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["comp_cloth"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_plastic"
RECIPE.name = "Plastic"
RECIPE.description = "Elements of plastic waste. Who knows what it was, before."
RECIPE.model = "models/props_junk/garbage_bag001a.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["comp_plastic"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_comp_chemicals"
RECIPE.name = "Bottle of Cleaning Fluid"
RECIPE.description = "A union branded bottle of chemicals used for 'cleaning'."
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
RECIPE.category = "Components"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["comp_chemicals"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,87 @@
--[[
| 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 = "bartering_tool_request"
RECIPE.name = "Request Device"
RECIPE.description = "A small device with rounded corners, housing two buttons. A small combine logo is visible."
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
RECIPE.category = "Electronics"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 15
RECIPE.result = {["request_device"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_flashlight"
RECIPE.name = "Flashlight"
RECIPE.description = "Incredibly useful when exploring the unknown dark."
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
RECIPE.category = "Electronics"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["flashlight"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tv"
RECIPE.name = "Television"
RECIPE.description = "A regime issued television to view propaganda broadcasts on."
RECIPE.model = "models/props_c17/tv_monitor01.mdl"
RECIPE.category = "Electronics"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["television"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_coffeemachine"
RECIPE.name = "Coffee Machine"
RECIPE.description = "When you need drippling perfection on your shoes, a coffee machine is all you need."
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
RECIPE.category = "Electronics"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 55
RECIPE.result = {["tool_coffeemachine"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_cit_computer"
RECIPE.name = "Computer"
RECIPE.description = "A computer with access to notes, utilizing a dodgy regime OS, useful tool for stores."
RECIPE.model = "models/willardnetworks/props/willard_computer.mdl"
RECIPE.category = "Electronics"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 150
RECIPE.result = {["cit_computer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_elec_musicradio"
RECIPE.name = "Benefactor Radio"
RECIPE.description = "A manufactured radio with a tuner that can only tune to official Union-Approved radio stations."
RECIPE.model = "models/props_lab/citizenradio.mdl"
RECIPE.category = "Electronics"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 150
RECIPE.result = {["musicradio_cmb"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()

View File

@@ -0,0 +1,265 @@
--[[
| 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/
--]]
-- Snacks
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_food_berries"
RECIPE.name = "Berries"
RECIPE.description = "A bunch of sweet berries."
RECIPE.model = "models/willardnetworks/food/berries01.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["fruit_berries"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_food_peanuts"
RECIPE.name = "Salted Peanuts"
RECIPE.description = "A light snack, this combine embellished box contains salted peanuts."
RECIPE.model = "models/willardnetworks/food/peats.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["food_peanuts"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_food_biscuits"
RECIPE.name = "Can of Biscuits"
RECIPE.description = "Encased in a desolate, metallic canister, these dry biscuits offer a taste of austerity. Each bite unleashes a parched crunch, devoid of moisture."
RECIPE.model = "models/props_junk/garbage_metalcan001a.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["food_biscuits"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_food_crisps"
RECIPE.name = "Potato Crisps"
RECIPE.description = "A light snack, this green embellished plastic bag contains salted crisps."
RECIPE.model = "models/willardnetworks/food/snack01.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["food_crisps"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_food_crackers"
RECIPE.name = "Potato Crackers"
RECIPE.description = "A light snack, this red embellished plastic bag contains crackers."
RECIPE.model = "models/willardnetworks/food/snack02.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["food_crackers"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_apple"
RECIPE.name = "Apple"
RECIPE.description = "It keeps the medics away for an entire day."
RECIPE.model = "models/willardnetworks/food/apple.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 7
RECIPE.result = {["fruit_apple"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_banana"
RECIPE.name = "Banana"
RECIPE.description = "Peel away and eat."
RECIPE.model = "models/willardnetworks/food/bananna.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["fruit_banana"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_orange"
RECIPE.name = "Orange"
RECIPE.description = "A bumpy, tangy orange."
RECIPE.model = "models/willardnetworks/food/orange.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["fruit_orange"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_sandwich"
RECIPE.name = "Sandwich"
RECIPE.description = "Very popular in City Two, a sandwich of artificial meat and cheese."
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 22
RECIPE.result = {["comfort_sandwich"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Foods
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_artskewer"
RECIPE.name = "Skewered Artificial Meat"
RECIPE.description = "A protein block of meat skewed and produced as ready to eat."
RECIPE.model = "models/willardnetworks/food/meatskewer2.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["artificial_skewer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_breadslice"
RECIPE.name = "Bread Slice"
RECIPE.description = "A slice of fresh bread. Doesn't fill you up much on its own but it'll do."
RECIPE.model = "models/willardnetworks/food/bread_slice.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["baking_bread_slice"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_halfbread"
RECIPE.name = "Halved Bread"
RECIPE.description = "Half a loaf of bread ready to be consumed."
RECIPE.model = "models/willardnetworks/food/bread_half.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 9
RECIPE.result = {["baking_bread_half"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_cookednoodles"
RECIPE.name = "Cooked Noodles"
RECIPE.description = "Even during the occupation.. Noodles remain a popular choice for food."
RECIPE.model = "models/willardnetworks/food/noodles.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 7
RECIPE.result = {["comfort_noodles"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_bagel"
RECIPE.name = "Bagel"
RECIPE.description = "Through inventive means you're able to procure bagels from bread dough, it's somewhat dry but it'll do nicely."
RECIPE.model = "models/willardnetworks/food/bagel2.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["baking_bagel"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_roastedartmeat"
RECIPE.name = "Roasted Artificial Meat"
RECIPE.description = "A protein block of Artificial meat for easy consumption."
RECIPE.model = "models/willardnetworks/food/steak2.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 9
RECIPE.result = {["artificial_meat"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_vegsoup"
RECIPE.name = "Vegetable Soup"
RECIPE.description = "A warm bowl of healthy vegetable soup, a good way to keep a steady mind."
RECIPE.model = "models/willardnetworks/food/vegetablesoup.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 15
RECIPE.result = {["comfort_soup"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_watermelon"
RECIPE.name = "Watermelon"
RECIPE.description = "A large, round, green fruit. Rather pink inside!"
RECIPE.model = "models/willardnetworks/food/watermelon_unbreakable.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["fruit_watermelon"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "food_cookedantlionmeat"
RECIPE.name = "Roasted Antlion Meat"
RECIPE.description = "A roasted slab of antlion meat, doesn't fill you up as much as you'd like it to, it's quite stringy and carries an odd texture."
RECIPE.model = "models/willardnetworks/food/cooked_alienmeat.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Food"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["antlion_roast"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,37 @@
--[[
| 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/
--]]
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_gloves"
RECIPE.name = "Gloves"
RECIPE.description = "A pair of black gloves. Good for work, weather, and more."
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Hands"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["hands_gloves"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tipless_gloves"
RECIPE.name = "Tipless Gloves"
RECIPE.description = "A pair of black gloves without the fingertips. Keeps your fingers free."
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove_fingerless.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Hands"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["hands_tipless_gloves"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,181 @@
--[[
| 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/
--]]
-- Beanie
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_beanie_brown"
RECIPE.name = "Brown Beanie"
RECIPE.description = "A brown, if not slightly neglected, woolen beanie. Warm and comfortable to sit on your head."
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["beanie_brown"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_beanie_grey"
RECIPE.name = "Grey Beanie"
RECIPE.description = "A grey, if not slightly neglected, woolen beanie. Warm and comfortable to sit on your head."
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["beanie_grey"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_beanie_red"
RECIPE.name = "Red Beanie"
RECIPE.description = "A red, if not slightly neglected, woolen beanie. Warm and comfortable to sit on your head."
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["beanie_red"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_beanie_blue"
RECIPE.name = "Blue Beanie"
RECIPE.description = "A blue, if not slightly neglected, woolen beanie. Warm and comfortable to sit on your head."
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["head_blue_beanie"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_beanie_green"
RECIPE.name = "Green Beanie"
RECIPE.description = "A green, if not slightly neglected, woolen beanie. Warm and comfortable to sit on your head."
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["head_green_beanie"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
-- Non-colorable
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_boonie"
RECIPE.name = "Boonie Hat"
RECIPE.description = "A wide rimmed hat. Keeps the sun off your head."
RECIPE.model = "models/willardnetworks/clothingitems/head_boonie.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["head_boonie_hat"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_chef"
RECIPE.name = "Chef Hat"
RECIPE.description = "A tall, white hat. Worn by those who are supposed to be good at cooking."
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["head_chef_hat"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_cap"
RECIPE.name = "Flat Cap"
RECIPE.description = "A stylish old-school cap that is flat on the head."
RECIPE.model = "models/willardnetworks/clothingitems/head_hat2.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["head_flat_cap"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_head_visor"
RECIPE.name = "Visor Cap"
RECIPE.description = "A hat with a visor. It keeps the sun out of your eyes."
RECIPE.model = "models/willardnetworks/clothingitems/head_hat.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["head_visor_cap"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "head_military_cap"
RECIPE.name = "Military Cap"
RECIPE.description = "A cap with worn out military insignia."
RECIPE.model = "models/willardnetworks/clothingitems/head_confederatehat.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["head_military_cap"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
-- Glasses
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_glasses"
RECIPE.name = "Glasses"
RECIPE.description = "A pair of black, square rimmed glasses. Helps you see."
RECIPE.model = "models/willardnetworks/clothingitems/glasses.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["glasses"] = 1}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_aviators"
RECIPE.name = "Aviator Glasses"
RECIPE.description = "A pair of stylish aviator glasses, reminiscent of the past."
RECIPE.model = "models/willardnetworks/clothingitems/head_aviators.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["aviators"] = 1}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_70s"
RECIPE.name = "70s Glasses"
RECIPE.description = "A pair of vintage 70s glasses with a brown frame."
RECIPE.model = "models/willardnetworks/clothingitems/head_glasses_70s.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["70sglasses"] = 1}
RECIPE:Register()

View File

@@ -0,0 +1,267 @@
--[[
| 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/
--]]
-- Meats
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_leeches"
RECIPE.name = "Tinned Leeches"
RECIPE.description = "Tinned leech. Used for cooking and is certainly not ready for consumption, yet. Contains three raw leeches."
RECIPE.model = "models/willardnetworks/food/cmb_food2.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["ing_tinned_leeches"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_artificial_meat"
RECIPE.name = "Raw Artificial Meat"
RECIPE.description = "Meat substances compressed into a protein block. It's raw and unrefined."
RECIPE.model = "models/willardnetworks/food/steak1.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["ing_artificial_meat"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_artificial_chicken"
RECIPE.name = "Raw Chicken"
RECIPE.description = "An industry collectivized in distant lands, set in foul conditions and factories to produce meat."
RECIPE.model = "models/willardnetworks/food/meat3.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["ing_chicken"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Baking
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_margarine"
RECIPE.name = "Margarine Product"
RECIPE.description = "A tinned can of factory produced margarine. Melts under heat."
RECIPE.model = "models/willardnetworks/food/cmb_food5.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 1
RECIPE.result = {["ing_margarine"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_flour"
RECIPE.name = "Saturated Flour"
RECIPE.description = "The paper bag is somewhat padded making it look as if it contains more flour than it actually does. Appears and smells like ordinary flour with a few odd black spots here and there."
RECIPE.model = "models/willardnetworks/food/cmb_food6.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["ing_flour"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_protein"
RECIPE.name = "Egg Protein Package"
RECIPE.description = "A package of powdered protein."
RECIPE.model = "models/willardnetworks/food/cmb_food1.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 1
RECIPE.result = {["ing_protein"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_sweetbar"
RECIPE.name = "Granulated Sweet-Bar"
RECIPE.description = "A crunchy chocolate bar. It actually tastes alright!"
RECIPE.model = "models/willardnetworks/food/cmb_food3.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["ing_sweet"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_milk"
RECIPE.name = "Milk Substitute"
RECIPE.description = "A carton of milk substitute. Certainly looks like milk but is somewhat thinner."
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["drink_milk"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Flavourings
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_spices"
RECIPE.name = "Dried Spice Flavouring"
RECIPE.description = "Strange smells emit from the packaging."
RECIPE.model = "models/willardnetworks/food/cmb_food8.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["ing_spices"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_herbs"
RECIPE.name = "Dried Cooking Herbs"
RECIPE.description = "Various dried herbs for cooking."
RECIPE.model = "models/willardnetworks/food/cmb_food7.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 1
RECIPE.result = {["ing_herbs"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_salt"
RECIPE.name = "Salt Pot"
RECIPE.description = "Seemingly a pot of salt with a somewhat odd acidic smell to it…"
RECIPE.model = "models/willardnetworks/foods/salt.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 1
RECIPE.result = {["ing_salt"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_vinegar"
RECIPE.name = "Vinegar"
RECIPE.description = "An aqueous bottle of acidic liquid, smells like a chip shop. Sniffing makes your mouth and eyes water."
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_i.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["ing_vinegar"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Vegetables / fruit
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_carrot"
RECIPE.name = "Vegetable Package"
RECIPE.description = "The label reads this package contains a set of vegetables ready to be used for cooking purposes."
RECIPE.model = "models/willardnetworks/foods/vege.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 1
RECIPE.result = {["ing_vegetable_pack"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
-- Misc
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_noodles"
RECIPE.name = "Dried Noodles"
RECIPE.description = "Noodles that are dry and unappettizing. How is this possible?"
RECIPE.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 1
RECIPE.result = {["ing_noodles"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_cheese"
RECIPE.name = "Artificial Cheese Slice"
RECIPE.description = "A slice of Artificial cheese made in a factory somewhere."
RECIPE.model = "models/willardnetworks/food/cheesewheel2c.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["artificial_cheese"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_coffeepowder"
RECIPE.name = "Coffee Powder"
RECIPE.description = "A slightly worn can of coffee powder."
RECIPE.model = "models/willardnetworks/food/wn_food_can.mdl"
RECIPE.skin = 5
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["ing_coffee_powder"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_empty_coffee"
RECIPE.name = "Empty Coffee Cup"
RECIPE.description = "A empty coffee cup."
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["junk_coffeecup"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "ingredients_raw_antlion_meat"
RECIPE.name = "Raw Antlion Meat"
RECIPE.description = "Somewhat slimy alien meat chopped off an antlion. It smells and looks strange."
RECIPE.model = "models/willardnetworks/food/raw_alienmeat.mdl"
RECIPE.category = "Restaurant"
RECIPE.subcategory = "Ingredients"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["ing_antlion_meat"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,649 @@
--[[
| 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 = "luxury_ciggie_pack"
RECIPE.name = "Cigarette Pack"
RECIPE.description = "A combine issued cigarette pack that packs 8 cigarettes."
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["ciggie_pack"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "luxury_zippo"
RECIPE.name = "Zippo Lighter"
RECIPE.description = "A quality metal lighter made to light up cigarettes."
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["zippolighter"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_cheddar"
RECIPE.name = "Cheddar Cheese Slice"
RECIPE.description = "A slice of chedder cheese."
RECIPE.model = "models/willardnetworks/food/cheesewheel1c.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["luxury_cheddar"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_raw_fish"
RECIPE.name = "Raw Fish"
RECIPE.description = "A quite rare sight these days."
RECIPE.model = "models/willardnetworks/food/fishgolden.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["ing_fish"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_raw_beef"
RECIPE.name = "Raw Beef"
RECIPE.description = "A raw slab of beef, a rather rare commodity these days."
RECIPE.model = "models/willardnetworks/food/meat3.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["ing_beef"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_egg"
RECIPE.name = "Egg"
RECIPE.description = "Usually replaced with the Egg Protein Package these days."
RECIPE.model = "models/willardnetworks/food/egg1.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["ing_egg"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_choc"
RECIPE.name = "Union Choco"
RECIPE.description = "Prestine, immaculate and indulging - this bar of chocolate makes world-wide oppression seem but a harmless generosity to be lived in luxury."
RECIPE.model = "models/willardnetworks/props/unionchoco.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["luxury_choc"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_fruit_pineapple"
RECIPE.name = "Pineapple"
RECIPE.description = "A rare sight these days."
RECIPE.model = "models/willardnetworks/food/pineapple.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 40
RECIPE.result = {["fruit_pineapple"] = 1}
RECIPE.buyAmount = 1
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_drink_wine_white"
RECIPE.name = "White Wine"
RECIPE.description = "A rare are and expensive commodity."
RECIPE.model = "models/willardnetworks/food/white_wine.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["bottle_wine_white"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_drink_red_wine"
RECIPE.name = "Red Wine"
RECIPE.description = "A rare and expensive commodity."
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["bottle_wine_red"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_drink_champagne"
RECIPE.name = "Bottle of Sparkling Champagne"
RECIPE.description = "Rumored to still be around in high circles, champagne is a highly prestigious and rare treat to discover these days."
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_a.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 100
RECIPE.result = {["bottle_champagne"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_chess"
RECIPE.name = "Chess Table Assembly Kit"
RECIPE.description = "An assembly kit to put together a chess table."
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 100
RECIPE.result = {["chess_dummy"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_checkers"
RECIPE.name = "Checkers Table Assembly Kit"
RECIPE.description = "An assembly kit to put together a checkers table."
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 100
RECIPE.result = {["checkers_dummy"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_arcade"
RECIPE.name = "Arcade Machine Assembly Kit"
RECIPE.description = "An assembly kit to put together an arcade machine."
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 100
RECIPE.result = {["arcade_dummy"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_ciggie_goodfella"
RECIPE.name = "Goodfella Cigars"
RECIPE.description = "A pack of high-quality debonair cigarillos wrapped in high-grammage tobacco paper containing up to 8 cigarillos manufactured by Tenzhen Industries."
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_goodfella.mdl"
RECIPE.category = "Luxury"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["ciggie_goodfella"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Collaborator attires
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_ice"
RECIPE.name = "Ice"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_ice"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_creme"
RECIPE.name = "Créme"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_creme"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_salmon"
RECIPE.name = "Salmon"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_salmon"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_white"
RECIPE.name = "White Powder"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_white"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_idealist"
RECIPE.name = "Idealist"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_idealist"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_simple"
RECIPE.name = "Simple Folk"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_simple"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_follower"
RECIPE.name = "The Pharaoh's Follower"
RECIPE.description = "A jacket for collaborators in support of an authority figure."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_follower"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_twin"
RECIPE.name = "Twin Brown"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_twin"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_bloke"
RECIPE.name = "Bloke Black"
RECIPE.description = "A collaborators jacket named after a certain individual."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_bloke"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_afternoon"
RECIPE.name = "Afternoon"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_afternoon"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_bistre"
RECIPE.name = "Bistre"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_bistre"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_bluedelight"
RECIPE.name = "Blue Delight"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_bluedelight"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_burgundy"
RECIPE.name = "Burgundian Collaborator"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_burgundy"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_cadet"
RECIPE.name = "Cadet Blue"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_cadet"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_carnelian"
RECIPE.name = "Carnelian Red"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_carneliant"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_coral"
RECIPE.name = "Black Coral"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_coral"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_fixer"
RECIPE.name = "Fixer"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_fixer"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_foreigner"
RECIPE.name = "Foreigner"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_foreigner"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_kingpin"
RECIPE.name = "The Kingpin"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_kingpin"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_midnight"
RECIPE.name = "Midnight Black"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_midnight"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_midnightred"
RECIPE.name = "Midnight Red"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_midnightred"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_office"
RECIPE.name = "The Office"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_office"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_onyx"
RECIPE.name = "Onyx Shirt"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_onyx"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_orangedawn"
RECIPE.name = "Orange Dawn"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_orangedawn"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_redhaven"
RECIPE.name = "Red Haven"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_redhaven"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_reed"
RECIPE.name = "Reed Green"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_reed"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_sap"
RECIPE.name = "Sap Green"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_sap"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_taupe"
RECIPE.name = "The Taupe"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_taupe"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_walkster"
RECIPE.name = "Walkster"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_walkster"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_collab_yonder"
RECIPE.name = "Blue Yonder"
RECIPE.description = "A comfortable jacket for collaborators in support of the regime."
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Collaborator Attires"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["collab_yonder"] = 1}
RECIPE:Register()
-- Fedora
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_fedora_brown"
RECIPE.name = "Brown Fedora"
RECIPE.description = "A rare brown stylish hat reminiscent of bygone times."
RECIPE.model = "models/willardnetworks/luxuryitems/head_fedora_recolorable.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["fedora_brown"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_fedora_black"
RECIPE.name = "Black Fedora"
RECIPE.description = "A rare black stylish hat reminiscent of bygone times."
RECIPE.model = "models/willardnetworks/luxuryitems/fedora_item.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["head_fedora"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_fedora_white"
RECIPE.name = "White Fedora"
RECIPE.description = "A rare white stylish hat reminiscent of bygone times."
RECIPE.model = "models/willardnetworks/luxuryitems/head_fedora_recolorable.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Headwear"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 300
RECIPE.result = {["fedora_white"] = 1}
RECIPE:Register()
-- Formal
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_lux_shoes_dress"
RECIPE.name = "Dress Shoes"
RECIPE.description = "In todays market, only a small subset of civilians can afford these formal kinds of shoes."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_formal.mdl"
RECIPE.category = "Luxury"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 500
RECIPE.result = {["shoes_dress_shoes"] = 1}
RECIPE:Register()

View File

@@ -0,0 +1,365 @@
--[[
| 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 = "nonalcoholic_breen_water"
RECIPE.name = "Breen's Water"
RECIPE.description = "A can of water symbolic to the global regime, comes with a strange mmetalic taste to it."
RECIPE.model = "models/props_junk/PopCan01a.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["drink_breen_water"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_boboriginal"
RECIPE.name = "Bob Water Original"
RECIPE.description = "The label jokingly reads: The soft welcoming and mild original taste of Bob Water. Warning: May cause severe intestinal bleeding and mild eye strain."
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.skin = 4
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["drink_boboriginal"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_banksoda_pink"
RECIPE.name = "Bank Soda Lite"
RECIPE.description = "A red maroon can adorned with the Bank Soda emblem. Inside the carbonated beverage is a caramel liquid with a light, breezy texture exhibiting a more bitter and slightly less sweet and acidic flavour than its predecessor, containing zero caffeine and sugar."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 1
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["drink_banksoda_pink"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_banksoda"
RECIPE.name = "Bank Soda"
RECIPE.description = "A grey-and-black checkered can adorned with the Bank Soda emblem. Inside the carbonated beverage is a caramel liquid with a light, breezy texture and mildly acidic caffeine with a distinctive sweet and syrupy flavour."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 2
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_banksoda_grey"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_c24"
RECIPE.name = "Bank Soda Red"
RECIPE.description = "A red can adorned with the City Twenty-Four ensign and Bank Soda label. Inside the carbonated beverage is an eye-watering yellowish-brown caffeine-esque liquid, tasting bitterly sharp and servile. Evokes a profound sense of patriotism."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 3
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["drink_banksoda_c24"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_ocean"
RECIPE.name = "Bank Soda Blue"
RECIPE.description = "A blue can with a wavy design evoking the ocean torrent adorned with the Bank Soda emblem. Inside the carbonated beverage is a clear liquid with a faint bluish hue and tart sugariness, reminiscent of flavours like blue raspberry and pineapple."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 7
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["drink_banksoda_ocean"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_lager"
RECIPE.name = "Bank Soda Lager"
RECIPE.description = "A white-and-brown can adorned with the Bank Soda emblem. Inside the carbonated beverage is a glistening caramel liquid with a creamy-rich texture, tasting bitter-sweet like sarsaparilla, vanilla, and wintergreen."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 5
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["drink_banksoda_lager"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_licorice"
RECIPE.name = "Bank Soda Licorice"
RECIPE.description = "A pink, confetti-and-bubblegum-covered can adorn with the Bank Soda emblem. Inside the carbonated beverage is a fluorescent green liquid of unknown origins, tasting of a vanilla mousse-like dessert for a smooth and piquantly sweet syrupy pop-like bubblegum flavour."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 6
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["drink_banksoda_licorice"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_c8"
RECIPE.name = "Bank Soda Grape"
RECIPE.description = "A purple can with two wavy lines adorned with the Bank Soda emblem and images of grapes. Inside the carbonated beverage is a grape liquid with an artificially sweet, mildly sour, sugary flavour similar to grape."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 4
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["drink_banksoda_c8"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_banksoda_red"
RECIPE.name = "Bank Soda Oriental"
RECIPE.description = "A red-purple can adorned with the Bank Soda emblem and Combine insignia. Inside the carbonated beverage is a fluorescent green liquid of unknown origins, and instead of unique flavours, it exhibits an acute taste, pungent smell, and unusual acidity. Contains lead."
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
RECIPE.skin = 0
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["drink_banksoda_red"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_proc_lemonade"
RECIPE.name = "Artificial Lemonade"
RECIPE.description = "Not exactly the most refreshing drink.. There's a slight hint of metallic aftertaste."
RECIPE.model = "models/props_junk/GlassBottle01a.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["drink_proc_lemonade"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_proc_fruit_juice"
RECIPE.name = "Artificial Fruit Juice"
RECIPE.description = "A artificial liquid resembling some kind of fruit juice."
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["drink_proc_fruit_juice"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_sparkling_water"
RECIPE.name = "Sparkling Breen's Water"
RECIPE.description = "A red can of water symbolic to the global regime, comes with a bit of a fiz to it and an artificial saccharine taste."
RECIPE.model = "models/willardnetworks/food/breencan1.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_sparkling_water"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_coffee"
RECIPE.name = "Coffee"
RECIPE.description = "Warm cup of coffee, helps keep you alert and awake for these strange times."
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_coffee"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_premium_water"
RECIPE.name = "Premium Breen's Water"
RECIPE.description = "A premium can symbolic to the global regime with a shimmering yellow allure, its contents promise an enigmatic purity."
RECIPE.model = "models/willardnetworks/food/breencan2.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["drink_premium_water"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_lemonade"
RECIPE.name = "Lemonade"
RECIPE.description = "A glass of refreshing Lemonade. Reminds you of the past."
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_b.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["drink_lemonade"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_fruit_juice"
RECIPE.name = "Fruit Juice"
RECIPE.description = "Refreshing fruit juice, tastes somewhat authentic."
RECIPE.model = "models/props_junk/garbage_plasticbottle003a.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 13
RECIPE.result = {["drink_fruit_juice"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_wi_coffee"
RECIPE.name = "Willard Industries Coffee"
RECIPE.description = "Overdose may result in insomnia, diarrhea, fatigue, depression, nightmares, vomitting, headaches, anxiety or death. Consult a Willard Industries approved medical professional if death occurs upon consumption."
RECIPE.model = "models/willardnetworks/food/wi_coffee.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 15
RECIPE.result = {["drink_wi_coffee"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_bobgrape"
RECIPE.name = "Soda Bob Grape"
RECIPE.description = "The label reads: Smooth fruity taste! Made from real artificial grapes and infused with a grimy sandy mud-like paste!"
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.skin = 0
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["drink_bobgrape"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_bobsurprise"
RECIPE.name = "Soda Bob Surprise"
RECIPE.description = "The label jokingly reads: The strong and striking taste of cherry soda. Flavourful, with a guaranteed unique taste in every can! Enjoy a random infusion of a countless variety of ingredients, including artificial deer meat and pencil shavings!"
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.skin = 3
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["drink_bobsurprise"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_bobfizz"
RECIPE.name = "Soda Bob Fizz"
RECIPE.description = "The label reads: Lemon, lime, sublime, containing no slime! A fresh zingy taste to blow your taste buds into orbit!"
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.skin = 2
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_bobfizz"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_bobdark"
RECIPE.name = "Soda Bob Dark"
RECIPE.description = "The label reads: The subtle and sultry taste of our 'dark' edition will chip away a piece of your mortal soul with every sip! Warning: Please consult your local Willard Industries professionals if demonic hallucinations occur."
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.skin = 1
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 13
RECIPE.result = {["drink_bobdark"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_bobenergy"
RECIPE.name = "Soda Bob Energy"
RECIPE.description = "The label reads: Guzzle down this sugary treat in a single swig to phase between realms and become pure energy, at one with both yourself and the universe."
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
RECIPE.skin = 6
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 13
RECIPE.result = {["drink_bobenergy"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- non-drinks
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_ciggie_pack"
RECIPE.name = "Cigarette Pack"
RECIPE.description = "A combine issued cigarette pack that packs 8 cigarettes."
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["ciggie_pack"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_carddeck"
RECIPE.name = "52-Card Deck"
RECIPE.description = "A traditional 52-card deck of French-suited playing cards."
RECIPE.model = "models/cards/stack.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 31
RECIPE.result = {["card_deck"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "nonalcoholic_tea"
RECIPE.name = "Cup of Tea"
RECIPE.description = "Comforting and warm to the touch."
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
RECIPE.category = "Non-alcoholic"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 6
RECIPE.result = {["drink_tea"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,144 @@
--[[
| 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/
--]]
-- Worn Shoes
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_worn_dark"
RECIPE.name = "Worn Dark Shoes"
RECIPE.description = "A pair of dark, worn and tired shoes... They have seen too much."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_military.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["shoes_worn_dark"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_worn_brown"
RECIPE.name = "Worn Brown Shoes"
RECIPE.description = "A pair of brown, worn and tired shoes... They have seen too much."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_military.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["shoes_worn_brown"] = 1}
RECIPE:Register()
-- Civ Shoes
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_black"
RECIPE.name = "Black Shoes"
RECIPE.description = "A pair of sturdy shoes for roads and paths no longer kept maintained."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_black_shoes"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_bloke"
RECIPE.name = "Bloke Shoes"
RECIPE.description = "A pair black of sturdy bloke shoes for roads and paths no longer kept maintained."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_bloke"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_darkblue"
RECIPE.name = "Dark Blue Shoes"
RECIPE.description = "A pair of sturdy shoes for roads and paths no longer kept maintained."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_blue_shoes"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_grey"
RECIPE.name = "Grey Shoes"
RECIPE.description = "A pair of sturdy shoes for roads and paths no longer kept maintained."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_grey"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_brown"
RECIPE.name = "Brown Shoes"
RECIPE.description = "A pair of sturdy shoes for roads and paths no longer kept maintained."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_brown_shoes"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_red"
RECIPE.name = "Dark Red Shoes"
RECIPE.description = "A pair of sturdy shoes for roads and paths no longer kept maintained."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_red"] = 1}
RECIPE:Register()
-- Leather Shoes
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_leather_dark"
RECIPE.name = "Dark Leather Boots"
RECIPE.description = "A pair of dark durable leather boots, ready for the long journey ahead."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_boots.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_leather_dark"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_shoes_leather_brown"
RECIPE.name = "Brown Leather Boots"
RECIPE.description = "A pair of brown durable leather boots, ready for the long journey ahead."
RECIPE.model = "models/willardnetworks/clothingitems/shoes_boots.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Shoes"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["shoes_leather_brown"] = 1}
RECIPE:Register()

View File

@@ -0,0 +1,284 @@
--[[
| 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 = "bartering_tool_spoon"
RECIPE.name = "Kitchen Spoon"
RECIPE.description = "Useful for making stews."
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 8
RECIPE.result = {["tool_spoon"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_kettle"
RECIPE.name = "Kettle"
RECIPE.description = "A kettle that can drip perfect boiling water."
RECIPE.model = "models/props_interiors/pot01a.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 14
RECIPE.result = {["tool_kettle"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_lighter"
RECIPE.name = "Plastic Lighter"
RECIPE.description = "A cheap plastic lighter made to light up cigarettes."
RECIPE.model = "models/willardnetworks/cigarettes/lighter.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["lighter"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_knife"
RECIPE.name = "Kitchen Knife"
RECIPE.description = "A thick, semi-blunt knife. Used to cut food on cutting board or surface."
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["tool_knife"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_scissors"
RECIPE.name = "Scissors"
RECIPE.description = "Snip, snip, snip!"
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["tool_scissors"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_syringe"
RECIPE.name = "Syringe"
RECIPE.description = "A syringe able to contain liquid-like substances, useful for medicinal purposes."
RECIPE.model = "models/willardnetworks/skills/syringeammo.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["comp_syringe"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_cookingpot"
RECIPE.name = "Cooking pot"
RECIPE.description = "A black, iron cooking pot. Put it on a stove!"
RECIPE.model = "models/props_c17/metalPot001a.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 15
RECIPE.result = {["tool_cookingpot"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_fryingpan"
RECIPE.name = "Frying Pan"
RECIPE.description = "A black, iron frying pan. Good for cooking food."
RECIPE.model = "models/props_c17/metalPot002a.mdl" -- This model is wrong. Use the hl2 frying pan model plz
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 14
RECIPE.result = {["tool_fryingpan"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_razor"
RECIPE.name = "Hairdresser tools"
RECIPE.description = "A tool for creative souls in an otherwise depressing landscape."
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 12
RECIPE.result = {["beard_razor"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_wrench"
RECIPE.name = "Wrench"
RECIPE.description = "An old wrench. Could use this for crating."
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 15
RECIPE.result = {["tool_wrench"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_toolkit"
RECIPE.name = "Toolkit"
RECIPE.description = "A small metal crate containing various construction tools for assembling items."
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 50
RECIPE.result = {["tool_toolkit"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "tool_coffeemachine"
RECIPE.name = "Coffee Machine"
RECIPE.description = "When you need drippling perfection on your shoes, a coffee machine is all you need."
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 45
RECIPE.result = {["tool_coffeemachine"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "tool_oven_assembly"
RECIPE.name = "Oven Assembly Kit"
RECIPE.description = "Alongside a set of instructions, this wooden package contains a high ordeal of different component pieces for Cooking apperatus."
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 80
RECIPE.result = {["tool_oven_assembly"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_tool_grouplock"
RECIPE.name = "Group Lock"
RECIPE.description = "A metal apparatus applied to doors. Requires a group to function."
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 80
RECIPE.result = {["grouplock"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
-- Storage
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_storage_lock"
RECIPE.name = "Container Lock"
RECIPE.description = "Sets a random password on a container when used."
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["cont_lock_t1"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_storage_satchel"
RECIPE.name = "Satchel"
RECIPE.description = "A small satchel that rests on your hip."
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 70
RECIPE.result = {["smallbag"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_storage_suitcase"
RECIPE.name = "Suitcase"
RECIPE.description = "A small suitcase ready to carry everything you'd rather not be."
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 70
RECIPE.result = {["suitcase"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_container_small"
RECIPE.name = "Small Container"
RECIPE.description = "5x3 sized container. Contact an admin to setup this container when you've crafted this item. Needs a container lock item to set a password."
RECIPE.model = "models/props_lab/filecabinet02.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 90
RECIPE.result = {["container_small_dummy"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_mixer"
RECIPE.name = "Mixer"
RECIPE.description = "This seems to be useful for mixing liquids or chemicals together. Its warning label reads: Do not open when in operation"
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 180
RECIPE.result = {["tool_mixer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_storage_backpack"
RECIPE.name = "Backpack"
RECIPE.description = "A small backpack with the Combine stamp upon it."
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 150
RECIPE.result = {["largebag"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_storage_safe"
RECIPE.name = "Container Safe"
RECIPE.description = "An unbreakable safe to keep your items in. (You may have 2 safes on top of the container limit.)"
RECIPE.model = "models/willardnetworks/safe.mdl"
RECIPE.category = "Tools & Storage"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 850
RECIPE.result = {["container_safe"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,376 @@
--[[
| 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/
--]]
-- Worn Trousers
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_black"
RECIPE.name = "Worn Black Trousers"
RECIPE.description = "A pair of black worn trousers. Made to last, but they don't feel good."
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Worn Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_black"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_blue"
RECIPE.name = "Worn Blue Trousers"
RECIPE.description = "A pair of blue worn trousers. Made to last, but they don't feel good."
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Worn Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_blue"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_green"
RECIPE.name = "Worn Green Trousers"
RECIPE.description = "A pair of green worn trousers. Made to last, but they don't feel good."
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Worn Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_green"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_grey"
RECIPE.name = "Worn Grey Trousers"
RECIPE.description = "A pair of grey worn trousers. Made to last, but they don't feel good."
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Worn Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_grey"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_red"
RECIPE.name = "Worn Red Trousers"
RECIPE.description = "A pair of red worn trousers. Made to last, but they don't feel good."
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Worn Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_red"] = 1}
RECIPE:Register()
-- Jumpsuit Trousers
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit_black"
RECIPE.name = "Black Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit_black"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit_blue"
RECIPE.name = "Blue Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit_blue"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit_brown"
RECIPE.name = "Brown Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit_brown"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit_green"
RECIPE.name = "Green Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit_green"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit_grey"
RECIPE.name = "Grey Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit_grey"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit_red"
RECIPE.name = "Red Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit_red"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_jumpsuit"
RECIPE.name = "Civilian Jumpsuit Trousers"
RECIPE.description = "The citizen jumpsuit is considered the standardised clothing of the regime, trousers matching its bleak look."
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Jumpsuit Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 25
RECIPE.result = {["legs_jumpsuit"] = 1}
RECIPE:Register()
-- Civilian Trousers
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_beige"
RECIPE.name = "Beige Trousers"
RECIPE.description = "A pair of beige trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_beige"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_black"
RECIPE.name = "Black Trousers"
RECIPE.description = "A pair of black trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_black"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_blue"
RECIPE.name = "Blue Trousers"
RECIPE.description = "A pair of blue trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_blue_pants"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_brown"
RECIPE.name = "Brown Trousers"
RECIPE.description = "A pair of brown trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_brown"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_darkgreen"
RECIPE.name = "Dark Green Trousers"
RECIPE.description = "A pair of dark green trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_green_pants"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_darkgrey"
RECIPE.name = "Dark Grey Trousers"
RECIPE.description = "A pair of dark grey trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_grey_pants"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_darkred"
RECIPE.name = "Dark Red Trousers"
RECIPE.description = "A pair of dark red trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_darkred"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_green"
RECIPE.name = "Green Trousers"
RECIPE.description = "A pair of green trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_green"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_grey"
RECIPE.name = "Grey Trousers"
RECIPE.description = "A pair of grey trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_light_grey_pants"] = 1} -- Old ID name, to let players keep item on update
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_lightblue"
RECIPE.name = "Light Blue Trousers"
RECIPE.description = "A pair of light blue trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_lightblue"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_purple"
RECIPE.name = "Purple Trousers"
RECIPE.description = "A pair of purple trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_purple"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_red"
RECIPE.name = "Red Trousers"
RECIPE.description = "A pair of red trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_red"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_teal"
RECIPE.name = "Teal Trousers"
RECIPE.description = "A pair of teal trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_teal"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_yellow"
RECIPE.name = "Yellow Trousers"
RECIPE.description = "A pair of yellow trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_yellow"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_twin"
RECIPE.name = "Twin Brown Trousers"
RECIPE.description = "A pair of greenish brown trousers. Somewhat worn and shabby by now.. But made to last."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_twin"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_civ_bloke"
RECIPE.name = "Bloke Trousers"
RECIPE.description = "A pair of black trousers named after a certain individual."
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Civilian Trousers"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["legs_civilian_bloke"] = 1}
RECIPE:Register()

View File

@@ -0,0 +1,177 @@
--[[
| 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/
--]]
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_bandanna"
RECIPE.name = "Vortigaunt Bandanna"
RECIPE.description = "A large bandanna suitable for a vortigaunt."
RECIPE.model = "models/willardnetworks/clothingitems/head_facewrap.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_bandana"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_chef"
RECIPE.name = "Vortigaunt Chef Hat"
RECIPE.description = "A large chef hat suitable for a vortigaunt."
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_head_chefhat"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_hardhat"
RECIPE.name = "Vortigaunt Construction Hat"
RECIPE.description = "Brandished with the Combine mark its back, these construction hats are often worn by the Civil Workers Union."
RECIPE.model = "models/willardnetworks/clothingitems/workercap_item.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_head_hardhat"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_hardhat"
RECIPE.name = "Vortigaunt Flat cap"
RECIPE.description = "A stylish old-school cap that is flat on the head.. Some vorts have particular taste."
RECIPE.model = "models/willardnetworks/clothingitems/head_hat2.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_head_flatcap"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_fedora"
RECIPE.name = "Vortigaunt Fedora"
RECIPE.description = "A rare stylish hat reminiscent of bygone times, certainly no alive creature would expect to see a vortigaunt with one of these.."
RECIPE.model = "models/willardnetworks/clothingitems/head_hat2.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 40
RECIPE.result = {["vortigaunt_head_fedora"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_boonie"
RECIPE.name = "Vortigaunt Boonie"
RECIPE.description = "A wide rimmed hat. Keeps the sun off your vort head."
RECIPE.model = "models/willardnetworks/clothingitems/head_boonie.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_head_boonie"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_hoodie"
RECIPE.name = "Vortigaunt Hoodie"
RECIPE.description = "An elongated hoodie for a longer neck. Perfect for keeping a vortigaunt warm in even the toughest conditions."
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_sweater.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_torso_hoodie"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_sweater"
RECIPE.name = "Vortigaunt Sweater"
RECIPE.description = "A sweater made for humans.. A curious vortigaunt might sneak one on. Perfect for keeping a vortigaunt warm in even the toughest conditions."
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_sweater.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_torso_sweater"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_poncho"
RECIPE.name = "Vortigaunt Poncho"
RECIPE.description = "A reliable and solid covering, It's composition derived from typical human garments. Loose fitting design and convenient cutouts allow for comfort and freedom of movement."
RECIPE.model = "models/props_c17/BriefCase001a.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_torso_light"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_covering"
RECIPE.name = "Makeshift Vortigaunt Covering"
RECIPE.description = "A simple, plain covering. Good for keeping you snug on a chilly night, and not much else."
RECIPE.model = "models/n7/vorti_outfit/light02.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_torso_light2"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_bandages"
RECIPE.name = "Vortigaunt Bandages"
RECIPE.description = "Wounded or otherwise, these bandages will serve its purpose."
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_bandage.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_bandages"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_vort_belt"
RECIPE.name = "Vortigaunt Belt"
RECIPE.description = "A belt made for human use, but a curious vortigaunt might try it on."
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_belt.mdl"
RECIPE.category = "Clothing"
RECIPE.subcategory = "Vortigaunt"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["vortigaunt_belt"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()

View File

@@ -0,0 +1,100 @@
--[[
| 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 = "bartering_writing_pin"
RECIPE.name = "Paper Pin"
RECIPE.description = "A pin, used to hang up papers on walls."
RECIPE.model = "models/items/crossbowrounds.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["pin"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_writing_paper"
RECIPE.name = "Paper"
RECIPE.description = "A paper to write on."
RECIPE.model = "models/props_c17/paper01.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 3
RECIPE.result = {["paper"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_writing_notepad"
RECIPE.name = "Notepad"
RECIPE.description = "A blue notepad to write on."
RECIPE.model = "models/props_lab/clipboard.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["notepad"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_writing_book"
RECIPE.name = "Blank Book"
RECIPE.description = "A blank book, ready and waiting for you to fill."
RECIPE.model = "models/willardnetworks/misc/book.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 10
RECIPE.result = {["book"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_writing_ink"
RECIPE.name = "Black Ink"
RECIPE.description = "A black ink printer cartridge."
RECIPE.model = "models/gibs/metal_gib2.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 5
RECIPE.result = {["black_ink"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_audiobook_reading"
RECIPE.name = "[Audio Player] Learn to Read"
RECIPE.description = "Listening to this rustic device will improve your reading capability."
RECIPE.model = "models/props_lab/reciever01d.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 30
RECIPE.result = {["audiobook_reading"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_newspaper_printer"
RECIPE.name = "Newspaper Printer"
RECIPE.description = "Prints newspapers, requires paper, black ink and a business permit to work."
RECIPE.model = "models/willardnetworks/plotter.mdl"
RECIPE.category = "Writing"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 750
RECIPE.result = {["newspaper_printer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()