mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
40 lines
1.2 KiB
Lua
40 lines
1.2 KiB
Lua
|
|
--[[
|
||
|
|
| 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 = "Mélange d'extraits"
|
||
|
|
ITEM.description = "Vous vous apprêtez à embarquer dans une grande quiétude."
|
||
|
|
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"] = "You need permission from CT Coordinators or Vort Leads to spawn or use this item, do not drop or hand it to other players."}
|
||
|
|
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
|