mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
41 lines
967 B
Lua
41 lines
967 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 = "Antlion Sandwich"
|
|
ITEM.description = "Slap two pieces of bread together with a slab of antlion meat in-between and you have yourself a sandwich."
|
|
ITEM.category = "Food"
|
|
ITEM.model = "models/willardnetworks/food/sandwich.mdl"
|
|
ITEM.width = 1
|
|
ITEM.height = 1
|
|
ITEM.color = Color(217, 243, 217)
|
|
ITEM.iconCam = {
|
|
pos = Vector(509.64, 427.61, 310.24),
|
|
ang = Angle(24.9, 219.85, 0),
|
|
fov = 0.75
|
|
}
|
|
ITEM.hunger = 45
|
|
ITEM.boosts = {
|
|
strength = 3,
|
|
perception = 1
|
|
}
|
|
ITEM.spoil = true
|
|
ITEM.useSound = "npc/barnacle/barnacle_crunch2.wav"
|
|
ITEM.holdData = {
|
|
vectorOffset = {
|
|
right = -2,
|
|
up = 0,
|
|
forward = -0.5
|
|
},
|
|
angleOffset = {
|
|
right = 0,
|
|
up = 0,
|
|
forward = 90
|
|
},
|
|
} |