Advertisement
warpdragon

death_prophet_spirit_siphon

Feb 25th, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. //=================================================================================================================
  2. // Death Prophet: Spirit Siphon
  3. //=================================================================================================================
  4. "death_prophet_spirit_siphon"
  5. {
  6. // General
  7. //-------------------------------------------------------------------------------------------------------------
  8. "ID" "5685" // 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 | DOTA_ABILITY_BEHAVIOR_IGNORE_BACKSWING"
  10. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  11. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  12. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  13. "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO"
  14. "SpellDispellableType" "SPELL_DISPELLABLE_NO"
  15. "FightRecapLevel" "1"
  16. "MaxLevel" "6"
  17. // Casting
  18. //-------------------------------------------------------------------------------------------------------------
  19. "AbilityCastRange" "500"
  20. "AbilityCastPoint" "0.1"
  21.  
  22. // Time
  23. //-------------------------------------------------------------------------------------------------------------
  24. "AbilityCooldown" "0"
  25.  
  26. // Cost
  27. //-------------------------------------------------------------------------------------------------------------
  28. "AbilityManaCost" "70 65 60 55 50 50"
  29.  
  30. // Special
  31. //-------------------------------------------------------------------------------------------------------------
  32. "AbilitySpecial"
  33. {
  34. "01"
  35. {
  36. "var_type" "FIELD_FLOAT"
  37. "damage" "14"
  38. }
  39. "02"
  40. {
  41. "var_type" "FIELD_FLOAT"
  42. "damage_pct" "1.0 2.5 4.0 5.5 8.5 15"
  43. }
  44. "03"
  45. {
  46. "var_type" "FIELD_FLOAT"
  47. "haunt_duration" "6"
  48. }
  49. "04"
  50. {
  51. "var_type" "FIELD_INTEGER"
  52. "movement_slow" "5 10 15 20 30 55"
  53. }
  54. "05"
  55. {
  56. "var_type" "FIELD_INTEGER"
  57. "siphon_buffer" "250"
  58. }
  59. "06"
  60. {
  61. "var_type" "FIELD_INTEGER"
  62. "max_charges" "1 2 3 4 6 14"
  63. }
  64. "07"
  65. {
  66. "var_type" "FIELD_INTEGER"
  67. "charge_restore_time" "45"
  68. }
  69. }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement