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,22 @@
-- Note: this ability gets added by hand to the dummy unit that Broodmother creates.
broodmother_generate_children = class({})
LinkLuaModifier( "modifier_broodmother_generate_children", "modifiers/creatures/modifier_broodmother_generate_children", LUA_MODIFIER_MOTION_NONE )
----------------------------------------------------------------------------------------
function broodmother_generate_children:Precache( context )
PrecacheResource( "particle", "particles/baby_brood_venom_pool.vpcf", context )
PrecacheUnitByNameSync( "npc_dota_creature_broodmother_baby_c", context, -1 )
end
--------------------------------------------------------------------------------
function broodmother_generate_children:GetIntrinsicModifierName()
return "modifier_broodmother_generate_children"
end
--------------------------------------------------------------------------------