mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-19 14:43: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 = "Surowe mięso z Antliona"
|
||||
ITEM.description = "Gumiasty, odcięty kawałek mięsa Antliona. Pachnie i wygląda nieco dziwnie."
|
||||
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"] = "Możesz pokroić martwego Antliona uderzając w niego bronią białą i zdobyć z niego w ten sposób mięso."}
|
||||
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 = "Surowe syntetyczne mięso"
|
||||
ITEM.description = "Substancje mięsne sprasowane w blok białkowy. Mięso jest surowe i nierafinowane."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/steak1.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Syntetyczne mięso nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
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 = "Surowy labraks"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Surowa wołowina"
|
||||
ITEM.description = "Kawał surowej wołowiny, rzadki widok jak na te czasy."
|
||||
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 = "Wzbogacona Wołowina"
|
||||
ITEM.description = "Zawiera 2 kawałki wołowiny. Potrzeba noża do otworzenia."
|
||||
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("Nie posiadasz "..requirementName.." aby otworzyć ten przedmiot.")
|
||||
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("Potrzebujesz"..requirementAmount.." slotów w ekwipunku aby otworzyć ten przedmiot.")
|
||||
return
|
||||
end
|
||||
|
||||
client:NotifyLocalized("Otworzyłeś "..item.name.." i dostałeś "..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 = "Surowe ptasie mięso"
|
||||
ITEM.description = "Surowe mięso z jeszcze niedawno pięknie śpiewającego ptaka."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat5.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Możesz pokroić martwego ptaka uderzając w niego bronią białą i zdobyć z niego w ten sposób mięso."}
|
||||
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 = "Kość"
|
||||
ITEM.description = "Niesmaczna kość z resztkami mięsa, jest niezdatna do spożycia, ale może służyć do produkcji mączki kostnej."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/gibs/hgibs_spine.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Możesz zarżnąć zwierzęta, aby pozyskać ich kości."}
|
||||
@@ -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 = "Surowy karp"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Surowy sum"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Surowy kurczak"
|
||||
ITEM.description = "Przemysł skolektywizowany w odległych krainach, osadzony w felernych warunkach i fabrykach do produkcji mięsa."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat3.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Surowego kurczaka nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
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,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 = "Kawa w proszku"
|
||||
ITEM.description = "Przetarta puszka z kawą w proszku."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/wn_food_can.mdl"
|
||||
ITEM.skin = 5
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Ciasto na chleb"
|
||||
ITEM.description = "Ciasto na chleb czekające na wypieczenie w piecu."
|
||||
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 = "Jajko"
|
||||
ITEM.description = "W tych czasach raczej częściej używa się jajek w proszku."
|
||||
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 = "Surowy łosoś"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Surowy śledź"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Mąka"
|
||||
ITEM.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."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food6.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
|
||||
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 = "Surowe mięso z Headcraba"
|
||||
ITEM.description = "Surowe mięso z pasożyta."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/meat5.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Możesz pokroić martwego Headcraba uderzając w niego bronią białą i zdobyć z niego w ten sposób mięso."}
|
||||
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 = "Suszone zioła do gotowania"
|
||||
ITEM.description = "Różne suszone zioła do gotowania."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food7.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Produkt margarynowy"
|
||||
ITEM.description = "Puszka produkowanej przemysłowo margaryny. Topi się pod wpływem ciepła."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food5.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Suchy makaron"
|
||||
ITEM.description = "Suchy i mało apetyczny."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_junk/garbage_takeoutcarton001a.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Ciasto cukiernicze"
|
||||
ITEM.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."
|
||||
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 = "Surowy ziemniak"
|
||||
ITEM.description = "Okrągły kartofel, nigdy ich zbyt wiele."
|
||||
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 = "Opakowanie białka jajecznego"
|
||||
ITEM.description = "Opakowanie białka w proszku o odrzucającym zapachu."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food1.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Surowy pstrąg tęczowy"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Surowa pijawka"
|
||||
ITEM.description = "Stworzenie zasiedlające się tam gdzie woda, po ugotowaniu całkiem pożywne."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/leech.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
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 = "Surowy homar"
|
||||
ITEM.description = "Dość rzadki widok w dzisiejszych czasach."
|
||||
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 = "Sól"
|
||||
ITEM.description = "Pozornie zwykła solniczka z solą o nieco dziwnym, kwaśnym zapachu..."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/foods/salt.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
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 = "Baza do sosów"
|
||||
ITEM.description = "Baza do 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. Dzięki niej każdy kucharz może stworzyć własny unikalny sos, który idealnie dopasuje się do swojego dania."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_junk/garbage_metalcan001a.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Możesz stworzyć ten przedmiot przy pomocy umiejętności Gotowania."}
|
||||
@@ -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 = "Suszone aromatyczne przyprawy"
|
||||
ITEM.description = "Dodają smaku i aromatu potrawom, nawet w trudnych warunkach."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food8.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Granulowany słodki baton"
|
||||
ITEM.description = "Chrupiący batonik czekoladowy. Jest całkiem smaczny!"
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food3.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
@@ -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 = "Słodzone ciasto cukiernicze"
|
||||
ITEM.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."
|
||||
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 = "Pijawki w puszce"
|
||||
ITEM.description = "Pijawki w puszce. Do gotowania, zdecydowanie jeszcze niegotowe."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/cmb_food2.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
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("Nie posiadasz "..requirementName.." do złożenia tego przedmiotu.")
|
||||
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("Potrzebujesz "..requirementAmount.." slotów w ekwipunku aby otworzyć ten przedmiot")
|
||||
return
|
||||
end
|
||||
|
||||
client:NotifyLocalized("Otworzyłes "..item.name.." i dostałeś "..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 = "Surowy pomidor"
|
||||
ITEM.description = "Świeżo zerwany pomidor, jeszcze nie oczyszczony i pokryty brudem."
|
||||
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 = "Paczka warzyw"
|
||||
ITEM.description = "Mieszanka kolorowych, chrupiących warzyw gotowych do spożycia i wzbogacenia twojej diety."
|
||||
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 = "Ocet"
|
||||
ITEM.description = "Kwasowy płyn, który może być użyty do marynowania, gotowania i czyszczenia."
|
||||
ITEM.category = "Ingredient"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/prop_bar_bottle_i.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Ten składnik nabędziesz przy pomocy umiejętności Handlu (wymaga pozwolenia) lub ze sklepu."}
|
||||
|
||||
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 = "Ekstrakt z Antliona"
|
||||
ITEM.description = "Twoje ciało wydaje się totalnie odprężone. Ekstrakt się świeci."
|
||||
ITEM.category = "Xen"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/n7/larval_essence01.mdl"
|
||||
ITEM.colorAppendix = {["red"] = "Potrzebujesz zgody administracji lub przywództwa Vortów żeby używać tego przedmiotu, nie upuszczaj go i nie przekazuj innym graczom."}
|
||||
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 = "Zioła z Xenu"
|
||||
ITEM.description = "Dziwna roślina z xenu, można użyć jej do gotowania."
|
||||
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 = "Jagody z Xenu"
|
||||
ITEM.description = "Garść dziwnych jagód z Xenu, zjadliwe po ugotowaniu."
|
||||
ITEM.category = "Xen"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/berries02.mdl"
|
||||
Reference in New Issue
Block a user