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,40 @@
--[[
| 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 = "xen_concoction"
ITEM.name = "Özlü Karışım"
ITEM.description = "Büyük bir huzura adım atmak üzeresiniz."
ITEM.category = "Xen"
ITEM.model = "models/willardnetworks/food/concoction.mdl"
ITEM.width = 1
ITEM.height = 2
ITEM.iconCam = {
pos = Vector(6.22, -199.61, 10.73),
ang = Angle(3.08, 91.74, 0),
fov = 2.58
}
ITEM.hunger = 100
ITEM.thirst = 100
ITEM.instantHeal = true
ITEM.boosts = {
strength = 15,
perception = 15,
agility = 15,
intelligence = 15
}
ITEM.spoil = false
ITEM.useSound = "ambient/levels/canals/toxic_slime_gurgle4.wav"
ITEM.colorAppendix = {["red"] = "Bu öğeyi ortaya çıkarmak veya kullanmak için CT Koordinatörlerinden veya Vort Liderlerinden izin almanız gerekir, diğer oyunculara düşürmeyin veya vermeyin."}
ITEM.outlineColor = Color(255, 0, 0, 100)
function ITEM:OnConsume(client, character)
if !character:IsVortigaunt() then return end
ix.plugin.Get("vortigaunts"):ExtractConsume(client, character)
end