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,23 @@
ascension_attack_speed = class( {} )
LinkLuaModifier( "modifier_ascension_attack_speed", "modifiers/modifier_ascension_attack_speed", LUA_MODIFIER_MOTION_NONE )
-----------------------------------------------------------------------------------------
function ascension_attack_speed:Precache( context )
PrecacheResource( "particle", "particles/items2_fx/mask_of_madness.vpcf", context )
end
--------------------------------------------------------------------------------
function ascension_attack_speed:OnSpellStart()
if not IsServer() then
return
end
local flDuration = self:GetSpecialValueFor( "duration" )
self:GetCaster():AddNewModifier( self:GetCaster(), self, "modifier_ascension_attack_speed", { duration = flDuration } )
end