mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
30 lines
719 B
Lua
30 lines
719 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/
|
|
--]]
|
|
|
|
DEFINE_BASECLASS("base_gmodentity")
|
|
local PLUGIN = PLUGIN
|
|
|
|
TYPE_WATERCAN = 0
|
|
TYPE_SUPPLIES = 1
|
|
|
|
ENT.Type = "anim"
|
|
ENT.Author = "M!NT, Fruity"
|
|
ENT.PrintName = "Trash Pile"
|
|
ENT.Contact = "Willard Networks"
|
|
ENT.Purpose = "Lootable trash pile."
|
|
ENT.Spawnable = true
|
|
ENT.AdminOnly = true
|
|
ENT.PhysgunDisable = true
|
|
ENT.bNoPersist = true
|
|
|
|
function ENT:SetupDataTables()
|
|
self:DTVar("Int", 0, "index")
|
|
end
|