mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 22:23:46 +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()
|
||||
@@ -0,0 +1,73 @@
|
||||
--[[
|
||||
| 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 = "cooking_bird_skewer"
|
||||
RECIPE.name = "Skewered Bird"
|
||||
RECIPE.category = "Bird"
|
||||
RECIPE.description = "Skewered bird bits firmly stuck on a stick, they look edible."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_bird_meat"] = 2}
|
||||
RECIPE.result = {["bird_skewer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bird_fillet"
|
||||
RECIPE.name = "Roasted Bird Fillet"
|
||||
RECIPE.category = "Bird"
|
||||
RECIPE.description = "A slab of firm roasted bird meat."
|
||||
RECIPE.model = "models/willardnetworks/food/meat6.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_bird_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["bird_fillet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bird_potluck"
|
||||
RECIPE.name = "Bird Potluck"
|
||||
RECIPE.category = "Bird"
|
||||
RECIPE.description = "Cooked bird mixed in with different spices and vegetables."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food3.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["bird_fillet"] = 1, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["bird_potluck"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 29, exp = 125}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,116 @@
|
||||
--[[
|
||||
| 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 = "cooking_antlion_sandwich"
|
||||
RECIPE.name = "Sandwich au Fourmilion"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Fourmilion"
|
||||
RECIPE.description = "Deux tranches de pain garnies de viande de fourmilion grillée et d'ingrédients frais."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1, ["antlion_roast"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["antlion_sandwich"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_skewer"
|
||||
RECIPE.name = "Brochette de viande de fourmilion"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Fourmilion"
|
||||
RECIPE.description = "Des morceaux de viande de fourmilion grillés sur une brochette en bois."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 2}
|
||||
RECIPE.result = {["antlion_skewer"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_roast"
|
||||
RECIPE.name = "Viande de fourmilion rôtie"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Fourmilion"
|
||||
RECIPE.description = "Une tranche de viande de fourmilion rôtie ne vous remplit pas autant que vous le voudriez, elle est assez filandreuse et a une texture étrange."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_alienmeat.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["antlion_roast"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_dish"
|
||||
RECIPE.name = "Spiced Dish of Antlion Meat"
|
||||
RECIPE.category = "Antlion"
|
||||
RECIPE.description = "This dish of otherworldy mixtures of ingredients look strangely rather appetising."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food4.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["antlion_roast"] = 1, ["ing_spices"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["antlion_dish"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 29, exp = 125}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_antlion_stew"
|
||||
RECIPE.name = "Ragoût de Fourmilion"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Fourmilion"
|
||||
RECIPE.description = "Un plat chaud et épicé rempli de viande de fourmilion mijotée."
|
||||
RECIPE.model = "models/willardnetworks/food/meatysoup.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 1, ["ing_sauce"] = 1, ["ing_spices"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["antlion_stew"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 250}, -- full xp
|
||||
{level = 40, exp = 125}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,134 @@
|
||||
--[[
|
||||
| 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 = "cooking_artificial_skewer"
|
||||
RECIPE.name = "Brochette de viande artificielle"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Artificielle"
|
||||
RECIPE.description = "Des morceaux de viande artificielle piqués sur un bâton pour une présentation pratique."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_artificial_meat"] = 2}
|
||||
RECIPE.result = {["artificial_skewer"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 120}, -- full xp
|
||||
{level = 10, exp = 80}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_meatpaste"
|
||||
RECIPE.name = "Pâte de viande artificielle"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Artificielle"
|
||||
RECIPE.description = "Une pâte à base de viande artificielle pour cuisiner divers plats."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.ingredients = {["proc_paste"] = 1, ["artificial_meat"] = 1}
|
||||
RECIPE.result = {["artificial_meatpaste"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_cheesepaste"
|
||||
RECIPE.name = "Pâte de fromage artificielle"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Artificielle"
|
||||
RECIPE.description = "Pot blanc de pâte artificielle gluante, complétée par du fromage pour une texture et un remplissage légèrement amélioré."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.ingredients = {["proc_paste"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["artificial_cheesepaste"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_meat"
|
||||
RECIPE.name = "Viande artificielle rôtie"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Artificielle"
|
||||
RECIPE.description = "De la viande artificielle cuite à la rôtissoire pour une saveur grillée."
|
||||
RECIPE.model = "models/willardnetworks/food/steak2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_artificial_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["artificial_meat"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_stirfry"
|
||||
RECIPE.name = "Sauté de viande artificielle"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Artificielle"
|
||||
RECIPE.description = "De la viande artificielle sautée dans une poêle avec d'autres ingrédients pour un plat savoureux."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["artificial_meat"] = 1, ["ing_spices"] = 1, ["ing_noodles"] = 1}
|
||||
RECIPE.result = {["artificial_stirfry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 29, exp = 80}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_stew"
|
||||
RECIPE.name = "Ragoût de viande artificielle"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Artificielle"
|
||||
RECIPE.description = "Un plat en sauce à base de viande artificielle et d'autres ingrédients cuits lentement."
|
||||
RECIPE.model = "models/willardnetworks/food/meatysoup2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_artificial_meat"] = 1, ["ing_sauce"] = 1, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["artificial_stew"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 120}, -- full xp
|
||||
{level = 40, exp = 80}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,230 @@
|
||||
--[[
|
||||
| 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 = "cooking_bread"
|
||||
RECIPE.name = "Pain"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un pain rond croustillant avec une croûte dorée et une mie moelleuse à l'intérieur."
|
||||
RECIPE.model = "models/willardnetworks/food/bread_loaf.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_dough"] = 1}
|
||||
RECIPE.result = {["baking_bread"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artcheese"
|
||||
RECIPE.name = "Fromage artificiel"
|
||||
RECIPE.category = "Ingrédients"
|
||||
RECIPE.description = "Un bloc de fromage synthétique, imitant le goût et la texture du fromage naturel."
|
||||
RECIPE.model = "models/willardnetworks/food/cheesewheel2c.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["drink_milk"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["artificial_cheese"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bagel"
|
||||
RECIPE.name = "Beignet"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un beignet moelleux recouvert de sucre en poudre."
|
||||
RECIPE.model = "models/willardnetworks/food/bagel2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_dough"] = 1}
|
||||
RECIPE.result = {["baking_bagel"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 150}, -- full xp
|
||||
{level = 20, exp = 75}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pretzel"
|
||||
RECIPE.name = "Bretzel"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un gros bretzel salé, torsadé en forme de nœud."
|
||||
RECIPE.model = "models/willardnetworks/food/pretzel.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["baking_pretzel"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_croissant"
|
||||
RECIPE.name = "Croissant"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un croissant doré et feuilleté, parfait pour un petit-déjeuner gourmand."
|
||||
RECIPE.model = "models/willardnetworks/food/croissant.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["ing_margarine"] = 1}
|
||||
RECIPE.result = {["baking_croissant"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_doughnut"
|
||||
RECIPE.name = "Donut"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un petit beignet rond avec un trou au milieu, recouvert d'un glaçage coloré et sucré."
|
||||
RECIPE.model = "models/willardnetworks/food/bagel1.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1}
|
||||
RECIPE.result = {["baking_doughnut"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pizza"
|
||||
RECIPE.name = "Cheese Pizza"
|
||||
RECIPE.category = "Baking"
|
||||
RECIPE.description = "A classic from times past, the pizza remains much of the same except for a few improvised ingredients here and there."
|
||||
RECIPE.model = "models/props_junk/garbage_pizzabox01a_fullsheet.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["luxury_norpizza"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_creamtreat"
|
||||
RECIPE.name = "Gâterie à la crème"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un beignet moelleux fourré d'une crème douce et sucrée."
|
||||
RECIPE.model = "models/willardnetworks/food/creamtreat.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1}
|
||||
RECIPE.result = {["baking_treat"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_applepie"
|
||||
RECIPE.name = "Tarte aux pommes"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Une tarte sucrée et croustillante remplie de pommes fraîches et parfumées."
|
||||
RECIPE.model = "models/willardnetworks/food/pie.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["fruit_apple"] = 3}
|
||||
RECIPE.result = {["baking_apple_pie"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sweetroll"
|
||||
RECIPE.name = "Roulés à la canelle"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Des petits pains sucrés en forme de spirale, avec un glaçage crémeux à la cannelle."
|
||||
RECIPE.model = "models/willardnetworks/food/sweetroll.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["fruit_berries"] = 3}
|
||||
RECIPE.result = {["baking_sweetroll"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cheesecake"
|
||||
RECIPE.name = "Cheesecake"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Patisserie"
|
||||
RECIPE.description = "Un dessert crémeux et riche, garni de fruits frais ou de coulis."
|
||||
RECIPE.model = "models/willardnetworks/food/cake.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["artificial_cheese"] = 1, ["fruit_berries"] = 2}
|
||||
RECIPE.result = {["baking_cheesecake"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,407 @@
|
||||
--[[
|
||||
| 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 = "cooking_noodles"
|
||||
RECIPE.name = "Nouilles"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Citoyenne"
|
||||
RECIPE.description = "Le plat traditionnel de Cité 8."
|
||||
RECIPE.model = "models/willardnetworks/food/noodles.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_noodles"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["comfort_noodles"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 25}, -- full xp
|
||||
{level = 20, exp = 13}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_toast"
|
||||
RECIPE.name = "Toast"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Rapide"
|
||||
RECIPE.description = "Une tranche de pain grillé, croustillante et dorée."
|
||||
RECIPE.model = "models/willardnetworks/food/toast.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1}
|
||||
RECIPE.result = {["comfort_toast"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sandwich"
|
||||
RECIPE.name = "Sandwich"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Rapide"
|
||||
RECIPE.description = "Deux tranches de pain garnies de viande, de légumes et de fromage, parfait pour un déjeuner rapide."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1, ["artificial_meat"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["comfort_sandwich"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_scrambled"
|
||||
RECIPE.name = "Oeufs brouillés"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Rapide"
|
||||
RECIPE.description = "Mélange crémeux et coloré d'oeufs."
|
||||
RECIPE.model = "models/willardnetworks/food/eggmix.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_egg"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["comfort_scrambled"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_comfort_chicken"
|
||||
RECIPE.name = "Poulet grillé"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Citoyenne"
|
||||
RECIPE.description = "Du poulet cuit à la grillade pour une saveur fumée et délicieuse."
|
||||
RECIPE.model = "models/willardnetworks/food/meat4.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_chicken"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["comfort_roastedchicken"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_boiledegg"
|
||||
RECIPE.name = "Oeuf dur"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Rapide"
|
||||
RECIPE.description = "Un oeuf cuit dans de l'eau bouillante jusqu'à ce que le jaune soit dur et la blanche soit ferme."
|
||||
RECIPE.model = "models/willardnetworks/food/egg2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["ing_egg"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["luxury_boiled_egg"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pancakes"
|
||||
RECIPE.name = "Crêpes"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Citoyenne"
|
||||
RECIPE.description = "Une pile de crêpes moelleuses empilées les unes sur les autres."
|
||||
RECIPE.model = "models/willardnetworks/food/pancake.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["drink_milk"] = 1}
|
||||
RECIPE.result = {["comfort_pancake"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_vegsoup"
|
||||
RECIPE.name = "Soupe aux légumes"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Citoyenne"
|
||||
RECIPE.description = "Un bol de soupe chaude rempli de légumes flottants dans un bouillon savoureux."
|
||||
RECIPE.model = "models/willardnetworks/food/vegetablesoup.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_vegetable_pack"] = 2, ["ing_herbs"] = 1, ["crafting_water"] = 2}
|
||||
RECIPE.result = {["comfort_soup"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80}, -- full xp
|
||||
{level = 40, exp = 40}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_fish"
|
||||
RECIPE.name = "Steak de saumon"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Citoyenne"
|
||||
RECIPE.description = "Un morceau de saumon grillé et doré, prêt à être dégusté."
|
||||
RECIPE.model = "models/willardnetworks/food/fishsteak.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_fish"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["comfort_fish"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 150}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_beef"
|
||||
RECIPE.name = "Rôti de boeuf"
|
||||
RECIPE.category = "Nourriture"
|
||||
RECIPE.subcategory = "Citoyenne"
|
||||
RECIPE.description = "Un gros morceau de viande rôti à la perfection, prêt à être découpé en tranches."
|
||||
RECIPE.model = "models/willardnetworks/food/meat4.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_beef"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["comfort_beef"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 150}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_apple"
|
||||
RECIPE.name = "Apple Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Bitter but sweet apple-flavored artificial ice cream."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["fruit_apple"] = 1}
|
||||
RECIPE.result = {["cream_apple"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_orange"
|
||||
RECIPE.name = "Orange Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "A citrus-coated serving of orange-flavored artificial ice cream."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["fruit_orange"] = 1}
|
||||
RECIPE.result = {["cream_orange"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_banana"
|
||||
RECIPE.name = "Banana Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Banana-flavored artificial ice cream filled with your daily dose of calcium… probably."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["fruit_banana"] = 1}
|
||||
RECIPE.result = {["cream_banana"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_berry"
|
||||
RECIPE.name = "Berry Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "A concoction of different berry flavors inside a serving of artificial ice cream."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["fruit_berries"] = 1}
|
||||
RECIPE.result = {["cream_berry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_caramel"
|
||||
RECIPE.name = "Salted Caramel Peanuts Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
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.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["food_peanuts"] = 1, ["ing_sweet"] = 1}
|
||||
RECIPE.result = {["cream_caramel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_bourbon"
|
||||
RECIPE.name = "Bourbon Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
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.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["drink_bourbon"] = 1}
|
||||
RECIPE.result = {["cream_bourbon"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_Lemonade"
|
||||
RECIPE.name = "Lemonade Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "A terribly sour serving of ice cream flavored to taste like lemonade."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["drink_lemonade"] = 1}
|
||||
RECIPE.result = {["cream_lemonade"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_coffee"
|
||||
RECIPE.name = "Coffee Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Dark coffee, but mixed into a faux ice cream form."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["ing_coffee_powder"] = 1}
|
||||
RECIPE.result = {["cream_coffee"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_pineapple"
|
||||
RECIPE.name = "Pineapple Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Real, fresh ice cream served with pineapple juice and chunks within. The perfect mix of sweet and sour."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["fruit_pineapple"] = 1}
|
||||
RECIPE.result = {["cream_pineapple"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_mint"
|
||||
RECIPE.name = "Mint Chocolate Chip Ice Cream"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "The magnum opus of ice cream: chocolate bits mixed within a portion of ice cream, perfectly blended with the brush of peppermint inside. The green color with chocolate patterns entice you; this flavor is a rarity, for sure."
|
||||
RECIPE.model = "models/willardnetworks/food/cproids.mdl"
|
||||
RECIPE.station = {"tool_creammachine"}
|
||||
RECIPE.ingredients = {["ice_cream_base"] = 1, ["ing_herbs"] = 1, ["luxury_choc"] = 1}
|
||||
RECIPE.result = {["cream_mint"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,49 @@
|
||||
--[[
|
||||
| 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 = "cooking_tea"
|
||||
RECIPE.name = "Tasse de thé"
|
||||
RECIPE.category = "Boissons chaudes"
|
||||
RECIPE.description = "Cette casse de thé exhale une délicieuse vapeur chaude, vous invitant à prendre une pause apaisante dans votre aventure."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_kettle"}
|
||||
RECIPE.ingredients = {["crafting_water"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["drink_tea"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 150}, -- full xp
|
||||
{level = 14, exp = 75}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_coffee"
|
||||
RECIPE.name = "Gobelet à Café"
|
||||
RECIPE.category = "Boissons chaudes"
|
||||
RECIPE.description = "Puissant et assez chaud pour être bu."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.tools = {"tool_coffeemachine"}
|
||||
RECIPE.ingredients = {["ing_coffee_powder"] = 1, ["junk_coffeecup"] = 1}
|
||||
RECIPE.result = {["drink_coffee"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 150}, -- full xp
|
||||
{level = 14, exp = 75}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,145 @@
|
||||
--[[
|
||||
| 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 = "cooking_proteinkiller"
|
||||
RECIPE.name = "Protéines modifiées"
|
||||
RECIPE.description = "Substance protéique modifiée, emballée et prête à consommer."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
RECIPE.category = "Nourriture droguée"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["painkillers"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["drug_proteinkiller"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 15, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_spikedcoffee"
|
||||
RECIPE.name = "Café modifié"
|
||||
RECIPE.description = "Boisson chaude à l'arôme prononcé, modifiée pour un effet stimulant."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Nourriture droguée"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_coffee"] = 1, ["basic_green"] = 1}
|
||||
RECIPE.result = {["drug_spikedcoffee"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 15, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_spikedtea"
|
||||
RECIPE.name = "Spiked Cup of Tea"
|
||||
RECIPE.description = "Comforting and warm to the touch but with a sour aftertaste."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Drugged Food"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_tea"] = 1, ["basic_blue"] = 1}
|
||||
RECIPE.result = {["drug_spikedtea"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 15, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_injectedapple"
|
||||
|
||||
RECIPE.name = "Pomme injectée"
|
||||
|
||||
RECIPE.name = "Pomme modifiée"
|
||||
|
||||
RECIPE.description = "Pomme juteuse et croquante, modifiée pour des “bienfaits améliorés”."
|
||||
RECIPE.model = "models/willardnetworks/food/apple.mdl"
|
||||
RECIPE.category = "Nourriture droguée"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["fruit_apple"] = 1, ["comp_syringe"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["drug_injectedapple"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 15, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sunshinevodka"
|
||||
RECIPE.name = "Vodka modifiée"
|
||||
RECIPE.description = "Alcool distillé modifié pour une saveur unique."
|
||||
RECIPE.model = "models/willardnetworks/food/vodka.mdl"
|
||||
RECIPE.category = "Nourriture droguée"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_proc_vodka"] = 1, ["ing_coffee_powder"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["drug_sunshinevodka"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_milkyway"
|
||||
RECIPE.name = "Milky Way"
|
||||
RECIPE.description = "Friandise moelleuse et fondante en bouche, légèrement sucrée."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Nourriture droguée"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_milk"] = 1, ["drink_bobenergy"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["drug_milkyway"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_happypie"
|
||||
RECIPE.name = "Tarte au pomme modifiée"
|
||||
RECIPE.description = "Pâtisserie aux pommes modifiée pour une texture et un goût exceptionnels."
|
||||
RECIPE.model = "models/willardnetworks/food/pie.mdl"
|
||||
RECIPE.category = "Nourriture droguée"
|
||||
RECIPE.ingredients = {["baking_apple_pie"] = 1, ["basic_red"] = 1, ["basic_green"] = 1}
|
||||
RECIPE.result = {["drug_happypie"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 25, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,117 @@
|
||||
--[[
|
||||
| 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 = "cooking_headcrab_sandwich"
|
||||
RECIPE.name = "Sandwich au crabe de tête"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Crabe de tête"
|
||||
RECIPE.description = "Du crabe de tête frais et croquant, agrémenté de légumes, entre deux tranches de pain."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["baking_bread_slice"] = 1, ["headcrab_fillet"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["headcrab_sandwich"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_skewer"
|
||||
RECIPE.name = "Brochette de crabe de tête"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Crabe de tête"
|
||||
RECIPE.description = "Des morceaux juteux de crabe de tête grillés sur une brochette."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_headcrab_meat"] = 2}
|
||||
RECIPE.result = {["headcrab_skewer"] = 6}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_fillet"
|
||||
RECIPE.name = "Viande de crabe de tête rôtie"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Crabe de tête"
|
||||
RECIPE.description = "Des morceaux de viande de crabe de tête rôtis à point, prêts à être dégustés."
|
||||
RECIPE.model = "models/willardnetworks/food/meat6.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_headcrab_meat"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["headcrab_fillet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_potluck"
|
||||
RECIPE.name = "Ragoût de crabe de tête"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Crabe de tête"
|
||||
RECIPE.description = "Un plat fumant rempli de viande de crabe de tête mijotée."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food3.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["headcrab_fillet"] = 1, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["headcrab_potluck"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 29, exp = 125}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_jambalaya"
|
||||
RECIPE.name = "Bouillie de crabe de tête"
|
||||
RECIPE.category = "Exogène"
|
||||
RECIPE.subcategory = "Crabe de tête"
|
||||
RECIPE.description = "Un bol de bouillie crémeuse à base de crabe de tête."
|
||||
RECIPE.model = "models/willardnetworks/food/stew1.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_headcrab_meat"] = 1, ["ing_sauce"] = 1, ["ing_spices"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["headcrab_jambalaya"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 250}, -- full xp
|
||||
{level = 40, exp = 125}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,143 @@
|
||||
--[[
|
||||
| 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 = "cooking_ing_bread_dough"
|
||||
RECIPE.name = "Pâte à pain"
|
||||
RECIPE.category = "Ingrédients"
|
||||
RECIPE.description = "Une boule de pâte levée, prête à être pétrie et cuite."
|
||||
RECIPE.model = "models/willardnetworks/food/dough.mdl"
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_flour"] = 1, ["drink_milk"] = 1, ["ing_margarine"] = 1}
|
||||
RECIPE.result = {["ing_dough"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_pastry_dough"
|
||||
RECIPE.name = "Pâte à Pâtisserie"
|
||||
RECIPE.category = "Ingrédients"
|
||||
RECIPE.description = "Une boule de pâte brisée, prête à être étalée et garnir selon vos envies."
|
||||
RECIPE.model = "models/willardnetworks/props/dough.mdl"
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_flour"] = 1, ["drink_milk"] = 1, ["ing_margarine"] = 1}
|
||||
RECIPE.result = {["ing_pastry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sweet_dough"
|
||||
RECIPE.name = "Pâte à Pâtisserie Sucrée"
|
||||
RECIPE.category = "Ingrédients"
|
||||
RECIPE.description = "Une boule de pâte sucrée, prête à être étalée et transformée en délicieux desserts."
|
||||
RECIPE.model = "models/willardnetworks/props/sweetdough.mdl"
|
||||
RECIPE.ingredients = {["ing_pastry"] = 1, ["ing_sweet"] = 1, ["fruit_berries"] = 2}
|
||||
RECIPE.result = {["ing_sweetpastry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sauce"
|
||||
RECIPE.name = "Fond de sauce"
|
||||
RECIPE.category = "Ingrédients"
|
||||
RECIPE.description = "Une base liquide pour donner du goût aux plats."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_flour"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["ing_sauce"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 35, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sauce_makeshift"
|
||||
RECIPE.name = "Base de sauce"
|
||||
RECIPE.category = "Ingrédients"
|
||||
RECIPE.description = "Une sauce de base, prête à être personnalisée avec vos ingrédients préférés pour accompagner vos plats."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_flour"] = 1, ["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["ing_sauce"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 35, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_vanilia_extract"
|
||||
RECIPE.name = "Artifical Vanillia Extract"
|
||||
RECIPE.category = "Ingredients"
|
||||
RECIPE.description = "An artifical re-creation of Vanilia Extract... it tastes sort of sour on its own."
|
||||
RECIPE.model = "models/labware/bottle1.mdl"
|
||||
RECIPE.station = {"tool_mixer", "tool_oven"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["ing_vanilia_extract"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cream_base"
|
||||
RECIPE.name = "Base de Crême Glacée"
|
||||
RECIPE.category = "Ingredients"
|
||||
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.station = {"tool_oven_rusty", "tool_oven"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["drink_milk"] = 1, ["ing_vanilia_extract"] = 1, ["ing_spices"] = 1, ["ing_protein"] = 1}
|
||||
RECIPE.result = {["ice_cream_base"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120}, -- full xp
|
||||
{level = 15, exp = 60}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,92 @@
|
||||
--[[
|
||||
| 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 = "cooking_skewered_leech"
|
||||
RECIPE.name = "Sangsue en brochette"
|
||||
RECIPE.category = "Sangsues"
|
||||
RECIPE.description = "Brochette de sangsues délicatement grillées, pour un repas exotique et unique."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_raw_leech"] = 5}
|
||||
RECIPE.result = {["leech_skewer"] = 5}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_roast"
|
||||
RECIPE.name = "Sangsue rôtie"
|
||||
RECIPE.category = "Sangsues"
|
||||
RECIPE.description = "Un parasite autrefois redouté maintenant rôti et prêt à manger."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_leech.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_raw_leech"] = 2, ["ing_margarine"] = 1, ["ing_salt"] = 1}
|
||||
RECIPE.result = {["leech_roast"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_goulash"
|
||||
RECIPE.name = "Goulache de sangsue"
|
||||
RECIPE.category = "Sangsues"
|
||||
RECIPE.description = "Un plat en sauce à base de sangsue."
|
||||
RECIPE.model = "models/willardnetworks/food/canned_food1.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.canUseCampfire = true
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["leech_roast"] = 2, ["ing_herbs"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["leech_goulash"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 29, exp = 40}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_stew"
|
||||
RECIPE.name = "Ragoût de sangsue crémeux"
|
||||
RECIPE.category = "Sangsues"
|
||||
RECIPE.description = "Diverses sangsues bouillies, mélangées et placées dans une sauce crémeuse. c'est chaud."
|
||||
RECIPE.model = "models/willardnetworks/food/whitesoup.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot", "tool_spoon"}
|
||||
RECIPE.ingredients = {["ing_raw_leech"] = 2, ["ing_sauce"] = 1, ["drink_milk"] = 1, ["ing_herbs"] = 1}
|
||||
RECIPE.result = {["leech_stew"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80}, -- full xp
|
||||
{level = 40, exp = 40}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,88 @@
|
||||
--[[
|
||||
| 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 = "cooking_pickled_vegetables"
|
||||
RECIPE.name = "Légumes marinés"
|
||||
RECIPE.category = "Marinée"
|
||||
RECIPE.description = "Des légumes trempés dans une marinade pour une saveur plus intense."
|
||||
RECIPE.model = "models/willardnetworks/foods/pickled.mdl"
|
||||
RECIPE.tools = {"tool_knife"}
|
||||
RECIPE.ingredients = {["ing_vegetable_pack"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["pickled_vegetables"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_egg"
|
||||
RECIPE.name = "Oeuf mariné"
|
||||
RECIPE.category = "Marinée"
|
||||
RECIPE.description = "Un oeuf trempé dans une marinade pour un goût unique."
|
||||
RECIPE.model = "models/willardnetworks/food/egg2.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_cookingpot"}
|
||||
RECIPE.ingredients = {["ing_egg"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["pickled_egg"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_eggmush"
|
||||
RECIPE.name = "Bouillie d'oeufs marinés"
|
||||
RECIPE.category = "Marinée"
|
||||
RECIPE.description = "Une bouillie faite à partir d'œufs marinés pour un plat savoureux et original."
|
||||
RECIPE.model = "models/willardnetworks/food/eggmix.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_vinegar"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["pickled_eggmush"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_leech"
|
||||
RECIPE.name = "Sangsues marinées"
|
||||
RECIPE.category = "Marinée"
|
||||
RECIPE.description = "Des sangsues trempées dans une marinade pour une texture et un goût particuliers."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_leech.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["leech_roast"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["pickled_leech"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,33 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
for _, v in pairs(ix.item.list) do
|
||||
if v.category == "Clothing - Citizen" or v.category == "Clothing - Citizen Trousers" then
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_"..v.uniqueID
|
||||
RECIPE.name = "Tear "..v.name
|
||||
RECIPE.description = "Tears the "..v.name.." to shreds to obtain some cloth scraps."
|
||||
RECIPE.model = v.model
|
||||
RECIPE.category = "Breakdown"
|
||||
RECIPE.subcategory = "Clothes"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {[v.uniqueID] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,960 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tv"
|
||||
RECIPE.name = "Écran de TV détruit"
|
||||
RECIPE.description = "Vous donne : 2 verres - 2 électroniques - 2 plastiques - 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_tv"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 2, ["comp_electronics"] = 2, ["comp_plastic"] = 2, ["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 55}, -- full xp
|
||||
{level = 20, exp = 27}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_toy"
|
||||
RECIPE.name = "Jouet détruit"
|
||||
RECIPE.description = "Vous donne : 1 bois - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_toy"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tire"
|
||||
RECIPE.name = "Pneu détruit"
|
||||
RECIPE.description = "Vous donne : 4 plastiques"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["junk_tire"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tincan"
|
||||
RECIPE.name = "Vieille boîte de conserve"
|
||||
RECIPE.description = "Vous donne : 1 féraille"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_tincan"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_takeaway"
|
||||
RECIPE.name = "Vieille boîte de nouilles"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_takeaway"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_sm_cardboard"
|
||||
RECIPE.name = "Boîte en carton"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_sm_cardboard"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_shoe"
|
||||
RECIPE.name = "Chaussure détruite"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_shoe"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_receiver"
|
||||
RECIPE.name = "Récepteur"
|
||||
RECIPE.description = "Vous donne : 1 tas de vis - 2 électroniques - 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_receiver"] = 1}
|
||||
RECIPE.result = {["comp_nails_screws"] = 1, ["comp_electronics"] = 2, ["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plastic_bucket"
|
||||
RECIPE.name = "Seau en plastique"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_plastic_bucket"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plasticcrate"
|
||||
RECIPE.name = "Caisse en plastique"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_plasticcrate"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plantpot"
|
||||
RECIPE.name = "Pot de fleurs"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_plantpot"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_pipe"
|
||||
RECIPE.name = "Tuyau en métal fragile"
|
||||
RECIPE.description = "Vous donne : 4 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_pipe"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tattered_drawer"
|
||||
RECIPE.name = "Tirroir"
|
||||
RECIPE.description = "Vous donne : 2 bois"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_tattered_drawer"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_paintcan"
|
||||
RECIPE.name = "Pot de peinture"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_paintcan"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_mug"
|
||||
RECIPE.name = "Tasse"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_mug"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_pc_monitor"
|
||||
RECIPE.name = "Moniteur de PC"
|
||||
RECIPE.description = "Vous donne : 3 plastiques - 3 verres - 3 électroniques - 2 férailles - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_pc_monitor"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 3, ["comp_glass"] = 3, ["comp_electronics"] = 3, ["comp_metal"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_lamp"
|
||||
RECIPE.name = "Lampe grillée"
|
||||
RECIPE.description = "Vous donne : 2 plastiques - 1 tas de vis - 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_lamp"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 2, ["comp_nails_screws"] = 1, ["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_keyboard"
|
||||
RECIPE.name = "Clavier"
|
||||
RECIPE.description = "Vous donne : 2 électroniques - 2 plastiques - 2 férailles - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_keyboard"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 2, ["comp_plastic"] = 2, ["comp_metal"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_jug"
|
||||
RECIPE.name = "Bidon en plastique"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_jug"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_jar"
|
||||
RECIPE.name = "Pot vide"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_jar"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_green_bottle"
|
||||
RECIPE.name = "Bouteille en verre"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_green_bottle"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_vodka"
|
||||
RECIPE.name = "Bouteille de vodka vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_vodka"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_beer"
|
||||
RECIPE.name = "Bière vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_beer"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_bourbon"
|
||||
RECIPE.name = "Bouteille de bourbon vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_fruitjuice"
|
||||
RECIPE.name = "Bouteille en carton"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_fruitjuice"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_emptyvial"
|
||||
RECIPE.name = "Fiole de soins"
|
||||
RECIPE.description = "Vous donne : 1 verre."
|
||||
RECIPE.model = "models/willardnetworks/syringeemptyy.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_emptyvial"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_whiskey"
|
||||
RECIPE.name = "Bouteille de whisky vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_wine"
|
||||
RECIPE.name = "Bouteille de vin vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_wine"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_gear"
|
||||
RECIPE.name = "Engrenage"
|
||||
RECIPE.description = "Vous donne : 3 fers"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gear"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 40}, -- full xp
|
||||
{level = 20, exp = 20}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_gascan"
|
||||
RECIPE.name = "Bidon d'essence"
|
||||
RECIPE.description = "Vous donne : 3 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gascan"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_fridge_door"
|
||||
RECIPE.name = "Porte de réfrigérateur"
|
||||
RECIPE.description = "Vous donne : 4 férailles - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_fridgedoor"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 4, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_frame"
|
||||
RECIPE.name = "Cadre"
|
||||
RECIPE.description = "Vous donne : 1 bois - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_frame"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_biolock"
|
||||
RECIPE.name = "Bio-lock brisé"
|
||||
RECIPE.description = "Vous donne : 4 morceaux de feraille - 2 circuits electronique - 1 tas de vis "
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 4, ["comp_electronics"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_doll"
|
||||
RECIPE.name = "Poupée"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_doll"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_coffeecup"
|
||||
RECIPE.name = "Tasse à café vide"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_coffeecup"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_computerparts"
|
||||
RECIPE.name = "Pièces d'ordinateur "
|
||||
RECIPE.description = "Vous donne : 2 électroniques"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computerparts"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 70}, -- full xp
|
||||
{level = 10, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_computer_tower"
|
||||
RECIPE.name = "Tour d'ordinateur cassée"
|
||||
RECIPE.description = "Vous donne : 3 électroniques - 3 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computer_tower"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 3, ["comp_metal"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_clock"
|
||||
RECIPE.name = "Horloge"
|
||||
RECIPE.description = "Vous donne : 1 bois - 2 électronique - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_clock"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_electronics"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_carton"
|
||||
RECIPE.name = "Carton de lait vide"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_carton"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_cardboard"
|
||||
RECIPE.name = "Carton vide"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_cardboard"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_bucket"
|
||||
RECIPE.name = "Seau"
|
||||
RECIPE.description = "Vous donne : 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_bucket"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_brown_bottle"
|
||||
RECIPE.name = "Bouteille marron"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_brown_bottle"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_empty_water"
|
||||
RECIPE.name = "Canette d'eau vide"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["crafting_water"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_cigarettepack"
|
||||
RECIPE.name = "Paquet de cigarette vide"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["ciggie_pack"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_plushie"
|
||||
RECIPE.name = "Un doudou en forme de tortue"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_turtle"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_battery"
|
||||
RECIPE.name = "Batterie de voiture"
|
||||
RECIPE.description = "Vous donne : 2 férailles - 1 produit chimique brut"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_battery"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 2, ["comp_unrefinedchemical"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,190 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_kitchenspoon"
|
||||
RECIPE.name = "Cuillère à soupe"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_spoon"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_suitcase"
|
||||
RECIPE.name = "Valise"
|
||||
RECIPE.description = "Vous donne : 1 tissu"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["suitcase"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_fryingpan"
|
||||
RECIPE.name = "Poêle à frire"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_fryingpan"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_kitchenknife"
|
||||
RECIPE.name = "Couteau de cuisine"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_knife"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_flashlight"
|
||||
RECIPE.name = "Lampe de poche"
|
||||
RECIPE.description = "Vous donne : 1 électronique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["flashlight"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1}
|
||||
RECIPE.hidden = true
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_requestdevice"
|
||||
RECIPE.name = "Dispositif de demande d'aide"
|
||||
RECIPE.description = "Vous donne : 1 électronique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["request_device"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_scissors"
|
||||
RECIPE.name = "Ciseaux"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_scissors"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_cookingpot"
|
||||
RECIPE.name = "Casserole"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_cookingpot"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_kettle"
|
||||
RECIPE.name = "Bouilloire"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_kettle"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_ammo_357"
|
||||
RECIPE.name = "Munitions de 357"
|
||||
RECIPE.description = "Des balles de calibre 357 pour un revolver."
|
||||
RECIPE.model = "models/items/357ammo.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 2, ["comp_alcohol"] = 2}
|
||||
RECIPE.result = {["bullets_357"] = 18}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 150}, -- full xp
|
||||
{level = 20, exp = 75}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_sniper"
|
||||
RECIPE.name = "Munitions de Sniper"
|
||||
RECIPE.description = "Quelques balles à tête pointue pour un sniper."
|
||||
RECIPE.model = "models/items/sniper_round_box.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 2, ["comp_alcohol"] = 2, ["comp_explosive"] = 2}
|
||||
RECIPE.result = {["bullets_sniper"] = 15}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 200}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_smg"
|
||||
RECIPE.name = "Munitions de SMG"
|
||||
RECIPE.description = "Quelques balles de SMG dans une boite en métal."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 2, ["comp_alcohol"] = 2}
|
||||
RECIPE.result = {["bullets_smg1"] = 30}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 25
|
||||
RECIPE.experience = {
|
||||
{level = 25, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_arifle"
|
||||
RECIPE.name = "Munitions de Fusil d'Assaut"
|
||||
RECIPE.description = "Quelques balles de Fusil d'Assaut dans une boite métallique."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["comp_alcohol"] = 1, ["comp_explosive"] = 1}
|
||||
RECIPE.result = {["bullets_assaultrifle"] = 30}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 35, exp = 50}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ammo_pistol"
|
||||
RECIPE.name = "Munitions de .9mm"
|
||||
RECIPE.description = "Cartouches de pistolet en vrac, destinées aux petits calibres."
|
||||
RECIPE.model = "models/items/boxsrounds.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["bullets_pistol"] = 30}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
@@ -0,0 +1,76 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_blue_kevlar"
|
||||
RECIPE.name = "Uniforme - Kevlar Bleu"
|
||||
RECIPE.description = "Un haut bleu avec du kevlar, offrant une armure décente."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_2.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Armure"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["torso_blue_rebel_uniform"] = 1, ["comp_strong_adhesive"] = 1, ["comp_refined_metal"] = 2, ["comp_improved_nails_screws"] = 2, ["comp_fabric"] = 1}
|
||||
RECIPE.result = {["torso_blue_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_green_kevlar"
|
||||
RECIPE.name = "Uniforme - Kevlar Vert"
|
||||
RECIPE.description = "Un haut vert avec du kevlar, offrant une armure décente. Souvent porté par des figures de la résistance."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_1.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Armure"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_green_rebel_uniform"] = 1, ["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["torso_green_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_medical_kevlar"
|
||||
RECIPE.name = "Uniforme - Kevlar Médical"
|
||||
RECIPE.description = "Un haut médical avec un kevlar, offrant une armure décente. Souvent porté par les médecins de la résistance."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_medic.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Armure"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_medical_rebel_uniform"] = 1, ["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["torso_medical_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,58 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_cigarette"
|
||||
RECIPE.name = "Étiquette de paquet de cigarettes"
|
||||
RECIPE.description = "Et si on enlevait le logo de l'Union de ce paquet..."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_1.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Cigarettes"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["ciggie_pack"] = 1, ["comp_cloth"] = 1}
|
||||
RECIPE.result = {["ciggie_pack"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
function RECIPE:PlayerCraftRecipe(client)
|
||||
local character = client:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
-- Take all the ingredients
|
||||
for ingredient, amount in pairs(self.ingredients) do
|
||||
for _ = 1, amount do
|
||||
local item = inventory:HasItem(ingredient)
|
||||
|
||||
if (item) then
|
||||
if (item.uniqueID == "ciggie_pack") then
|
||||
item:SetData("relabeled", true)
|
||||
else
|
||||
item:Remove()
|
||||
end
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Set the player's next crafting time
|
||||
client.ixNextCraftTime = CurTime() + 2
|
||||
netstream.Start("CraftTime", client.ixNextCraftTime)
|
||||
|
||||
character:DoAction("recipe_" .. self.uniqueID)
|
||||
end
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,351 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_legs_padded_blue"
|
||||
RECIPE.name = "Pantalon Rembourré - Bleu"
|
||||
RECIPE.description = "Un pantalon rembourré bleu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel2.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["legs_blue_pants"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.result = {["legs_blue_padded_pants"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_legs_padded_black"
|
||||
RECIPE.name = "Pantalon Rembourré - Noir"
|
||||
RECIPE.description = "Un pantalon rembourré bleu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel3.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["legs_civilian_black"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.result = {["legs_black_padded_pants"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_legs_padded_green"
|
||||
RECIPE.name = "Pantalon Rembourré - Vert"
|
||||
RECIPE.description = "Un pantalon rembourré bleu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel1.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["legs_civilian_green"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.result = {["legs_green_padded_pants"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_uniform_green"
|
||||
RECIPE.name = "Uniforme - Vert"
|
||||
RECIPE.description = "Un haut vert avec des bretelles. Possède également une plaque de bras, parfaite pour les insignes. Fournit une petite quantité d'armure."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel02.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["denim_green"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_reshaped_metal"] = 1}
|
||||
RECIPE.result = {["torso_green_rebel_uniform"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_uniform_blue"
|
||||
RECIPE.name = "Uniforme - Bleu"
|
||||
RECIPE.description = "Un top bleu à bretelles. Dispose également d'une plaque de bras, parfaite pour les insignes. Fournit une petite quantité d'armure."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel01.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["denim_blue"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_reshaped_metal"] = 1}
|
||||
RECIPE.result = {["torso_blue_rebel_uniform"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_uniform_medic"
|
||||
RECIPE.name = "Uniforme - Médecin"
|
||||
RECIPE.description = "Un top médical à bretelles. Dispose également d'une plaque de bras, parfaite pour les insignes. Fournit une petite quantité d'armure."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebelmedic.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["torso_medic_shirt"] = 1, ["comp_adhesive"] = 2, ["comp_reshaped_metal"] = 1}
|
||||
RECIPE.result = {["torso_medical_rebel_uniform"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_medichelmet"
|
||||
RECIPE.name = "Casque - Médecin"
|
||||
RECIPE.description = "Un casque de médecin en métal. Il protège votre tête des chutes d'objets et des éclats d'obus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet_med.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Casque"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["helmet_medic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_helmet"
|
||||
RECIPE.name = "Casque - Militaire"
|
||||
RECIPE.description = "Un casque militaire en métal. Il protège votre tête des chutes d'objets et des éclats d'obus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Casque"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["helmet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_blue"
|
||||
RECIPE.name = "Bonnet - Bleu"
|
||||
RECIPE.description = "Un bonnet bleu. Garde la tête au chaud par temps froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["head_blue_beanie"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_green"
|
||||
RECIPE.name = "Bonnet - Vert"
|
||||
RECIPE.description = "Un bonnet vert. Garde la tête au chaud dans le froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["head_green_beanie"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_red"
|
||||
RECIPE.name = "Bonnet - Rouge"
|
||||
RECIPE.description = "Un bonnet rouge. Garde la tête au chaud par temps froid"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beanie_red"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_brown"
|
||||
RECIPE.name = "Bonnet - Marron"
|
||||
RECIPE.description = "Un bonnet marron. Garde la tête au chaud par temps froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beanie_brown"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_grey"
|
||||
RECIPE.name = "Bonnet - Gris"
|
||||
RECIPE.description = "Un bonnet gris. Garde la tête au chaud par temps froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beanie_grey"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_bandana"
|
||||
RECIPE.name = "Bandana"
|
||||
RECIPE.description = "Un bandana rouge qui s'enroule autour de la moitié inférieure de la tête. Offre une légère protection contre les spores."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_facewrap.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Masque"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["face_bandana"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_hands_tipless"
|
||||
RECIPE.name = "Mitaines"
|
||||
RECIPE.description = "Une paire de gants noirs sans le bout des doigts. Garde vos doigts libres."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove_fingerless.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Gants"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["hands_gloves"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["hands_tipless_gloves"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 60}, -- full XP
|
||||
{level = 10, exp = 30}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_trenchcoat"
|
||||
RECIPE.name = "Trench Marron"
|
||||
RECIPE.description = "Un trench marron usé. Protège de la pluie, un peu..."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_fabric"] = 2, ["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 2}
|
||||
RECIPE.result = {["overcoat_trench"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_medic"
|
||||
RECIPE.name = "Chemise - Médecin"
|
||||
RECIPE.description = "Un haut boutonné blanc avec une bande de croix rouge cousue."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_citizen_medic.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["torso_medic_shirt"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
@@ -0,0 +1,303 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
-- Métal --
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_reshaped_metal"
|
||||
RECIPE.name = "Fer"
|
||||
RECIPE.description = "Fer fabriqué à partir de métal recyclé. Il est plus solide et plus lourd qu'avant."
|
||||
RECIPE.model = "models/willardnetworks/props/reshaped_metal.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Métaux"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 4, ["comp_nails_screws"] = 1}
|
||||
RECIPE.result = {["comp_reshaped_metal"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_refined_metal"
|
||||
RECIPE.name = "Acier"
|
||||
RECIPE.description = "Acier trempé fabriqué par un excellent raffineur. Extrêmement solide et bien fait."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Métaux"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 4, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_refined_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Plastique --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_refined_plastic"
|
||||
RECIPE.name = "Feuilles de plastique"
|
||||
RECIPE.description = "Feuilles de plastique. Fabriqué à partir de déchets plastiques."
|
||||
RECIPE.model = "models/willardnetworks/food/snack01.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Plastique"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 30, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Vis --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_nails_screws"
|
||||
RECIPE.name = "Tas de vis"
|
||||
RECIPE.description = "Une boîte contenant des vis. Ils ont l'air un peu rouillés."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Vis & Boulons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_nails_screws"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_improved_nails_screws"
|
||||
RECIPE.name = "Boîte de boulons"
|
||||
RECIPE.description = "Une boîte de boulons robustes, utile pour les artisans expérimentés."
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Vis & Boulons"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_nails_screws"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Tissus --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_stitched_cloth"
|
||||
RECIPE.name = "Tissu cousu"
|
||||
RECIPE.description = "Un morceau de tissu cousu. C'est plus solide qu'avant."
|
||||
RECIPE.model = "models/willardnetworks/skills/stitched_cloth.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Tissus"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_stitched_cloth"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_fabric"
|
||||
RECIPE.name = "Tissu travaillé"
|
||||
RECIPE.description = "Un morceau de tissu bien travaillé. C'est assez doux."
|
||||
RECIPE.model = "models/willardnetworks/skills/fabric.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Tissus"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_fabric"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Bois --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_craftwork_wood"
|
||||
RECIPE.name = "Planche de bois"
|
||||
RECIPE.description = "Planche de bois bien travaillé et lisse."
|
||||
RECIPE.model = "models/props_debris/wood_board06a.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Bois"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_wood"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_craftwork_wood"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Armes --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_explosive_material"
|
||||
RECIPE.name = "Composé explosif"
|
||||
RECIPE.description = "Un composé explosif doux. Ne jouez pas avec des explosifs maintenant."
|
||||
RECIPE.model = "models/willardnetworks/skills/explosive_material.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_redcompound"] = 1, ["comp_yellowcompound"] = 1, ["comp_bluecompound"] = 1, ["comp_greencompound"] = 1}
|
||||
RECIPE.result = {["comp_explosive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_weapon_parts"
|
||||
RECIPE.name = "Pièces d'armes"
|
||||
RECIPE.description = "Pièces en métal pour une arme."
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2, ["comp_strong_adhesive"] = 2, ["comp_improved_nails_screws"] = 2, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["comp_weapon_parts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_grenadecase"
|
||||
RECIPE.name = "Étui à grenades vide"
|
||||
RECIPE.description = "Une caisse de grenade vide."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_grenadecase"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_heavy_weapon_parts"
|
||||
RECIPE.name = "Pièces d'armes lourdes"
|
||||
RECIPE.description = "Une pièce d'arme lourde. On dirait qu'il pourrait être fait pour fabriquer des carabines, des fusils de chasse et autres"
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 5, ["comp_improved_nails_screws"] = 3, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 2}
|
||||
RECIPE.result = {["comp_heavy_weapon_parts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 150}, -- full xp
|
||||
{level = 45, exp = 75}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Charbon --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_charcoal"
|
||||
RECIPE.name = "Bloc de charbon de bois"
|
||||
RECIPE.description = "Bloc de charbon de bois en utilisé dans plusieurs buts."
|
||||
RECIPE.model = "models/willardnetworks/props/charcoal.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Charbon"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["comp_wood"] = 1, ["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_charcoal"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 40}, -- full XP
|
||||
{level = 30, exp = 20}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Adhésif --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_adhesive"
|
||||
RECIPE.name = "Adhésif fait main"
|
||||
RECIPE.description = "Un adhésif pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Adhésif"
|
||||
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["comp_adhesive"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 120}, -- full xp
|
||||
{level = 10, exp = 60}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,29 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_dummy_emp"
|
||||
RECIPE.name = "Dispositif de Bombe IEM"
|
||||
RECIPE.description = "A small one-time use EMP device used to disable electronics. It can now also be used on Combine tech- capable of disabling forcefields for 5 minutes, turrets for 10 minutes and disable scanners for good."
|
||||
RECIPE.model = "models/Items/car_battery01.mdl"
|
||||
RECIPE.category = "RP Items"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 3, ["comp_nails_screws"] = 2, ["comp_refined_plastic"] = 2, ["comp_electronics"] = 6}
|
||||
RECIPE.result = {["dummy_emp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 150}, -- full xp
|
||||
{level = 45, exp = 75}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,128 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_computer"
|
||||
RECIPE.name = "Ordinateur"
|
||||
RECIPE.description = "Un ordinateur restauré avec 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 = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 2, ["comp_electronics"] = 4, ["comp_nails_screws"] = 2}
|
||||
RECIPE.result = {["cit_computer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 400}, -- full xp
|
||||
{level = 40, exp = 200}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_cmb_tuner"
|
||||
RECIPE.name = "Syntoniseur radio approuvé le cartel"
|
||||
RECIPE.description = "Un syntoniseur radio qui peut être utilisé pour modifier les fréquences qu'une radio peut capter."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_electronics"] = 10, ["comp_nails_screws"] = 2, ["comp_glass"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["tuner_cmb"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 400}, -- full xp
|
||||
{level = 40, exp = 200}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_reb_tuner"
|
||||
RECIPE.name = "Syntoniseur radio de la Résistance"
|
||||
RECIPE.description = "Un syntoniseur radio capable de modifier les fréquences qu'une radio peut capter. Il s'agit d'un syntoniseur de gamme supérieure capable d'atteindre des fréquences de diffusion lointaines."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_electronics"] = 12, ["comp_improved_nails_screws"] = 1, ["comp_glass"] = 2, ["comp_strong_adhesive"] = 1, ["comp_military_electronics"] = 1}
|
||||
RECIPE.result = {["tuner_reb"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 500}, -- full xp
|
||||
{level = 46, exp = 250}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_handheld"
|
||||
RECIPE.name = "Radio"
|
||||
RECIPE.description = "Une radio portable correctement conçue prenant en charge les fréquences analogiques et numériques."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_electronics"] = 2, ["comp_improved_nails_screws"] = 1, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["handheld_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_old_handheld"
|
||||
RECIPE.name = "Ancienne radio portable"
|
||||
RECIPE.description = "Radio de fortune qui ne prend en charge que les fréquences analogiques."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 1, ["comp_electronics"] = 1, ["comp_nails_screws"] = 2, ["comp_glass"] = 1, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["old_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_crackedprinter"
|
||||
RECIPE.name = "Imprimante crackée"
|
||||
RECIPE.description = "Une imprimante fissurée ne nécessitant plus de permis valide. Nécessite du papier et de l'encre noire."
|
||||
RECIPE.model = "models/willardnetworks/plotter.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["newspaper_printer"] = 1, ["comp_electronics"] = 4, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["newspaper_printer_cracked"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,114 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_water_bucket_water"
|
||||
RECIPE.name = "Watering Can (Full)"
|
||||
RECIPE.description = "Fills your Watering Can with some water."
|
||||
RECIPE.model = "models/props/de_inferno/hr_i/inferno_gardening_tools/inferno_watering_can.mdl"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.ingredients = {["water_bucket"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["water_bucket"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
function RECIPE:PlayerCraftRecipe(client)
|
||||
local character = client:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
-- Take all the ingredients
|
||||
for ingredient, amount in pairs(self.ingredients) do
|
||||
for _ = 1, amount do
|
||||
local item = inventory:HasItem(ingredient)
|
||||
|
||||
if (item) then
|
||||
if (item.uniqueID == "water_bucket") then
|
||||
item:SetData("water", 100)
|
||||
else
|
||||
item:Remove()
|
||||
end
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Set the player's next crafting time
|
||||
client.ixNextCraftTime = CurTime() + 2
|
||||
netstream.Start("CraftTime", client.ixNextCraftTime)
|
||||
|
||||
character:DoAction("recipe_" .. self.uniqueID)
|
||||
end
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_water_bucket"
|
||||
RECIPE.name = "Watering Can"
|
||||
RECIPE.description = "A Watering Can, useful in farming."
|
||||
RECIPE.model = "models/props/de_inferno/hr_i/inferno_gardening_tools/inferno_watering_can.mdl"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 3}
|
||||
RECIPE.result = {["water_bucket"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 105}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_fertilizer"
|
||||
RECIPE.name = "Fertilizer"
|
||||
RECIPE.description = "A sack filled with grounded bones, useful in gardening to Fertilize the plants"
|
||||
RECIPE.model = "models/props/de_dust/hr_dust/dust_flour_sack/dust_flour_sack.mdl"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.ingredients = {["ing_bone"] = 3}
|
||||
RECIPE.result = {["fertilizer"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 5}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_planter"
|
||||
RECIPE.name = "Planter"
|
||||
RECIPE.description = "A small and portable planter that's used to plant... plants! It's quite small and can even be placed indoors (if you have a proper light), go wild, farmer!"
|
||||
RECIPE.model = "models/wn7new/advcrates/n7_planter_wood.mdl"
|
||||
RECIPE.category = "New Frontiers"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2, ["comp_plastic"] = 3, ["comp_adhesive"] = 3, ["comp_craftwork_wood"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["planter_placer"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,129 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_clothing_gasmask"
|
||||
RECIPE.name = "Masque à gaz"
|
||||
RECIPE.description = "Fournit une légère protection contre les vapeurs nocives, les gaz et certaines odeurs nauséabondes."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_gasmask.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_reshaped_metal"] = 1, ["comp_plastic"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["head_gasmask"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_clothing_gasmask2"
|
||||
RECIPE.name = "Masque à gaz M40"
|
||||
RECIPE.description = "Fournit une protection adéquate contre les vapeurs nocives, les gaz et certaines odeurs nauséabondes."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/m40_item.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_reshaped_metal"] = 1, ["comp_plastic"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["head_gasmask2"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_charcoal_refill"
|
||||
RECIPE.name = "Recharge de filtre à charbon"
|
||||
RECIPE.description = "Enveloppe un charbon de bois dans une cartouche filtrante."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_charcoal"] = 1, ["comp_stitched_cloth"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_charcoal_refill"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 40}, -- full XP
|
||||
{level = 30, exp = 20}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_makeshift_filter"
|
||||
RECIPE.name = "Filtre de fortune"
|
||||
RECIPE.description = "Un filtre de masque à gaz fait maison, que vous pouvez ouvrir pour remplir."
|
||||
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_charcoal_refill"] = 1, ["comp_reshaped_metal"] = 2, ["comp_strong_adhesive"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.result = {["makeshift_filter"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full XP
|
||||
{level = 30, exp = 125}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_makeshift_filter"
|
||||
RECIPE.name = "Filtre de fortune"
|
||||
RECIPE.description = "Vous donne : 1 tissu - 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["makeshift_filter"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1, ["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_highquality_filter"
|
||||
RECIPE.name = "Filtre de ventilation de haute qualité"
|
||||
RECIPE.description = "Vous donne : 1 tissu - 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["highquality_filter"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1, ["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,89 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_frag"
|
||||
RECIPE.name = "Grenade à fragmentation"
|
||||
RECIPE.description = "Un projectile explosif conçu pour infliger des dégâts considérables dans un rayon restreint."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_explosive"] = 1, ["comp_greencompound"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["frag_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100},
|
||||
{level = 40, exp = 50},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_flash"
|
||||
RECIPE.name = "Grenade flash"
|
||||
RECIPE.description = "Un dispositif explosif conçu pour désorienter temporairement les ennemis avec une puissante explosion de lumière et de bruit. "
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_flash.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_yellowcompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["flash_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80},
|
||||
{level = 40, exp = 40},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_smoke"
|
||||
RECIPE.name = "Grenade fumigène"
|
||||
RECIPE.description = "Un dispositif pyrotechnique qui produit une épaisse fumée lorsqu'il est activé."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_smoke.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_bluecompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["smoke_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80},
|
||||
{level = 40, exp = 40},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_incendiary"
|
||||
RECIPE.name = "Grenade incendiaire"
|
||||
RECIPE.description = "Une arme explosive qui libère une intense chaleur et des flammes dévastatrices lorsqu'elle explose."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/wm/w_incend.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_explosive"] = 1, ["comp_redcompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["incendiary_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100},
|
||||
{level = 40, exp = 50},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,489 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_sniper"
|
||||
RECIPE.name = "Chargeur de sniper 5RND"
|
||||
RECIPE.description = "Un chargeur de sniper pouvant contenir 5 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_sniper"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_usp"
|
||||
RECIPE.name = "Chargeur d'USP 17RND"
|
||||
RECIPE.description = "Un chargeur d'USP pouvant contenir 17 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_usp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_glock"
|
||||
RECIPE.name = "Chargeur de Glock 20RND"
|
||||
RECIPE.description = "Un chargeur de Glock pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_glock"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_akm"
|
||||
RECIPE.name = "Chargeur d'AKM 30RND"
|
||||
RECIPE.description = "Un chargeur d'AKM pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_akm"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_jnk"
|
||||
RECIPE.name = "Chargeur d'armes artisanales 30RND"
|
||||
RECIPE.description = "Un chargeur pour armes artisanales pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_junk30"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_m16"
|
||||
RECIPE.name = "Chargeur de M16A2 30RND"
|
||||
RECIPE.description = "Un chargeur de M16A2 pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_m16"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_30_mp"
|
||||
RECIPE.name = "Chargeur de MP 30RND"
|
||||
RECIPE.description = "Un chargeur de MP pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_mp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_popper"
|
||||
RECIPE.name = "Chargeur de Revolver 6RND"
|
||||
RECIPE.description = "Un chargeur de Revolver pouvant contenir 6 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_revolver"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_vsv"
|
||||
RECIPE.name = "Chargeur de VSK 20RND"
|
||||
RECIPE.description = "Un chargeur de VSK pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_vsv"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_1911"
|
||||
RECIPE.name = "Chargeur de M1911 12RND"
|
||||
RECIPE.description = "Un chargeur de M1911 pouvant contenir 12 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_1911"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun8"
|
||||
RECIPE.name = "Chargeur de Fusil-à-pompe 8RND"
|
||||
RECIPE.description = "Un chargeur de Fusil-à-pompe pouvant contenir 8 cartouches."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_shotgun"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun5"
|
||||
RECIPE.name = "Chargeur de Fusil-à-pompe 5RND"
|
||||
RECIPE.description = "Un chargeur de Fusil-à-pompe pouvant contenir 5 cartouches."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_shotgun5"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_15_tikhar"
|
||||
RECIPE.name = "Chargeur Tikhar"
|
||||
RECIPE.description = "Un chargeur pour le fusil Tikhar"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_makeshift_15rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_8_helsing"
|
||||
RECIPE.name = "Chargeur Helsing"
|
||||
RECIPE.description = "Un chargeur pour le fusil Helsing"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_helsing"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_aksu"
|
||||
RECIPE.name = "Chargeur d'AKSU 30RND"
|
||||
RECIPE.description = "Un chargeur d'AKSU pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_aksu"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_g3"
|
||||
RECIPE.name = "Chargeur de G3 20RND"
|
||||
RECIPE.description = "Un chargeur de G3 pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_g3"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_dmr"
|
||||
RECIPE.name = "Chargeur de DMR 20RND"
|
||||
RECIPE.description = "Un chargeur de DMR pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_mini14"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_p90"
|
||||
RECIPE.name = "Chargeur de P90 50RND"
|
||||
RECIPE.description = "Un chargeur de P90 pouvant contenir 50 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_p90"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_ppsh"
|
||||
RECIPE.name = "Chargeur de PPSH 35RND"
|
||||
RECIPE.description = "Un chargeur de PPSH pouvant contenir 35 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_ppsh"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_tac"
|
||||
RECIPE.name = "Chargeur de TAC 60RND"
|
||||
RECIPE.description = "Un chargeur de TAC pouvant contenir 60 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_tac60"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_uzi"
|
||||
RECIPE.name = "Chargeur d'UZI 30RND"
|
||||
RECIPE.description = "Un chargeur d'UZI pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_uzi"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_20_azbats"
|
||||
RECIPE.name = "Chargeur Azbats"
|
||||
RECIPE.description = "Un chargeur pour le fusil Azbats"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2}
|
||||
RECIPE.result = {["magazine_azbats_20rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_2_duplet"
|
||||
RECIPE.name = "Chargeur Duplet"
|
||||
RECIPE.description = "Un chargeur pour le fusil Tikhar"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2}
|
||||
RECIPE.result = {["magazine_duplet_2rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_30_bastard"
|
||||
RECIPE.name = "Chargeur bâtard"
|
||||
RECIPE.description = "Un chargeur pour la mitrailleuse bâtarde"
|
||||
RECIPE.model = "models/metro2033/bastardgunclip.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2}
|
||||
RECIPE.result = {["magazine_bastard_30rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,27 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_makeshift"
|
||||
RECIPE.name = "Rouleau de bandage de fortune"
|
||||
RECIPE.description = "Un rouleau de bandage en tissu en lambeaux. Arrête le saignement mais pas grand-chose d'autre..."
|
||||
RECIPE.model = "models/stuff/bandages_dirty.mdl"
|
||||
RECIPE.category = "Médicale"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2}
|
||||
RECIPE.result = {["makeshift_bandage"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,154 @@
|
||||
--[[
|
||||
| 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 = "rec_craft_ref_reshaped_metal"
|
||||
RECIPE.name = "Ferraille"
|
||||
RECIPE.description = "Ferraille créée à partir de métal recyclé. Elle est plus lourde et résistante qu'avant."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 6, ["comp_nails_screws"] = 2}
|
||||
RECIPE.result = {["comp_reshaped_metal"] = 2}
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100},
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_refined_metal"
|
||||
RECIPE.name = "Feuille de métal"
|
||||
RECIPE.description = "Feuille de métal créée à partir de ferraille recyclée. Elle est bien plus résistante qu'avant."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 6, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_refined_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 100}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_weapon_parts"
|
||||
RECIPE.name = "Composants d'armes"
|
||||
RECIPE.description = "Composants métalliques utilisés dans les armes à feu."
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2, ["comp_strong_adhesive"] = 2, ["comp_improved_nails_screws"] = 2, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["comp_weapon_parts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250},
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_explosive_material"
|
||||
RECIPE.name = "Composants explosifs"
|
||||
RECIPE.description = "Du composant pouvant résulter en une explosion. Ne jouez pas avec ça."
|
||||
RECIPE.model = "models/willardnetworks/skills/explosive_material.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_redcompound"] = 2, ["comp_yellowcompound"] = 1, ["comp_bluecompound"] = 1, ["comp_greencompound"] = 2}
|
||||
RECIPE.result = {["comp_explosive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 150}, -- full xp
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_grenadecase"
|
||||
RECIPE.name = "Grenade vide"
|
||||
RECIPE.description = "Un objet métallique en forme de grenade, vide."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_grenadecase"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100}, -- full xp
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_nails_screws"
|
||||
RECIPE.name = "Boîte de clous"
|
||||
RECIPE.description = "Une boîte contenant des clous légèrement rouillés."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_nails_screws"] = 3}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full XP
|
||||
{level = 40, exp = 50}, -- half XP
|
||||
{level = 50, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_improved_nails_screws"
|
||||
RECIPE.name = "Boîte de vis"
|
||||
RECIPE.description = "Une boîte contenant des vis, pouvant être utilisés par des artisans compétents."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_nails_screws"] = 6, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 80}, -- full XP
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_refined_plastic"
|
||||
RECIPE.name = "Feuilles de plastique"
|
||||
RECIPE.description = "Des feuilles de plastique créées à partir de détritus en plastique."
|
||||
RECIPE.model = "models/props_junk/garbage_bag001a.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 6, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_refined_plastic"] = 2}
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100}, -- full XP
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,218 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_suitcase"
|
||||
RECIPE.name = "Valise"
|
||||
RECIPE.description = "Une petite valise, parfaite pour transporter des petites choses."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3, ["comp_plastic"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["suitcase"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_small_bag"
|
||||
RECIPE.name = "Petite sacoche"
|
||||
RECIPE.description = "Une petite sacoche qui repose sur votre hanche."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["smallbag"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_large_bag"
|
||||
RECIPE.name = "Grand sac"
|
||||
RECIPE.description = "Un sac à dos avec l'insigne de l'Union dessus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["largebag"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 25, exp = 50}, -- half XP
|
||||
{level = 30, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_lock"
|
||||
RECIPE.name = "Cadenas"
|
||||
RECIPE.description = "Définit un mot de passe sur un conteneur lorsqu'il est utilisé. Peut être cassé mais seulement si le propriétaire est en ligne."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_adhesive"] = 2, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["cont_lock_t1"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_small"
|
||||
RECIPE.name = "Petite armoire"
|
||||
RECIPE.description = "Armoire de taille 3x3. Contactez un administrateur pour configurer cette armoire lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_refined_plastic"] = 2, ["comp_strong_adhesive"] = 1, ["comp_improved_nails_screws"] = 3}
|
||||
RECIPE.result = {["container_small_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 25, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_medium"
|
||||
RECIPE.name = "Armoire Moyenne"
|
||||
RECIPE.description = "Armoire de taille 6x3. Contactez un administrateur pour configurer cette armoire lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_small_dummy"] = 2, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.result = {["container_medium_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 125}, -- full xp
|
||||
{level = 35, exp = 60}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_large"
|
||||
RECIPE.name = "Grande Armoire"
|
||||
RECIPE.description = "Nécessite un groupe de 5 membres et plus - Armoire de taille 8x5. Contactez un administrateur pour configurer cette armoire lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 2, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.result = {["container_large_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 200}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_scrate"
|
||||
RECIPE.name = "Caisse standard"
|
||||
RECIPE.description = "Caisse de taille 6x6. Contactez un administrateur pour configurer cette caisse lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 1, ["comp_craftwork_wood"] = 2}
|
||||
RECIPE.result = {["container_scrate_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 25, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_lcrate"
|
||||
RECIPE.name = "Grande Caisse"
|
||||
RECIPE.description = "Nécessite un groupe de 5 membres et plus - Caisse de taille 9x9. Contactez un administrateur pour configurer cette caisse. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_junk/wood_crate002a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_large_dummy"] = 1, ["comp_craftwork_wood"] = 3}
|
||||
RECIPE.result = {["container_lcrate_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 200}, -- full xp
|
||||
{level = 45, exp = 100}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_safe"
|
||||
RECIPE.name = "Coffre"
|
||||
RECIPE.description = "Un coffre-fort incassable pour garder vos objets. (Vous pouvez avoir 2 coffres-forts en plus de la limite du conteneur.)"
|
||||
RECIPE.model = "models/willardnetworks/safe.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 4, ["comp_refined_plastic"] = 3, ["comp_electronics"] = 1, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.result = {["container_safe"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full xp
|
||||
{level = 50, exp = 0},
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_grouplock"
|
||||
RECIPE.name = "Verrouillage de groupe"
|
||||
RECIPE.description = "Un 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.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1, ["comp_electronics"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["grouplock"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,462 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_waterbottle"
|
||||
RECIPE.name = "Bouteille d'eau"
|
||||
RECIPE.description = "Une bouteille en plastique rechargeable. Vous pouvez le remplir d'eau."
|
||||
RECIPE.model = "models/props/cs_office/water_bottle.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4}
|
||||
RECIPE.result = {["waterbottle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_watervalve"
|
||||
RECIPE.name = "Valve d'eau"
|
||||
RECIPE.description = "Utilisé pour capter l'eau des tuyaux."
|
||||
RECIPE.model = "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_gauge_valve_low.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["watervalve"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_flashlight"
|
||||
RECIPE.name = "Lampe de poche artisanale"
|
||||
RECIPE.description = "Lampe de poche artisanale, incroyablement utile pour explorer l'obscurité inconnue."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 3, ["comp_electronics"] = 2, ["comp_glass"] = 3}
|
||||
RECIPE.result = {["flashlight"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_syringe"
|
||||
RECIPE.name = "Seringue"
|
||||
RECIPE.description = "Une seringue capable de contenir des substances de type liquide, utiles à des fins médicinales."
|
||||
RECIPE.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_glass"] = 1}
|
||||
RECIPE.result = {["comp_syringe"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_lighter"
|
||||
RECIPE.name = "Briquet en plastique"
|
||||
RECIPE.description = "Un briquet en plastique bon marché conçu pour allumer les cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/lighter.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 2, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["lighter"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_scissors"
|
||||
RECIPE.name = "Ciseaux"
|
||||
RECIPE.description = "Coupez, coupez, coupez !"
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["tool_scissors"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_cooking_pot"
|
||||
RECIPE.name = "Marmite"
|
||||
RECIPE.description = "Une marmite noire en fer. Mettez-la sur une cuisinière !"
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_cookingpot"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_razor"
|
||||
RECIPE.name = "Outil 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 = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_adhesive"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beard_razor"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_kitchen_spoon"
|
||||
RECIPE.name = "Cuillère à soupe"
|
||||
RECIPE.description = "Utile pour faire des ragoûts."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_spoon"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tool_kitchen_knife"
|
||||
RECIPE.name = "Couteau de cuisine"
|
||||
RECIPE.description = "Un 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 = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_wood"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_frying_pan"
|
||||
RECIPE.name = "Poêle à frire"
|
||||
RECIPE.description = "Une poêle à frire noire en fer. Bon pour la cuisson des aliments."
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_nails_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_fryingpan"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_kettle"
|
||||
RECIPE.name = "Bouilloire"
|
||||
RECIPE.description = "Une bouilloire pour...bouillir."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_nails_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_kettle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_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 = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 6, ["comp_adhesive"] = 3, ["comp_plastic"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["tool_toolkit"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tool_tinderbox"
|
||||
RECIPE.name = "Poudrière"
|
||||
RECIPE.description = "Une poudrière pour allumer un feu de camp."
|
||||
RECIPE.model = "models/willardnetworks/props/tinderbox.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3, ["comp_adhesive"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["tinderbox"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_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 = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 6, ["comp_nails_screws"] = 4, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.result = {["tool_mixer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 200}, -- full xp
|
||||
{level = 20, exp = 100}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_wrench"
|
||||
RECIPE.name = "Clé Anglaise"
|
||||
RECIPE.description = "Une vieille clé. Pourrait être utilisée pour la mise en caisse."
|
||||
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 1, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["tool_wrench"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 70}, -- full xp
|
||||
{level = 30, exp = 35}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_chembench"
|
||||
RECIPE.name = "Kit d'établi de chimie"
|
||||
RECIPE.description = "Cet établi est spécialement conçu pour le mélange réussi des composants chimiques."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/chemistrystation02.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 3, ["comp_craftwork_wood"] = 4, ["comp_strong_adhesive"] = 2, ["comp_glass"] = 3}
|
||||
RECIPE.result = {["tool_chembench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 300}, -- full xp
|
||||
{level = 30, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_oven_rusty"
|
||||
RECIPE.name = "Kit d'assemblage de four rouillé"
|
||||
RECIPE.description = "Il a l'air terrible, c'est terrible, mais il vous satisfera dans tous les besoins de cuisson pendant un certain temps."
|
||||
RECIPE.model = "models/willardnetworks/skills/oven_shit.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 3, ["comp_plastic"] = 5, ["comp_nails_screws"] = 5, ["comp_electronics"] = 3, ["comp_strong_adhesive"] = 3}
|
||||
RECIPE.result = {["tool_oven_rusty_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_craftingbench"
|
||||
RECIPE.name = "Kit d'artisanat"
|
||||
RECIPE.description = "Cet établi est spécialement conçu pour la fabrication réussie d'objets."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench02.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.ingredients = {["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 1, ["comp_refined_plastic"] = 2, ["comp_improved_nails_screws"] = 3}
|
||||
RECIPE.result = {["tool_craftingbench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 180}, -- full xp
|
||||
{level = 30, exp = 90}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_metalbench"
|
||||
RECIPE.name = "Ensemble d'établi en métal"
|
||||
RECIPE.description = "Cet établi est spécialement conçu pour la fabrication réussie d'armes ou de quelque chose de similaire."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench01.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 4, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 4, ["tool_craftingbench_assembly"] = 1}
|
||||
RECIPE.result = {["tool_metalbench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 600}, -- full xp
|
||||
{level = 40, exp = 300}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_repair"
|
||||
RECIPE.name = "Placage de réparation"
|
||||
RECIPE.description = "Plaque de réparation artisanale, utilisée pour réparer les armures endommagées sur divers surfaces."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_repair"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full XP
|
||||
{level = 40, exp = 50}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_breacher"
|
||||
RECIPE.name = "Dispositif de déstruction de bio-lock"
|
||||
RECIPE.description = "Un dispositif artisanal qui est placé sur des serrures du Cartel pour les briser."
|
||||
RECIPE.model = "models/transmissions_element120/charger_attachment.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_refined_plastic"] = 1, ["comp_strong_adhesive"] = 1, ["comp_electronics"] = 2}
|
||||
RECIPE.result = {["lockbreacher"] = 1}
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full XP
|
||||
{level = 50, exp = 0}, -- half XP
|
||||
{level = 55, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_refill_zippo_lighter"
|
||||
RECIPE.name = "Recharge Briquet Zippo"
|
||||
RECIPE.description = "Un briquet en métal de qualité conçu pour allumer les cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["zippolighter"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["zippolighter"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,295 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_meat01"
|
||||
RECIPE.name = "Ceinture de soutien"
|
||||
RECIPE.description = "Une collection de peaux de crabe de tête délicieuses et appétissantes, rassemblées de tous les coins."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat01.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["headcrab_skewer"] = 3, ["comp_improved_nails_screws"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_meat01"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 200}, -- full XP
|
||||
{level = 10, exp = 100}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_meat02"
|
||||
RECIPE.name = "Ceinture à viande des Terres Lointaines"
|
||||
RECIPE.description = "Une denrée difficile à trouver sous le voile du Cartel, et d'une délicatesse chaque fois qu'elle est trouvée."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat02.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["antlion_skewer"] = 3, ["comp_improved_nails_screws"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_meat02"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full XP
|
||||
{level = 10, exp = 150}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_bandanna"
|
||||
RECIPE.name = "Bandana vortigaunt"
|
||||
RECIPE.description = "La discrétion est de la plus haute importance. Je ne voudrais pas que quiconque sache qu'un Vortigaunt était ici."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_bandana"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_helmet"
|
||||
RECIPE.name = "Casque vortigaunt"
|
||||
RECIPE.description = "La protection avant l'aspect pratique. Avec un peu de chance, l'ennemi peut essayer de viser un peu plus haut."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 3, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_head_helmet"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 30, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_kevlar"
|
||||
RECIPE.name = "Kevlar vortigaunt"
|
||||
RECIPE.description = "Il n'y a pas de peur pour l'intervalle d'obscurité, mais il n'y a pas non plus de hâte à l'embrasser. Un ensemble standard de kevlar humain, à peu près adapté pour une utilisation vortigaunt."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_strong_adhesive"] = 1, ["comp_refined_metal"] = 3, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_vest"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full XP
|
||||
{level = 40, exp = 75}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_labcoat2"
|
||||
RECIPE.name = "Blouse Vortigaunt"
|
||||
RECIPE.description = "Un uniforme scientifique pour les vortigaunts à la recherche d'un style de vie plus scientifique."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_doc2"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_labcoat"
|
||||
RECIPE.name = "Blouse de laboratoire Vortigaunt (Avec Badge)"
|
||||
RECIPE.description = "Un uniforme scientifique pour les vortigaunts à la recherche d'un style de vie plus scientifique. Cette variante est livrée avec un badge."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_doc"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_chef_hat"
|
||||
RECIPE.name = "Chapeau de chef Vortigaunt"
|
||||
RECIPE.description = "Les Vortigaunts sont bien connus pour leurs capacités dans les arts culinaires en raison de leur lien avec la Vortessence. La seule étape restante pour qu'un Vortigaunt agisse temporairement comme un chef expert est de porter l'un de ces chapeaux idiots"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_head_chefhat"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_hoodie"
|
||||
RECIPE.name = "Sweat à capuche Vortigaunt"
|
||||
RECIPE.description = "Un sweat à capuche allongé pour un cou plus long. Parfait pour garder un vortigaunt au chaud même dans les conditions les plus difficiles."
|
||||
RECIPE.model = "models/n7/vorti_outfit/hoodie.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_hoodie"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full XP
|
||||
{level = 20, exp = 35}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_trench_coat"
|
||||
RECIPE.name = "Manteau marron Vortigaunt"
|
||||
RECIPE.description = "Un manteau remis à neuf. Assure que le corps est chaud et un peu sec. Ça ne fait pas de mal de se fondre non plus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light3_tc"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_poncho"
|
||||
RECIPE.name = "Poncho Vortigaunt raffiné"
|
||||
RECIPE.description = "Un revêtement fiable et solide. Sa composition est dérivée de vêtements humains typiques. La conception ample et les découpes pratiques permettent le confort et la liberté de mouvement."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light01.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full XP
|
||||
{level = 20, exp = 25}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_covering"
|
||||
RECIPE.name = "Couverture improvisée de Vortigaunt"
|
||||
RECIPE.description = "Un revêtement simple et uni. Bon pour vous garder bien au chaud par une nuit fraîche, et pas grand-chose d'autre."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light02.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light2"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_armour"
|
||||
RECIPE.name = "Plaque de garde de fourmilion"
|
||||
RECIPE.description = "Fabriquée à partir des peaux blindées épaisses des gardes Antlion tombés au combat, cette armure n'est pas seulement robuste, mais la marque d'un guerrier chevronné."
|
||||
RECIPE.model = "models/n7/vorti_outfit/armor.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 8, ["comp_refined_metal"] = 3, ["comp_improved_nails_screws"] = 2, ["comp_fabric"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_armor"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 300}, -- full XP
|
||||
{level = 40, exp = 150}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,389 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
----- ARMES -----
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_shotgun"
|
||||
RECIPE.name = "Fusil à double canon scié de fortune" -- 8 DMG
|
||||
RECIPE.description = "Une perche de fortune… agit essentiellement comme un double canon scié, juste fait de restes."
|
||||
RECIPE.model = "models/weapons/c_duplet.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Fusils"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_light_weapon_parts"] = 2, ["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 5, ["comp_improved_nails_screws"] = 3, ["comp_stitched_cloth"] = 6, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_tikhar"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_boltrifle" -- 24 DMG
|
||||
RECIPE.name = "Fusil à verrou Helsing"
|
||||
RECIPE.description = "Un pistolet à air comprimé silencieux et rotatif qui tire des boulons métalliques."
|
||||
RECIPE.model = "models/weapons/c_Helsing.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Fusils"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_craftwork_wood"] = 1, ["comp_reshaped_metal"] = 3, ["comp_improved_nails_screws"] = 1, ["comp_stitched_cloth"] = 2, ["comp_nails_screws"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_helsing"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_shotgun"
|
||||
RECIPE.name = "Duplet Double Barrel"
|
||||
RECIPE.description = "A Double Barrel shotgun made from the worst materials around, literally 2 water pipes for a barrel."
|
||||
RECIPE.model = "models/weapons/c_duplet.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_duplet"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_smg"
|
||||
RECIPE.name = "Bastard SMG"
|
||||
RECIPE.description = "A creation from scrap and pipe work... someone got bored one day."
|
||||
RECIPE.model = "models/weapons/c_BastardGun.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_craftwork_wood"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_bassmg"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_popper"
|
||||
RECIPE.name = "Popper"
|
||||
RECIPE.description = "A revolver capable of firing a powerful shot towards its foes. In all fairness, its actually quite decent."
|
||||
RECIPE.model = "models/weapons/c_MetroRevolver.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_craftwork_wood"] = 1, ["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_popper"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_vsk"
|
||||
RECIPE.name = "VSK-94"
|
||||
RECIPE.description = "A somewhat well-made VSK-94. Not sure how you did it, but good job."
|
||||
RECIPE.model = "models/weapons/c_VSV.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 2, ["comp_craftwork_wood"] = 2, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_vsv"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_akm"
|
||||
RECIPE.name = "Makeshift AKM"
|
||||
RECIPE.description = "An AKM which someone tried making, made out of all sorts of scrap from the Outlands."
|
||||
RECIPE.model = "models/weapons/c_kalash.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 2, ["comp_craftwork_wood"] = 2, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_ak"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_p90"
|
||||
RECIPE.name = "Odd-looking P90"
|
||||
RECIPE.description = "Is this meant to be a P90 as it has the capacity for one, the firerate for one. But no the looks of one."
|
||||
RECIPE.model = "models/weapons/c_kalash2012.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 2, ["comp_craftwork_wood"] = 2, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_p90"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_ballrifle" -- 17
|
||||
RECIPE.name = "Fusil à billes Tikhar"
|
||||
RECIPE.description = "Une arme de fortune capable de tirer des plombs en forme de balle avec un impact assez lourd grâce non seulement au poids des balles mais aussi à la force de pression de l'arme."
|
||||
RECIPE.model = "models/weapons/c_Tikhar.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Fusils"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 3, ["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 5, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 8, ["comp_heavy_weapon_parts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["msballrifle"] = 1}
|
||||
RECIPE.level = 25 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_smg"
|
||||
RECIPE.name = "Mitraillette bâtarde" -- 9 DMG
|
||||
RECIPE.description = "Un design pour le moins intéressant mais cette arme de fortune agit comme une mitraillette, à tir rapide mais assez faible."
|
||||
RECIPE.model = "models/weapons/c_BastardGun.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Mitraillettes"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_light_weapon_parts"] = 4, ["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 6, ["comp_improved_nails_screws"] = 3, ["comp_stitched_cloth"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["mssmg"] = 1}
|
||||
RECIPE.level = 40 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 150}, -- full XP
|
||||
{level = 15, exp = 75}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 5 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_leadpipe"
|
||||
RECIPE.name = "Tuyau de plomb"
|
||||
RECIPE.description = "Ce long tube cylindrique en métal lourd est fabriqué en plomb solide et résistant."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_pipe_lead.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["leadpipe"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 10 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_knife"
|
||||
RECIPE.name = "Couteau de cuisine (aiguisé)"
|
||||
RECIPE.description = "Un couteau de cuisine aiguisé, comparé au couteau standard proposé par l'Union. Celui-ci n'est certainement pas autorisé."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_kitknife.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_adhesive"] = 1, ["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["kitknife"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 100},
|
||||
{level = 10, exp = 50},
|
||||
{level = 15, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_baseball_bat"
|
||||
RECIPE.name = "Batte de baseball"
|
||||
RECIPE.description = "Un instrument de puissance entre vos mains, la batte de baseball respire la détermination et la force. Sa forme effilée et son manche robuste en bois vous offrent une prise ferme et confortable. Chaque rainure et chaque éclat sur sa surface racontent une histoire de coups précis et puissants. Son poids équilibré vous confère un sentiment de contrôle et de confiance, prêt à affronter n'importe quel défi sur le terrain."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_bat_metal.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 3, ["comp_craftwork_wood"] = 3, ["comp_improved_nails_screws"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["baseballbat"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 15 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_hatchet"
|
||||
RECIPE.name = "Hachette"
|
||||
RECIPE.description = "Un outil polyvalent utilisé dans diverses tâches, la hachette est une petite hache à manche court."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_hatchet.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 5, ["comp_wood"] = 4, ["comp_nails_screws"] = 3, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["hatchet"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120},
|
||||
{level = 20, exp = 60},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 20 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_cleaver"
|
||||
RECIPE.name = "Couperet"
|
||||
RECIPE.description = "Un outil tranchant et robuste doté d'une lame lourde et coupante, montée sur un manche solide en bois. "
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_cleaver.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 6, ["comp_wood"] = 4, ["comp_nails_screws"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["cleaver"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_crowbar"
|
||||
RECIPE.name = "Pied de biche"
|
||||
RECIPE.description = "Hum...un pied-de-biche. Maintenant, n'allez pas frapper à mort la Protection civile avec ça."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_crowbar.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_nails_screws"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["crowbar"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 30 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_sledgehammer"
|
||||
RECIPE.name = "Masse"
|
||||
RECIPE.description = "Cet outil robuste et puissant est l'essence même du métier de forgeron. Il se compose d'un manche solide en bois et d'une tête en acier forgé. "
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_sledge.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 5, ["comp_craftwork_wood"] = 5, ["comp_improved_nails_screws"] = 5, ["comp_adhesive"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["sledgehammer"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 500},
|
||||
{level = 40, exp = 250},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,66 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_pin"
|
||||
RECIPE.name = "Broche"
|
||||
RECIPE.description = "Une broche utilisé pour accrocher des papiers sur les murs."
|
||||
RECIPE.model = "models/props_c17/TrapPropeller_Lever.mdl"
|
||||
RECIPE.category = "Écriture"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["pin"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_notepad"
|
||||
RECIPE.name = "Bloc-notes"
|
||||
RECIPE.description = "Un bloc-notes pour écrire."
|
||||
RECIPE.model = "models/willard/work/notepad1.mdl"
|
||||
RECIPE.category = "Écriture"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["paper"] = 1, ["comp_wood"] = 1, ["comp_metal"] = 1}
|
||||
RECIPE.result = {["notepad"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_ink"
|
||||
RECIPE.name = "Encre noire"
|
||||
RECIPE.description = "Une cartouche d'encre noire."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Écriture"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bluecompound"] = 1, ["comp_charcoal"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["black_ink"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 70}, -- full xp
|
||||
{level = 30, exp = 35}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,90 @@
|
||||
--[[
|
||||
| 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 = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_whiskey_alcohol"
|
||||
RECIPE.name = "Alcool - Whisky"
|
||||
RECIPE.description = "Extraire la teneur en alcool du whisky."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Alcool"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_vodka_alcohol"
|
||||
RECIPE.name = "Alcool - Vodka"
|
||||
RECIPE.description = "Extraire la teneur en alcool de la vodka."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Alcool"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_vodka"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_bourbon_alcohol"
|
||||
RECIPE.name = "Alcool - Bourbon"
|
||||
RECIPE.description = "Extraire la teneur en alcool du bourbon."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Alcool"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_beer_alcohol"
|
||||
RECIPE.name = "Alcool - Bière"
|
||||
RECIPE.description = "Extraire la teneur en alcool de la bière."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Alcool"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_beer"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,109 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_battery_chemical"
|
||||
RECIPE.name = "Batterie de voiture"
|
||||
RECIPE.description = "Extrayez des composés chimiques non raffinés d'une vieille batterie de voiture."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle001a.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Non Raffinés"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["junk_battery"] = 1}
|
||||
RECIPE.result = {["comp_unrefinedchemical"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artwhiskey_chemical"
|
||||
RECIPE.name = "Whisky Artificiel"
|
||||
RECIPE.description = "Extraire les composés chimiques non raffinés de cette boisson artificielle."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle001a.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Non Raffinés"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artvodka_chemical"
|
||||
RECIPE.name = "Vodka Artificielle"
|
||||
RECIPE.description = "Extraire les composés chimiques non raffinés de cette boisson artificielle."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle001a.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Non Raffinés"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_vodka"] = 1}
|
||||
RECIPE.result = {["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artbourbon_chemical"
|
||||
RECIPE.name = "Bourbon Artificiel"
|
||||
RECIPE.description = "Une version synthétique du bourbon."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle001a.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Non Raffinés"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artbeer_chemical"
|
||||
RECIPE.name = "Bière artificielle"
|
||||
RECIPE.description = "Une boisson rafraîchissante fermentée."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle001a.mdl"
|
||||
RECIPE.category = "Susbtances liquides"
|
||||
RECIPE.subcategory = "Non Raffinés"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_beer"] = 1}
|
||||
RECIPE.result = {["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,189 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_adhesive"
|
||||
RECIPE.name = "Adhésif"
|
||||
RECIPE.description = "Un adhésif pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["comp_adhesive"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_strong_adhesive"
|
||||
RECIPE.name = "Adhésif fort"
|
||||
RECIPE.description = "Un adhésif plus fort pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
RECIPE.model = "models/willardnetworks/props/spicyglue.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 4, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_makeshift_strong_adhesive"
|
||||
RECIPE.name = "Adhésif fort de fortune"
|
||||
RECIPE.description = "Un adhésif de fortune plus fort pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
RECIPE.model = "models/willardnetworks/props/spicyglue.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 4, ["comp_refinedchemical"] = 2}
|
||||
RECIPE.result = {["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full xp
|
||||
{level = 20, exp = 40}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_refinedchemicals"
|
||||
RECIPE.name = "Produits chimiques raffinés"
|
||||
RECIPE.description = "Une substance dangereuse et toxique éliminée pour émission radioactive. Faire attention."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_unrefinedchemical"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["comp_refinedchemical"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_purifier"
|
||||
RECIPE.name = "Purificateur"
|
||||
RECIPE.description = "Poussière étrange qui peut purifier n'importe quel mélange ou substance de n'importe quel composé toxique"
|
||||
RECIPE.model = "models/willardnetworks/skills/pill_bottle.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_yellowcompound"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_purifier"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_greencompound"
|
||||
RECIPE.name = "Composé Vert"
|
||||
RECIPE.description = "Un flacon de composé vert, utilisé à des fins médicinales."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar1.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_greencompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_yellowcompound"
|
||||
RECIPE.name = "Composé Jaune"
|
||||
RECIPE.description = "Un flacon de composé jaune, utilisé à des fins médicinales."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar2.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_yellowcompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_redcompound"
|
||||
RECIPE.name = "Composé Rouge"
|
||||
RECIPE.description = "Un flacon de composé rouge, utilisé à des fins médicinales."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar3.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_redcompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_bluecompound"
|
||||
RECIPE.name = "Composé Bleu"
|
||||
RECIPE.description = "Un flacon de composé bleu, utilisé à des fins médicinales."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar4.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Ingrédients"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_bluecompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,230 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_artfun"
|
||||
RECIPE.name = "Pâte artificielle modifiée"
|
||||
RECIPE.description = "Pâte artificielle mélangée avec un peu d'acide de batterie de voiture pour faire bonne mesure."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["proc_paste"] = 1, ["ing_protein"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["drug_artificialfun"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_blueberry"
|
||||
RECIPE.name = "Blueberry en liquide"
|
||||
RECIPE.description = "Un flacon étrange rempli de liquide bleu. Il a le goût d'un jus de baies mais sent dégoûtant."
|
||||
RECIPE.model = "models/willardnetworks/skills/chemical_flask4.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_bluecompound"] = 1, ["comp_charcoal"] = 1, ["fruit_berries"] = 1}
|
||||
RECIPE.result = {["drug_blueberry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ozz"
|
||||
RECIPE.name = "Potion d'Ozz"
|
||||
RECIPE.description = "Liquide étrange dans un bocal en verre, qui à l'ouverture a une odeur forte et étrange. Il a le goût de l'essence mais vous fait vous sentir intelligent et perspicace."
|
||||
RECIPE.model = "models/props_junk/glassjug01.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_greencompound"] = 1, ["disinfectant_bottle"] = 1}
|
||||
RECIPE.result = {["drug_ozz"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bobmix"
|
||||
RECIPE.name = "Mélange montagnard"
|
||||
RECIPE.description = "Que se passerait-il si vous preniez le distillat de chaque soda de Richard (publiquement) disponible, les mélangeiez et injectiez le produit résultant directement dans votre bras ? Les scientifiques ont dit 'Rien de bon', tandis que les Crackhead dans les bidonvilles ont dit 'tu montes'. Allez prouver que l'un ou l'autre a raison."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_bobfizz"] = 1, ["drink_bobgrape"] = 1, ["drink_boboriginal"] = 1}
|
||||
RECIPE.result = {["drug_bobmix"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_darkshot"
|
||||
RECIPE.name = "Shot Obscur"
|
||||
RECIPE.description = "Du sang mélangé à divers médicaments, en le consommant, vous pouvez ressentir une sensation de brûlure dans la gorge."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_bloodsyringe"] = 1, ["basic_red"] = 1, ["comp_unrefinedchemical"] = 1, ["drink_proc_whiskey"] = 1}
|
||||
RECIPE.result = {["drug_darkshot"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_demon"
|
||||
RECIPE.name = "La Fourmi Rouge"
|
||||
RECIPE.description = "Une seringue remplie de liquide rouge foncé à l'intérieur, lors de l'injection, vous pouvez ressentir une sensation de brûlure extrême à l'endroit de l'injection."
|
||||
RECIPE.model = "models/willardnetworks/skills/medx.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_syringe"] = 1, ["painkillers"] = 1, ["comp_redcompound"] = 1}
|
||||
RECIPE.result = {["drug_demon"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_speed"
|
||||
RECIPE.name = "Stimulant"
|
||||
RECIPE.description = "Un paquet écrasé de pilules mélangées dans une canette. Vous donne le sentiment d'être rapide."
|
||||
RECIPE.model = "models/willardnetworks/skills/medx.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["crafting_water"] = 1, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["drug_speed"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_thirdeye"
|
||||
RECIPE.name = "Le 3ème oeil"
|
||||
RECIPE.description = "Un liquide blanc à l'intérieur de la seringue, qui après utilisation, pourrait vous faire ressentir une conscience accrue de l'environnement."
|
||||
RECIPE.model = "models/willardnetworks/skills/pyscho.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_syringe"] = 1, ["ing_coffee_powder"] = 1, ["basic_yellow"] = 1}
|
||||
RECIPE.result = {["drug_thirdeye"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_transhumano"
|
||||
RECIPE.name = "Le Transhumain"
|
||||
RECIPE.description = "Une pilule raffinée qui vous fait vous sentir ultra-fort, certains pensent que c'est ce qu'utilisent les OTAs."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_bluecompound"] = 1, ["bloodstabilizer"] = 1, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["drug_transhumano"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100}, -- full xp
|
||||
{level = 45, exp = 50}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_xp"
|
||||
RECIPE.name = "Morphine alcoolisée"
|
||||
RECIPE.description = "Liquide brun dans une vieille bouteille, en la sentant, vous pouvez vous sentir vraiment léger. Ça a le goût du vieux sirop contre la toux."
|
||||
RECIPE.model = "models/willardnetworks/food/wine4.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["morphine"] = 2, ["drink_white_wine"] = 1, ["orange_pill"] = 1}
|
||||
RECIPE.result = {["drug_xp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100}, -- full xp
|
||||
{level = 45, exp = 50}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_rave"
|
||||
RECIPE.name = "Rave"
|
||||
RECIPE.description = "Une drogue de fête hallucinogène conçue pour induire la sensation puissante d'être dans une rave."
|
||||
RECIPE.model = "models/willardnetworks/skills/medx.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Hallucinogènes"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drug_demon"] = 1, ["drug_thirdeye"] = 1, ["drug_speed"] = 1}
|
||||
RECIPE.result = {["rave"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 300}, -- full xp
|
||||
{level = 45, exp = 150}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,226 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_disinfectant"
|
||||
RECIPE.name = "Bouteille de désinfectant"
|
||||
RECIPE.description = "Une bouteille de désinfectant, utilisée pour nettoyer les plaies des bactéries."
|
||||
RECIPE.model = "models/props_junk/glassjug01.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_alcohol"] = 1, ["comp_purifier"] = 1}
|
||||
RECIPE.result = {["disinfectant_bottle"] = 6}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bandage"
|
||||
RECIPE.name = "Rouleau de bandage"
|
||||
RECIPE.description = "Un rouleau de pansements hygiéniques. Utilisé pour arrêter le saignement."
|
||||
RECIPE.model = "models/stuff/bandages.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 4, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["bandage"] = 6}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_disinfected_bandage"
|
||||
RECIPE.name = "Bandage Désinfecté"
|
||||
RECIPE.description = "Un rouleau de pansements sanitaires désinfectés. Utilisé pour arrêter les saignements et nettoyer les plaies."
|
||||
RECIPE.model = "models/stuff/bandages.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.ingredients = {["bandage"] = 4, ["disinfectant_bottle"] = 3}
|
||||
RECIPE.result = {["disinfected_bandage"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_painkillers"
|
||||
RECIPE.name = "Analgésiques"
|
||||
RECIPE.description = "Un paquet d'analgésiques. Il procure un soulagement temporaire des douleurs mineures."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills1.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["comp_bluecompound"] = 1}
|
||||
RECIPE.result = {["painkillers"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 60}, -- full xp
|
||||
{level = 10, exp = 30}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bloodstabilizer"
|
||||
RECIPE.name = "Stabilisateur"
|
||||
RECIPE.description = "Une seringue remplie de composé rouge et d'analgésique, bonne pour faciliter la récupération suite à des douleurs."
|
||||
RECIPE.model = "models/willardnetworks/skills/stimpak.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bloodsyringe"] = 4, ["comp_redcompound"] = 2, ["painkillers"] = 1}
|
||||
RECIPE.result = {["bloodstabilizer"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bloodbag"
|
||||
RECIPE.name = "Poche de sang"
|
||||
RECIPE.description = "Un sac en plastique avec un tuyau et une aiguille attachés. Il semble y avoir du sang dedans."
|
||||
RECIPE.model = "models/willardnetworks/skills/bloodbag.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bloodsyringe"] = 4, ["disinfectant_bottle"] = 2, ["comp_plastic"] = 4}
|
||||
RECIPE.result = {["bloodbag"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120}, -- full xp
|
||||
{level = 20, exp = 60}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_firstaid"
|
||||
RECIPE.name = "Trousse de premiers secours"
|
||||
RECIPE.description = "Un petit sac rouge avec des objets pour une réponse immédiate aux premiers secours."
|
||||
RECIPE.model = "models/willardnetworks/skills/medkit.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.ingredients = {["bandage"] = 3, ["disinfectant_bottle"] = 3, ["bloodstabilizer"] = 3, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.result = {["firstaid"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_adrenaline"
|
||||
RECIPE.name = "Adrénaline"
|
||||
RECIPE.description = "Une seringue d'adrénaline. Elle procure un soulagement temporaire des douleurs intenses."
|
||||
RECIPE.model = "models/willardnetworks/skills/adrenaline.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_greencompound"] = 1, ["basic_green"] = 1, ["comp_syringe"] = 1}
|
||||
RECIPE.result = {["adrenaline"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_morphine"
|
||||
RECIPE.name = "Morphine"
|
||||
RECIPE.description = "Une seringue de morphine. Elle procure un soulagement des douleurs intenses."
|
||||
RECIPE.model = "models/willardnetworks/skills/adrenaline.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_redcompound"] = 2, ["basic_red"] = 1, ["comp_syringe"] = 1}
|
||||
RECIPE.result = {["morphine"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 150}, -- full xp
|
||||
{level = 45, exp = 75}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_med_surgerykit"
|
||||
RECIPE.name = "Trousse de Chirurgie"
|
||||
RECIPE.description = "Une pochette rouge qui se déplie pour révéler un assortiment d'outils chirurgicaux. Utilisé par les professionnels de la santé pour une aide immédiate."
|
||||
RECIPE.model = "models/willardnetworks/skills/surgicalkit.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["firstaid"] = 1, ["morphine"] = 3, ["bloodbag"] = 3, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["surgerykit"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 160}, -- full xp
|
||||
{level = 45, exp = 80}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_med_xenpotion"
|
||||
RECIPE.name = "Potion Xen"
|
||||
RECIPE.description = "Substance extraterrestre hautement exotique concoctée à partir d'ingrédients Xen rares, apportant une incroyable régénération organique."
|
||||
RECIPE.model = "models/willardnetworks/props/xenpotion3.mdl"
|
||||
RECIPE.category = "Médecine"
|
||||
RECIPE.subcategory = "Soins"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["ing_xen_herb"] = 4, ["ing_xenberries"] = 4, ["drink_vodka"] = 1}
|
||||
RECIPE.result = {["xen_potion"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full xp
|
||||
{level = 50, exp = 0}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,311 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicgreen"
|
||||
RECIPE.name = "Pilules vertes de base"
|
||||
RECIPE.description = "Une petite pilule verte basique. Cela vous fait vous sentir... un peu plus rapide."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_greencompound"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_green"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicblue"
|
||||
RECIPE.name = "Pilules bleues de base"
|
||||
RECIPE.description = "Une petite pilule bleue basique. Cela vous fait vous sentir... un peu plus intelligent."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bluecompound"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_blue"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicred"
|
||||
RECIPE.name = "Pilules rouges de base"
|
||||
RECIPE.description = "Une petite pilule rouge basique. Ça te fait te sentir... un peu plus fort"
|
||||
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_redcompound"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_red"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicyellow"
|
||||
RECIPE.name = "Pilules jaunes de base"
|
||||
RECIPE.description = "Une petite pilule jaune basique. Votre vision semble s'être légèrement améliorée."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_yellowcompound"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_yellow"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full xp
|
||||
{level = 20, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_improvedred"
|
||||
RECIPE.name = "Pilules rouges améliorées"
|
||||
RECIPE.description = "Une petite pilule rouge. Cela vous fait vous sentir plus fort."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["basic_red"] = 1}
|
||||
RECIPE.result = {["improved_red"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_improvedgreen"
|
||||
RECIPE.name = "Pilules vertes améliorées"
|
||||
RECIPE.description = "Une petite pilule verte. Cela vous fait vous sentir plus vite."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["basic_green"] = 1}
|
||||
RECIPE.result = {["improved_green"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_improvedblue"
|
||||
RECIPE.name = "Pilules bleues améliorées"
|
||||
RECIPE.description = "Une petite pilule bleue. Cela vous fait vous sentir plus intelligent."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["basic_blue"] = 1}
|
||||
RECIPE.result = {["improved_blue"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_improvedyellow"
|
||||
RECIPE.name = "Pilules jaunes améliorées"
|
||||
RECIPE.description = "Une petite pilule jaune. Vous pouvez soudainement voir beaucoup plus clairement."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["basic_yellow"] = 1}
|
||||
RECIPE.result = {["improved_yellow"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full xp
|
||||
{level = 30, exp = 40}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualityred"
|
||||
RECIPE.name = "Pilules rouges de qualité"
|
||||
RECIPE.description = "Une pastille rouge intéressante, son goût beaucoup plus raffiné qu'auparavant. Cela vous fait vous sentir super fort."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_red"] = 1}
|
||||
RECIPE.result = {["quality_red"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 100}, -- full xp
|
||||
{level = 45, exp = 50}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualitygreen"
|
||||
RECIPE.name = "Pilule verte de qualité"
|
||||
RECIPE.description = "Une pilule verte intéressante, son goût beaucoup plus raffiné qu'auparavant. Cela vous fait vous sentir super vite."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_green"] = 1}
|
||||
RECIPE.result = {["quality_green"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 100}, -- full xp
|
||||
{level = 45, exp = 50}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualityblue"
|
||||
RECIPE.name = "Pilules bleues de qualité"
|
||||
RECIPE.description = "Une pilule bleue intéressante, son goût beaucoup plus raffiné qu'auparavant. Cela vous fait vous sentir super intelligent... la connaissance se précipite dans l'esprit."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_blue"] = 1}
|
||||
RECIPE.result = {["quality_blue"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 100}, -- full xp
|
||||
{level = 45, exp = 50}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualityyellow"
|
||||
RECIPE.name = "Pilules jaunes de qualité"
|
||||
RECIPE.description = "Une pastille jaune intéressante, son goût beaucoup plus raffiné qu'auparavant. Cela améliore beaucoup votre vision... est-ce une araignée sur mon mur ?"
|
||||
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_yellow"] = 1}
|
||||
RECIPE.result = {["quality_yellow"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 100}, -- full xp
|
||||
{level = 45, exp = 50}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_orangepill"
|
||||
RECIPE.name = "Pilules oranges"
|
||||
RECIPE.description = "Cette pilule vous fait apparemment vous sentir un peu plus fort et votre vision plus nette."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills7.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["basic_red"] = 1, ["basic_yellow"] = 1}
|
||||
RECIPE.result = {["orange_pill"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 60}, -- full xp
|
||||
{level = 30, exp = 30}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_purplepill"
|
||||
RECIPE.name = "Pilules violettes"
|
||||
RECIPE.description = "Cette pilule vous fait apparemment penser et courir plus vite."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills6.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["basic_green"] = 1, ["basic_blue"] = 1}
|
||||
RECIPE.result = {["purple_pill"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 60}, -- full xp
|
||||
{level = 30, exp = 30}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "medpill_dark"
|
||||
RECIPE.name = "Pilules sombres"
|
||||
RECIPE.description = "Cette étrange pilule fabriquée via une voie chimique complexe stimule apparemment tous vos sens. Il y a une sorte de montée d'adrénaline.."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills8.mdl"
|
||||
RECIPE.category = "Drogues"
|
||||
RECIPE.subcategory = "Boosteurs"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["orange_pill"] = 1, ["purple_pill"] = 1, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["dark_pill"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 150}, -- full xp
|
||||
{level = 45, exp = 75}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,15 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ix.util.IncludeDir("darkrp/plugins/willardskills/recipes/crafting", true)
|
||||
ix.util.IncludeDir("darkrp/plugins/willardskills/recipes/bartering", true)
|
||||
ix.util.IncludeDir("darkrp/plugins/willardskills/recipes/cooking", true)
|
||||
ix.util.IncludeDir("darkrp/plugins/willardskills/recipes/medicine", true)
|
||||
Reference in New Issue
Block a user