mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
35 lines
819 B
Lua
35 lines
819 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.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
|
|
},
|
|
} |