mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
31 lines
844 B
Lua
31 lines
844 B
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.name = "Artificial Paste"
|
|
ITEM.description = "A white jar filled with gooey artificial slop. It's not particularly filling, tastes very chemical and is rather unpleasant to eat but it does the job."
|
|
ITEM.category = "Food"
|
|
ITEM.model = "models/props_lab/jar01b.mdl"
|
|
ITEM.width = 1
|
|
ITEM.height = 1
|
|
ITEM.iconCam = {
|
|
pos = Vector(6.22, -199.61, 10.73),
|
|
ang = Angle(3.12, 91.84, 0),
|
|
fov = 3.64
|
|
}
|
|
ITEM.hunger = 20
|
|
ITEM.spoil = true
|
|
ITEM.spoilTime = 2
|
|
ITEM.boosts = {
|
|
strength = -2,
|
|
agility = -1
|
|
}
|
|
|
|
ITEM.useSound = "ambient/levels/canals/toxic_slime_gurgle4.wav"
|
|
ITEM.junk = "junk_jar" |