mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,140 @@
|
||||
--[[
|
||||
| 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 = "Paquet de cigarettes"
|
||||
RECIPE.description = "Un paquet de cigarettes fabriqué par l'Union contenant 8 cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Alcool"
|
||||
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 = "alcohol_proc_whiskey"
|
||||
RECIPE.name = "Whisky Artificiel"
|
||||
RECIPE.description = "L'étiquette le décrit comme une sorte de whisky... Mais cela n'a pas le goût du whisky."
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Alcool Artificiel"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_proc_whiskey"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEX
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_whiskey"
|
||||
RECIPE.name = "Whisky"
|
||||
RECIPE.description = "Un véritable Whisky raffiné, une rareté de nos jours."
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["drink_whiskey"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_vodka"
|
||||
RECIPE.name = "Vodka Artificiel"
|
||||
RECIPE.description = "C'est assez difficile de dire quel goût la bouteille est censée avoir... L'étiquette le décrit comme une sorte de vodka."
|
||||
RECIPE.model = "models/willardnetworks/food/vodka.mdl"
|
||||
RECIPE.category = "Alcool Artificiel"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_proc_vodka"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_vodka"
|
||||
RECIPE.name = "Vodka"
|
||||
RECIPE.description = "Une des nombreuses liqueurs des profondeurs de la Patrie. Est-ce pour vous ?"
|
||||
RECIPE.model = "models/willardnetworks/food/vodka.mdl"
|
||||
RECIPE.category = "Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["drink_vodka"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_beer"
|
||||
RECIPE.name = "Bière artificielle"
|
||||
RECIPE.description = "Une boisson rafraîchissante fermentée."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Alcool Artificiel"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["drink_proc_beer"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_beer"
|
||||
RECIPE.name = "Bière"
|
||||
RECIPE.description = "Boisson alcoolisée à base de céréales fermentées."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
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 = "Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 23
|
||||
RECIPE.result = {["drink_lager_siemens"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_bourbon"
|
||||
RECIPE.name = "Bourbon Artificiel"
|
||||
RECIPE.description = "Une version synthétique du bourbon."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Alcool Artificiel"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_proc_bourbon"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_bourbon"
|
||||
RECIPE.name = "Bourbon"
|
||||
RECIPE.description = "Ce n'est pas du whisky, mais c'est du whisky. Est-ce à votre goût ?"
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["drink_bourbon"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,140 @@
|
||||
--[[
|
||||
| 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 = "batering_delice_drink_espresso"
|
||||
RECIPE.name = "Espresso"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_espresso"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_drink_ristretto"
|
||||
RECIPE.name = "Ristretto"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_ristretto"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_drink_latte"
|
||||
RECIPE.name = "Latte"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["drink_latte"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_drink_macchiato"
|
||||
RECIPE.name = "Macchiato"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["drink_macchiato"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_drink_lattemacchiato"
|
||||
RECIPE.name = "Latte macchiato"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["drink_lattemacchiato"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_drink_cappuccino"
|
||||
RECIPE.name = "Cappuccino"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["drink_cappuccino"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_drink_flatwhite"
|
||||
RECIPE.name = "Flat white"
|
||||
RECIPE.description = "Une tasse de café noir fumant pour vous donner un coup de fouet."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["drink_flatwhite"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_baking_doughnut"
|
||||
RECIPE.name = "Donut"
|
||||
RECIPE.description = "Un petit beignet rond avec un trou au milieu, gout nature."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["baking_doughnut"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_baking_doughnut_sugar"
|
||||
RECIPE.name = "Donut au sucre"
|
||||
RECIPE.description = "Un petit beignet rond avec un trou au milieu, recouvert de sucre."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 7
|
||||
RECIPE.result = {["baking_doughnut_sugar"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "batering_delice_baking_doughnut_cream"
|
||||
RECIPE.name = "Donut a la crème"
|
||||
RECIPE.description = "Un petit beignet rond avec un trou au milieu, recouvert d'un glaçage coloré et sucré."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Delice Café"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["baking_doughnut_cream"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,140 @@
|
||||
--[[
|
||||
| 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 = "Dispositif d'aide"
|
||||
RECIPE.description = "Un petit appareil aux coins arrondis, abritant deux boutons. Un petit logo de l'union universelle est visible."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Lampe torche"
|
||||
RECIPE.description = "Incroyablement utile lors de l'exploration de l'obscurité inconnue."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Télévision"
|
||||
RECIPE.description = "AUne télévision pour regarder l'unique programme de l'Union."
|
||||
RECIPE.model = "models/props_c17/tv_monitor01.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Machine à café"
|
||||
RECIPE.description = "Un petit café ça vous va?"
|
||||
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Ordinateur"
|
||||
RECIPE.description = "Un ordinateur avec un accès aux notes, utilisant un système d'exploitation douteux. Outil utile pour les magasins."
|
||||
RECIPE.model = "models/willardnetworks/props/willard_computer.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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_cmb"
|
||||
RECIPE.name = "Radio de Bienfaiteur"
|
||||
RECIPE.description = "Une radio fabriquée dont la fréquence est réglée sur une station de radio de l'Union qui propose à la fois de la musique classique et patriotique."
|
||||
RECIPE.model = "models/props_lab/citizenradio.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 150
|
||||
RECIPE.result = {["musicradio_cmb"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_elec_toolkit"
|
||||
RECIPE.name = "Boîte à outils"
|
||||
RECIPE.description = "Une petite caisse en métal contenant divers outils de construction pour assembler des objets."
|
||||
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 90
|
||||
RECIPE.result = {["tool_toolkit"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_elec_scissors"
|
||||
RECIPE.name = "Ciseaux"
|
||||
RECIPE.description = "Coupez, coupez , coupez! Faite attention avec quand même..."
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 15
|
||||
RECIPE.result = {["tool_scissors"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_elec_lock"
|
||||
RECIPE.name = "Cadenas"
|
||||
RECIPE.description = "Permet de définir un mot de passe sur certains conteneurs/portes lorsqu'il est utilisé."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["cont_lock_t1"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_elec_plastic_lighter"
|
||||
RECIPE.name = "Briquet en plastique"
|
||||
RECIPE.description = "Un petit briquet en plastique avec une surface légérement texturée pour une meilleur prise en main. Le couvercle s'ouvre facilement pour révéler une petite flamme prête à être allumée."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/lighter.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["lighter"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,338 @@
|
||||
--[[
|
||||
| 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 = "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 = "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_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 = "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 = "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 = "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 = "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 = "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 = "bar_cream_apple"
|
||||
RECIPE.name = "Apple Ice Cream"
|
||||
RECIPE.description = "Bitter but sweet apple-flavored artificial ice cream."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 12
|
||||
RECIPE.result = {["cream_apple"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_orange"
|
||||
RECIPE.name = "Orange Ice Cream"
|
||||
RECIPE.description = "A citrus-coated serving of orange-flavored artificial ice cream."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 12
|
||||
RECIPE.result = {["cream_orange"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_banana"
|
||||
RECIPE.name = "Banana Ice Cream"
|
||||
RECIPE.description = "Banana-flavored artificial ice cream filled with your daily dose of calcium… probably."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 12
|
||||
RECIPE.result = {["cream_banana"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_berry"
|
||||
RECIPE.name = "Berry Ice Cream"
|
||||
RECIPE.description = "A concoction of different berry flavors inside a serving of artificial ice cream."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["cream_berry"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_lemonade"
|
||||
RECIPE.name = "Lemonade Ice Cream"
|
||||
RECIPE.description = "A terribly sour serving of ice cream flavored to taste like lemonade."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 15
|
||||
RECIPE.result = {["cream_lemonade"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_bourbon"
|
||||
RECIPE.name = "Bourbon Ice Cream"
|
||||
RECIPE.description = "A portion of artificial vanilla ice cream with a dash of bourbon poured inside and out."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 15
|
||||
RECIPE.result = {["cream_bourbon"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_coffee"
|
||||
RECIPE.name = "Coffee Ice Cream"
|
||||
RECIPE.description = "Dark coffee, but mixed into a faux ice cream form."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 18
|
||||
RECIPE.result = {["cream_coffee"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bar_cream_caramel"
|
||||
RECIPE.name = "Salted Caramel Peanuts Ice Cream"
|
||||
RECIPE.description = "Artificial ice cream infused with salted raw peanuts and chunks of something made to taste like caramel."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 18
|
||||
RECIPE.result = {["cream_caramel"] = 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 = "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 = "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 = "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 = "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 = "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 = "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 = "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 = "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 = "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 = "Food"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["antlion_roast"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,261 @@
|
||||
--[[
|
||||
| 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 = "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 = "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 = "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 = "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 = "Ingredients"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
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 = "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 = "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 = "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 = "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 = "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 = "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 = "Ingredients"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
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 = "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 = "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 = "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 container of coffee powder."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee_nescafe.mdl"
|
||||
RECIPE.category = "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 = "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 = "Ingredients"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 2
|
||||
RECIPE.result = {["ing_antlion_meat"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "ingredients_cream_base"
|
||||
RECIPE.name = "Base de Crême Glacée"
|
||||
RECIPE.description = "Une base pour faire de la glace - bien que vous puissiez la manger, quelque chose vous dit que vous préféreriez en faire quelque chose d'autre en premier."
|
||||
RECIPE.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 4
|
||||
RECIPE.result = {["ice_cream_base"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,308 @@
|
||||
--[[
|
||||
| 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 = "Paquet de cigarettes"
|
||||
RECIPE.description = "Un paquet de cigarettes fabriqué par l'Union contenant 8 cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Briquet Zippo"
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Tranche de cheddar"
|
||||
RECIPE.description = "Une tranche de fromage cheddar"
|
||||
RECIPE.model = "models/willardnetworks/food/cheesewheel1c.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Poisson cru"
|
||||
RECIPE.description = "Vue rarement de nos jours"
|
||||
RECIPE.model = "models/willardnetworks/food/fishgolden.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Bœuf cru"
|
||||
RECIPE.description = "Une tranche de bœuf cru, une denrée plutôt rare de nos jours."
|
||||
RECIPE.model = "models/willardnetworks/food/meat3.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Œuf"
|
||||
RECIPE.description = "Usually replaced with the Egg Protein Package these days."
|
||||
RECIPE.model = "models/willardnetworks/food/egg1.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Précieux, immaculé et indulgent - cette tablette de chocolat fait paraître l'oppression mondiale comme une générosité inoffensive à vivre dans le luxe"
|
||||
RECIPE.model = "models/willardnetworks/props/unionchoco.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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_cream_pineapple"
|
||||
RECIPE.name = "Glace à l'ananas"
|
||||
RECIPE.description = "De la vraie glace à la crème, servie avec du jus d'ananas et des morceaux d'ananas à l'intérieur. Le mélange parfait entre le sucré et l'acide."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 26
|
||||
RECIPE.result = {["cream_pineapple"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_cream_mint"
|
||||
RECIPE.name = "Glace à la menthe et aux pépites de chocolat"
|
||||
RECIPE.description = "Le chef-d'œuvre des glaces : des morceaux de chocolat mélangés dans une portion de glace, parfaitement mariés avec une touche de menthe. La couleur verte avec des motifs en chocolat vous attire ; cette saveur est certainement une rareté.."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["cream_mint"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_fruit_pineapple"
|
||||
RECIPE.name = "Ananas"
|
||||
RECIPE.description = "Assez rare de nos jours"
|
||||
RECIPE.model = "models/willardnetworks/food/pineapple.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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_pizza_normal"
|
||||
RECIPE.name = "Pizza au fromage"
|
||||
RECIPE.description = "Un classique d'autrefois, la pizza reste largement inchangée, à l'exception de quelques ingrédients improvisés ici et là."
|
||||
RECIPE.model = "models/props_junk/garbage_pizzabox01a_fullsheet.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 40
|
||||
RECIPE.result = {["luxury_norpizza"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_white_wine"
|
||||
RECIPE.name = "Vin blanc"
|
||||
RECIPE.description = "Une denrée rare et coûteuse."
|
||||
RECIPE.model = "models/willardnetworks/food/white_wine.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["drink_white_wine"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_red_wine"
|
||||
RECIPE.name = "Vin rouge"
|
||||
RECIPE.description = "Une denrée rare et coûteuse."
|
||||
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["drink_red_wine"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_champagne"
|
||||
RECIPE.name = "Bouteille de champagne pétillant"
|
||||
RECIPE.description = "On raconte qu'il est toujours présent dans les cercles élevés, le champagne est une friandise hautement prestigieuse et rare à découvrir de nos jours."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_a.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 100
|
||||
RECIPE.result = {["drink_champagne"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_chess"
|
||||
RECIPE.name = "Kit d'assemblage de table d'échecs"
|
||||
RECIPE.description = "Un kit d'assemblage pour assembler une table d'échecs."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Kit d'assemblage de table de dames"
|
||||
RECIPE.description = "Un kit d'assemblage pour assembler une table de dame."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Kit d'assemblage de machine d'arcade"
|
||||
RECIPE.description = "Un kit d'assemblage pour assembler une machine d'arcade.."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
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 = "Un paquet de cigarillos de grande qualité et élégants, enveloppés dans du papier à tabac de haute densité, contenant jusqu'à 8 cigarillos, fabriqués par Tenzhen Industries."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_goodfella.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["ciggie_goodfella"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_red_wine_kofman"
|
||||
RECIPE.name = "Vin rouge : Château Kofman"
|
||||
RECIPE.description = "Un Vin rouge qui se boit facilement, les amateurs de vin vous dirons que c'est un bon vin mais sans plus."
|
||||
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 60
|
||||
RECIPE.result = {["drink_red_wine_kofman"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_red_wine_deluxe_kofman"
|
||||
RECIPE.name = "Vin Rouge : Château Deluxe Kofman"
|
||||
RECIPE.description = "Une excellente cuvé à fournir à vos meilleurs amis ou à un rendez-vous très important, ce vin rouge semble être authentique."
|
||||
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 75
|
||||
RECIPE.result = {["drink_red_wine_deluxe_kofman"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_white_wine_kofman"
|
||||
RECIPE.name = "Vin Blanc : Domaine Kofman"
|
||||
RECIPE.description = "Ce Vin blanc sort d'une usine de production et sa se sent quand on là en bouche."
|
||||
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 60
|
||||
RECIPE.result = {["drink_white_wine_kofman"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_white_wine_premium_kofman"
|
||||
RECIPE.name = "Vin Blanc : Domaine Premium Kofman"
|
||||
RECIPE.description = "Ce Vin blanc sort d'une usine de production et sa se sent quand on là en bouche."
|
||||
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 75
|
||||
RECIPE.result = {["drink_white_wine_premium_kofman"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_beer_kofman"
|
||||
RECIPE.name = "Bière blonde Kofman"
|
||||
RECIPE.description = "Cette bière à plus de gouts que les autres de l'union"
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_goodfella.mdl"
|
||||
RECIPE.category = "Luxe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["drink_beer_kofman"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,106 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
-- Machines --
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "tool_coffeemachine"
|
||||
RECIPE.name = "Cafetière"
|
||||
RECIPE.description = "Lorsque vous avez besoin d'une perfection dégoulinante sur vos chaussures, une machine à café est tout ce dont vous avez besoin."
|
||||
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 45
|
||||
RECIPE.result = {["tool_coffeemachine"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_mixer"
|
||||
RECIPE.name = "Mixeur"
|
||||
RECIPE.description = "Cela semble être utile pour mélanger des liquides ou des produits chimiques ensemble. Son étiquette d'avertissement se lit comme suit : Ne pas ouvrir pendant le fonctionnement"
|
||||
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 200
|
||||
RECIPE.result = {["tool_mixer"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
-- Meubles --
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "tool_oven_assembly"
|
||||
RECIPE.name = "Kit d'assemblage de four"
|
||||
RECIPE.description = "A côté d'un mode d'emploi, cet emballage en bois contient différentes pièces constitutives d'un appareil de cuisson."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["tool_oven_assembly"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "tool_oven_rusty_assembly"
|
||||
RECIPE.name = "Kit d'assemblage de four rouillé"
|
||||
RECIPE.description = "A côté d'un mode d'emploi, cet emballage en bois contient différentes pièces constitutives d'un appareil de cuisson rouillé."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 250
|
||||
RECIPE.result = {["tool_oven_rusty_assembly"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
-- Stockage --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_storage_lock"
|
||||
RECIPE.name = "Cadenas"
|
||||
RECIPE.description = "Définit un mot de passe sur un stockage lorsqu'il est utilisé."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 35
|
||||
RECIPE.result = {["cont_lock_t1"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_container_small"
|
||||
RECIPE.name = "Armoire à dossiers"
|
||||
RECIPE.description = "Conteneur de taille 3x3. Contactez un Admin pour configurer ce stockage lorsque vous aurez cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 40
|
||||
RECIPE.result = {["container_small_dummy"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "container_medium_dummy"
|
||||
RECIPE.name = "Armoire à dossiers moyenne"
|
||||
RECIPE.description = "Conteneur de taille 3x3. Contactez un Admin pour configurer ce stockage lorsque vous aurez cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["container_medium_dummy"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -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 = "Canette d'eau"
|
||||
RECIPE.description = "Une canette d'eau au goût étrange. C'est cependant rafraîchissant."
|
||||
RECIPE.model = "models/props_junk/PopCan01a.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
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 Soda"
|
||||
RECIPE.description = "L'étiquette se lit avec humour : Le doux goût accueillant d'origine du Bob Soda. Avertissement : Peut provoquer des saignements intestinaux graves et une légère fatigue oculaire."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 4
|
||||
RECIPE.category = "Soda"
|
||||
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 = "La boisson alternative à faible teneur en sucre, fabriquée par la chaîne de production de Bank Soda. Régalez-vous avec les délices de ce soda diététique entièrement biologique."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 1
|
||||
RECIPE.category = "Soda"
|
||||
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 = "La boisson gazeuse de haute qualité fabriquée par Bank Soda. Laissez-vous séduire par les délices de ce concurrent sucré entièrement biologique."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 2
|
||||
RECIPE.category = "Soda"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
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 = "Une canette rouge ornée de l'insigne de Cité Vingt-Quatre et de l'étiquette Bank Soda. À l'intérieur de la boisson gazeuse se trouve un liquide jaune-brun qui ressemble à la caféine, au goût amèrement tranchant et servile. Évoque un profond sentiment de patriotisme."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 3
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Une canette bleue avec un design ondulé évoquant le torrent océanique orné de l'emblème Bank Soda. À l'intérieur de la boisson gazeuse se trouve un liquide clair avec une légère teinte bleutée et une douceur acidulée, rappelant des saveurs telles que la framboise bleue et l'ananas."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 7
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Une canette blanche et marron ornée de l'emblème Bank Soda. À l'intérieur de la boisson gazeuse se trouve un liquide caramel luisant avec une texture crémeuse et riche, au goût doux-amer rappelant la salsepareille, la vanille et la Gaulthérie couchée."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 5
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 Réglisse"
|
||||
RECIPE.description = "Une canette rose, ornée de confettis et de chewing-gum, est décorée de l'emblème Bank Soda. À l'intérieur de la boisson gazeuse se trouve un liquide vert fluorescent d'origine inconnue, au goût d'un dessert mousseux à la vanille pour une saveur de bubblegum sucrée et piquante, rappelant les soda-pop."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 6
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Sans Alcool"
|
||||
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 = "Une canette rouge-violette ornée de l'emblème Bank Soda et de l'insigne du Combine. À l'intérieur de la boisson gazeuse se trouve un liquide vert fluorescent d'origine inconnue, et au lieu de saveurs uniques, elle présente un goût aigu, une odeur âcre et une acidité inhabituelle. Contient du plomb."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 0
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Limonade Artificielle"
|
||||
RECIPE.description = "Pas exactement la boisson la plus rafraîchissante. Il y a une légère touche d'arrière-goût métallique."
|
||||
RECIPE.model = "models/props_junk/GlassBottle01a.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Jus de fruit artificiel"
|
||||
RECIPE.description = "Un liquide artificiel ressemblant à une sorte de jus de fruit."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Eau pétillante"
|
||||
RECIPE.description = "Une canette d'eau rouge, un peu de pétillante. C'est assez sucré."
|
||||
RECIPE.model = "models/willardnetworks/food/breencan1.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Café"
|
||||
RECIPE.description = "Une tasse de café chaud vous aide à rester alerte et éveillé pendant ces temps étranges."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Eau pétillante Premium"
|
||||
RECIPE.description = "Il s'agit d'une canette d'eau très raffinée avec un goût très sucré. Pour une raison quelconque, elle vous fait vous sentir plus heureux...?"
|
||||
RECIPE.model = "models/willardnetworks/food/breencan2.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Limonade"
|
||||
RECIPE.description = "Un verre de limonade rafraîchissante. Vous rappelle le passé."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_b.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Jus de fruit"
|
||||
RECIPE.description = "Un jus de fruit rafraîchissant au goût quelque peu authentique."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle003a.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Café Willard Industries"
|
||||
RECIPE.description = "Une surdose peut entraîner de l'insomnie, de la diarrhée, de la fatigue, de la dépression, des cauchemars, des vomissements, des maux de tête, de l'anxiété ou la mort. Consultez un professionnel de la santé approuvé par Willard Industries en cas de décès consécutif à la consommation."
|
||||
RECIPE.model = "models/willardnetworks/food/wi_coffee.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Bob Soda Grape"
|
||||
RECIPE.description = "L'étiquette indique: Goût fruité doux ! Fabriqué à partir de raisins artificiels authentiques et infusé avec une pâte sablonneuse et boueuse"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 0
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Bob Soda Surprise"
|
||||
RECIPE.description = "L'étiquette indique de manière humoristique: Le goût fort et marquant du soda à la cerise. Saveur intense, avec un goût unique garanti dans chaque canette ! Profitez d'une infusion aléatoire d'une multitude d'ingrédients, y compris de la viande de cerf artificielle et des copeaux de crayon !"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 3
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Bob Soda Fizz"
|
||||
RECIPE.description = "L'étiquette indique: Citron, lime, sublime, sans la moindre bave ! Un goût frais et pétillant pour envoyer vos papilles gustatives en orbite !"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 2
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Bob Soda Dark"
|
||||
RECIPE.description = "L'étiquette indique: Le goût subtil et sensuel de notre édition 'Dark' érodera un morceau de votre âme mortelle à chaque gorgée ! Avertissement : veuillez consulter les professionnels de Willard Industries de votre région en cas d'hallucinations démoniaques"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 1
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Bob Soda Energy"
|
||||
RECIPE.description = "L'étiquette indique: Avalez cette gâterie sucrée en une seule gorgée pour passer d'un monde à l'autre et devenir une énergie pure, en harmonie avec vous-même et l'univers."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 6
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Paquet de cigarettes"
|
||||
RECIPE.description = "Un paquet de cigarettes fabriqué par l'Union contenant 8 cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Jeu de 52 cartes"
|
||||
RECIPE.description = "Un jeu traditionnel de 52 cartes de cartes à jouer de couleur française."
|
||||
RECIPE.model = "models/cards/stack.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
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 = "Tasse de Thé"
|
||||
RECIPE.description = "Réconfortant et chaud au toucher."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Sans Alcool"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["drink_tea"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -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_writing_pin"
|
||||
RECIPE.name = "Broche"
|
||||
RECIPE.description = "Une broche, utilisée pour accrocher des papiers sur les murs."
|
||||
RECIPE.model = "models/props_c17/TrapPropeller_Lever.mdl"
|
||||
RECIPE.category = "Imprimerie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["pin"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_writing_paper"
|
||||
RECIPE.name = "Papier"
|
||||
RECIPE.description = "Un papier pour écrire."
|
||||
RECIPE.model = "models/props_c17/paper01.mdl"
|
||||
RECIPE.category = "Imprimerie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 2
|
||||
RECIPE.result = {["paper"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_writing_notepad"
|
||||
RECIPE.name = "Bloc-notes"
|
||||
RECIPE.description = "Un bloc-note pour écrire."
|
||||
RECIPE.model = "models/willard/work/notepad1.mdl"
|
||||
RECIPE.category = "Imprimerie"
|
||||
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 = "Livre blanc"
|
||||
RECIPE.description = "Un livre vierge, prêt et attendant que vous le remplissiez."
|
||||
RECIPE.model = "models/willardnetworks/misc/book.mdl"
|
||||
RECIPE.category = "Imprimerie"
|
||||
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 = "Encre noire"
|
||||
RECIPE.description = "Une cartouche d'imprimante à encre noire."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Imprimerie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 4
|
||||
RECIPE.result = {["black_ink"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_audiobook_reading"
|
||||
RECIPE.name = "Apprendre à lire"
|
||||
RECIPE.description = "L'écoute de cet appareil rustique améliorera votre capacité de lecture."
|
||||
RECIPE.model = "models/props_lab/reciever01d.mdl"
|
||||
RECIPE.category = "Imprimerie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 13
|
||||
RECIPE.result = {["audiobook_reading"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,259 @@
|
||||
--[[
|
||||
| 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 = "Cuillère de cuisine"
|
||||
RECIPE.description = "Utile pour préparer des ragoûts."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Bouilloire"
|
||||
RECIPE.description = "Une bouilloire qui peut égoutter de l'eau parfaitement bouillante."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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_knife"
|
||||
RECIPE.name = "Couteau de cuisine"
|
||||
RECIPE.description = "Couteau épais et semi-émoussé. Utilisé pour couper les aliments sur une planche à découper ou une surface."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Ciseaux"
|
||||
RECIPE.description = "Attention ça coupe!"
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Seringue"
|
||||
RECIPE.description = "Seringue pouvant contenir des substances liquides, utile à des fins médicales."
|
||||
RECIPE.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Pot de cuisson"
|
||||
RECIPE.description = "Une marmite noire en fer. Mettez-la sur le feu !"
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Poêle à frire"
|
||||
RECIPE.description = "Une poêle à frire noire en fer. Bonne pour la cuisson des aliments."
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl" -- This model is wrong. Use the hl2 frying pan model plz
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Outils de coiffeur"
|
||||
RECIPE.description = "Un outil pour les âmes créatives dans un paysage autrement déprimant."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Clé à molette"
|
||||
RECIPE.description = "Une vieille clé à molette. Elle pourrait être utilisée pour la mise en caisse."
|
||||
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Boîte à outils"
|
||||
RECIPE.description = "Une petite caisse en métal contenant divers outils de construction pour assembler des objets."
|
||||
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
|
||||
RECIPE.category = "Outils"
|
||||
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 = "Machine a café"
|
||||
RECIPE.description = "Lorsque vos chaussures doivent être parfaites, une machine à café est tout ce dont vous avez besoin."
|
||||
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
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 = "Kit d'assemblage du four"
|
||||
RECIPE.description = "Cet emballage en bois contient, outre un ensemble d'instructions, un grand nombre de pièces différentes pour l'appareil de cuisson."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
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 = "Combine Lock de groupe"
|
||||
RECIPE.description = "Appareil métallique appliqué aux portes. Nécessite un groupe pour fonctionner."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
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 = "Cadenas"
|
||||
RECIPE.description = "Définit un mot de passe aléatoire sur un conteneur lorsqu'il est utilisé."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Stockages"
|
||||
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 = "Sacoche"
|
||||
RECIPE.description = "Une petite sacoche qui se pose sur la hanche."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
|
||||
RECIPE.category = "Sacs"
|
||||
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_container_small"
|
||||
RECIPE.name = "Petit conteneur"
|
||||
RECIPE.description = "Conteneur de taille 5x3. Contactez un administrateur pour installer ce conteneur lorsque vous avez fabriqué cet objet. Nécessite un élément de verrouillage du conteneur pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
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 = "Il semble utile pour mélanger des liquides ou des produits chimiques. L'étiquette d'avertissement indique Ne pas ouvrir en cours de fonctionnement"
|
||||
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
|
||||
RECIPE.category = "Machines"
|
||||
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 = "Sac"
|
||||
RECIPE.description = "Un petit sac à dos portant le cachet de Combine."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
|
||||
RECIPE.category = "Sacs"
|
||||
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 = "Coffre Fort"
|
||||
RECIPE.description = "Un coffre-fort incassable pour conserver vos objets."
|
||||
RECIPE.model = "models/willardnetworks/safe.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 850
|
||||
RECIPE.result = {["container_safe"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,75 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
-- Pantalon usé
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_worn_black"
|
||||
RECIPE.name = "Pantalon noir usé"
|
||||
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalon usé"
|
||||
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 = "Pantalon bleu usé"
|
||||
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalon usé"
|
||||
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 = "Pantalon vert usé"
|
||||
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalon usé"
|
||||
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 = "Pantalon gris usé"
|
||||
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalon usé"
|
||||
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 = "Pantalon rouge usé"
|
||||
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalon usé"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["legs_worn_red"] = 1}
|
||||
RECIPE:Register()
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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()
|
||||
Reference in New Issue
Block a user