initial commit

This commit is contained in:
2021-10-24 15:36:18 -04:00
commit b9a5a8fe23
11982 changed files with 220468 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
modifier_slark_sleep = class({})
--------------------------------------------------------------------------------
function modifier_slark_sleep:IsHidden()
return false
end
--------------------------------------------------------------------------------
function modifier_slark_sleep:CanParentBeAutoAttacked()
return false
end
--------------------------------------------------------------------------------
function modifier_slark_sleep:CheckState()
local state = {}
if IsServer() then
state[MODIFIER_STATE_ROOTED] = true
state[MODIFIER_STATE_BLIND] = true
state[MODIFIER_STATE_STUNNED] = true
state[MODIFIER_STATE_SILENCED] = true
end
return state
end
-----------------------------------------------------------------------
function modifier_slark_sleep:GetEffectName()
return "particles/generic_gameplay/generic_sleep.vpcf"
end
--------------------------------------------------------------------------------
function modifier_slark_sleep:GetEffectAttachType()
return PATTACH_OVERHEAD_FOLLOW
end
-----------------------------------------------------------------------------