This commit is contained in:
lifestorm
2024-08-04 23:54:45 +03:00
parent 8064ba84d8
commit 6a58f406b1
7522 changed files with 4011896 additions and 15 deletions

View File

@@ -0,0 +1,48 @@
--[[
| 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_printing_paper"
RECIPE.name = "Kağıt"
RECIPE.description = "Üzerine yazılacak bir kağıt."
RECIPE.model = "models/props_c17/paper01.mdl"
RECIPE.category = "Baskı"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 2
RECIPE.result = {["paper"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_black_ink"
RECIPE.name = "Siyah Mürekkep"
RECIPE.description = "Siyah mürekkep yazıcı kartuşu."
RECIPE.model = "models/gibs/metal_gib2.mdl"
RECIPE.category = "Baskı"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 4
RECIPE.result = {["black_ink"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_newspaper_printer"
RECIPE.name = "Gazete Yazıcısı"
RECIPE.description = "Gazete yazdırır, kağıt, siyah mürekkep ve iş izni gerektirir."
RECIPE.model = "models/willardnetworks/plotter.mdl"
RECIPE.category = "Baskı"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 100
RECIPE.result = {["newspaper_printer"] = 1}
RECIPE.buyAmount = 1 -- amount TEXT
RECIPE:Register()