This commit is contained in:
lifestorm
2024-08-04 23:54:45 +03:00
parent 8064ba84d8
commit 6a58f406b1
7522 changed files with 4011896 additions and 15 deletions

View File

@@ -0,0 +1,54 @@
--[[
| 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.base = "base_stackable"
ITEM.name = "Playing Card"
ITEM.model = Model("models/cards/card1.mdl")
ITEM.iconCam = {
pos = Vector(0, 0, 200),
ang = Angle(90, 0, 0),
fov = 1.12
}
ITEM.category = "Playing Cards"
ITEM.maxStackSize = 10
ITEM.altCard = false
ITEM.color = Color(255, 255, 255) -- I'm just doing this to enable advanced rendering. I spent hours trying to get them to look right with normal icons, I'm about to go crazy.
function ITEM:GetModel()
return self.altCard and "models/cards/card2.mdl" or "models/cards/card1.mdl"
end
function ITEM:GetDescription()
return "A piece of thin, specially prepared plastic that is marked with a distinguishing motif. This one is the " .. self.name .. ". It has a faint finish on both sides, to make handling easier."
end
if (CLIENT) then
function ITEM:PopulateTooltip(tooltip)
local itemEntity = self.entity
if (!itemEntity or !IsValid(itemEntity)) then return end
local entPos = itemEntity:GetPos()
local up = itemEntity:GetUp()
local posBack, posForward = entPos + up * -5, entPos + up * 5
local eyePos = EyePos()
local distanceForward, distanceBack = eyePos:DistToSqr(posForward), eyePos:DistToSqr(posBack)
local name = tooltip:GetRow("name")
local description = tooltip:GetRow("description")
if (distanceForward > distanceBack) then
name:SetText("Playing Card")
name:SizeToContents()
description:SetText("An unknown Playing Card.")
description:SizeToContents()
end
end
end