Files
2HUCardTDGame/aghanim_singleplayer/scripts/vscripts/abilities/ascension_chilling_touch.lua
2021-10-24 15:36:18 -04:00

19 lines
777 B
Lua
Executable File

ascension_chilling_touch = class( {} )
LinkLuaModifier( "modifier_ascension_chilling_touch", "modifiers/modifier_ascension_chilling_touch", LUA_MODIFIER_MOTION_NONE )
-----------------------------------------------------------------------------------------
function ascension_chilling_touch:Precache( context )
PrecacheResource( "particle", "particles/generic_gameplay/generic_slowed_cold.vpcf", context )
PrecacheResource( "particle", "particles/status_fx/status_effect_frost.vpcf", context )
end
--------------------------------------------------------------------------------
function ascension_chilling_touch:GetIntrinsicModifierName()
return "modifier_ascension_chilling_touch"
end
--------------------------------------------------------------------------------