Advertisement
Guest User

npc_abilities_custom.txt

a guest
Dec 7th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. "DOTAAbilities"
  2. {
  3. "Version" "1"
  4.  
  5. "frost_attack_neutral"
  6. {
  7. //General
  8. //-------------------------------------------------------------------------------------------------------------
  9. "BaseClass" "ability_datadriven"
  10. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  11. "AbilityTextureName" "ghost_frost_attack"
  12. "AbilitySpecial"
  13. {
  14. "01"
  15. {
  16. "var_type" "FIELD_INTEGER"
  17. "attack_slow" "-100"
  18. }
  19. }
  20. "Modifiers"
  21. {
  22. "ghost_frost_attack_modifier"
  23. {
  24. "Passive" "0"
  25. "IsHidden" "0"
  26. "IsDebuff" "1"
  27. "IsPurgable""1"
  28. "Duration" "2"
  29. "EffectName" "Frost Attack"
  30. "TextureName" "ghost_frost_attack"
  31. "Properties"
  32. {
  33. "MODIFIER_PROPERTY_ATTACKSPEED_BONUS_CONSTANT" "%attack_slow"
  34. }
  35. }
  36. "ghost_modifier"
  37. {
  38. "Passive" "1"
  39. "IsHidden" "0"
  40. "OnAttack"
  41. {
  42. "ApplyModifier"
  43. {
  44. "Target" "TARGET"
  45. "ModifierName" "ghost_frost_attack_modifier"
  46. }
  47. "ThinkInterval" "2"
  48. {
  49. "OnIntervalThink"
  50. {
  51. "RemoveModifier"
  52. {
  53. "Target" "TARGET"
  54. "ModifierName" "ghost_frost_attack_modifier"
  55. }
  56. }
  57. }
  58. }
  59. }
  60. }
  61. }
  62. "satyr_b_mana_break"
  63. {
  64. "BaseClass" "ability_datadriven"
  65. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  66. "AbilityTextureName" "satyr_mana_break"
  67. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  68. "AbilitySpecial"
  69. {
  70. "01"
  71. {
  72. "var_type" "FIELD_INTEGER"
  73. "mana_break" "5"
  74. }
  75. "02"
  76. {
  77. "var_type" "FIELD_INTEGER"
  78. "damage_per_mana" "2"
  79. }
  80. }
  81. "Modifiers"
  82. {
  83. "satyr_mana_burn"
  84. {
  85. "Passive" "1"
  86. "IsHidden" "0"
  87. "OnAttack"
  88. {
  89. "OnAttackLanded"
  90. {
  91. "RunScript"
  92. {
  93. "ScriptFile" "neutral_abilities"
  94. "Function" "ManaBurn"
  95. }
  96. }
  97. }
  98. }
  99. }
  100. }
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement