mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 06:03:47 +03:00
Upload
This commit is contained in:
@@ -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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Çiğ Antlion Eti"
|
||||
ITEM.description = "Bir antlion aslanından kesilmiş, biraz sümüksü uzaylı eti. Garip kokuyor ve görünüyor."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.model = "models/willardnetworks/food/raw_alienmeat.mdl"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(125.61, 104.91, 78.59),
|
||||
ang = Angle(25.01, 219.94, 0),
|
||||
fov = 4
|
||||
}
|
||||
ITEM.colorAppendix = {["blue"] = "Antlionları kesebilir ve bir yakın dövüş silahıyla leşlerine vurarak etlerini elde edebilirsiniz."}
|
||||
ITEM.hunger = 15
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw
|
||||
end
|
||||
}
|
||||
@@ -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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Çiğ Yapay Et"
|
||||
ITEM.description = "Bir protein bloğuna sıkıştırılmış et maddeleri. Ham ve rafine edilmemiş."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/steak1.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Yapay Eti Takas becerisi ile (gıda maddesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(509.64, 427.61, 310.24),
|
||||
ang = Angle(24.99, 220.01, 0),
|
||||
fov = 0.62
|
||||
}
|
||||
ITEM.hunger = 15
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw == true
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Raw Sea Bass"
|
||||
ITEM.description = "A quite rare sight these days."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/foodnhouseholditems/fishbass.mdl"
|
||||
@@ -0,0 +1,36 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Çiğ Sığır Eti"
|
||||
ITEM.description = "Bugünlerde oldukça nadir bulunan çiğ bir sığır eti."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat3.mdl"
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(509.64, 427.61, 310.24),
|
||||
ang = Angle(24.95, 220.02, 0),
|
||||
fov = 0.86
|
||||
}
|
||||
ITEM.hunger = 32
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw
|
||||
end
|
||||
}
|
||||
@@ -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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Zenginleştirilmiş Sığır Eti Rezervi"
|
||||
ITEM.description = "İki çiğ sığır eti dilimi içerir. Açmak için bıçak gerekir."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food4.mdl"
|
||||
|
||||
ITEM.useSound = "npc/barnacle/barnacle_crunch3.wav"
|
||||
ITEM.openedItem = "ing_beef" -- the uniqueID e.g what comes after 'sh_' in the file name unless ITEM.uniqueID is specified
|
||||
ITEM.openRequirementAmount = 2
|
||||
ITEM.openRequirement = "tool_knife" -- same desc as above
|
||||
|
||||
ITEM.functions.Open = {
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
local requirementTable = ix.item.list[item.openRequirement]
|
||||
local requirementName = requirementTable.name or item.openRequirement
|
||||
|
||||
if (item.openRequirement) then
|
||||
local openerItem = inventory:HasItem(item.openRequirement)
|
||||
if !openerItem then
|
||||
client:NotifyLocalized("You do not have a "..requirementName.." to assemble this item")
|
||||
return false
|
||||
else
|
||||
if (openerItem.isTool) then
|
||||
openerItem:DamageDurability(1)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
client:EmitSound(item.useSound)
|
||||
|
||||
-- Spawn the opened item if it exists
|
||||
local requirementAmount = item.openRequirementAmount or 1
|
||||
if (item.openedItem) then
|
||||
local openedItemName = ix.item.list[item.openedItem].name or item.openedItem
|
||||
if (!inventory:Add(item.openedItem, requirementAmount)) then
|
||||
client:NotifyLocalized("You need "..requirementAmount.." inventory spaces to open this item.")
|
||||
return
|
||||
end
|
||||
|
||||
client:NotifyLocalized("You have opened a "..item.name.." and been given a "..openedItemName)
|
||||
end
|
||||
end
|
||||
}
|
||||
@@ -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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Çiğ Kuş Eti"
|
||||
ITEM.description = "Bir zamanlar uçan bir kuşun eti. Çiğ."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat5.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Kuşları kesebilir ve bir yakın dövüş silahıyla leşlerine vurarak etlerini elde edebilirsiniz."}
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(509.64, 427.61, 310.24),
|
||||
ang = Angle(24.97, 220.02, 0),
|
||||
fov = 0.87
|
||||
}
|
||||
ITEM.hunger = 7
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Kemik"
|
||||
ITEM.description = "Bazı et kalıntıları olan tatsız bir kemik. Kemik unu yapmaya yarayabilir."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/gibs/hgibs_spine.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "You can butcher animals to obtain their bones."}
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Raw Carp"
|
||||
ITEM.description = "A quite rare sight these days."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/foodnhouseholditems/piranha.mdl"
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Raw Catfish"
|
||||
ITEM.description = "A quite rare sight these days."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/foodnhouseholditems/fishcatfish.mdl"
|
||||
@@ -0,0 +1,32 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Çiğ Tavuk"
|
||||
ITEM.description = "Uzak diyarlarda kolektifleştirilmiş, kötü koşullarda ve fabrikalarda et üretmek için kurulmuş bir endüstri."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat3.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Çiğ Tavuğu Takas becerisiyle (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
ITEM.hunger = 20
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Kahve Tozu"
|
||||
ITEM.description = "Bir kap kahve tozu."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/coffee_nescafe.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Ekmek Hamuru"
|
||||
ITEM.description = "Lezzetli ekmek elde etmek için ilk bileşen."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/dough.mdl"
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Yumurta"
|
||||
ITEM.description = "Bugünlerde genellikle Yumurta Protein Paketi ile değiştiriliyor."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/egg1.mdl"
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Çiğ Somon"
|
||||
ITEM.description = "Bugünlerde oldukça nadir görülen bir manzara."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/fishgolden.mdl"
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Raw Herring"
|
||||
ITEM.description = "A quite rare sight these days."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/fishgolden.mdl"
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Doymuş Un"
|
||||
ITEM.description = "Kâğıt torba biraz dolgulu olduğundan içinde olduğundan daha fazla un varmış gibi görünüyor. Sıradan un gibi görünüyor ve kokuyor, arada birkaç tuhaf siyah nokta var."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food6.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Acquire this ingredient with the Bartering skill (requires a food ingredient permit) or from a shop."}
|
||||
|
||||
ITEM.maxStackSize = 24
|
||||
@@ -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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Çiğ Headcrab Eti"
|
||||
ITEM.description = "Bir zamanlar iltihaplanmış bir parazitin eti. Çiğ."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat5.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Headcrableri kesebilir ve dorğu bir alet yardımıyla leşlerine vurarak etlerini elde edebilirsiniz."}
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(509.64, 427.61, 310.24),
|
||||
ang = Angle(24.97, 220.02, 0),
|
||||
fov = 0.87
|
||||
}
|
||||
ITEM.hunger = 12
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Kurutulmuş Yemeklik Otlar"
|
||||
ITEM.description = "Yemek pişirmek için çeşitli kurutulmuş otlar."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food7.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Margarin Ürünü"
|
||||
ITEM.description = "Fabrikada üretilen margarin konservesi. Isı altında erir."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food5.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Kurutulmuş Erişte"
|
||||
ITEM.description = "Kuru ve lezzetsiz görünüyor."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Acquire this ingredient with the Bartering skill (requires a food ingredient permit) or from a shop."}
|
||||
@@ -0,0 +1,21 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Pasta Hamuru"
|
||||
ITEM.description = "Pastacılık ürünleri için daha uygun bir hamur."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/props/dough.mdl"
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(-509.64, -427.61, 310.24),
|
||||
ang = Angle(24.86, 400, 0),
|
||||
fov = 0.51
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "veg_potato"
|
||||
ITEM.name = "Raw Potato"
|
||||
ITEM.description = "A rounded potato, there's not enough of this around."
|
||||
ITEM.category = "Food"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_phx/misc/potato.mdl"
|
||||
ITEM.cost = 5
|
||||
ITEM.maxStock = 8
|
||||
ITEM.hunger = 15
|
||||
ITEM.thirst = -15
|
||||
ITEM.spoil = true
|
||||
ITEM.useSound = "npc/barnacle/barnacle_crunch3.wav"
|
||||
ITEM.holdData = {
|
||||
vectorOffset = {
|
||||
right = 0.5,
|
||||
up = 0,
|
||||
forward = 1
|
||||
},
|
||||
angleOffset = {
|
||||
right = 0,
|
||||
up = 0,
|
||||
forward = -0
|
||||
},
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Yumurta Protein Paketi"
|
||||
ITEM.description = "Bir paket toz protein. Biraz iğrenç bir kokusu var."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Raw Rainbow Trout"
|
||||
ITEM.description = "A very rare sight these days."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/foodnhouseholditems/fishrainbow.mdl"
|
||||
@@ -0,0 +1,38 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Ham Sülük Karkası"
|
||||
ITEM.description = "Okyanusları saran uzaylı yaratık, pişirilirse biraz besleyici."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/leech.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Çiğ Sülükleri Takas becerisi ile (gıda maddesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(509.64, 427.61, 310.24),
|
||||
ang = Angle(24.92, 219.99, 0),
|
||||
fov = 0.48
|
||||
}
|
||||
ITEM.maxStackSize = 15
|
||||
ITEM.hunger = 15
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
character:SetHunger(math.Clamp(character:GetHunger() - (client:Team() == FACTION_BIRD and item.hunger * 2 or item.hunger), 0, 100))
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return ix.faction.Get(item.player:Team()).canEatRaw
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Raw Lobster"
|
||||
ITEM.description = "A quite rare sight these days."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/foodnhouseholditems/lobster.mdl"
|
||||
@@ -0,0 +1,22 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Tuzluk"
|
||||
ITEM.description = "Görünüşe göre garip bir asidik kokusu olan bir tuz kabı..."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/foods/salt.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(509.64, 427.61, 310.24),
|
||||
ang = Angle(24.85, 219.98, 0),
|
||||
fov = 0.48
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "El Yapımı Sos Tabanı"
|
||||
ITEM.description = "Bir sosun temellerini şekillendirmek için bir araya getirilen malzemelerin karışımı."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu eşyayı Aşçılık becerisi ile yapabilirsiniz."}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Kurutulmuş Baharat Aroması"
|
||||
ITEM.description = "Ambalajdan garip kokular yayılıyor."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food8.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Granül Tatlı-Bar"
|
||||
ITEM.description = "Tatlandırılmış maddelerden yapılan çıtır çikolata benzeri bir bar."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food3.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
@@ -0,0 +1,21 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Şekerli Pasta Hamuru"
|
||||
ITEM.description = "Tatlı hamur işleri için uygun meyvelerle tatlandırılmış hamur işi."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/props/sweetdough.mdl"
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(-509.64, -427.61, 310.24),
|
||||
ang = Angle(24.86, 400, 0),
|
||||
fov = 0.51
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Konserve Sülükler"
|
||||
ITEM.description = "Konserve sülük. Yemek pişirmek için kullanılır ve kesinlikle henüz tüketime hazır değildir."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food2.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
ITEM.junk = "junk_tincan"
|
||||
|
||||
ITEM.useSound = "npc/barnacle/barnacle_crunch3.wav"
|
||||
ITEM.openedItem = "ing_raw_leech" -- the uniqueID e.g what comes after 'sh_' in the file name unless ITEM.uniqueID is specified
|
||||
ITEM.openRequirementAmount = 3
|
||||
ITEM.openRequirement = "tool_knife" -- same desc as above
|
||||
|
||||
ITEM.functions.Open = {
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
local requirementTable = ix.item.list[item.openRequirement]
|
||||
local requirementName = requirementTable.name or item.openRequirement
|
||||
|
||||
if (item.openRequirement) then
|
||||
local openerItem = inventory:HasItem(item.openRequirement)
|
||||
if !openerItem then
|
||||
client:NotifyLocalized("You do not have a "..requirementName.." to assemble this item")
|
||||
return false
|
||||
else
|
||||
if (openerItem.isTool) then
|
||||
openerItem:DamageDurability(1)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
client:EmitSound(item.useSound)
|
||||
|
||||
-- Spawn the opened item if it exists
|
||||
local requirementAmount = item.openRequirementAmount or 1
|
||||
if (item.openedItem) then
|
||||
local openedItemName = ix.item.list[item.openedItem].name or item.openedItem
|
||||
if (!inventory:Add(item.openedItem, requirementAmount)) then
|
||||
client:NotifyLocalized("You need "..requirementAmount.." inventory spaces to open this item.")
|
||||
return
|
||||
end
|
||||
|
||||
client:NotifyLocalized("You have opened a "..item.name.." and been given a "..openedItemName)
|
||||
end
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "veg_tomato"
|
||||
ITEM.name = "Raw Tomato"
|
||||
ITEM.description = "A freshly picked Tomato not yet cleaned off and covered in dirt."
|
||||
ITEM.category = "Food"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_phx/misc/potato.mdl"
|
||||
ITEM.cost = 5
|
||||
ITEM.maxStock = 8
|
||||
ITEM.hunger = 10
|
||||
ITEM.thirst = -15
|
||||
ITEM.spoil = true
|
||||
ITEM.useSound = "npc/barnacle/barnacle_crunch3.wav"
|
||||
ITEM.holdData = {
|
||||
vectorOffset = {
|
||||
right = 0.5,
|
||||
up = 0,
|
||||
forward = 1
|
||||
},
|
||||
angleOffset = {
|
||||
right = 0,
|
||||
up = 0,
|
||||
forward = -0
|
||||
},
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Sebze Paketi"
|
||||
ITEM.description = "Etikette bu paketin pişirme amacıyla kullanılmaya hazır bir dizi sebze içerdiği yazmaktadır."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/foods/vege.mdl"
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(147.56, 124.19, 87.57),
|
||||
ang = Angle(23.52, 220.08, 0),
|
||||
fov = 4.7
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Sirke"
|
||||
ITEM.description = "Sulu bir şişe asidik sıvı, cips dükkanı gibi kokuyor. Koklamak ağzınızı ve gözlerinizi sulandırır."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/prop_bar_bottle_i.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Bu malzemeyi Takas becerisi ile (gıda malzemesi izni gerektirir) veya bir dükkandan edinin."}
|
||||
|
||||
ITEM.maxStackSize = 24
|
||||
@@ -0,0 +1,35 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Antlion Özü"
|
||||
ITEM.description = "Vücudunuz onun varlığında kendini rahat hissediyor. Parlıyor."
|
||||
ITEM.category = "Xen"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/n7/larval_essence01.mdl"
|
||||
ITEM.colorAppendix = {["red"] = "Bu öğeyi ortaya çıkarmak veya kullanmak için CT Koordinatörlerinden veya Vorti Liderlerinden izin almanız gerekir, diğer oyunculara düşürmeyin veya vermeyin."}
|
||||
ITEM.outlineColor = Color(255, 0, 0, 100)
|
||||
|
||||
ITEM.functions.Consume = {
|
||||
icon = "icon16/user.png",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
item:OnConsume(client, character)
|
||||
end,
|
||||
OnCanRun = function(item)
|
||||
return item.player:IsVortigaunt()
|
||||
end
|
||||
}
|
||||
|
||||
function ITEM:OnConsume(client, character)
|
||||
if !character:IsVortigaunt() then return end
|
||||
ix.plugin.Get("vortigaunts"):ExtractConsume(client, character)
|
||||
end
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Xen Bitkisi"
|
||||
ITEM.description = "Yemek pişirmek için kullanılabilen garip bir Xenian bitkisi."
|
||||
ITEM.category = "Xen"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/xenflora.mdl"
|
||||
@@ -0,0 +1,16 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Xen Meyveleri"
|
||||
ITEM.description = "Birkaç garip Xen meyvesi, görünüşe göre pişirilirse yenilebilir."
|
||||
ITEM.category = "Xen"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/berries02.mdl"
|
||||
Reference in New Issue
Block a user