add sborka

This commit is contained in:
2026-03-31 10:27:04 +03:00
commit f5e5f56c84
2345 changed files with 382127 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
function EFFECT:Init( data )
local tr = util.TraceLine( {
start = data:GetOrigin(),
endpos = data:GetOrigin() - Vector(0,0,60),
mask = MASK_SOLID_BRUSHONLY
} )
if tr.HitWorld then
ParticleEffect(table.Random({"hd_explosion","hd_explosion","hd_explosion"}), data:GetOrigin(), Angle(0,math.random(0,360),0), nil)
else
ParticleEffect(table.Random({"hd_explosion","hd_explosion","hd_explosion"}), data:GetOrigin(), Angle(0,math.random(0,360),0), nil)
end
sound.Play( "hd/new_grenadeexplo.mp3", data:GetOrigin(), 100, math.random(90,110), 1)
end
function EFFECT:Think()
return false
end
function EFFECT:Render()
end