mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-19 06:33:47 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,169 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_ciggie_pack"
|
||||
RECIPE.name = "Paczka papierosów"
|
||||
RECIPE.description = "Wydana przez Kombinat paczka papierosów, w której mieści się 8 papierosów."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["ciggie_pack"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
-- Artificial
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_bourbon"
|
||||
RECIPE.name = "Syntetyczny burbon"
|
||||
RECIPE.description = "Stworzony z syntetycznych składników, bourbon ten prezentuje niepokojąco gładką, sztuczną słodycz z nutami laboratoryjnie wytworzonego dębu i karmelu."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_proc_bourbon"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_whiskey"
|
||||
RECIPE.name = "Syntetyczna whiskey"
|
||||
RECIPE.description = "Butelka opisuje to jako pewnego rodzaju whiskey... Ale na pewno nie smakuje jak whiskey. Może to wcale nie whiskey?"
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["drink_proc_whiskey"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_beer"
|
||||
RECIPE.name = "Syntetyczne piwo"
|
||||
RECIPE.description = "Fermentowane z syntetycznych składników w sterylnych kadziach, to dystopijne piwo oferuje surowy, metaliczny smak z nutą sztucznego chmielu."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["drink_proc_beer"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_proc_vodka"
|
||||
RECIPE.name = "Syntetyczna wódka"
|
||||
RECIPE.description = "Trudno opisać jak to smakuje. Niby wódka, a smakuje bardzo metalicznie."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["drink_proc_vodka"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
-- Bottled drinks
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_whiskey"
|
||||
RECIPE.name = "Whiskey"
|
||||
RECIPE.description = "Whisky ta, wytworzona z nieznanych substancji, emanuje niesamowitym, przemysłowym smakiem z niepokojącymi, nieznanymi nutami."
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["bottle_whiskey"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_vodka"
|
||||
RECIPE.name = "Wódka"
|
||||
RECIPE.description = "Wódka ta, powstała w wyniku bezwzględnej obróbki, oferuje ostry, chemicznie wzmocniony smak, pozbawiony jakiejkolwiek naturalnej nuty."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["bottle_vodka"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_beer"
|
||||
RECIPE.name = "Piwo"
|
||||
RECIPE.description = "Piwo to napój alkoholowy o intensywnym smaku i zapachu, który czasami sprawia, że mówienie staje się trudniejsze niż rozwiązywanie równań matematycznych."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["drink_beer"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_lager_siemens"
|
||||
RECIPE.name = "Siemens Premium Lager Pils"
|
||||
RECIPE.description = "Brązowa szklana butelka z fantazyjnym złotym logo Siemensa z przodu, otoczona małymi, zazębiającymi się symbolami Kombinatu. Wewnątrz znajduje się błyszczący, złoto-żółty płyn. Pod logo widnieje napis: German Premium Lager Pils. Z tyłu napis: Warzone zgodnie z niemiecką tradycją, w Mieście-24 z naturalnie miękką genewską wodą alp."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.skin = 1
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 23
|
||||
RECIPE.result = {["drink_siemens_beer"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_sake"
|
||||
RECIPE.name = "Sake Miasta Ósmego"
|
||||
RECIPE.description = "Enigmatyczny napar o nieznanym pochodzeniu, ta sake zapewnia przyprawiający o dreszcze syntetyczny smak, z nieuchwytnymi nutami, które trudno opisać."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 4
|
||||
RECIPE.result = {["bottle_sake"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_bourbon"
|
||||
RECIPE.name = "Burbon"
|
||||
RECIPE.description = "Bourbon to trunek zrobiony z kukurydzy, który sprawia, że robisz rzeczy, o których potem żałujesz, ale jednocześnie zapominasz o nich po wypiciu kolejnej szklanki. "
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["bottle_bourbon"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "alcohol_moonshine"
|
||||
RECIPE.name = "Księżycówka"
|
||||
RECIPE.description = "Lekko słodko pachnący likier w starej radzieckiej butelce po wódce. Kopie jak muł. Prawdopodobnie można nim usunąć farbę."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Alkohol"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["bottle_moonshine"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,113 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_adhesive"
|
||||
RECIPE.name = "Klej"
|
||||
RECIPE.description = "Klej do sklejania przedmiotów. Bardzo klejący."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 7
|
||||
RECIPE.result = {["comp_adhesive"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_wood"
|
||||
RECIPE.name = "Odłamki drewna"
|
||||
RECIPE.description = "Sztacheta drewna, która wydaje się złamana, ale użyteczna."
|
||||
RECIPE.model = "models/Gibs/wood_gib01a.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["comp_wood"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_nails_screws"
|
||||
RECIPE.name = "Pudełko z wkrętami"
|
||||
RECIPE.description = "Pudełko z wkrętami. Lekko zardzewiałe."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 12
|
||||
RECIPE.result = {["comp_screws"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_metal_scraps"
|
||||
RECIPE.name = "Złom"
|
||||
RECIPE.description = "Kawałki złomu, przydatne przy wytwarzaniu."
|
||||
RECIPE.model = "models/gibs/manhack_gib01.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 2
|
||||
RECIPE.result = {["comp_scrap"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_electronics"
|
||||
RECIPE.name = "Przewody"
|
||||
RECIPE.description = "Stare pocięte przewody. Ciekawe do czego służyły..."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 4
|
||||
RECIPE.result = {["comp_electronics"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_cloth"
|
||||
RECIPE.name = "Szmaty z tkaniny"
|
||||
RECIPE.description = "Kawałki brudnych szmat, można coś z nich wytworzyć."
|
||||
RECIPE.model = "models/willardnetworks/skills/cloth.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_plastic"
|
||||
RECIPE.name = "Plastic"
|
||||
RECIPE.description = "Elements of plastic waste. Who knows what it was, before."
|
||||
RECIPE.model = "models/props_junk/garbage_bag001a.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 2
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_comp_chemicals"
|
||||
RECIPE.name = "Bottle of Cleaning Fluid"
|
||||
RECIPE.description = "A union branded bottle of chemicals used for 'cleaning'."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["comp_chemicals"] = 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_tool_request"
|
||||
RECIPE.name = "Urządzenie zgłaszające"
|
||||
RECIPE.description = "Małe urządzenie z zaokrąglonymi rogami, mieszczące dwa przyciski. Widoczne jest niewielkie logo Kombinatu."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
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 = "Latarka"
|
||||
RECIPE.description = "Latarka to gadżet, bez którego odkrywanie sekretów w ciemności byłoby niemożliwe, chyba że jesteś nietoperzem. Dzięki niej zawsze będziesz miał światełko w tunelu, nawet jeśli jest to tunel pod ziemią."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
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 = "Telewizor"
|
||||
RECIPE.description = "Telewizor wydany przez reżim, na którym można oglądać audycje propagandowe."
|
||||
RECIPE.model = "models/props_c17/tv_monitor01.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
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 = "Ekspres do kawy"
|
||||
RECIPE.description = "Ekspres do kawy pozwala na rozpoczęcie dnia z mocniejszym kopem niż kopałby Czarny Koń Zorro. Dzięki niemu Twoje oczy będą tak rozszerzone, że będziesz wyglądać jak sowa w dzień."
|
||||
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
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 = "Komputer"
|
||||
RECIPE.description = "Odnowiony komputer z dostępem do notatek, chodzi na systemie zmodyfikowanym przez Uniwersalną Unię. Przydatny w sklepach."
|
||||
RECIPE.model = "models/willardnetworks/props/willard_computer.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
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_musicradio1"
|
||||
RECIPE.name = "Radio Benefaktor"
|
||||
RECIPE.description = "Masowo produkowane radio ustawione na częstotliwość kontrolowaną przez Kombinat na której gra patriotyczna oraz klasyczna muzyka."
|
||||
RECIPE.model = "models/props_lab/citizenradio.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 150
|
||||
RECIPE.result = {["musicradio_cmb"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,265 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
-- Snacks
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_food_berries"
|
||||
RECIPE.name = "Jagody"
|
||||
RECIPE.description = "Garść słodkich jagód."
|
||||
RECIPE.model = "models/willardnetworks/food/berries01.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Solone orzeszki ziemne"
|
||||
RECIPE.description = "Solone orzeszki ziemne dostarczą Ci więcej soli niż jest w całym oceanie, ale przynajmniej nie musisz się martwić o nadmiar jodu."
|
||||
RECIPE.model = "models/willardnetworks/food/peats.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["food_peanuts"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_food_biscuits"
|
||||
RECIPE.name = "Puszka herbatników"
|
||||
RECIPE.description = "Zamknięte w ponurej, metalicznym puszce, te suche herbatniki oferują smak srogości. Każdy kęs uwalnia przesuszoną chrupkość, całkowicie pozbawioną wilgoci."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["food_biscuits"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_food_crisps"
|
||||
RECIPE.name = "Chipsy ziemniaczane"
|
||||
RECIPE.description = "Smaczna przekąska, która może się okazać cichym zabójcą kalorycznym."
|
||||
RECIPE.model = "models/willardnetworks/food/snack01.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Krakersy"
|
||||
RECIPE.description = "Krakersy, tak twarde, że można by budować z nich czołgi."
|
||||
RECIPE.model = "models/willardnetworks/food/snack02.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Jabłko"
|
||||
RECIPE.description = "Piękne i dorodne czerwone jabłko. Wygląda naprawdę soczyście."
|
||||
RECIPE.model = "models/willardnetworks/food/apple.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Banan"
|
||||
RECIPE.description = "Banan jest świetnym źródłem energii i składników odżywczych, ale jednocześnie wygląda jak pistolet dla małp."
|
||||
RECIPE.model = "models/willardnetworks/food/bananna.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Pomarańcz"
|
||||
RECIPE.description = "Wystarczy obrać i zjeść.. No i jeszcze zadowolić się dosyć kwaśnym posmakiem."
|
||||
RECIPE.model = "models/willardnetworks/food/orange.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 8
|
||||
RECIPE.result = {["fruit_orange"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "food_sandwich"
|
||||
RECIPE.name = "Kanapka"
|
||||
RECIPE.description = "Bardzo popularna w Mieście 21, prosta kanapka z syntetycznego mięsa z serem. Idealna na szybki posiłek w podróży i w pracy."
|
||||
RECIPE.model = "models/willardnetworks/food/sandwich.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Syntetyczne mięso na szaszłykach"
|
||||
RECIPE.description = "Syntetyczne mięso na szaszłykach to opcja dla wegan i wegetarian, która pozwala poczuć smak grillowania, bez uczucia winy wobec zwierząt."
|
||||
RECIPE.model = "models/willardnetworks/food/meatskewer2.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Kromka chleba"
|
||||
RECIPE.description = "Kromka chleba to podstawa wielu dań, która pozwala nam cieszyć się prostotą i wygodą jedzenia."
|
||||
RECIPE.model = "models/willardnetworks/food/bread_slice.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Połówka chleba"
|
||||
RECIPE.description = "Pół bochenka chleba gotowego do spożycia."
|
||||
RECIPE.model = "models/willardnetworks/food/bread_half.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Gotowany makaron"
|
||||
RECIPE.description = "Gotowany makaron, niezależnie od czasów jest bardzo popularnym wyborem kulinarnym."
|
||||
RECIPE.model = "models/willardnetworks/food/noodles.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Bajgiel"
|
||||
RECIPE.description = "Nigdy nie wiadomo gdzie zaczynają się, a gdzie kończą bajgle, ale zawsze smakują dobrze, zwłaszcza z dodatkiem kremowego masła lub słodkiego dżemu."
|
||||
RECIPE.model = "models/willardnetworks/food/bagel2.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Pieczone syntetyczne mięso"
|
||||
RECIPE.description = "Nafaszerowane substancjami chemicznymi i innymi substytutami podtrzymującymi ważność; nie licząc tego, że prawdopodobnie dostaniesz raka - to jest całkiem smaczne."
|
||||
RECIPE.model = "models/willardnetworks/food/steak2.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Zupa jarzynowa"
|
||||
RECIPE.description = "Zupa jarzynowa to taki mały ogródek na talerzu, pełen warzyw, które się znudziły, ale dalej chcą dawać życie i energię. Miejmy nadzieje, że nie będzie za słona."
|
||||
RECIPE.model = "models/willardnetworks/food/vegetablesoup.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Arbuz"
|
||||
RECIPE.description = "Orzeźwiający i soczysty owoc."
|
||||
RECIPE.model = "models/willardnetworks/food/watermelon_unbreakable.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
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 = "Pieczone mięso z Antliona"
|
||||
RECIPE.description = "Ciepłe, żylaste mięso z Antliona."
|
||||
RECIPE.model = "models/willardnetworks/food/cooked_alienmeat.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Jedzenie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["antlion_roast"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,37 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_gloves"
|
||||
RECIPE.name = "Rękawiczki"
|
||||
RECIPE.description = "Rękawice to niezbędny element ekwipunku dla każdego, kto chce zabezpieczyć swoje dłonie przed uszkodzeniami czy utratą ciepła."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Dłonie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["hands_gloves"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_tipless_gloves"
|
||||
RECIPE.name = "Mitenki"
|
||||
RECIPE.description = "Mitenki to rodzaj rękawiczek bez palców, idealny wybór dla tych, którzy chcą zachować dłonie ciepłe, ale wolą swobodę ruchów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove_fingerless.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Dłonie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["hands_tipless_gloves"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,181 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
-- Beanie
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_beanie_brown"
|
||||
RECIPE.name = "Brązowa czapka"
|
||||
RECIPE.description = "Brązowa, lekko zaniedbana, wełniana czapka."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["beanie_brown"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_beanie_grey"
|
||||
RECIPE.name = "Szara czapka"
|
||||
RECIPE.description = "Szara, lekko zaniedbana, wełniana czapka. "
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["beanie_grey"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_beanie_red"
|
||||
RECIPE.name = "Czerwona czapka"
|
||||
RECIPE.description = "Czerwona, lekko zaniedbana, wełniana czapka."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["beanie_red"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_beanie_blue"
|
||||
RECIPE.name = "Niebieska czapka"
|
||||
RECIPE.description = "Niebieska, lekko zaniedbana, wełniana czapka."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["head_blue_beanie"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_beanie_green"
|
||||
RECIPE.name = "Zielona czapka"
|
||||
RECIPE.description = "Zielona, lekko zaniedbana, wełniana czapka."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["head_green_beanie"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
-- Non-colorable
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_boonie"
|
||||
RECIPE.name = "Kapelusz typu 'Boonie'"
|
||||
RECIPE.description = "Kapelusz z szerokim rondem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_boonie.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["head_boonie_hat"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_chef"
|
||||
RECIPE.name = "Kapelusz szefa kuchni"
|
||||
RECIPE.description = "Wysoki, biały kapelusz. Noszony przez tych, którzy są świetni w gotowaniu albo przez takich którzy tylko udają, że potrafią gotować."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["head_chef_hat"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_cap"
|
||||
RECIPE.name = "Kaszkiet"
|
||||
RECIPE.description = "Stylowy, oldschoolowy kaszkiet, który płasko układa się na głowie."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_hat2.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["head_flat_cap"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_head_visor"
|
||||
RECIPE.name = "Czapka z daszkiem"
|
||||
RECIPE.description = "Kapelusz z daszkiem. Dzięki niemu słońce nie będzie raziło Ci w oczy."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_hat.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["head_visor_cap"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "head_military_cap"
|
||||
RECIPE.name = "Czapka wojskowa"
|
||||
RECIPE.description = "Czapka z wytartymi insygniami wojskowymi."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_confederatehat.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["head_military_cap"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
-- Glasses
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_glasses"
|
||||
RECIPE.name = "Okulary"
|
||||
RECIPE.description = "Para czarnych okularów o kwadratowych oprawkach."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/glasses.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["glasses"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_aviators"
|
||||
RECIPE.name = "Okulary lotnicze"
|
||||
RECIPE.description = "Para stylowych okularów, inaczej zwanych 'aviatorami'. Przypominają o przeszłości."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_aviators.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["aviators"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_70s"
|
||||
RECIPE.name = "Okulary z lat 70."
|
||||
RECIPE.description = "Para okularów vintage z lat 70-tych z brązową oprawką."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_glasses_70s.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["70sglasses"] = 1}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,267 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
-- Meats
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "ingredients_leeches"
|
||||
RECIPE.name = "Pijawki w puszce"
|
||||
RECIPE.description = "Pijawka w puszce. Zawiera trzy surowe pijawki."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food2.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Surowe syntetyczne mięso"
|
||||
RECIPE.description = "Substancje mięsne sprasowane w blok białkowy. Mięso jest surowe i nierafinowane."
|
||||
RECIPE.model = "models/willardnetworks/food/steak1.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Surowy kurczak"
|
||||
RECIPE.description = "Przemysł skolektywizowany w odległych krainach, osadzony w felernych warunkach i fabrykach do produkcji mięsa."
|
||||
RECIPE.model = "models/willardnetworks/food/meat3.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Margaryna"
|
||||
RECIPE.description = "Puszka po margarynie. Topi się pod wpływem ciepła."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food5.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Mąka nasycona"
|
||||
RECIPE.description = "Papierowa torba jest nieco wyściełana, co sprawia, że wygląda, jakby zawierała więcej mąki niż w rzeczywistości. Wygląda i pachnie jak zwykła mąka z kilkoma dziwnymi czarnymi plamami tu i tam."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food6.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Opakowanie białka jajecznego"
|
||||
RECIPE.description = "Opakowanie białka w proszku."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Granulowany słodki baton"
|
||||
RECIPE.description = "Chrupiący batonik czekoladowy. Jest całkiem smaczny!"
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food3.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Substytut mleka"
|
||||
RECIPE.description = "Kartonik substytutu mleka. Z pewnością wygląda jak mleko, ale jest nieco rzadsze w swoim składzie."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Suszone aromatyczne przyprawy"
|
||||
RECIPE.description = "Dodają smaku i aromatu potrawom nawet w trudnych warunkach."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food8.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Suszone zioła do gotowania"
|
||||
RECIPE.description = "Różne suszone zioła do gotowania."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food7.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Sól"
|
||||
RECIPE.description = "Na pozór zwykła solniczą z solą o nieco dziwnym, kwaśnym zapachu..."
|
||||
RECIPE.model = "models/willardnetworks/foods/salt.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Ocet"
|
||||
RECIPE.description = "Kwasowy płyn, który może być użyty do marynowania, gotowania i czyszczenia."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_i.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Paczka warzyw"
|
||||
RECIPE.description = "Mieszanka kolorowych, chrupiących warzyw gotowych do spożycia i wzbogacenia twojej diety."
|
||||
RECIPE.model = "models/willardnetworks/foods/vege.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Suchy makaron"
|
||||
RECIPE.description = "Suchy i nieapetyczny."
|
||||
RECIPE.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Plasterek syntetycznego sera"
|
||||
RECIPE.description = "Pachnie i wygląda jak zwykły ser, ale napewno nie smakuje jak ser."
|
||||
RECIPE.model = "models/willardnetworks/food/cheesewheel2c.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Kawa w proszku"
|
||||
RECIPE.description = "Przetarta puszka z kawą w proszku."
|
||||
RECIPE.model = "models/willardnetworks/food/wn_food_can.mdl"
|
||||
RECIPE.skin = 5
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Pusty kubek po kawie"
|
||||
RECIPE.description = "Spodziewasz się tutaj niespodzianki? Pusty. Nic więcej."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
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 = "Surowe mięso z Antliona"
|
||||
RECIPE.description = "Gumiasty, odcięty kawałek mięsa Antliona. Pachnie i wygląda nieco dziwnie."
|
||||
RECIPE.model = "models/willardnetworks/food/raw_alienmeat.mdl"
|
||||
RECIPE.category = "Restauracja"
|
||||
RECIPE.subcategory = "Składniki"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 2
|
||||
RECIPE.result = {["ing_antlion_meat"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,649 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "luxury_ciggie_pack"
|
||||
RECIPE.name = "Paczka papierosów"
|
||||
RECIPE.description = "Wydana przez Kombinat paczka papierosów, w której mieści się 8 papierosów."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Zapalniczka Zippo"
|
||||
RECIPE.description = "Zapalniczka Zippo to klasyczny model zapalniczki na benzynę z charakterystycznym metalowym etui i mechanizmem zapalającym na iskry."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Plaster sera cheddar"
|
||||
RECIPE.description = "Plasterek sera cheddar."
|
||||
RECIPE.model = "models/willardnetworks/food/cheesewheel1c.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Surowa ryba"
|
||||
RECIPE.description = "To dość rzadki widok w dzisiejszych czasach."
|
||||
RECIPE.model = "models/willardnetworks/food/fishgolden.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Surowa wołowina"
|
||||
RECIPE.description = "Mięso pochodzące z krowy, które nie zostało poddane procesom obróbki termicznej czy też innym przetworzeniom."
|
||||
RECIPE.model = "models/willardnetworks/food/meat3.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Jajko"
|
||||
RECIPE.description = "Zazwyczaj zastępowane w dzisiejszych czasach pakietem proteinowym z jajek."
|
||||
RECIPE.model = "models/willardnetworks/food/egg1.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Choco Unia"
|
||||
RECIPE.description = "Słodka przekąska w postaci płaskiej płytki wykonanej z rozpuszczonego kakao, cukru i innych składników, często podzielona na mniejsze kawałki."
|
||||
RECIPE.model = "models/willardnetworks/props/unionchoco.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 12
|
||||
RECIPE.result = {["luxury_choc"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_fruit_pineapple"
|
||||
RECIPE.name = "Ananas"
|
||||
RECIPE.description = "Rzadki widok w dzisiejszych czasach. Oznaka luksusu od dawnych lat."
|
||||
RECIPE.model = "models/willardnetworks/food/pineapple.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 40
|
||||
RECIPE.result = {["fruit_pineapple"] = 1}
|
||||
RECIPE.buyAmount = 1
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_white_wine"
|
||||
RECIPE.name = "Białe wino"
|
||||
RECIPE.description = "Stare wino i młoda kobieta to najlepsza dieta."
|
||||
RECIPE.model = "models/willardnetworks/food/white_wine.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["bottle_wine_white"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_red_wine"
|
||||
RECIPE.name = "Czerwone wino"
|
||||
RECIPE.description = "Idealne na zimne, samotne wieczory. Na te ciepłe też."
|
||||
RECIPE.model = "models/willardnetworks/food/red_wine.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 50
|
||||
RECIPE.result = {["bottle_wine_red"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_drink_champagne"
|
||||
RECIPE.name = "Butelka szampana musującego"
|
||||
RECIPE.description = "Szampan musujący, świetnie nadaje się na huczne przyjęcia, a do tego jest pełen bąbelków! Kto nie kocha bąbelków?"
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_a.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 100
|
||||
RECIPE.result = {["bottle_champagne"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_chess"
|
||||
RECIPE.name = "Zestaw do montażu stołu szachowego"
|
||||
RECIPE.description = "Zestaw montażowy do złożenia stolika szachowego."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Zestaw montażowy stołu do gry w warcaby"
|
||||
RECIPE.description = "Zestaw montażowy do złożenia stołu do gry w warcaby."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Zestaw montażowy do maszyny do gier typu 'Arcade'"
|
||||
RECIPE.description = "Zestaw montażowy do złożenia maszyny zręcznościowej."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
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 = "Cygaretki Goodfella"
|
||||
RECIPE.description = "Paczka cygaretek wysokiej jakości, w której mieści się ich 8 sztuk."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_goodfella.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["ciggie_goodfella"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
-- Odzież kolaborantów
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_ice"
|
||||
RECIPE.name = "Lód"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_ice"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_creme"
|
||||
RECIPE.name = "Créme"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_creme"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_salmon"
|
||||
RECIPE.name = "Łosoś"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_salmon"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_white"
|
||||
RECIPE.name = "Biały Pył"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_white"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_idealist"
|
||||
RECIPE.name = "Idealista"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_idealist"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_simple"
|
||||
RECIPE.name = "Swój Chłop"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_simple"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_follower"
|
||||
RECIPE.name = "Wyznawca Faraona"
|
||||
RECIPE.description = "A jacket for collaborators in support of an authority figure."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_follower"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_twin"
|
||||
RECIPE.name = "Twin Brown"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_twin"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_bloke"
|
||||
RECIPE.name = "Ciemna Czerń"
|
||||
RECIPE.description = "A collaborators jacket named after a certain individual."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_bloke"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_afternoon"
|
||||
RECIPE.name = "Popołudnie"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_afternoon"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_bistre"
|
||||
RECIPE.name = "Bistr"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_bistre"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_bluedelight"
|
||||
RECIPE.name = "Niebiańska rozkosz"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_bluedelight"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_burgundy"
|
||||
RECIPE.name = "Burgundowy kolaborant"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_burgundy"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_cadet"
|
||||
RECIPE.name = "Niebieski Kadet"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_cadet"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_carnelian"
|
||||
RECIPE.name = "Czerwony Karneol"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_carneliant"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_coral"
|
||||
RECIPE.name = "Czarny Koralowiec"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_coral"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_fixer"
|
||||
RECIPE.name = "Rzemieślnik"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_fixer"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_foreigner"
|
||||
RECIPE.name = "Obcy"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_foreigner"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_kingpin"
|
||||
RECIPE.name = "Kingpin"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_kingpin"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_midnight"
|
||||
RECIPE.name = "Północ"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_midnight"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_midnightred"
|
||||
RECIPE.name = "Krwawy księżyc"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_midnightred"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_office"
|
||||
RECIPE.name = "The Office"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_office"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_onyx"
|
||||
RECIPE.name = "Onyx"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_onyx"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_orangedawn"
|
||||
RECIPE.name = "Zachód słońca"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_orangedawn"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_redhaven"
|
||||
RECIPE.name = "Czerwone niebo"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_redhaven"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_reed"
|
||||
RECIPE.name = "Oliwka"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_reed"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_sap"
|
||||
RECIPE.name = "Zieleń"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_sap"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_taupe"
|
||||
RECIPE.name = "Kret"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_taupe"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_walkster"
|
||||
RECIPE.name = "Podróżnik"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_walkster"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_lux_collab_yonder"
|
||||
RECIPE.name = "Niebieska Otchłań"
|
||||
RECIPE.description = "Wygodna marynarka uszyta specjalnie dla kolaborantów w zamian za wsparcie reżimu."
|
||||
RECIPE.model = "models/willardnetworks/luxuryitems/torso_alyxcoat7_blue.mdl"
|
||||
RECIPE.category = "Luksusowe"
|
||||
RECIPE.subcategory = "Odzież kolaborantów"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["collab_yonder"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Fedora
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "head_fedora_brown"
|
||||
RECIPE.name = "Brązowa Fedora"
|
||||
RECIPE.description = "Rzadko spotykany brązowy, stylowy kapelusz przypominający minione czasy."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_fedora_recolorable.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["fedora_brown"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "head_fedora_black"
|
||||
RECIPE.name = "Czarna Fedora"
|
||||
RECIPE.description = "Rzadko spotykany czarny, stylowy kapelusz przypominający minione czasy."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/fedora_item.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["head_fedora"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "head_fedora_white"
|
||||
RECIPE.name = "Biała Fedora"
|
||||
RECIPE.description = "Rzadko spotykany biały, stylowy kapelusz przypominający minione czasy."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_fedora_recolorable.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Nakrycia głowy"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 300
|
||||
RECIPE.result = {["fedora_white"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Formal
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_dress"
|
||||
RECIPE.name = "Eleganckie buty"
|
||||
RECIPE.description = "Na dzisiejszym rynku tylko niewielki podzbiór cywilów może sobie pozwolić na takie formalne rodzaje butów"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_formal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 500
|
||||
RECIPE.result = {["shoes_dress_shoes"] = 1}
|
||||
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 = "Woda Breena"
|
||||
RECIPE.description = "Puszka wody o dziwnym smaku. Wydaje się orzeźwiająca. Reklamuje ją sam Breen, musi być naprawdę zdrowa."
|
||||
RECIPE.model = "models/props_junk/PopCan01a.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["drink_breen_water"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_boboriginal"
|
||||
RECIPE.name = "Bob Water Original"
|
||||
RECIPE.description = "Smaczna i delikatna w smaku woda. Uwaga: Może powodować rozległe krwotoki wewnętrzne."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 4
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 (dietetyczny)"
|
||||
RECIPE.description = "Niskosłodzony napój, stanowi alternatywę dla Bank Soda produkowanego przez Tenzhen Soda Drinks."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 1
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Wysokiej jakości napój gazowany produkowany przez Tenzhen Soda Drinks."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 2
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["drink_banksoda_grey"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_c24"
|
||||
RECIPE.name = "Bank Soda C24"
|
||||
RECIPE.description = "Pamiątkowy napój gazowany wyprodukowany przez Tenzhen Industries Drinks celebruje fascynującą historię Miasta 24. Ten inspirowany historią napój smakuje jak wiśnia, ołówek i poszatkowane książki historyczne."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 3
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 Ocean Blue"
|
||||
RECIPE.description = "Słodko-kwaśny napój gazowany produkowany przez Tenzhen Industries Drinks. Rozkoszuj się smakiem Bank Soda dzięki temu pysznemu, słodko-gorzkiemu napojowi o smaku gumy balonowej i limonki; plotki głoszą, że świetnie łączy się z alkoholem."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 7
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 Piwo Lager"
|
||||
RECIPE.description = "Karmelowy napój gazowany produkowany przez Tenzhen Industries Drinks. Rozkoszuj się pysznością napoju Bank Soda dzięki temu aromatycznemu piwu korzennemu o smaku karmelu, czarnej wiśni, lukrecji i ołowiu."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 5
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 Lukrecja"
|
||||
RECIPE.description = "Różowo-wiśniowy napój gazowany produkowany przez Tenzhen Industries Drinks. Rozkoszuj się pysznością napoju Bank Soda dzięki temu jedynemu w swoim rodzaju wyskokowemu napojowi boba."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 6
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 C8"
|
||||
RECIPE.description = "Egzotyczny napój gazowany produkowany przez Tenzhen Industries Drinks. Rozkoszuj się pysznością napoju Bank Soda o słodyczy stu wschodzących słońc; smakuje jak arbuz i słońce."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 4
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 Orient"
|
||||
RECIPE.description = "Wschodni, oryginalny napój gazowany i poprzednik Bank Soda produkowany przez Tenzhen Soda Drinks."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_goodfella.mdl"
|
||||
RECIPE.skin = 0
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Syntetyczna Lemoniada"
|
||||
RECIPE.description = "Nie należy do najbardziej orzeźwiających napojów. Ma lekki posmak metaliczny."
|
||||
RECIPE.model = "models/props_junk/GlassBottle01a.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Syntetyczny sok owocowy"
|
||||
RECIPE.description = "Sztuczny płyn przypominający jakiś sok owocowy."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Woda gazowana Breen'a"
|
||||
RECIPE.description = "Czerwona puszka wody z bąbelkami. Jest całkiem słodka."
|
||||
RECIPE.model = "models/willardnetworks/food/breencan1.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Kawa"
|
||||
RECIPE.description = "Ciepła kubek kawy, pomaga utrzymać czujność."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Woda Breena 'Premium'"
|
||||
RECIPE.description = "Bardzo wymyślna puszka wody o bardzo słodkim smaku."
|
||||
RECIPE.model = "models/willardnetworks/food/breencan2.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Lemoniada"
|
||||
RECIPE.description = "Szklanka orzeźwiającej Lemoniady. Smak dzieciństwa, co nie?."
|
||||
RECIPE.model = "models/willardnetworks/food/prop_bar_bottle_b.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Sok owocowy"
|
||||
RECIPE.description = "Orzeźwiający sok owocowy, smakuje jak prawdziwe owoce."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle003a.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Kawa 'Willard Industries'"
|
||||
RECIPE.description = "Przedawkowanie może spowodować bezsenność, biegunkę, zmęczenie, depresję, koszmary, wymioty, bóle głowy, niepokój lub śmierć. Skonsultuj się z zatwierdzonym przez Willard Industries specjalistą medycznym, jeśli po spożyciu nastąpi śmierć."
|
||||
RECIPE.model = "models/willardnetworks/food/wi_coffee.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 15
|
||||
RECIPE.result = {["drink_wi_coffee"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_bobgrape"
|
||||
RECIPE.name = "Soda Bob Grape"
|
||||
RECIPE.description = "Na etykiecie czytamy: 'Gładki owocowy smak! Wyprodukowany z prawdziwych, sztucznych winogron i nasączony pastą przypominającą gęsty kisiel pełen grudek!'"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 0
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 4
|
||||
RECIPE.result = {["drink_bobgrape"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_bobsurprise"
|
||||
RECIPE.name = "Soda Bob Surprise"
|
||||
RECIPE.description = "Mocny i uderzający smak gazowanego napoju wiśniowego. Aromatyczny, z gwarancją niepowtarzalnego smaku w każdej puszce! Ciesz się tym przypadkowym smakiem z niezliczonej ilości składników, w tym sztucznego mięsa jelenia i wiórków ołówka!"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 3
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["drink_bobsurprise"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_bobfizz"
|
||||
RECIPE.name = "Soda Bob Fizz"
|
||||
RECIPE.description = "Na etykiecie czytamy: 'Cytryna, limonka, napój wysublimowany, nie zawierający śluzu! Świeży, orzeźwiający smak, który wyniesie Twoje kubki smakowe na orbitę!'"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 2
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["drink_bobfizz"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_bobdark"
|
||||
RECIPE.name = "Soda Bob Dark"
|
||||
RECIPE.description = "Na etykiecie czytamy: 'Subtelny i duszny smak naszej 'ciemnej' edycji wyszczerbi kawałek twojej śmiertelnej duszy z każdym łykiem! Ostrzeżenie: W przypadku wystąpienia demonicznych halucynacji należy skonsultować się z lokalnymi specjalistami z Willard Industries.'"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 1
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 13
|
||||
RECIPE.result = {["drink_bobdark"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_bobenergy"
|
||||
RECIPE.name = "Soda Bob Energy"
|
||||
RECIPE.description = "Na etykiecie czytamy: 'Wypij jednym haustem, aby wejść w fazę między sferami i stać się czystą energią, w jedności ze sobą i wszechświatem.'"
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.skin = 6
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Paczka papierosów"
|
||||
RECIPE.description = "Wydana przez Kombinat paczka papierosów, w której mieści się 8 papierosów."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["ciggie_pack"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "nonalcoholic_carddeck"
|
||||
RECIPE.name = "52-kartowa talia"
|
||||
RECIPE.description = "Tradycyjna 52-kartowa talia kart do gry w stylu francuskim."
|
||||
RECIPE.model = "models/cards/stack.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
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 = "Herbata"
|
||||
RECIPE.description = "Zazwyczaj herbata ma gorzko-słodki smak, jak samo życie, ale ta napewno nie jest ani trochę słodka."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Bezalkoholowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 6
|
||||
RECIPE.result = {["drink_tea"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,144 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
-- Worn Shoes
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_worn_dark"
|
||||
RECIPE.name = "Używane czarne buty"
|
||||
RECIPE.description = "Para ciemnych, zużytych i zmęczonych butów... Widziały już zbyt wiele."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_military.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["shoes_worn_dark"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_worn_brown"
|
||||
RECIPE.name = "Używane brązowe buty"
|
||||
RECIPE.description = "Para brązowych, zużytych i zmęczonych butów... Widziały już zbyt wiele."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_military.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["shoes_worn_brown"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
-- Civ Shoes
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_black"
|
||||
RECIPE.name = "Czarne buty"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_black_shoes"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_bloke"
|
||||
RECIPE.name = "Ciemne buty"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_bloke"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_darkblue"
|
||||
RECIPE.name = "Granatowe buty"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_blue_shoes"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_grey"
|
||||
RECIPE.name = "Szare buty"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_grey"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_brown"
|
||||
RECIPE.name = "Brązowe Buty"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_brown_shoes"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_red"
|
||||
RECIPE.name = "Ciemnoczerwone buty"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_universal.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_red"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Leather Shoes
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_leather_dark"
|
||||
RECIPE.name = "Buty z czarnej skóry"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_boots.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_leather_dark"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_shoes_leather_brown"
|
||||
RECIPE.name = "Buty z brązowej skóry"
|
||||
RECIPE.description = "Para solidnych butów."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/shoes_boots.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Buty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["shoes_leather_brown"] = 1}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,284 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_tool_spoon"
|
||||
RECIPE.name = "Łyżka kuchenna"
|
||||
RECIPE.description = "Przydatne do gotowania potraw."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Czajnik"
|
||||
RECIPE.description = "Czajnik w którym możesz ugotować wodę."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 14
|
||||
RECIPE.result = {["tool_kettle"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_tool_lighter"
|
||||
RECIPE.name = "Zapalniczka plastikowa"
|
||||
RECIPE.description = "Tania plastikowa zapalniczka, przydatna do zapalania papierosów."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/lighter.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 10
|
||||
RECIPE.result = {["lighter"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_tool_knife"
|
||||
RECIPE.name = "Nóż kuchenny"
|
||||
RECIPE.description = "Gruby, mocno stępiony nóż. Używany do krojenia żywności."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Nożyczki"
|
||||
RECIPE.description = "Ciach!, Ciach!, Ciach!."
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Strzykawka"
|
||||
RECIPE.description = "Strzykawka w której możesz trzymać płyn, przydatna do zabiegów medycznych."
|
||||
RECIPE.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Garnek do gotowania"
|
||||
RECIPE.description = "Czarny, żelazny garnek do gotowania. Postaw go na kuchence!"
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Patelnia"
|
||||
RECIPE.description = "Czarna, żeliwna patelnia. Połóż ją na kuchence!"
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl" -- This model is wrong. Use the hl2 frying pan model plz
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Przybory fryzjerskie"
|
||||
RECIPE.description = "Narzędzia dla kreatywnych dusz w tym przygnębiającym otoczeniu."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Klucz"
|
||||
RECIPE.description = "Stary klucz, można go użyć do tworzenia."
|
||||
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Skrzynka z narzędziami"
|
||||
RECIPE.description = "Mała metalowa skrzynka zawierające narzędzia dzieki którym wytworzysz przedmioty."
|
||||
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Ekspres do kawy"
|
||||
RECIPE.description = "Ekspres do kawy pozwala na zaczęcie dnia z mocniejszym kopem niż kopałby Czarny Koń Zorro. Dzięki niemu Twoje oczy będą tak rozszerzone, że będziesz wyglądać jak sowa w dzień."
|
||||
RECIPE.model = "models/willardnetworks/skills/coffee_machine.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Zestaw montażowy piekarnika"
|
||||
RECIPE.description = "Wraz z zestawem instrukcji. Drewniany pakiet zawiera dużą ilość różnych elementów składowych dla aparatury kulinarnej."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Zamek grupowy"
|
||||
RECIPE.description = "Metalowe urządzenie montowane na drzwiach, potrzebujesz grupy aby działał."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Zamek do pojemnika"
|
||||
RECIPE.description = "Ustawia hasło na pojemnik."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Nerka"
|
||||
RECIPE.description = "Mała nerka, która spoczywa na biodrze."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 70
|
||||
RECIPE.result = {["smallbag"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_storage_suitcase"
|
||||
RECIPE.name = "Walizka"
|
||||
RECIPE.description = "Mała walizka gotowa pomieścić wszystko, czego nie chciałbyś nosić normalnie."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 70
|
||||
RECIPE.result = {["suitcase"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_container_small"
|
||||
RECIPE.name = "Mały pojemnik"
|
||||
RECIPE.description = "Pojemnik o rozmiarze 5x3, skontaktuj się z adminem aby ustawić ten pojemnik, potrzebny jest zamek na pojemnik aby go zamknąć."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Mikser do chemii"
|
||||
RECIPE.description = "Wydaje się przydatny do mieszania ze sobą płynów lub chemikaliów. Na jego etykiecie ostrzegawczej czytamy: 'Nie otwierać podczas pracy'"
|
||||
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Plecak"
|
||||
RECIPE.description = "Mały plecak ze znaczkiem Kombinatu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
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 = "Sejf"
|
||||
RECIPE.description = "Niezniszczalny sejf w którym możesz przechowywać przedmioty. (Możesz mieć 2 sejfy w ramach limitu pojemników)."
|
||||
RECIPE.model = "models/willardnetworks/safe.mdl"
|
||||
RECIPE.category = "Narzędzia i magazynowanie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 850
|
||||
RECIPE.result = {["container_safe"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,376 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
-- Worn Trousers
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_worn_black"
|
||||
RECIPE.name = "Czarne noszone spodnie"
|
||||
RECIPE.description = "Para czarnych, zużytych spodni. Wykonane z myślą o trwałości, ale lata ich świetności dawno mineły."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie noszone"
|
||||
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 = "Niebieskie noszone spodnie"
|
||||
RECIPE.description = "Para niebieskich wytartych spodni. Wykonane z myślą o trwałości, ale lata ich świetności dawno mineły."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie noszone"
|
||||
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 = "Zielone noszone spodnie"
|
||||
RECIPE.description = "Para zielonych, zużytych spodni. Wykonane z myślą o trwałości, ale lata ich świetności dawno mineły."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie noszone"
|
||||
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 = "Szare noszone spodnie"
|
||||
RECIPE.description = "Para szarych, zużytych spodni. Wykonane z myślą o trwałości, ale lata ich świetności dawno mineły."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie noszone"
|
||||
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 = "Czerwone noszone spodnie"
|
||||
RECIPE.description = "Para czerwonych, zużytych spodni. Wykonane z myślą o trwałości, ale lata ich świetności dawno mineły."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie noszone"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 20
|
||||
RECIPE.result = {["legs_worn_red"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Jumpsuit Trousers
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit_black"
|
||||
RECIPE.name = "Czarne luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit_black"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit_blue"
|
||||
RECIPE.name = "Niebieskie luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit_blue"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit_brown"
|
||||
RECIPE.name = "Brązowe luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit_brown"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit_green"
|
||||
RECIPE.name = "Zielone luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit_green"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit_grey"
|
||||
RECIPE.name = "Szare luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit_grey"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit_red"
|
||||
RECIPE.name = "Czerwone luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit_red"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_jumpsuit"
|
||||
RECIPE.name = "Cywilne luźne spodnie"
|
||||
RECIPE.description = "Obywatelski uniform jest uważany za standardowe ubranie reżimu, spodnie pasują do jego ponurego wyglądu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_jumpsuit_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Luźne spodnie"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 25
|
||||
RECIPE.result = {["legs_jumpsuit"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Civilian Trousers
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_beige"
|
||||
RECIPE.name = "Beżowe spodnie"
|
||||
RECIPE.description = "Para beżowych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_beige"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_black"
|
||||
RECIPE.name = "Czarne spodnie"
|
||||
RECIPE.description = "Para czarnych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_black"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_blue"
|
||||
RECIPE.name = "Niebieskie spodnie"
|
||||
RECIPE.description = "Para niebieskich spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_blue_pants"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_brown"
|
||||
RECIPE.name = "Brązowe spodnie"
|
||||
RECIPE.description = "Para brązowych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_brown"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_darkgreen"
|
||||
RECIPE.name = "Ciemnozielone spodnie"
|
||||
RECIPE.description = "Para ciemnozielonych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_green_pants"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_darkgrey"
|
||||
RECIPE.name = "Ciemnoszare spodnie"
|
||||
RECIPE.description = "Para ciemnoszarych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_grey_pants"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_darkred"
|
||||
RECIPE.name = "Ciemnoczerwone spodnie"
|
||||
RECIPE.description = "Para ciemnoczerwonych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_darkred"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_green"
|
||||
RECIPE.name = "Zielone spodnie"
|
||||
RECIPE.description = "Para zielonych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_green"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_grey"
|
||||
RECIPE.name = "Szare spodnie"
|
||||
RECIPE.description = "Para szarych spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_light_grey_pants"] = 1} -- Old ID name, to let players keep item on update
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_lightblue"
|
||||
RECIPE.name = "Jasnoniebieskie spodnie"
|
||||
RECIPE.description = "Para jasnoniebieskich spodni. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_lightblue"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_purple"
|
||||
RECIPE.name = "Fioletowe spodnie"
|
||||
RECIPE.description = "Para fioletowych spodni. Nieco zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_purple"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_red"
|
||||
RECIPE.name = "Czerwone spodnie"
|
||||
RECIPE.description = "Para czerwonych spodni. Nieco zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_red"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_teal"
|
||||
RECIPE.name = "Spodnie w kolorze morskim"
|
||||
RECIPE.description = "Para spodni w kolorze morskim. Trochę zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_teal"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_yellow"
|
||||
RECIPE.name = "Żółte spodnie"
|
||||
RECIPE.description = "Para żółtych spodni. Nieco zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_yellow"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_twin"
|
||||
RECIPE.name = "Spodnie Twin Brown"
|
||||
RECIPE.description = "Para zielonkawo-brązowych spodni. Nieco zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_twin"] = 1}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_legs_civ_bloke"
|
||||
RECIPE.name = "Ciemne spodnie"
|
||||
RECIPE.description = "Para ciemno spodni. Nieco zużyte i zniszczone."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/recolorable_pants.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
RECIPE.subcategory = "Spodnie cywilne"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["legs_civilian_bloke"] = 1}
|
||||
RECIPE:Register()
|
||||
@@ -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 = "Bandana dla Vortigaunta"
|
||||
RECIPE.description = "Dyskrecja to podstawa, nikt nie chciałby wiedzieć, że napada Cię Vortigaunt."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_facewrap.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Czapka szefa kuchni dla Vortigaunta"
|
||||
RECIPE.description = "Vortigaunty znane są z ich zamiłowania do gotowania, tym razem może to nawet pokazać przez swój ubiór."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Czapka budowlana dla Vortigaunta"
|
||||
RECIPE.description = "Oznaczona znakiem Kombinatu z tyłu, te czapki budowlane są często noszone przez Civil Worker's Union."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/workercap_item.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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_flatcap"
|
||||
RECIPE.name = "Kaszkiet dla Vortigaunta"
|
||||
RECIPE.description = "Stylowy oldschoolowy kaszkiet, który płasko leży na głowie... Niektóre Vortigaunty mają wysublimowany gust."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_hat2.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Fedora dla Vortigaunta"
|
||||
RECIPE.description = "Rzadko spotykany stylowy kapelusz przywodzący na myśl minione czasy, z pewnością żadna żywa istota nie spodziewałaby się zobaczyć Vortigaunta z taką dripuwą."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_hat2.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Kapelusz typu 'Boonie' dla Vortigaunta"
|
||||
RECIPE.description = "Kapelusz z szerokim rondem. Utrzymuje słońce z dala od głowy Vortigaunta."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_boonie.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Bluza dla Vortigaunta"
|
||||
RECIPE.description = "Specjalnie zrobiona bluza z dłuższą szyją tak aby pasowała na Vortigaunta, utrzyma go przy cieple nawet w najtrudniejszych warunkach."
|
||||
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_sweater.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Sweter dla Vortigaunta"
|
||||
RECIPE.description = "Sweter stworzony dla ludzi... Ciekawski Vortigaunt może go podstępnie założyć. Idealny, aby utrzymać ciepło w nawet najtrudniejszych warunkach."
|
||||
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_sweater.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Ponczo dla Vortigaunta"
|
||||
RECIPE.description = "Ponczo stworzone ze znalezionych kawałków materiału pozszywanego razem ze sobą. Luźny design i wygodne wycięcia pozwalają na komfort i swobodę ruchów."
|
||||
RECIPE.model = "models/props_c17/BriefCase001a.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Prowizoryczne okrycie dla Vortigaunta"
|
||||
RECIPE.description = "Proste, zwykłe okrycie. Dobre do tego, by zapewnić ci przytulność w chłodną noc i niewiele więcej."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light02.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Bandaże dla Vortigaunta"
|
||||
RECIPE.description = "Dla rannego lub nie - bandaże spełnią swoją rolę."
|
||||
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_bandage.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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 = "Pas dla Vortigaunta"
|
||||
RECIPE.description = "Pas stworzony do użytku przez ludzi, ale ciekawski Vortigaunt może go przymierzyć."
|
||||
RECIPE.model = "models/willardnetworks/vort_clothingitems/vort_belt.mdl"
|
||||
RECIPE.category = "Odzież"
|
||||
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,100 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_writing_pin"
|
||||
RECIPE.name = "Pinezka do papieru"
|
||||
RECIPE.description = "Pinezka, służy do zawieszania papieru na ścianie czy tablicy."
|
||||
RECIPE.model = "models/items/crossbowrounds.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 2
|
||||
RECIPE.result = {["pin"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_writing_paper"
|
||||
RECIPE.name = "Papier"
|
||||
RECIPE.description = "Papier, na którym można pisać."
|
||||
RECIPE.model = "models/props_c17/paper01.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 3
|
||||
RECIPE.result = {["paper"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_writing_notepad"
|
||||
RECIPE.name = "Notatnik"
|
||||
RECIPE.description = "Notatnik w którym możesz pisać."
|
||||
RECIPE.model = "models/props_lab/clipboard.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
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 = "Pusta książka"
|
||||
RECIPE.description = "Pusta książka, gotowa i czekająca na wypełnienie przez Ciebie."
|
||||
RECIPE.model = "models/willardnetworks/misc/book.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
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 = "Czarny tusz"
|
||||
RECIPE.description = "Wkład do drukarki z czarnym tuszem."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 5
|
||||
RECIPE.result = {["black_ink"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_audiobook_reading"
|
||||
RECIPE.name = "[Odtwarzacz Audio] Naucz się czytać"
|
||||
RECIPE.description = "Słuchanie tego szeleszczącego urządzenia poprawi Twoją zdolność czytania."
|
||||
RECIPE.model = "models/props_lab/reciever01d.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 30
|
||||
RECIPE.result = {["audiobook_reading"] = 1}
|
||||
RECIPE.buyAmount = 1 -- amount TEXT
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "bartering_newspaper_printer"
|
||||
RECIPE.name = "Drukarka gazet"
|
||||
RECIPE.description = "Drukuje gazety. Wymaga papieru, czarnego tuszu i zezwolenia na prowadzenie działalności."
|
||||
RECIPE.model = "models/willardnetworks/plotter.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "bartering"
|
||||
RECIPE.cost = 750
|
||||
RECIPE.result = {["newspaper_printer"] = 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 = "Ptak na szaszłyku"
|
||||
RECIPE.category = "Ptak"
|
||||
RECIPE.description = "Ptak na szaszłyku to delikatne mięso przygotowane w specjalny sposób, by osiągnęło odpowiednią kruchość i aromat. Można go podać z różnymi dodatkami, w zależności od preferencji smakowych."
|
||||
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 = "Pieczony filet z ptaka"
|
||||
RECIPE.category = "Ptak"
|
||||
RECIPE.description = "Filet z ptaka to smaczne i pożywne danie, które można znaleźć w wielu kuchniach świata."
|
||||
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 = "Potrawka z ptaków"
|
||||
RECIPE.category = "Ptak"
|
||||
RECIPE.description = "Potrawka z ptaków to smaczny i pożywny posiłek, który składa się z kawałków mięsa ptaków, warzyw i przypraw. Idealnie sprawdzi się na długich wędrówkach, gdy potrzebujemy odrobinę ciepła i pożywienia."
|
||||
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,112 @@
|
||||
--[[
|
||||
| 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 = "Kanapka z Antliona"
|
||||
RECIPE.category = "Antliony"
|
||||
RECIPE.description = "Może i nie jest daniem najwyższych lotów, ale jest w miarę zjadalne."
|
||||
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 = "Mięso z Antliona na szaszłyku"
|
||||
RECIPE.category = "Antliony"
|
||||
RECIPE.description = "Całkiem smaczne, żylaste mięso z Antliona nabite na szaszłyk. Najważniejsze że nie jest ono syntetyczne jak większość jedzenia w tym świecie."
|
||||
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 = "Pieczone mięso z Antliona"
|
||||
RECIPE.category = "Antliony"
|
||||
RECIPE.description = "Ciepłe, żylaste mięso z Antliona."
|
||||
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 = "Przyprawione mięso Antliona"
|
||||
RECIPE.category = "Antliony"
|
||||
RECIPE.description = "Po dodaniu kilku przypraw, smakuje o niebo lepiej."
|
||||
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 = "Gulasz z Antliona"
|
||||
RECIPE.category = "Antliony"
|
||||
RECIPE.description = "Czemu nie? Pora poeksperymentować! Jak wrażenia?..."
|
||||
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 = 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,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 = "cooking_artificial_skewer"
|
||||
RECIPE.name = "Syntetyczne mięso na szaszłykach"
|
||||
RECIPE.category = "Syntetyczne"
|
||||
RECIPE.description = "Syntetyczne mięso na szaszłykach to opcja dla wegan i wegetarian, która pozwala poczuć smak grillowania, bez uczucia winy wobec zwierząt."
|
||||
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 = 180}, -- full xp
|
||||
{level = 10, exp = 120}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_meatpaste"
|
||||
RECIPE.name = "Syntetyczna pasta mięsna"
|
||||
RECIPE.category = "Syntetyczne"
|
||||
RECIPE.description = "Może i nie jest to jakość znana sprzed okupacji, ale w pewnym sensie przypomina dawne czasy.."
|
||||
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 = 180}, -- full xp
|
||||
{level = 20, exp = 120}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_cheesepaste"
|
||||
RECIPE.name = "Syntetyczna pasta serowa"
|
||||
RECIPE.category = "Syntetyczne"
|
||||
RECIPE.description = "Nie jest to jakiś 'creme de la creme', ale da się zjeść."
|
||||
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 = 180}, -- full xp
|
||||
{level = 20, exp = 120}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_meat"
|
||||
RECIPE.name = "Pieczone syntetyczne mięso"
|
||||
RECIPE.category = "Syntetyczne"
|
||||
RECIPE.description = "Nafaszerowane substancjami chemicznymi i innymi substytutami podtrzymującymi ważność; nie licząc tego, że prawdopodobnie dostaniesz raka - to jest całkiem smaczne."
|
||||
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 = 180}, -- full xp
|
||||
{level = 20, exp = 120}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_stirfry"
|
||||
RECIPE.name = "Syntetyczne mięso z solą i makaronem."
|
||||
RECIPE.category = "Syntetyczne"
|
||||
RECIPE.description = "Raczej nie zalecane jest serwowania tego dania do osób, którzy są koneserami gastronomicznymi."
|
||||
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 = 180}, -- full xp
|
||||
{level = 29, exp = 120}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_artificial_stew"
|
||||
RECIPE.name = "Syntetyczny gulasz mięsny"
|
||||
RECIPE.category = "Syntetyczne"
|
||||
RECIPE.description = "Gulasz powinien zawsze wyjść smaczny, ale ten napewno taki nie jest."
|
||||
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 = 180}, -- full xp
|
||||
{level = 40, exp = 120}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,221 @@
|
||||
--[[
|
||||
| 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 = "Chleb"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Świeżo wypieczony, chrupiący i pięknie pachnący bochen chleba. Po prostu najzwyklejszy chlieb."
|
||||
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 = 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_artcheese"
|
||||
RECIPE.name = "Syntetyczny ser"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Wygląda i pachnie jak normalny ser, ale zdecydowanie smakuje inaczej. Nic dziwnego, trudno w tych czasach o prawdziwą krowę."
|
||||
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 = 250}, -- full xp
|
||||
{level = 10, exp = 125}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_bagel"
|
||||
RECIPE.name = "Bajgiel"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Nigdy nie wiadomo gdzie zaczynają się, a gdzie kończą bajgle, ale zawsze smakują dobrze, zwłaszcza z dodatkiem kremowego masła lub słodkiego dżemu."
|
||||
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 = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pretzel"
|
||||
RECIPE.name = "Precel"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Trzeba uważać, żeby nie zaplątać się w jego skomplikowane kształty, ale nagroda w postaci jego chrupkości jest tego warta."
|
||||
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 = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_croissant"
|
||||
RECIPE.name = "Croissant"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Croissant to taki francuski przysmak, który jest w stanie rozwiązać każdy problem - wystarczy tylko go spróbować, a cały świat wydaje się już dużo piękniejszy i łatwiejszy do przetrwania."
|
||||
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 = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_doughnut"
|
||||
RECIPE.name = "Donut"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Po zjedzeniu jednego z tych kolorowych kółek, trudno się powstrzymać przed zjedzeniem kolejnego, aż do momentu, gdy nie zostaje już nic poza wyrzutami sumienia i pełnym żołądkiem."
|
||||
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 = 250}, -- full xp
|
||||
{level = 40, exp = 125}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_creamtreat"
|
||||
RECIPE.name = "Drożdżówka"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Uwielbiana przez wszystkich łasuchów drożdżówka z budyniem."
|
||||
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 = 300}, -- full xp
|
||||
{level = 40, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_applepie"
|
||||
RECIPE.name = "Szarlotka"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Nie ma nic lepszego niż smak cynamonu i jabłek, które rozgrzewają duszę i wprowadzają nas w stan błogiej nirwany."
|
||||
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 = 350}, -- full xp
|
||||
{level = 45, exp = 175}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sweetroll"
|
||||
RECIPE.name = "Słodka bułka"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Słodka bułka z lukrową polewą, idealna jako dodatek do herbaty."
|
||||
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 = 350}, -- full xp
|
||||
{level = 45, exp = 175}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_cheesecake"
|
||||
RECIPE.name = "Ceglasty sernik"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Solidny sernik, często po prostu nazywany cegłą. Niedobór podstawowych składników do pieczenia doprowadził do dość nietuzinkowych rozwiązań."
|
||||
RECIPE.model = "models/willardnetworks/food/wn_food_cheesecake.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 = 350}, -- full xp
|
||||
{level = 45, exp = 175}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_xenpie"
|
||||
RECIPE.name = "Ciasto Xen"
|
||||
RECIPE.category = "Piekarstwo"
|
||||
RECIPE.description = "Przygoda z Ciastem Xen to jak wchodzenie na nieznany szczyt - nigdy nie wiesz, co cię tam czeka, ale zawsze warto spróbować. Trzeba mieć w sobie odrobinę odwagi, żeby go spróbować."
|
||||
RECIPE.model = "models/willardnetworks/food/xen_pie.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["ing_sweetpastry"] = 1, ["ing_xen_herb"] = 2, ["ing_xenberries"] = 4}
|
||||
RECIPE.result = {["xen_pie"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
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,227 @@
|
||||
--[[
|
||||
| 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 = "Gotowany makaron"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Gotowany makaron, niezależnie od czasów jest bardzo popularnym wyborem kulinarnym."
|
||||
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 = 75}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_toast"
|
||||
RECIPE.name = "Tost"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Chrupiący, smaczny i idealny na każdą porę dnia."
|
||||
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 = 90}, -- full xp
|
||||
{level = 10, exp = 45}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sandwich"
|
||||
RECIPE.name = "Kanapka"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Bardzo popularna w Mieście 2, prosta kanapka z syntetycznego mięsa z serem. Idealna na szybki posiłek w podróży i w pracy."
|
||||
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 = 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_scrambled"
|
||||
RECIPE.name = "Jajecznica"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Najprostsza w świecie jajecznica, kto nie jadł jajecznicy?..."
|
||||
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 = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking__powder_scrambled"
|
||||
RECIPE.name = "Jajecznica w proszku"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Jajecznica w proszku to coś w rodzaju czarnej magii kulinarnych technologii, pozwalająca uzyskać jajeczną masę z proszku i wody. O tym, czy jest smaczna to już inna kwestia."
|
||||
RECIPE.model = "models/willardnetworks/food/eggmix.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.tools = {"tool_fryingpan"}
|
||||
RECIPE.ingredients = {["ing_protein"] = 1, ["ing_margarine"] = 1, ["ing_salt"] = 1, ["artificial_cheese"] = 1}
|
||||
RECIPE.result = {["comfort_scrambled"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_comfort_chicken"
|
||||
RECIPE.name = "Pieczony kurczak"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Pieczony kurczak to idealna potrawa dla tych, którzy lubią czuć się jak drapieżny ptak, a jednocześnie nie chcą ryzykować złapania ptasiej grypy..."
|
||||
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 = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_boiledegg"
|
||||
RECIPE.name = "Gotowane jajko"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Można je zjeść na twardo, na miękko lub zapakować do kieszonki na później, a do tego dostarcza naprawdę dużo białka."
|
||||
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 = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pancakes"
|
||||
RECIPE.name = "Naleśniki"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Naleśniki to taka kulinarna góra lodowa: wydają się proste, ale kryją w sobie ogromną ilość możliwości i smaków. Można je podawać z dżemem, serem, owocami lub nawet mięsem - tylko nie mówcie o tym babci."
|
||||
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 = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_vegsoup"
|
||||
RECIPE.name = "Zupa jarzynowa"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Zupa jarzynowa to taki mały ogródek na talerzu, pełen warzyw, które się znudziły, ale dalej chcą dawać życie i energię. Miejmy nadzieje, że nie będzie za słona."
|
||||
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 = 160}, -- full xp
|
||||
{level = 40, exp = 80}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_fish"
|
||||
RECIPE.name = "Stek z łososia"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Stek z łososia, jednej z ekskluzywniejszych na te czasy ryby. Idealny dla tych, którzy chcą spróbować czegoś nowego i zaskoczyć swoje kubki smakowe."
|
||||
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 = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_beef"
|
||||
RECIPE.name = "Pieczona wołowina"
|
||||
RECIPE.category = "Comfort Food"
|
||||
RECIPE.description = "Pieczona wołowina to taki kulinarny skarb, który trzeba szanować i doceniać, jak wina z dobrego rocznika. Krucha skórka i soczyste wnętrze sprawiają, że ta potrawa jest idealna na elegancką kolację."
|
||||
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 = 250}, -- full xp
|
||||
{level = 45, exp = 150}, -- half xp
|
||||
{level = 50, 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 = "Kubek herbaty"
|
||||
RECIPE.category = "Napoje"
|
||||
RECIPE.description = "Zazwyczaj herbata ma gorzko-słodki smak, jak samo życie, ale ta napewno nie jest ani trochę słodka."
|
||||
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 = 200}, -- full xp
|
||||
{level = 14, exp = 100}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_coffee"
|
||||
RECIPE.name = "Kubek kawy"
|
||||
RECIPE.category = "Napoje"
|
||||
RECIPE.description = "Kubek kawy, idealna na początek dnia."
|
||||
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 = 200}, -- full xp
|
||||
{level = 14, exp = 100}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,141 @@
|
||||
--[[
|
||||
| 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 = "Proteinowy Zabójca"
|
||||
RECIPE.description = "Sproszkowane białko zmieszane z lekami przeciwbólowymi i Wodą Breena."
|
||||
RECIPE.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
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 = 400}, -- full xp
|
||||
{level = 15, exp = 250}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_spikedcoffee"
|
||||
RECIPE.name = "Zaprawiony kubek kawy"
|
||||
RECIPE.description = "Ciepła kubek kawy pomaga zachować czujność i przytomność w tych dziwnych czasach, ta wydaje się nawet bardziej niż zwykle."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
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 = 300}, -- full xp
|
||||
{level = 15, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_spikedtea"
|
||||
RECIPE.name = "Zaprawiony kubek herbaty"
|
||||
RECIPE.description = "Komfortowa i ciepła w dotyku, ale z cierpkim posmakiem."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
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 = 300}, -- full xp
|
||||
{level = 15, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_injectedapple"
|
||||
RECIPE.name = "Jabłuszko"
|
||||
RECIPE.description = "Wygląda jak każde inne jabłko, choć z nieco zabawnym posmakiem..."
|
||||
RECIPE.model = "models/willardnetworks/food/apple.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["fruit_apple"] = 1, ["comp_syringe"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_injectedapple"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full xp
|
||||
{level = 15, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_sunshinevodka"
|
||||
RECIPE.name = "Wódka 'Sunshine'"
|
||||
RECIPE.description = "Wódka 'Sunshine' to napój, który nieraz potrafi rozgrzać i ożywić nawet najbardziej zmarznięte ciała. To idealny wybór dla tych, którzy lubią czyste i mocne alkohole."
|
||||
RECIPE.model = "models/willardnetworks/food/vodka.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_proc_vodka"] = 1, ["ing_coffee_powder"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_sunshinevodka"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 350}, -- full xp
|
||||
{level = 20, exp = 150}, -- 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 = "Nareszcie możesz połączyć się z wszechświatem w całość... Przynajmniej przez chwilę..."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["drink_milk"] = 1, ["drink_bobenergy"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_milkyway"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 300}, -- full xp
|
||||
{level = 20, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_happypie"
|
||||
RECIPE.name = "Szczęśliwy placuszek"
|
||||
RECIPE.description = "Pyszna szarlotka, która z pewnością sprawi Ci radość."
|
||||
RECIPE.model = "models/willardnetworks/food/pie.mdl"
|
||||
RECIPE.category = "Narkotyzowana żywność"
|
||||
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 = 300}, -- full xp
|
||||
{level = 25, exp = 150}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,47 @@
|
||||
--[[
|
||||
| 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_potato"
|
||||
RECIPE.name = "Pieczony ziemniak"
|
||||
RECIPE.category = "Rolnictwo"
|
||||
RECIPE.description = "Pieczona grula."
|
||||
RECIPE.model = "models/mosi/fnv/props/potato.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["veg_potato"] = 1}
|
||||
RECIPE.result = {["baking_potato"] = 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()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_tomato"
|
||||
RECIPE.name = "Świeży pomidor"
|
||||
RECIPE.category = "Rolnictwo"
|
||||
RECIPE.description = "Pomidor świeżo zerwany, a następnie oczyszczony wodą."
|
||||
RECIPE.model = "models/a31/fallout4/props/plants/tato_item.mdl"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["veg_tomato"] = 1}
|
||||
RECIPE.result = {["baking_tomato"] = 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()
|
||||
@@ -0,0 +1,112 @@
|
||||
--[[
|
||||
| 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 = "Kanapka z Headcraba"
|
||||
RECIPE.category = "Headcraby"
|
||||
RECIPE.description = "Kanapka z headcraba to pyszny przysmak, idealny wybór dla miłośników egzotycznych smaków i niebanalnych doznań kulinaranych."
|
||||
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 = 350}, -- full xp
|
||||
{level = 10, exp = 150}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_skewer"
|
||||
RECIPE.name = "Headcrab na szaszłyku"
|
||||
RECIPE.category = "Headcraby"
|
||||
RECIPE.description = "Niezwykły skorupiak - stwór z kosmosu, uchwycony na kiju. Jest to wspaniała okazja, by spróbować czegoś nowego i zaskoczyć swoje podniebienie niezwykłym smakiem pozaziemskiej egzotyki i mniej lub bardziej prawdopodobnego rozwolnienia."
|
||||
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 = 350}, -- full xp
|
||||
{level = 10, exp = 150}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_fillet"
|
||||
RECIPE.name = "Pieczony filet z Headcraba"
|
||||
RECIPE.category = "Headcraby"
|
||||
RECIPE.description = "Filet z Headcraba, delikatnie upieczony, będzie idealnym dodatkiem do twojego ekwipunku, gdy chcesz poczuć się jak prawdziwy gourmet na wyprawie w dzikie tereny."
|
||||
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 = 350}, -- full xp
|
||||
{level = 20, exp = 150}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_potluck"
|
||||
RECIPE.name = "Gulasz z Headcraba"
|
||||
RECIPE.category = "Headcraby"
|
||||
RECIPE.description = "Gulasz z Headcraba to idealny przysmak dla miłośników kuchni pozaziemskiej, każda kolejna porcja zaskakuje smakiem i konsystencją."
|
||||
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 = 300}, -- full xp
|
||||
{level = 29, exp = 150}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_headcrab_jambalaya"
|
||||
RECIPE.name = "Jambalaya z Headcraba"
|
||||
RECIPE.category = "Headcraby"
|
||||
RECIPE.description = "Jambalaya z Headcraba to potrawa, która z połączeniem pikantnego ryżu, aromatycznych przypraw i mięsa z pewnością zaspokoi Twoje smakowe pragnienia i sprawi, że poczujesz się jak prawdziwy kucharz kuchni Cajun."
|
||||
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 = 300}, -- full xp
|
||||
{level = 40, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,103 @@
|
||||
--[[
|
||||
| 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 = "Ciasto na chleb"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.description = "Ciasto na chleb czekające na wypieczenie w piecu."
|
||||
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 = 200}, -- full xp
|
||||
{level = 10, exp = 100}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_pastry_dough"
|
||||
RECIPE.name = "Ciasto cukiernicze"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.description = "Ciasto cukiernicze składające się z jajek, mleka, mąki i margaryny to idealny składnik do przygotowania pysznych wypieków jak croissanty czy bajgle."
|
||||
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 = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sweet_dough"
|
||||
RECIPE.name = "Słodzone ciasto cukiernicze"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.description = "Słodzone ciasto cukiernicze to składnik, który pozwala na uzyskanie pysznego i słodkiego w smaku ciasta. Jest to połączenie mąki, cukru, jajek, masła i innych aromatycznych dodatków, które sprawiają, że ciasto smakuje wyjątkowo słodko i aromatycznie."
|
||||
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 = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sauce"
|
||||
RECIPE.name = "Baza sosów"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.description = "Baza sosów to składnik, który stanowi podstawę dla wielu różnych rodzajów sosów. Jest to zazwyczaj mieszanka różnych aromatycznych warzyw i przypraw, która może być użyta do przygotowania sosów mięsnych, warzywnych, czy też owocowych. Dzięki niej każdy kucharz może stworzyć własny unikalny sos, który idealnie dopasuje się do swojego dania."
|
||||
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 = 200}, -- full xp
|
||||
{level = 35, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_ing_sauce_makeshift"
|
||||
RECIPE.name = "Prowizoryczna baza do sosów"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.description = "Prowizoryczna baza sosów to zestaw przypadkowych składników, które można wykorzystać do stworzenia kreatywnych sosów. W skład mogą wchodzić m.in. ketchup, musztarda, majonez, keczup pikantny, jogurt, ocet balsamiczny, czosnek i wiele innych."
|
||||
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_chemcomp"] = 1}
|
||||
RECIPE.result = {["ing_sauce"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "cooking"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 35, exp = 100}, -- half xp
|
||||
{level = 45, 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 = "Pijawka na szaszłyku"
|
||||
RECIPE.category = "Pijawki"
|
||||
RECIPE.description = "Delikatnie przyprawiony i grillowany kawałek mięsa o długim, wędlanym kształcie i który może wywołać mieszane uczucia u niektórych osób."
|
||||
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 = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_roast"
|
||||
RECIPE.name = "Pieczona pijawka"
|
||||
RECIPE.category = "Pijawki"
|
||||
RECIPE.description = "Pieczona pijawka to przysmak dla odważnych poszukiwaczy przygód i nowych smaków. Zaskakująco miękka i delikatna w smaku."
|
||||
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 = 200}, -- full xp
|
||||
{level = 20, exp = 100}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_goulash"
|
||||
RECIPE.name = "Gulasz z pijawek"
|
||||
RECIPE.category = "Pijawki"
|
||||
RECIPE.description = "To wykwintna potrawa dla odważnych i nietypowych smakoszy. Pijawki zmiękczone w aromatycznym sosie i podane z ulubionymi dodatkami - to pyszna i niezapomniana uczta."
|
||||
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 = 160}, -- full xp
|
||||
{level = 29, exp = 80}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_leech_stew"
|
||||
RECIPE.name = "Kremowy gulasz z pijawek"
|
||||
RECIPE.category = "Pijawki"
|
||||
RECIPE.description = "Kremowy gulasz z pijawek to pyszne danie dla odważnych smakoszy - delikatne i aksamitne połączenie pikantnych przypraw z kremowym sosem oraz mięsistymi kawałkami pijawek, które rozpływają się w ustach."
|
||||
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 = 160}, -- full xp
|
||||
{level = 40, exp = 80}, -- 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 = "Warzywa marynowane"
|
||||
RECIPE.category = "Marynowane"
|
||||
RECIPE.description = "Warzywa marynowane to kolorowe i smaczne dodatki do każdego posiłku, które można znaleźć w ekwipunku. Wzbogacone w intensywny smak i aromat, doskonale sprawdzą się jako przekąska lub dodatek do sałatek czy dań głównych."
|
||||
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 = 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_pickled_egg"
|
||||
RECIPE.name = "Jajko marynowane"
|
||||
RECIPE.category = "Marynowane"
|
||||
RECIPE.description = "Jajko marynowane to delikatne i jednocześnie intensywnie smakujące jajko, które poddano procesowi marynowania w roztworze z octu, cukru i przypraw. Jest to idealny dodatek do kanapek czy sałatek, a także ciekawa przekąska na przyjęcia. Jest to popularny posiłek w Mieście 2."
|
||||
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 = 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_pickled_eggmush"
|
||||
RECIPE.name = "Kiszone jajka"
|
||||
RECIPE.category = "Marynowane"
|
||||
RECIPE.description = "Kiszone jajka to oryginalny przepis na jajka, które po moczeniu w soli i przyprawach nabierają wyjątkowego, intensywnego smaku. W sam raz dla miłośników kwaśnych i pikantnych smaków."
|
||||
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 = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "cooking_pickled_leech"
|
||||
RECIPE.name = "Kiszona pijawka"
|
||||
RECIPE.category = "Marynowane"
|
||||
RECIPE.description = "Kiszona pijawka to nietypowa przekąska z pewnymi wątpliwymi walorami smakowymi. Jednak, dla odważnych poszukiwaczy nowych doznań kulinarnych, może stanowić wyjątkowe doświadczenie."
|
||||
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 = 160}, -- full xp
|
||||
{level = 20, exp = 80}, -- 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 = "Podrzyj "..v.name
|
||||
RECIPE.description = "Podrzyj "..v.name.." na szmaty."
|
||||
RECIPE.model = v.model
|
||||
RECIPE.category = "Podrzyj"
|
||||
RECIPE.subcategory = "Odzież"
|
||||
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,841 @@
|
||||
--[[
|
||||
| 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 = "Rozłóż telewizor"
|
||||
RECIPE.description = "Zepsuty telewizor z dawnych lat, jest bezużyteczny"
|
||||
RECIPE.model = "models/props_wasteland/controlroom_monitor001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_tv"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1, ["comp_plastic"] = 2, ["comp_scrap"] = 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 = "Rozłóż starą drewnianą zabawkę"
|
||||
RECIPE.description = "W tych czasach ciężko takie znaleźć, jest wyrobiona z drewna."
|
||||
RECIPE.model = "models/props_c17/playgroundTick-tack-toe_block01a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_toy"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_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 = "Rozłóż oponę"
|
||||
RECIPE.description = "Przypomina Ci stare czasy, wtedy gdy samochody jeszcze istniały."
|
||||
RECIPE.model = "models/props_vehicles/carparts_tire01a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż puszkę"
|
||||
RECIPE.description = "Mała aluminiowa puszka po jedzeniu. Jest tobie nieprzydatna."
|
||||
RECIPE.model = "models/props_junk/garbage_metalcan002a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_tincan"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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 = "Rozłóż opakowanie"
|
||||
RECIPE.description = "Znalezione w śmieciach, pewnie było w nim jedzenie."
|
||||
RECIPE.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż mały karton"
|
||||
RECIPE.description = "Mały karton w którym przenosiło się produkty. Jest pusty."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż buta"
|
||||
RECIPE.description = "Brązowy but, pewnie należał do kogoś"
|
||||
RECIPE.model = "models/props_junk/Shoe001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż zniszczony odbiornik"
|
||||
RECIPE.description = "Zniszczona część elektroniki, nie nadaje się do użytku"
|
||||
RECIPE.model = "models/props_lab/reciever01c.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_receiver"] = 1}
|
||||
RECIPE.result = {["comp_screws"] = 1, ["comp_electronics"] = 1, ["comp_scrap"] = 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 = "Rozłóż plastikowe wiadro"
|
||||
RECIPE.description = "Brudne plastikowe wiadro, prawdopodobnie używane do przechowywania chemikaliów."
|
||||
RECIPE.model = "models/props_junk/plasticbucket001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż plastikową skrzynkę"
|
||||
RECIPE.description = "Plastikowy pojemnik. Nie jest on dla ciebie wiele wart."
|
||||
RECIPE.model = "models/props_junk/PlasticCrate01a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż doniczkę"
|
||||
RECIPE.description = "Donica używana do sadzenia i uprawiania ogrodu. Nie ma ona żadnego zastosowania."
|
||||
RECIPE.model = "models/props_junk/terracotta01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_plantpot"] = 1}
|
||||
RECIPE.result = {["comp_crafting_water"] = 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 = "Rozłóż cienką metalową rurę"
|
||||
RECIPE.description = "Nędzna metalowa rura. Nie jest przydatna jako broń."
|
||||
RECIPE.model = "models/props_canal/mattpipe.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_pipe"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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_junk_paintcan"
|
||||
RECIPE.name = "Rozłóż pustą puszkę po farbie"
|
||||
RECIPE.description = "Pusta puszka po farbie. Jest dla ciebie bezużyteczna."
|
||||
RECIPE.model = "models/props_junk/metal_paintcan001b.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż kubek"
|
||||
RECIPE.description = "Pusty plastikowy kubek."
|
||||
RECIPE.model = "models/props_junk/garbage_coffeemug001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż monitor"
|
||||
RECIPE.description = "Było wiele planów dotyczących tego urządzenia, niestety nigdy nie było użyte powszechnie."
|
||||
RECIPE.model = "models/props_lab/monitor01a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_pc_monitor"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 2, ["comp_electronics"] = 1, ["comp_scrap"] = 2, ["comp_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 = "Rozłóż lampkę"
|
||||
RECIPE.description = "Zepsuta i bezużyteczna, ta lampka nie spełnia już swojej funkcji."
|
||||
RECIPE.model = "models/props_lab/desklamp01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_lamp"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 2, ["comp_screws"] = 1, ["comp_scrap"] = 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 = "Rozłóż zepsutą klawiaturę"
|
||||
RECIPE.description = "Zepsuta klawiatura, bez żadnej wartości."
|
||||
RECIPE.model = "models/props_c17/computer01_keyboard.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_keyboard"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1, ["comp_plastic"] = 2, ["comp_scrap"] = 2}
|
||||
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 = "Rozłóż plastikowy baniak"
|
||||
RECIPE.description = "Pusty plastikowy baniak, potrzebuje dobrego czyszczenia."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż pusty słoik"
|
||||
RECIPE.description = "Pusty słoik, nadający się do przechowywania dżemu lub czegoś podobnego. Jest bezużyteczny."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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_empty_bottle"
|
||||
RECIPE.name = "Rozłóż butelke po burbonie"
|
||||
RECIPE.description = "Stara butelka po trunku."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_empty_bottle"] = 1}
|
||||
RECIPE.result = {["comp_crafting_water"] = 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 = "Rozłóż pusty karton po soku"
|
||||
RECIPE.description = "Pusty karton, dawniej miał przydatną zawartość."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle003a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż pustą ampułkę leczniczą"
|
||||
RECIPE.description = "Rozłóż pustą ampułkę leczniczą."
|
||||
RECIPE.model = "models/willardnetworks/syringeemptyy.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_emptyvial"] = 1}
|
||||
RECIPE.result = {["comp_crafting_water"] = 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 = "Rozłóż metalową zębatkę"
|
||||
RECIPE.description = "Kawałek metalowego sprzętu, który kiedyś nadawał się do czegoś. Teraz jest bezwartościowy."
|
||||
RECIPE.model = "models/props_wasteland/gear02.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gear"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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 = "Rozłóż pusty kanister"
|
||||
RECIPE.description = "Pusty kanister, używany był do przenoszenia benzyny lub innego płynu."
|
||||
RECIPE.model = "models/props_junk/metalgascan.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gascan"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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 = "Rozłóż drzwi od lodówki"
|
||||
RECIPE.description = "Zepsute drzwi które kiedyś były częścią lodówki, są ciężkie i zimne w dotyku."
|
||||
RECIPE.model = "models/props_interiors/refrigeratordoor02a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_fridgedoor"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 4, ["comp_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 = "Rozłóż ramę"
|
||||
RECIPE.description = "Drewniana rama. Prawdopodobnie używana do montażu okna. Teraz jest bezużyteczna."
|
||||
RECIPE.model = "models/props_c17/frame002a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_frame"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_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_tattered_drawer"
|
||||
RECIPE.name = "Rozłóż obdartą szufladę"
|
||||
RECIPE.description = "Jeszcze nie tak dawno była w czyimś domu."
|
||||
RECIPE.model = "models/props_c17/FurnitureDrawer001a_Chunk01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_tattered_drawer"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 2, ["comp_screws"] = 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_doll"
|
||||
RECIPE.name = "Rozłóż lalkę"
|
||||
RECIPE.description = "Stara, zniszczona lalka dawno zapomnianego pokolenia."
|
||||
RECIPE.model = "models/props_c17/doll01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż plastikowy kubek po kawie"
|
||||
RECIPE.description = "Pusty kubek po kawie."
|
||||
RECIPE.model = "models/willardnetworks/food/coffee.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż części komputerowe"
|
||||
RECIPE.description = "Stare przedwojenne części do komputerów z epoki wczesnych lat 2000. Raczej mało zaskakujące."
|
||||
RECIPE.model = "models/props_lab/harddrive01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computerparts"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 1}
|
||||
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 = "Rozłóż komputer"
|
||||
RECIPE.description = "Powinien dać się ponownie uruchomić lub rozłożony na zasoby."
|
||||
RECIPE.model = "models/props_lab/harddrive01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computer_tower"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 2, ["comp_scrap"] = 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 = "Rozłóż zegar"
|
||||
RECIPE.description = "Stary zepsuty zegar."
|
||||
RECIPE.model = "models/props_combine/breenclock.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_clock"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 2, ["comp_electronics"] = 1, ["comp_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 = "Rozłóż pusty karton po mleku"
|
||||
RECIPE.description = "Mały plastikowy kartonik. Prawdopodobnie było w nim coś w formie płynnej."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton002a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż kartonowe pudło"
|
||||
RECIPE.description = "Kartonowe pudło, służyło do przenoszenia rzeczy."
|
||||
RECIPE.model = "models/props_junk/cardboard_box003a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż metalowe wiadro"
|
||||
RECIPE.description = "Metalowe wiadro używane do przenoszenia płynów lub przedmiotów."
|
||||
RECIPE.model = "models/props_junk/MetalBucket01a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_bucket"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 3}
|
||||
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_empty_can"
|
||||
RECIPE.name = "Rozłóż puszkę wody Boba"
|
||||
RECIPE.description = "Rozłóż pustą puszkę po wodzie Boba."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["junk_empty_can"] = 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_biolock"
|
||||
RECIPE.name = "Rozłóż zepsutego Biolocka"
|
||||
RECIPE.description = "Zepsuty Biolock, jaka szkoda."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 4, ["comp_electronics"] = 2, ["comp_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_cigarettepack"
|
||||
RECIPE.name = "Rozłóż paczkę papierosów"
|
||||
RECIPE.description = "Porwij pustą paczkę po papierosach, palenie szkodzi."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż pluszowego żółwia"
|
||||
RECIPE.description = "Miekki pluszak żółwia, nie ma zastosowania."
|
||||
RECIPE.model = "models/willardnetworks/skills/turtle.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
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 = "Rozłóż akumulator"
|
||||
RECIPE.description = "Stary akumulator z starego świata."
|
||||
RECIPE.model = "models/Items/car_battery01.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Śmieci"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_battery"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 2, ["comp_chemicals"] = 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 = 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 = "Rozłóż łyżkę"
|
||||
RECIPE.description = "Rozłóż łyżkę pozyskując z niej materiały."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
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 = "Rozłóż walizkę"
|
||||
RECIPE.description = "Rozłóż walizkę pozyskując z niej materiały."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
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 = "Rozłóż patelnię"
|
||||
RECIPE.description = "Rozłóż patelnię pozyskując z niej materiały."
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_fryingpan"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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 = "Rozłóż nóż kuchenny"
|
||||
RECIPE.description = "Rozłóż nóż kuchenny pozyskując z niego materiały."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_knife"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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 = "Rozłóż latarkę"
|
||||
RECIPE.description = "Rozłóż latarkę pozyskując z niej materiały."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
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 = "Rozłóż urządzenie zgłaszające"
|
||||
RECIPE.description = "Rozbij urządzenie zgłaszające wydane przez kombinat."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
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 = "Rozłóż nożyczki"
|
||||
RECIPE.description = "Rozłóż nożyczki pozyskując z nich materiały."
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
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 = "Rozłóż garnek"
|
||||
RECIPE.description = "Rozłóż garnek pozyskując z niego materiały."
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_cookingpot"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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 = "Rozłóż czajnik"
|
||||
RECIPE.description = "Rozłóż czajnik pozyskując z niego materiały."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Narzędzia"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_kettle"] = 1}
|
||||
RECIPE.result = {["comp_scrap"] = 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,124 @@
|
||||
--[[
|
||||
| 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 = "Pociski kalibru .357"
|
||||
RECIPE.description = "Pociski .357 używane w rewolwerach."
|
||||
RECIPE.model = "models/items/357ammo.mdl"
|
||||
RECIPE.category = "Amunicja"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 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 = "Amunicja snajperska"
|
||||
RECIPE.description = "Naboje do broni snajperskiej."
|
||||
RECIPE.model = "models/items/sniper_round_box.mdl"
|
||||
RECIPE.category = "Amunicja"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2, ["comp_explosive"] = 1}
|
||||
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 = "Amunicja PM"
|
||||
RECIPE.description = "Naboje do pistoletu maszynowego."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Amunicja"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2}
|
||||
RECIPE.result = {["bullets_smg1"] = 60}
|
||||
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 = "Amunicja Karabinowa"
|
||||
RECIPE.description = "Naboje do Karabinu"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Amunicja"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 3,}
|
||||
RECIPE.result = {["bullets_assaultrifle"] = 60}
|
||||
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 = "Amunicja kalibru 9mm"
|
||||
RECIPE.description = "Naboje do pistoletu."
|
||||
RECIPE.model = "models/items/boxsrounds.mdl"
|
||||
RECIPE.category = "Amunicja"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["bullets_pistol"] = 60}
|
||||
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()
|
||||
RECIPE.uniqueID = "rec_ammo_buckshot"
|
||||
RECIPE.name = "Amunicja śrutowa do strzelb"
|
||||
RECIPE.description = "Pociski z śrutem zapakowane w pudełko."
|
||||
RECIPE.model = "models/Items/BoxBuckshot.mdl"
|
||||
RECIPE.category = "Amunicja"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_alcohol"] = 2, ["comp_explosive"] = 1}
|
||||
RECIPE.result = {["bullets_buckshot"] = 24}
|
||||
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()
|
||||
@@ -0,0 +1,356 @@
|
||||
--[[
|
||||
| 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 = "Lekka niebieska kamizelka"
|
||||
RECIPE.description = "Lekka niebieska kamizelka, często noszona przez ruch oporu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_2.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["torso_blue_rebel_uniform"] = 1, ["comp_adhesive"] = 1, ["comp_iron"] = 4, ["comp_rivbolts"] = 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 = "Lekka zielona kamizelka"
|
||||
RECIPE.description = "Lekka zielona kamizelka, często noszona przez ruch oporu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_1.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_green_rebel_uniform"] = 1, ["comp_adhesive"] = 1, ["comp_iron"] = 4, ["comp_rivbolts"] = 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 = "Lekka kamizelka z oznaczeniem medyka"
|
||||
RECIPE.description = "Lekka kamizelka z medycznym krzyżem, często noszona przez medyków ruchu oporu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_medic.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_medical_rebel_uniform"] = 1, ["comp_adhesive"] = 1, ["comp_iron"] = 4, ["comp_rivbolts"] = 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()
|
||||
/*
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_c8_com_rebel"
|
||||
RECIPE.name = "C8 Command Unit suit paintjob"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_c8_com"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c8_cp_rebel"
|
||||
RECIPE.name = "C8 CP suit paintjob"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_c8_cp"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c8_cpt_rebel"
|
||||
RECIPE.name = "C8 CPT suit paintjob"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_c8_cpt"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c8_riot_rebel"
|
||||
RECIPE.name = "C8 riot suit paintjob"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_c8_riot"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c8_rl_rebel"
|
||||
RECIPE.name = "C8 RL suit paintjob"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_c8_rl"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c24_com_rebel"
|
||||
RECIPE.name = "Malowanie średniego munduru jednostki Dowodzącej C24"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_com"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c24_com_rebel2"
|
||||
RECIPE.name = "Malowanie lekkiego munduru jednostki Dowodzącej C24"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_cp_com"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c24_riot_rebel"
|
||||
RECIPE.name = "Malowanie munduru Riot C24"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_cp_riot"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_c24_cp_rebel"
|
||||
RECIPE.name = "Malowanie mundur CP C24"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_cp"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_mask_com_rebel"
|
||||
RECIPE.name = "Odzysk maski jednostki Dowódzctwa"
|
||||
RECIPE.description = "Maska Civil Protection, która została odzyskana i pomalowana, aby łatwo zidentyfikować kogoś jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice/n7_cp_gasmask7.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["mask_com"] = 1}
|
||||
RECIPE.result = {["mask_com_rebel"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_mask_cp_rebel"
|
||||
RECIPE.name = "Odzysk maski CP"
|
||||
RECIPE.description = "Maska Civil Protection, która została odzyskana i pomalowana, aby łatwo zidentyfikować kogoś jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice/n7_cp_gasmask1.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["mask_cp"] = 1}
|
||||
RECIPE.result = {["mask_cp_rebel"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_mask_ota_rebel"
|
||||
RECIPE.name = "Odzysk maski OTA"
|
||||
RECIPE.description = "Maska OTA, która została odzyskana i pomalowana, tak aby łatwo zidentyfikować noszącego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice/n7_cp_gasmask4.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["mask_ota"] = 1, }
|
||||
RECIPE.result = {["mask_ota_rebel"] = 1, ["comp_electronics"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_cpt_rebel"
|
||||
RECIPE.name = "Malowanie munduru CPT"
|
||||
RECIPE.description = "Mundur Civil Protection, który został pomalowany, tak aby łatwo zidentyfikować nosząego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["uniform_ofc"] = 1, ["comp_fabric"] = 1, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["uniform_cp_riot_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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_repair_cp_rebel"
|
||||
RECIPE.name = "Naprawa munduru CP"
|
||||
RECIPE.description = "Mundur Civil Protection, który został naprawiony i pomalowany, tak aby łatwo zidentyfikować noszącego jako bojownika ruchu oporu."
|
||||
RECIPE.model = "models/wn7new/metropolice_c8/cpuniform.mdl"
|
||||
RECIPE.category = "Pancerz"
|
||||
RECIPE.ingredients = {["broken_cpuniform"] = 1, ["comp_adhesive"] = 1, ["comp_steel"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["uniform_cp_rebel"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
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,57 @@
|
||||
--[[
|
||||
| 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 = "Paczka papierosów bez oznaczeń"
|
||||
RECIPE.description = "Może zerwiemy oznaczenia kombinatu ze wszystkiego..."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_1.mdl"
|
||||
RECIPE.category = "Papierosy"
|
||||
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,334 @@
|
||||
--[[
|
||||
| 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 = "Wzmocnione niebieskie spodnie"
|
||||
RECIPE.description = "Wzmocnione niebieskie spodnie, często zakładane przez ruch oporu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel2.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Wzmocnione czarne spodnie"
|
||||
RECIPE.description = "Wzmocnione czarne spodnie, często zakładane przez ruch oporu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel3.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Wzmocnione zielone spodnie"
|
||||
RECIPE.description = "Wzmocnione zielone spodnie, często zakładane przez ruch oporu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel1.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Zielony uniform ruchu oporu"
|
||||
RECIPE.description = "Zielony uniform z paskami oraz miejscem na insygnie."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel02.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["denim_green"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_iron"] = 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 = "Niebieski uniform ruchu oporu"
|
||||
RECIPE.description = "Niebieski uniform z paskami oraz miejscem na insygnie."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel01.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["denim_blue"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_iron"] = 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 = "Medyczny uniform ruchu oporu"
|
||||
RECIPE.description = "Medyczny uniform z paskami oraz miejscem na insygnie."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebelmedic.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["torso_medic_shirt"] = 1, ["comp_adhesive"] = 2, ["comp_iron"] = 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_helmet"
|
||||
RECIPE.name = "Hełm"
|
||||
RECIPE.description = "Metalowy hełm, chroni twoją głowę przed spadającymi przedmiotami oraz odłamkami."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["head_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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_medichelmet"
|
||||
RECIPE.name = "Hełm medyka"
|
||||
RECIPE.description = "Metalowy hełm z oznaczeniem medyka, chroni twoją głowę przed spadającymi przedmiotami oraz odłamkami."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet_med.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 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()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_blue"
|
||||
RECIPE.name = "Niebieska czapka"
|
||||
RECIPE.description = "Niebieska czapka, chroni twoją głowę przed zimnem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Zielona czapka"
|
||||
RECIPE.description = "Zielona czapka, chroni twoją głowę przed zimnem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Czerwona czapka"
|
||||
RECIPE.description = "Czerwona czapka, chroni twoją głowę przed zimnem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Brązowa czapka"
|
||||
RECIPE.description = "Brązowa czapka, chroni twoją głowę przed zimnem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Szara czapka"
|
||||
RECIPE.description = "Szara czapka, chroni twoją głowę przed zimnem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Czerwona bandana zawinięta wokół twoich ust i nosa, chroni w małym stopniu przed zarodnikami."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_facewrap.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Rękawiczki bez palców"
|
||||
RECIPE.description = "Para czarnych rękawiczek z wyciętymi palcami."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove_fingerless.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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 = "Brązowy płaszcz"
|
||||
RECIPE.description = "Brązowy znoszony płaszcz, w miare chroni przed deszczem."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_fabric"] = 2, ["comp_adhesive"] = 1, ["comp_iron"] = 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 = "Koszula medyka"
|
||||
RECIPE.description = "Biała koszula z krzyżami medyka na ramieniu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_citizen_medic.mdl"
|
||||
RECIPE.category = "Ubrania ruchu oporu"
|
||||
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,223 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
-- Metal
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_iron"
|
||||
RECIPE.name = "Żelazo"
|
||||
RECIPE.description = "Żelazo zrobione z materiałów z recyklingu, cięższe i wytrzymalsze niż wcześniej."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 4, ["comp_screws"] = 1}
|
||||
RECIPE.result = {["comp_iron"] = 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_steel"
|
||||
RECIPE.name = "Stal"
|
||||
RECIPE.description = "Hartowana stal wykonana przez doskonałego rafinatora. Niezwykle wytrzymałe i świetnie wykonane."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 4, ["comp_rivbolts"] = 1}
|
||||
RECIPE.result = {["comp_steel"] = 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()
|
||||
|
||||
-- Plastic
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_refined_plastic"
|
||||
RECIPE.name = "Kawałek plastiku"
|
||||
RECIPE.description = "Kawałek plastiku zrobiony z plastikowych śmieci."
|
||||
RECIPE.model = "models/props_junk/garbage_bag001a.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4, ["comp_screws"] = 1}
|
||||
RECIPE.result = {["comp_refined_plastic"] = 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()
|
||||
|
||||
-- Nails
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_screws"
|
||||
RECIPE.name = "Pudełko z wkrętami"
|
||||
RECIPE.description = "Pudełko z wkrętami. Lekko zardzewiałe."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_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_rivbolts"
|
||||
RECIPE.name = "Pudełko z nitami i śrubami"
|
||||
RECIPE.description = "Pudełko wytrzymałych śrub, przydatne dla doświadczonych majsterkowiczów."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_screws"] = 4, ["comp_iron"] = 1}
|
||||
RECIPE.result = {["comp_rivbolts"] = 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()
|
||||
|
||||
-- Cloth
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_stitched_cloth"
|
||||
RECIPE.name = "Zszyty materiał"
|
||||
RECIPE.description = "Kawałek zszytego materiału, wytrzymalszy niż wcześniej."
|
||||
RECIPE.model = "models/willardnetworks/skills/stitched_cloth.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
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 = "Tkanina"
|
||||
RECIPE.description = "Kawałek tkaniny, jest dosyć miękka."
|
||||
RECIPE.model = "models/willardnetworks/skills/fabric.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
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()
|
||||
|
||||
-- Weapons
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_explosive_material"
|
||||
RECIPE.name = "Materiał wybuchowy"
|
||||
RECIPE.description = "Troche miękkiego materiału wybuchowego, nie baw się w bombermana."
|
||||
RECIPE.model = "models/willardnetworks/skills/explosive_material.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 4, ["comp_adhesive"] = 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 = "Części do broni"
|
||||
RECIPE.description = "Części używane do stworzenia broni."
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 2, ["comp_rivbolts"] = 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()
|
||||
|
||||
-- charcoal
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_charcoal"
|
||||
RECIPE.name = "Węgiel drzewny"
|
||||
RECIPE.description = "Zamień drewno w węgiel drzewny używając ciepła oraz chemii."
|
||||
RECIPE.model = "models/willardnetworks/props/charcoal.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["comp_wood"] = 2, ["comp_chemcomp"] = 1}
|
||||
RECIPE.result = {["comp_charcoal"] = 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_adhesive"
|
||||
RECIPE.name = "Klej"
|
||||
RECIPE.description = "Klej do sklejania przedmiotów. Bardzo klejący."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Komponenty"
|
||||
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["comp_adhesive"] = 1}
|
||||
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 = "Ładunek EMP"
|
||||
RECIPE.description = "Mały jednorazowy ładunek elektromagnetyczny, służy do wyłączenia elektroniki w okolicy detonacji. Można także użyć ładunek na technologii Kombinatu - jest w stanie wyłączyć pola siłowe na 5 minut, wieżyczki na 10 minut i wyłączyć skanery na stałe."
|
||||
RECIPE.model = "models/Items/car_battery01.mdl"
|
||||
RECIPE.category = "Przedmioty RP"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_steel"] = 3, ["comp_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,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 = "rec_elec_computer"
|
||||
RECIPE.name = "Komputer"
|
||||
RECIPE.description = "Odnowiony komputer z dostępem do notatek, chodzi na systemie zmodyfikowanym przez Uniwersalną Unię. Przydatny w sklepach."
|
||||
RECIPE.model = "models/willardnetworks/props/willard_computer.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 2, ["comp_electronics"] = 4, ["comp_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 = "Tuner radiowy zatwierdzony przez Kombinat"
|
||||
RECIPE.description = "Tuner radiowy, za pomocą którego można zmieniać częstotliwości odbieranych przez radio, na które można się dostroić."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_electronics"] = 10, ["comp_screws"] = 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 = "Tuner radiowy ruchu oporu"
|
||||
RECIPE.description = "Tuner radiowy, za pomocą którego można dowolnie zmieniać częstotliwości odbieranych przez radio."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_electronics"] = 12, ["comp_rivbolts"] = 1, ["comp_adhesive"] = 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 = "Krótkofalówka"
|
||||
RECIPE.description = "Prawidłowo stworzona krótkofalówka która obsługuje częstotliwość analogową oraz cyfrową."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_electronics"] = 2, ["comp_rivbolts"] = 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 = "Stara krótkofalówka"
|
||||
RECIPE.description = "Własnoręcznie stworzona krótkofalówka, odbiera tylko częstotliwość analogową."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_electronics"] = 1, ["comp_screws"] = 2, ["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()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_repair_broken_radio"
|
||||
RECIPE.name = "Napraw uszkodzone radio"
|
||||
RECIPE.description = "Naprawia uszkodzone radio."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_electronics"] = 4, ["broken_radio"] = 1}
|
||||
RECIPE.result = {["handheld_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 = "Przerobiona drukarka"
|
||||
RECIPE.description = "Przerobiona drukarka tak aby można było ją używać bez pozwolenia, potrzebuje papieru oraz tuszu."
|
||||
RECIPE.model = "models/willardnetworks/plotter.mdl"
|
||||
RECIPE.category = "Elektronika"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["newspaper_printer"] = 1, ["comp_electronics"] = 4}
|
||||
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 = "Konewka (pełna)"
|
||||
RECIPE.description = "Napełnij konewkę wodą."
|
||||
RECIPE.model = "models/props_junk/metalgascan.mdl"
|
||||
RECIPE.category = "Rolnictwo"
|
||||
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 = "Konewka"
|
||||
RECIPE.description = "Konewka, przydatna w rolnictwie."
|
||||
RECIPE.model = "models/props_junk/metalgascan.mdl"
|
||||
RECIPE.category = "Rolnictwo"
|
||||
RECIPE.ingredients = {["comp_iron"] = 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 = "Nawóz"
|
||||
RECIPE.description = "Worek wypełniony zmielonymi kośćmi, przydatny w ogrodnictwie do nawożenia roślin."
|
||||
RECIPE.model = "models/props_junk/garbage_milkcarton001a.mdl"
|
||||
RECIPE.category = "Rolnictwo"
|
||||
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 = "Sadzarka"
|
||||
RECIPE.description = "Mała i przenośna sadzarka, która służy do sadzenia... roślin! Jest dość mała i może być nawet umieszczona w pomieszczeniu (jeśli masz odpowiednie światło). Rolniku, zaszalej!"
|
||||
RECIPE.model = "models/wn7new/advcrates/n7_planter_wood.mdl"
|
||||
RECIPE.category = "Rolnictwo"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2, ["comp_plastic"] = 3, ["comp_screws"] = 3, ["comp_wood"] = 5}
|
||||
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,125 @@
|
||||
--[[
|
||||
| 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 = "Maska przeciwgazowa"
|
||||
RECIPE.description = "Zapewnia ochrone przeciwko niebezpiecznym oparom, gazom oraz złym zapachom."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_gasmask.mdl"
|
||||
RECIPE.category = "Maski gazowe"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_iron"] = 1, ["comp_plastic"] = 2, ["comp_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 = "Maska przeciwgazowa M40"
|
||||
RECIPE.description = "Zapewnia ochrone przeciwko niebezpiecznym oparom, gazom oraz złym zapachom.."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/m40_item.mdl"
|
||||
RECIPE.category = "Maski gazowe"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_iron"] = 1, ["comp_plastic"] = 2, ["comp_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 = "Napełnienie filtra węglowego"
|
||||
RECIPE.description = "Włóż węgiel do gotowego do użycia filtra węglowego."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Maski gazowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_charcoal"] = 1, ["comp_stitched_cloth"] = 1, ["comp_chemicals"] = 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 = "Własnoręcznie robiony filtr"
|
||||
RECIPE.description = "Własnoręcznie zrobiony filtr do maski gazowej, można go otworzyć aby napełnić."
|
||||
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
||||
RECIPE.category = "Maski gazowe"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_charcoal_refill"] = 1, ["comp_iron"] = 2, ["comp_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 = "Rozłóż własnoręcznie robiony filtr"
|
||||
RECIPE.description = "Rozłóż ten filtr aby pozyskać z niego materiały."
|
||||
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Maski gazowe"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["makeshift_filter"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1, ["comp_scrap"] = 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 = "Rozłóż filtr wysokiej jakości"
|
||||
RECIPE.description = "Rozłóż ten filtr aby pozyskać z niego materiały."
|
||||
RECIPE.model = "models/willardnetworks/props/blackfilter.mdl"
|
||||
RECIPE.category = "Recykling"
|
||||
RECIPE.subcategory = "Maski gazowe"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["highquality_filter"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1, ["comp_scrap"] = 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,85 @@
|
||||
--[[
|
||||
| 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 = "Granat odłamkowy"
|
||||
RECIPE.description = "Ofensywny granat odłamkowy M3A2."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Granaty"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_explosive"] = 1, ["comp_chemcomp"] = 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 = "Granat błyskowo-hukowy"
|
||||
RECIPE.description = "Granat błyskowo-hukowy M84 znany jako 'flashbang'. Po wybuchu oślepia oraz ogłusza przeciwnika."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_flash.mdl"
|
||||
RECIPE.category = "Granaty"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_chemcomp"] = 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 = "Granat dymny"
|
||||
RECIPE.description = "Granat dymny modelu 5210, po wybuchu rozkłębia chmure dymu."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_smoke.mdl"
|
||||
RECIPE.category = "Granaty"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_chemcomp"] = 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 = "Granat zapalający"
|
||||
RECIPE.description = "Granat zapalający AN-M14 wypełniony mieszanką termitu która pali się w temperaturze 2200 stopni celsjusza."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/wm/w_incend.mdl"
|
||||
RECIPE.category = "Granaty"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_explosive"] = 1, ["comp_chemcomp"] = 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,470 @@
|
||||
--[[
|
||||
| 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 = "5-nabojowy magazynek do snajperki"
|
||||
RECIPE.description = "Magazynek do snajperki"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "17-nabojowy magazynek do USP"
|
||||
RECIPE.description = "Magazynek do USP"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "20-nabojowy magazynek do Glocka"
|
||||
RECIPE.description = "Magazynek do Glocka"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "30-nabojowy magazynek do AKM"
|
||||
RECIPE.description = "Magazynek do AKM"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "30-nabojowy magazynek do broni improwizowanej"
|
||||
RECIPE.description = "Magazynek do broni improwizowanej"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "30-nabojowy magazynek do M16A2"
|
||||
RECIPE.description = "Magazynek do M16A2"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "30-nabojowy magazynek do MP"
|
||||
RECIPE.description = "Magazynek do wariantów pistoletów maszynowych MP."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "6-nabojowy magazynek do Rewolwera"
|
||||
RECIPE.description = "Magazynek do Rewolwera"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "20-nabojowy magazynek do VSK"
|
||||
RECIPE.description = "Magazynek do VSK"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "12-nabojowy magazynek do M1911"
|
||||
RECIPE.description = "Magazynek do M1911"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "8-nabojowy magazynek do Shotguna"
|
||||
RECIPE.description = "Magazynek do Shotguna"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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_shotgun2"
|
||||
RECIPE.name = "2-nabojowy magazynek do Dupleta"
|
||||
RECIPE.description = "Magazynek do Dupleta"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_duplet"] = 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 = "5-nabojowy magazynek do Shotguna"
|
||||
RECIPE.description = "Magazynek do Shotguna"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "15-kulowy magazynek do Tichara"
|
||||
RECIPE.description = "Magazynek do Tichara"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_tikhar_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 = "8-nabojowy magazynek do Helsinga"
|
||||
RECIPE.description = "Magazynek do Helsinga"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "30-nabojowy magazynek do AKSU"
|
||||
RECIPE.description = "Magazynek do AKSU"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "20-nabojowy magazynek do G3"
|
||||
RECIPE.description = "Magazynek do G3"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "20-nabojowy magazynek do DMR"
|
||||
RECIPE.description = "Magazynek do DMR"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "50-nabojowy magazynek do P90"
|
||||
RECIPE.description = "Magazynek do P90"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "35-nabojowy magazynek do PPSH"
|
||||
RECIPE.description = "Magazynek do PPSH"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "45-nabojowy magazynek do Karabinu Taktycznego"
|
||||
RECIPE.description = "Magazynek do Karabinu Taktycznego"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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 = "30-nabojowy magazynek do Uzi"
|
||||
RECIPE.description = "Magazynek do Uzi"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
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_deagle"
|
||||
RECIPE.name = "7-nabojowy magazynek do Deagle'a"
|
||||
RECIPE.description = "Magazynek do Deagle'a"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Magazynki"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_deagle"] = 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()
|
||||
@@ -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 = "Własnoręczny bandaż"
|
||||
RECIPE.description = "Własnoręcznie zrobiony bandaż, zatrzymuje krawienie ale nic poza tym..."
|
||||
RECIPE.model = "models/stuff/bandages_dirty.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3}
|
||||
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,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 = "Walizka"
|
||||
RECIPE.description = "Mała walizka, dobra do przenoszenia rzeczy o których kombinat nie powinien wiedzieć."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2, ["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
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 = "Mała torba"
|
||||
RECIPE.description = "Mała torba która wisi przy twoim biodrze."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
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 = "Duża torba"
|
||||
RECIPE.description = "Plecak z logiem kombinatu który wisi na twoich plecach."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_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 = "Zamek"
|
||||
RECIPE.description = "Ustawia hasło na drzwi/schowek, może zostać przestrzelony jednak tylko wtedy gdy właściciel jest online."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_screws"] = 1, ["comp_plastic"] = 1}
|
||||
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 = "Mały pojemnik"
|
||||
RECIPE.description = "Pojemnik o rozmiarze 5x3, skontaktuj się z adminem aby ustawić ten pojemnik, potrzebny jest zamek na pojemnik aby go zamknąć."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_refined_plastic"] = 1, ["comp_adhesive"] = 1, ["comp_rivbolts"] = 1}
|
||||
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 = "Średni pojemnik"
|
||||
RECIPE.description = "Pojemnik o rozmiarze 5x8, skontaktuj się z adminem aby ustawić ten pojemnik, potrzebny jest zamek na pojemnik aby go zamknąć."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_small_dummy"] = 2, ["comp_rivbolts"] = 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 = "Duży pojemnik"
|
||||
RECIPE.description = "Potrzebujesz grupę o wielkości 5+, pojemnik o rozmiarze 9x9, skontaktuj się z adminem aby ustawić ten pojemnik, potrzebny jest zamek na pojemnik aby go zamknąć."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 2, ["comp_rivbolts"] = 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 = "Standardowa skrzynia"
|
||||
RECIPE.description = "Kontener o rozmiarze 6x6, skontaktuj się z adminem aby ustawić ten kontener, potrzebny jest zamek na kontener aby go zamknąć."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 1, ["comp_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 = "Duża skrzynia"
|
||||
RECIPE.description = "Potrzebujesz grupę o wielkości 5+, Kontener o rozmiarze 9x9, skontaktuj się z adminem aby ustawić ten kontener, potrzebny jest zamek na kontener aby go zamknąć."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_large_dummy"] = 1, ["comp_wood"] = 4}
|
||||
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 = "Sejf"
|
||||
RECIPE.description = "Niezniszczalny sejf w którym możesz przechowywać przedmioty. (Możesz mieć 2 sejfy w ramach limitu pojemników)."
|
||||
RECIPE.model = "models/willardnetworks/safe.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 4, ["comp_refined_plastic"] = 3, ["comp_electronics"] = 1, ["comp_rivbolts"] = 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 = "Zamek grupowy"
|
||||
RECIPE.description = "Metalowe urządzenie montowane na drzwiach, potrzebujesz grupy aby działał."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Schowki"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1, ["comp_electronics"] = 1, ["comp_screws"] = 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,400 @@
|
||||
--[[
|
||||
| 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 = "Butelka wody"
|
||||
RECIPE.description = "Butelka po wodzie która można znowu napełnić."
|
||||
RECIPE.model = "models/props_junk/garbage_plasticbottle002a.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
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 = "Zawór do wody"
|
||||
RECIPE.description = "Możesz dzięki niemu zdobyć wodę z różnych miejsc."
|
||||
RECIPE.model = "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_gauge_valve_low.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Latarka domowej roboty"
|
||||
RECIPE.description = "Latarka ręcznie stworzona, niesamowicie przydatna gdy zwiedzasz nieznane ciemności."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_electronics"] = 1}
|
||||
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_tool_scissors"
|
||||
RECIPE.name = "Nożyczki"
|
||||
RECIPE.description = "Ciach!, Ciach!, Ciach!."
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Garnek"
|
||||
RECIPE.description = "Czarny, żelazny garnek do gotowania. Postaw go na kuchence!"
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Przybory fryzjerskie"
|
||||
RECIPE.description = "Narzędzia dla kreatywnych dusz w tym przygnębiającym otoczeniu."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Łyżka"
|
||||
RECIPE.description = "Przydatne do gotowania potraw."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
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 = "Nóż kuchenny"
|
||||
RECIPE.description = "Kruchy, półtępy nóż bez ostrego czubka. Używany do krojenia żywności na desce do krojenia lub innej powierzchni. Nie nadaje się do dźgania."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Patelnia"
|
||||
RECIPE.description = "Czarna, żeliwna patelnia. Połóż ją na kuchence!"
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_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 = "Czajnik"
|
||||
RECIPE.description = "Czajnik w którym możesz ugotować wodę."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 1, ["comp_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 = "Skrzynka z narzędziami"
|
||||
RECIPE.description = "Mała metalowa skrzynka zawierające narzędzia dzieki którym wytworzysz przedmioty."
|
||||
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Zestaw do ogniska"
|
||||
RECIPE.description = "Zestaw dzięki któremu rozpalisz ognisko."
|
||||
RECIPE.model = "models/willardnetworks/props/tinderbox.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3, ["comp_adhesive"] = 1, ["comp_chemicals"] = 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 = "Mikser do chemii"
|
||||
RECIPE.description = "Wydaje się przydatny do mieszania ze sobą płynów lub chemikaliów. Na jego etykiecie ostrzegawczej czytamy: 'Nie otwierać podczas pracy'"
|
||||
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
|
||||
RECIPE.category = "Stoły warsztatowe"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_screws"] = 4, ["comp_adhesive"] = 1}
|
||||
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 = "Klucz"
|
||||
RECIPE.description = "Stary klucz, można go użyć do tworzenia."
|
||||
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_rivbolts"] = 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 = "Chemiczny stół warsztatowy"
|
||||
RECIPE.description = "Ten stół jest specjalnie stworzony aby zapewnić prawidłowe mieszanie chemikaliów."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/chemistrystation02.mdl"
|
||||
RECIPE.category = "Stoły warsztatowe"
|
||||
RECIPE.ingredients = {["comp_steel"] = 3, ["comp_wood"] = 4, ["comp_refined_plastic"] = 2}
|
||||
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 = "Zardzewiała kuchenka"
|
||||
RECIPE.description = "Wygląda okropnie, jest okropne ale przynajmniej coś ugotujesz."
|
||||
RECIPE.model = "models/willardnetworks/skills/oven_shit.mdl"
|
||||
RECIPE.category = "Stoły warsztatowe"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 2, ["comp_plastic"] = 4, ["comp_screws"] = 4, ["comp_electronics"] = 2}
|
||||
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 = "Zestaw stołu warsztatowego"
|
||||
RECIPE.description = "Ten stół jest specjalnie stworzony aby zapewnić prawidłowe tworzenie odzieży."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench02.mdl"
|
||||
RECIPE.category = "Stoły warsztatowe"
|
||||
RECIPE.ingredients = {["comp_wood"] = 3, ["comp_iron"] = 1, ["comp_refined_plastic"] = 2, ["comp_rivbolts"] = 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 = "Zestaw stołu warsztatowego do metalu"
|
||||
RECIPE.description = "Ten stół jest specjalnie stworzony aby zapewnić prawidłowe tworzenie broni lub podobnych."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench01.mdl"
|
||||
RECIPE.category = "Stoły warsztatowe"
|
||||
RECIPE.ingredients = {["comp_steel"] = 4, ["comp_wood"] = 4, ["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 = "Zestaw naprawczy pancerza"
|
||||
RECIPE.description = "Własnoręcznie zrobiony zestaw naprawczy, można nim naprawic pancerz w odzieży."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_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 = "Łamacz zamka kombinatu"
|
||||
RECIPE.description = "Własnoręcznie zrobione urządzenie które złamie zamek kombinatu."
|
||||
RECIPE.model = "models/transmissions_element120/charger_attachment.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_steel"] = 1, ["comp_refined_plastic"] = 1, ["comp_screws"] = 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 = "Zapalniczka Zippo"
|
||||
RECIPE.description = "Jakościowa zapalniczka na benzynę, może być uzupelniona."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
|
||||
RECIPE.category = "Narzędzia"
|
||||
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,345 @@
|
||||
--[[
|
||||
| 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_shackles_fake"
|
||||
RECIPE.name = "Kajdany Vortigaunta (fałszywe)"
|
||||
RECIPE.description = "Metalowe kajdany połączone ze sobą, sprawiają bół podczas noszenia. Po założeniu nie można ich zdjąć."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_slave_shackles_fake"] = 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_collar_fake"
|
||||
RECIPE.name = "Obroża Vortigaunta (fałszywa)"
|
||||
RECIPE.description = "Ciężka metalowa obroża, po jej założeniu moc Vortigaunta jest tłumiona. Nie można jej zdjąć bez specjalnych narzędzi."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_slave_collar_fake"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 70}, -- full XP
|
||||
{level = 30, exp = 35}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_hooks_fake"
|
||||
RECIPE.name = "Haki Vortigaunta (fałszywe)"
|
||||
RECIPE.description = "Podstawowy element obroży oraz kajdanek, ociskają nogi Vortigaunta sprawiając mu ból."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_slave_hooks_fake"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 30}, -- full XP
|
||||
{level = 30, exp = 15}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_meat01"
|
||||
RECIPE.name = "Pas z pożywienia"
|
||||
RECIPE.description = "Kolekcja smakowitych skór z headcraba, zebrana z zakątków."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat01.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["headcrab_skewer"] = 3, ["comp_rivbolts"] = 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 = "Pas z mięsem z pustkowia"
|
||||
RECIPE.description = "Bardzo trudne do zdobycia oraz bardzo cenne w tych czasach."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat02.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["antlion_skewer"] = 3, ["comp_rivbolts"] = 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 dla Vortigaunta"
|
||||
RECIPE.description = "Dyskrecja to podstawa, nikt nie chciałby wiedzieć, że napada Cię Vortigaunt."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "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 = "Hełm Vortigaunta"
|
||||
RECIPE.description = "Ochrona przed praktycznością, z dużą ilością szczęścia przeciwnik będzie mierzył troche wyżej."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 3, ["comp_rivbolts"] = 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 = "Pancerz Vortigaunta"
|
||||
RECIPE.description = "Nie ma strachu przed ciemnościa jednak też nie ma powodu aby szybciej ją zobaczyć, podstawowy zestaw pancerza używany przez ludzi."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 1, ["comp_steel"] = 3, ["comp_rivbolts"] = 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 = "Fartuch Vortigaunta"
|
||||
RECIPE.description = "Strój dla Vortigaunta naukowca."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "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 = "Fartuch Vortigaunta z odznaką"
|
||||
RECIPE.description = "Strój dla Vortigaunta naukowca, ten jest razem z odznaką."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_scrap"] = 2}
|
||||
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 = "Czapka szefa kuchni dla Vortigaunta"
|
||||
RECIPE.description = "Vortigaunty znane są z ich zamiłowania do gotowania, tym razem może to nawet pokazać przez swój ubiór."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
|
||||
RECIPE.category = "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 = "Bluza Vortigaunta"
|
||||
RECIPE.description = "Specjalnie zrobiona bluza z dłuższą szyją tak aby pasowała na Vortigaunta, utrzyma go przy cieple nawet w najtrudniejszych warunkach."
|
||||
RECIPE.model = "models/n7/vorti_outfit/hoodie.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_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 = "Brązowy płaszcz Vortigaunta"
|
||||
RECIPE.description = "Blady wytarty płaszcz, pomoże Vortigauntowi wtopić się w tłum."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_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 = "Ponczo Vortigaunta"
|
||||
RECIPE.description = "Ponczo stworzone ze znalezionych kawałków materiału pozszywanego razem ze sobą. Luźny design i wygodne wycięcia pozwalają na komfort i swobodę ruchów."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light01.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_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 = "Własnoręczna narzuta Vortigaunta"
|
||||
RECIPE.description = "Proste, zwykłe okrycie. Dobre do tego, by zapewnić ci przytulność w chłodną noc i niewiele więcej."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light02.mdl"
|
||||
RECIPE.category = "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 = "Płyta ochronna z antiliona dla Vortigaunta"
|
||||
RECIPE.description = "Stworzona z pancerza antiliona nie tylko zapewnia pancerz ale również pokazuje prawdziwego wojownika."
|
||||
RECIPE.model = "models/n7/vorti_outfit/armor.mdl"
|
||||
RECIPE.category = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 8, ["comp_steel"] = 3, ["comp_rivbolts"] = 2, ["comp_fabric"] = 1, ["comp_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,322 @@
|
||||
--[[
|
||||
| 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_ms_ballrifle"
|
||||
RECIPE.name = "Karabin Tichar"
|
||||
RECIPE.description = "Własnoręcznie zrobiony karabin zdolny do strzelania metalowymi kulkami, których siła wcale nie jest taka zła jakby mogła się wydawać."
|
||||
RECIPE.model = "models/weapons/c_Tikhar.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 3, ["comp_iron"] = 3, ["comp_rivbolts"] = 1, ["comp_stitched_cloth"] = 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"
|
||||
RECIPE.name = "Karabin Helsinga"
|
||||
RECIPE.description = "Cichy karabin bolt-action na metalowe śrubki."
|
||||
RECIPE.model = "models/weapons/c_Helsing.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 2, ["comp_iron"] = 2, ["comp_rivbolts"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
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 = "Dubeltówka Duple"
|
||||
RECIPE.description = "Prowizoryczna strzelba dwulufowa wykorzystująca 2 przecięte rury wraz z wieloma doczepionymi częściami i tandetnym systemem strzelania. Postaraj się nie odstrzelić sobie ręki."
|
||||
RECIPE.model = "models/weapons/c_duplet.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 2, ["comp_weapon_parts"] = 1, ["leadpipe"] = 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 = "Pistolet Maszynowy Bękart"
|
||||
RECIPE.description = "Własnoręcznie stworzony pistolet maszynowy o dosyć ciekawym wyglądzie, jest szybki ale nie za mocny."
|
||||
RECIPE.model = "models/weapons/c_BastardGun.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 2, ["comp_weapon_parts"] = 1, ["leadpipe"] = 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 = "Rewolwer Pukawka"
|
||||
RECIPE.description = "Dobrej jakości rewolwer wykonany ze złomu przez nieznaną podziemną grupę. Lekki i poręczny. Używa amunicji .357."
|
||||
RECIPE.model = "models/weapons/c_MetroRevolver.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_weapon_parts"] = 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 = "Jak na swoje walory, całkiem mocny karabin. Nie jest kompletnym złomem, w przeciwieństwie do innych takich broni."
|
||||
RECIPE.model = "models/weapons/c_VSV.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_weapon_parts"] = 2, ["comp_wood"] = 4, ["comp_stitched_cloth"] = 1}
|
||||
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 = "Prowizoryczne AK"
|
||||
RECIPE.description = "AK jeszcze prostrzejsze od tych produkowanych masowo. Nikt tego nie potrzebował, ale musi się nadać."
|
||||
RECIPE.model = "models/weapons/c_kalash.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 4, ["comp_weapon_parts"] = 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 = "Prowizoryczne P90"
|
||||
RECIPE.description = "Kiepsko wykonana wersja P90 zrobiona ze złomu. Dosłownie złomowa pukawka."
|
||||
RECIPE.model = "models/weapons/c_kalash2012.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_adhesive"] = 1, ["comp_wood"] = 4, ["comp_weapon_parts"] = 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_knife"
|
||||
RECIPE.name = "Naostrzony nóż kuchenny"
|
||||
RECIPE.description = "Naostrzony nóż kuchenny. W porównaniu do tego co jest publicznie dostępne... ten napewno nie jest legalny."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_kitknife.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 4, ["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["kitknife"] = 1}
|
||||
RECIPE.level = 5
|
||||
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_cleaver"
|
||||
RECIPE.name = "Tasak"
|
||||
RECIPE.description = "Tasak to krojenia mięsa."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_cleaver.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_wood"] = 1, ["comp_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["cleaver"] = 1}
|
||||
RECIPE.level = 10
|
||||
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_hatchet"
|
||||
RECIPE.name = "Toporek"
|
||||
RECIPE.description = "Toporek, który idealnie nada się do ścinania drzew... lub ludzi."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_hatchet.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_wood"] = 1, ["comp_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["hatchet"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120},
|
||||
{level = 20, exp = 60},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_baseball_bat"
|
||||
RECIPE.name = "Kij bejsbolowy"
|
||||
RECIPE.description = "Śmiało, wyżyj się na czymś."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_bat_metal.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_iron"] = 1, ["comp_wood"] = 3, ["comp_rivbolts"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["baseballbat"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_crowbar"
|
||||
RECIPE.name = "Łom"
|
||||
RECIPE.description = "Hm... Łom. Tylko nie próbuj teraz atakować nim oficerów Civil Protection!"
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_crowbar.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_leadpipe"
|
||||
RECIPE.name = "Rura"
|
||||
RECIPE.description = "Rura która może posłużyć za broń."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_pipe_lead.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_rivbolts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["leadpipe"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_sledgehammer"
|
||||
RECIPE.name = "Młot wyburzeniowy"
|
||||
RECIPE.description = "Ciężki i mocarny. Uważaj żeby nikogo nie uderzyć!"
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_sledge.mdl"
|
||||
RECIPE.category = "Bronie"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_iron"] = 2, ["comp_wood"] = 3, ["comp_rivbolts"] = 2}
|
||||
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 = "Pinezka do papieru"
|
||||
RECIPE.description = "Pinezka, służy do zawieszania papieru na ścianie czy tablicy."
|
||||
RECIPE.model = "models/items/crossbowrounds.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Notatnik"
|
||||
RECIPE.description = "Notatnik w którym możesz pisać."
|
||||
RECIPE.model = "models/props_lab/clipboard.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["paper"] = 1, ["comp_wood"] = 1, ["comp_scrap"] = 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 = "Czarny tusz"
|
||||
RECIPE.description = "Wkład do drukarki z czarnym tuszem."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 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,189 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artwhiskey_alcohol"
|
||||
RECIPE.name = "Ekstrakcja syntetycznej whiskey"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z syntetycznej whiskey."
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artvodka_alcohol"
|
||||
RECIPE.name = "Ekstrakcja syntetycznej wódki"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z syntetycznej wódki."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_vodka"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artbourbon_alcohol"
|
||||
RECIPE.name = "Ekstrakcja syntetycznego bourbonu"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z syntetycznego bourbonu."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artbeer_alcohol"
|
||||
RECIPE.name = "Ekstrakcja syntetycznego piwa"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z syntetycznego piwa."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_beer"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_whiskey_alcohol"
|
||||
RECIPE.name = "Ekstrakcja whiskey"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z whiskey."
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["bottle_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 75}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_vodka_alcohol"
|
||||
RECIPE.name = "Ekstrakcja wódki"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z wódki."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["bottle_vodka"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 75}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_bourbon_alcohol"
|
||||
RECIPE.name = "Ekstrakcja Bourbonu"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z bourbonu."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["bottle_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 75}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_beer_alcohol"
|
||||
RECIPE.name = "Ekstrakcja piwa"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z piwa."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_beer"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 75}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_sake_alcohol"
|
||||
RECIPE.name = "Ekstrakcja sake"
|
||||
RECIPE.description = "Ekstraktuj czysty alkohol z sake."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Alkohol"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["bottle_sake"] = 1}
|
||||
RECIPE.result = {["comp_alcohol"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 75}, -- full xp
|
||||
{level = 10, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -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 = "Ekstrakcja akumulatora samochodowego"
|
||||
RECIPE.description = "Wyciągnij nierafinowane związki chemiczne ze starego akumulatora samochodowego."
|
||||
RECIPE.model = "models/Items/car_battery01.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Nierafinowane substancje chemiczne"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["junk_battery"] = 1}
|
||||
RECIPE.result = {["comp_chemicals"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artwhiskey_chemical"
|
||||
RECIPE.name = "Ekstrakcja syntetycznej whiskey"
|
||||
RECIPE.description = "Wyciągnij nierafinowane związki chemiczne z syntetycznej whiskey."
|
||||
RECIPE.model = "models/willardnetworks/food/whiskey.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Nierafinowane substancje chemiczne"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_chemicals"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artvodka_chemical"
|
||||
RECIPE.name = "Ekstrakcja syntetycznej wódki"
|
||||
RECIPE.description = "Wyciągnij nierafinowane związki chemiczne z syntetycznej wódki."
|
||||
RECIPE.model = "models/willardnetworks/food/alcohol_bottle.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Nierafinowane substancje chemiczne"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_vodka"] = 1}
|
||||
RECIPE.result = {["comp_chemicals"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artbourbon_chemical"
|
||||
RECIPE.name = "Ekstrakcja syntetycznego bourbonu"
|
||||
RECIPE.description = "Wyciągnij nierafinowane związki chemiczne z syntetycznego bourbonu."
|
||||
RECIPE.model = "models/willardnetworks/food/bourbon.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Nierafinowane substancje chemiczne"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_chemicals"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_artbeer_chemical"
|
||||
RECIPE.name = "Ekstrakcja syntetycznego piwa"
|
||||
RECIPE.description = "Wyciągnij nierafinowane związki chemiczne z syntetycznego piwa."
|
||||
RECIPE.model = "models/willardnetworks/food/beer.mdl"
|
||||
RECIPE.category = "Ekstrakcja alkoholowa/chemiczna"
|
||||
RECIPE.subcategory = "Nierafinowane substancje chemiczne"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_proc_beer"] = 1}
|
||||
RECIPE.result = {["comp_chemicals"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,66 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_adhesive"
|
||||
RECIPE.name = "Klej"
|
||||
RECIPE.description = "Klej do sklejania przedmiotów. Bardzo klejący."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["comp_adhesive"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_chemcomp"
|
||||
RECIPE.name = "Chemikalia rafinowane"
|
||||
RECIPE.description = "Niebezpieczna, toksyczna substancja, która emituje promieniowanie radioaktywne. Zachowaj ostrożność."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemicals"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["comp_chemcomp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_purifier"
|
||||
RECIPE.name = "Oczyszczacz"
|
||||
RECIPE.description = "Dziwny proszek, który może oczyścić każdą mieszaninę lub substancję z wszelkich toksycznych związków"
|
||||
RECIPE.model = "models/willardnetworks/skills/pill_bottle.mdl"
|
||||
RECIPE.category = "Składniki"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_chemicals"] = 2}
|
||||
RECIPE.result = {["comp_purifier"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,200 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_artfun"
|
||||
RECIPE.name = "Artificial Fun"
|
||||
RECIPE.description = "Zmiksowana sztuczna pasta z odrobiną kwasu z akumulatora samochodowego."
|
||||
RECIPE.model = "models/props_lab/jar01b.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["proc_paste"] = 1, ["ing_protein"] = 1, ["comp_chemicals"] = 1}
|
||||
RECIPE.result = {["drug_artificialfun"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 210}, -- full xp
|
||||
{level = 20, exp = 105}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_blueberry"
|
||||
RECIPE.name = "Blue Berry"
|
||||
RECIPE.description = "Dziwna fiolka wypełniona niebieskim płynem, smakuje jak sok z jagód, ale obrzydliwie pachnie."
|
||||
RECIPE.model = "models/willardnetworks/skills/chemical_flask4.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_charcoal"] = 1, ["fruit_berries"] = 1}
|
||||
RECIPE.result = {["drug_blueberry"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 210}, -- full xp
|
||||
{level = 20, exp = 105}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ozz"
|
||||
RECIPE.name = "Eliksir Ozz'a"
|
||||
RECIPE.description = "Dziwny płyn w szklanym słoiku, po otwarciu ma mocny i dziwny zapach. Smakuje jak benzyna, ale sprawia, że czujesz się mądrzejszy i bardziej spostrzegawczy."
|
||||
RECIPE.model = "models/props_junk/glassjug01.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["disinfectant_bottle"] = 1}
|
||||
RECIPE.result = {["drug_ozz"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 210}, -- full xp
|
||||
{level = 20, exp = 105}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bobmix"
|
||||
RECIPE.name = "Bob's Trail Mix"
|
||||
RECIPE.description = "Zastanawiasz się co by się stało, gdybyś wziął destylat każdego dostępnego (publicznie) napoju bobowego, zmieszał go ze sobą i wstrzyknął powstały produkt prosto w ramię? Sprawdź sam, śmiało."
|
||||
RECIPE.model = "models/willardnetworks/food/bobdrinks_can.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["drink_bobfizz"] = 1, ["drink_bobgrape"] = 1, ["drink_boboriginal"] = 1}
|
||||
RECIPE.result = {["drug_bobmix"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 210}, -- full xp
|
||||
{level = 20, exp = 105}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_darkshot"
|
||||
RECIPE.name = "Dark Shot"
|
||||
RECIPE.description = "Krew zmieszana z różnymi lekami, po spożyciu której możesz odczuć pieczenie w gardle."
|
||||
RECIPE.model = "models/willardnetworks/skills/medjar.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_bloodsyringe"] = 1, ["basic_red"] = 1, ["comp_chemicals"] = 1, ["drink_proc_whiskey"] = 1}
|
||||
RECIPE.result = {["drug_darkshot"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 240}, -- full xp
|
||||
{level = 30, exp = 150}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_demon"
|
||||
RECIPE.name = "Demon's Bees"
|
||||
RECIPE.description = "Strzykawka wypełniona ciemnoczerwonym płynem w środku, po wstrzyknięciu możesz poczuć ekstremalne uczucie pieczenia w miejscu wstrzyknięcia."
|
||||
RECIPE.model = "models/willardnetworks/skills/medx.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_syringe"] = 1, ["painkillers"] = 1, ["comp_chemcomp"] = 1}
|
||||
RECIPE.result = {["drug_demon"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 240}, -- full xp
|
||||
{level = 30, exp = 120}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_speed"
|
||||
RECIPE.name = "Speed"
|
||||
RECIPE.description = "Rozgniecione opakowanie tabletek zmieszane w puszce. Daje poczucie bycia szybszym niż zazwyczaj."
|
||||
RECIPE.model = "models/props_junk/popcan01a.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["crafting_water"] = 1, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["drug_speed"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 240}, -- full xp
|
||||
{level = 30, exp = 120}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_thirdeye"
|
||||
RECIPE.name = "The Third Eye"
|
||||
RECIPE.description = "Strzykawka wypełniona białym płynem, po użyciu od razu możesz poczuć, że jesteś o wiele bardziej spostrzegawczy."
|
||||
RECIPE.model = "models/willardnetworks/skills/pyscho.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_syringe"] = 1, ["ing_coffee_powder"] = 1, ["basic_yellow"] = 1}
|
||||
RECIPE.result = {["drug_thirdeye"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 240}, -- full xp
|
||||
{level = 30, exp = 120}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_transhumano"
|
||||
RECIPE.name = "Transhumano"
|
||||
RECIPE.description = "Wyrafinowana pigułka, która sprawia, że czujesz się ultra silny, niektórzy wierzą, że to właśnie jej używają żołnierze Overwatch."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["bloodstabilizer"] = 1, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["drug_transhumano"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_xp"
|
||||
RECIPE.name = "XP"
|
||||
RECIPE.description = "Brązowy płyn w starej butelce, po powąchaniu go można poczuć się naprawdę lekko. Smakuje jak stary syrop na kaszel."
|
||||
RECIPE.model = "models/willardnetworks/food/wine4.mdl"
|
||||
RECIPE.category = "Narkotyki"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["morphine"] = 2, ["bottle_wine_white"] = 1, ["orange_pill"] = 1}
|
||||
RECIPE.result = {["drug_xp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,233 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_disinfectant"
|
||||
RECIPE.name = "Butelka ze środkiem dezynfekacyjnym"
|
||||
RECIPE.description = "Butelka środka dezynfekującego, używanego do oczyszczania ran z bakterii."
|
||||
RECIPE.model = "models/willardnetworks/props/disinfectant.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
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 = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bandage"
|
||||
RECIPE.name = "Bandaż"
|
||||
RECIPE.description = "Rolka bandaży sanitarnych. Stosowana do zatamowania krwawienia."
|
||||
RECIPE.model = "models/stuff/bandages.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
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 = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_makeshift_into_bandage"
|
||||
RECIPE.name = "Bandaż"
|
||||
RECIPE.description = "Rolka bandaża z tkaniny oblana alkoholem."
|
||||
RECIPE.model = "models/stuff/bandages.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.ingredients = {["makeshift_bandage"] = 6, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["bandage"] = 6}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_disinfected_bandage"
|
||||
RECIPE.name = "Zdezynfekowany bandaż"
|
||||
RECIPE.description = "Rolka zdezynfekowanych opatrunków sanitarnych. Stosowany do tamowania krwawienia i oczyszczania ran."
|
||||
RECIPE.model = "models/stuff/bandages.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.ingredients = {["bandage"] = 4, ["disinfectant_bottle"] = 3}
|
||||
RECIPE.result = {["disinfected_bandage"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 150}, -- full xp
|
||||
{level = 10, exp = 75}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_painkillers"
|
||||
RECIPE.name = "Środki przeciwbólowe"
|
||||
RECIPE.description = "Opakowanie środków przeciwbólowych."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills1.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1}
|
||||
RECIPE.result = {["painkillers"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 180}, -- full xp
|
||||
{level = 10, exp = 90}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bloodstabilizer"
|
||||
RECIPE.name = "Stabilizator krwi"
|
||||
RECIPE.description = "Strzykawka wypełniona czerwoną mieszanką i środkiem przeciwbólowym. Ma właściwości regenerujące."
|
||||
RECIPE.model = "models/willardnetworks/skills/stimpak.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bloodsyringe"] = 4, ["comp_chemcomp"] = 2, ["painkillers"] = 1}
|
||||
RECIPE.result = {["bloodstabilizer"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 250}, -- full xp
|
||||
{level = 20, exp = 125}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_bloodbag"
|
||||
RECIPE.name = "Torebka z krwią"
|
||||
RECIPE.description = "Plastikowa torba z przymocowanym wężem i igłą. Wygląda na to, że jest w niej krew."
|
||||
RECIPE.model = "models/willardnetworks/skills/bloodbag.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bloodsyringe"] = 4, ["disinfectant_bottle"] = 2, ["comp_plastic"] = 4}
|
||||
RECIPE.result = {["bloodbag"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 260}, -- full xp
|
||||
{level = 20, exp = 130}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_firstaid"
|
||||
RECIPE.name = "Apteczka pierwszej pomocy"
|
||||
RECIPE.description = "Zestaw medyczny zawierający niezbędne narzędzia i leki służące do udzielenia podstawowej pomocy medycznej w przypadku nagłych wypadków lub urazów. "
|
||||
RECIPE.model = "models/willardnetworks/skills/medkit.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.ingredients = {["bandage"] = 3, ["disinfectant_bottle"] = 3, ["bloodstabilizer"] = 3, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.result = {["firstaid"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 260}, -- full xp
|
||||
{level = 30, exp = 130}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_adrenaline"
|
||||
RECIPE.name = "Adrenalina"
|
||||
RECIPE.description = "Strzykawka wypełniona adrenaliną. Zapewnia chwilową ulgę w ostrych bólach."
|
||||
RECIPE.model = "models/willardnetworks/skills/adrenaline.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_green"] = 1, ["comp_syringe"] = 1}
|
||||
RECIPE.result = {["adrenaline"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 260}, -- full xp
|
||||
{level = 30, exp = 130}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_morphine"
|
||||
RECIPE.name = "Morfina"
|
||||
RECIPE.description = "Silny lek opioidowy stosowany w medycynie do łagodzenia bólu ostrych i przewlekłych oraz objawów duszności w chorobach nowotworowych i terminalnych."
|
||||
RECIPE.model = "models/willardnetworks/skills/adrenaline.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["basic_red"] = 1, ["comp_syringe"] = 1}
|
||||
RECIPE.result = {["morphine"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 300}, -- full xp
|
||||
{level = 45, exp = 150}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_med_surgerykit"
|
||||
RECIPE.name = "Zestaw chirurgiczny"
|
||||
RECIPE.description = "Kompletny zestaw narzędzi i przyrządów chirurgicznych, zapakowany w praktyczną torbę, służący do przeprowadzania operacji w warunkach szpitalnych lub w terenie."
|
||||
RECIPE.model = "models/willardnetworks/skills/surgicalkit.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["firstaid"] = 1, ["morphine"] = 3, ["bloodbag"] = 3, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["surgerykit"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 320}, -- full xp
|
||||
{level = 45, exp = 160}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_med_xenpotion"
|
||||
RECIPE.name = "Mikstura z wymiaru Xen"
|
||||
RECIPE.description = "Wysoce egzotyczna, obca substancja stworzona z rzadkich składników Xen, przynosząca niesamowitą regenerację organiczną."
|
||||
RECIPE.model = "models/willardnetworks/props/xenpotion3.mdl"
|
||||
RECIPE.category = "Medycyna"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["ing_xen_herb"] = 4, ["ing_xenberries"] = 4, ["bottle_vodka"] = 1}
|
||||
RECIPE.result = {["xen_potion"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full xp
|
||||
{level = 50, exp = 0}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,296 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicgreen"
|
||||
RECIPE.name = "Zielone tabletki"
|
||||
RECIPE.description = "Niewielkich rozmiarów zielona tabletka. Dzięki niej jesteś szybszy."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_green"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicblue"
|
||||
RECIPE.name = "Niebieskie tabletki"
|
||||
RECIPE.description = "Niewielkich rozmiarów niebieska tabletka. Dzięki niej jesteś inteligentniejszy."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_blue"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicred"
|
||||
RECIPE.name = "Czerwone Tabletki"
|
||||
RECIPE.description = "Niewielkich rozmiarów czerwona tabletka. Dzięki niej jesteś silniejszy."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_red"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_basicyellow"
|
||||
RECIPE.name = "Żółte Tabletki"
|
||||
RECIPE.description = "Niewielkich rozmiarów żółta tabletka. Dzięki niej twój wzrok uległ niewielkiej poprawie."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["ing_vegetable_pack"] = 1}
|
||||
RECIPE.result = {["basic_yellow"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_improvedred"
|
||||
RECIPE.name = "Czerwone tabletki lepszej jakości."
|
||||
RECIPE.description = "Niewielkich rozmiarów czerwona tabletka. Dzięki niej jesteś silniejszy."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_red"] = 1}
|
||||
RECIPE.result = {["improved_red"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_improvedgreen"
|
||||
RECIPE.name = "Zielone tabletki lepszej jakości"
|
||||
RECIPE.description = "Niewielkich rozmiarów zielona tabletka. Dzięki niej jesteś szybszy"
|
||||
RECIPE.model = "models/willardnetworks/skills/pills2.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_green"] = 1}
|
||||
RECIPE.result = {["improved_green"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_improvedblue"
|
||||
RECIPE.name = "Niebieskie tabletki lepszej jakości"
|
||||
RECIPE.description = "Niewielkich rozmiarów niebieska tabletka. Dzięki niej jesteś inteligentniejszy."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_blue"] = 1}
|
||||
RECIPE.result = {["improved_blue"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_improvedyellow"
|
||||
RECIPE.name = "Żółte tabletki lepszej jakości"
|
||||
RECIPE.description = "Niewielkich rozmiarów żółta tabletka. Dzięki niej twój wzrok uległ znaczącej poprawie."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["basic_yellow"] = 1}
|
||||
RECIPE.result = {["improved_yellow"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 160}, -- full xp
|
||||
{level = 30, exp = 80}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualityred"
|
||||
RECIPE.name = "Czerwone tabletki doskonałej jakości"
|
||||
RECIPE.description = "Ciekawa czerwona tabletka, jej smak jest bardziej wyrafinowany niż dotychczas. Dzięki niej można poczuć się super silnym."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills4.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_red"] = 1}
|
||||
RECIPE.result = {["quality_red"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualitygreen"
|
||||
RECIPE.name = "Zielone tabletki doskonałej jakości"
|
||||
RECIPE.description = "Ciekawa zielona tabletka, jej smak jest bardziej wyrafinowany niż dotychczas. Dzięki niej jest się o wiele szybszym."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_green"] = 1}
|
||||
RECIPE.result = {["quality_green"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualityblue"
|
||||
RECIPE.name = "Niebieskie tabletki doskonałej jakości"
|
||||
RECIPE.description = "Ciekawa niebieska tabletka, jej smak jest bardziej wyrafinowany niż dotychczas. Dzięki niej jesteś super inteligentny... wiedza po prostu pędzi przez umysł."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills5.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_blue"] = 1}
|
||||
RECIPE.result = {["quality_blue"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_qualityyellow"
|
||||
RECIPE.name = "Żółte tabletki doskonałej jakości"
|
||||
RECIPE.description = "Ciekawa żółta pigułka, jej smak jest bardziej wyrafinowany niż dotychczas. Doskonale wyostrza percepcję wzrokową."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills3.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["comp_purifier"] = 1, ["improved_yellow"] = 1}
|
||||
RECIPE.result = {["quality_yellow"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 250}, -- full xp
|
||||
{level = 45, exp = 125}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_orangepill"
|
||||
RECIPE.name = "Pomarańczowe tabletki"
|
||||
RECIPE.description = "Ta tabletka pozornie sprawia, że czujesz się nieco silniejszy, a twój wzrok jest bardziej ostry."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills7.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["basic_red"] = 1, ["basic_yellow"] = 1}
|
||||
RECIPE.result = {["orange_pill"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 180}, -- full xp
|
||||
{level = 30, exp = 90}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_purplepill"
|
||||
RECIPE.name = "Fioletowe tabletki"
|
||||
RECIPE.description = "Ta tabletka pozornie sprawia, że szybciej myślisz i biegasz."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills6.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["basic_green"] = 1, ["basic_blue"] = 1}
|
||||
RECIPE.result = {["purple_pill"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 180}, -- full xp
|
||||
{level = 30, exp = 90}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "medpill_dark"
|
||||
RECIPE.name = "Czarne tabletki"
|
||||
RECIPE.description = "Ta tabletka pozornie wzmacnia wszystkie twoje zmysły."
|
||||
RECIPE.model = "models/willardnetworks/skills/pills8.mdl"
|
||||
RECIPE.category = "Dopalacze"
|
||||
RECIPE.station = "tool_chembench"
|
||||
RECIPE.ingredients = {["orange_pill"] = 1, ["purple_pill"] = 1, ["adrenaline"] = 1}
|
||||
RECIPE.result = {["dark_pill"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "medicine"
|
||||
RECIPE.level = 35
|
||||
RECIPE.experience = {
|
||||
{level = 35, exp = 300}, -- full xp
|
||||
{level = 45, exp = 150}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -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("ixhl2rp/plugins/willardskills/recipes/crafting", true)
|
||||
ix.util.IncludeDir("ixhl2rp/plugins/willardskills/recipes/bartering", true)
|
||||
ix.util.IncludeDir("ixhl2rp/plugins/willardskills/recipes/cooking", true)
|
||||
ix.util.IncludeDir("ixhl2rp/plugins/willardskills/recipes/medicine", true)
|
||||
Reference in New Issue
Block a user