Advertisement
warpdragon

broodmother_spawn_spiderlings

Feb 25th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. //=================================================================================================================
  2. // Broodmother: Spawn Spiderlings
  3. //=================================================================================================================
  4. "broodmother_spawn_spiderlings"
  5. {
  6. // General
  7. //-------------------------------------------------------------------------------------------------------------
  8. "ID" "5279" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats.
  9. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  10. "FightRecapLevel" "1"
  11. "MaxLevel" "6"
  12. // Unit Targeting
  13. //-------------------------------------------------------------------------------------------------------------
  14. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  15. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  16. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  17. "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO"
  18. "SpellDispellableType" "SPELL_DISPELLABLE_YES"
  19.  
  20. // Stats
  21. //-------------------------------------------------------------------------------------------------------------
  22. "AbilityCastRange" "700"
  23. "AbilityCastPoint" "0.2 0.2 0.2 0.2 0.2 0.2"
  24. "AbilityCooldown" "10.0 10.0 10.0 10.0 10.0"
  25. "AbilityManaCost" "120 120 120 120 120 120"
  26.  
  27. // Stats
  28. //-------------------------------------------------------------------------------------------------------------
  29. "AbilityModifierSupportValue" "0.0" // Modifier has no support value
  30.  
  31. // Special
  32. //-------------------------------------------------------------------------------------------------------------
  33. "AbilitySpecial"
  34. {
  35. "01"
  36. {
  37. "var_type" "FIELD_FLOAT"
  38. "buff_duration" "2.0 2.0 2.0 2.0 2.0 2.0"
  39. }
  40. "02"
  41. {
  42. "var_type" "FIELD_FLOAT"
  43. "spiderling_duration" "60.0 60.0 60.0 60.0 60.0 60.0"
  44. }
  45. "03"
  46. {
  47. "var_type" "FIELD_INTEGER"
  48. "damage" "70 140 210 280 420 980"
  49. }
  50. "04"
  51. {
  52. "var_type" "FIELD_INTEGER"
  53. "count" "1 2 3 4 6 14"
  54. }
  55. "05"
  56. {
  57. "var_type" "FIELD_INTEGER"
  58. "projectile_speed" "1200"
  59. }
  60. }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement