Advertisement
Guest User

SKILL

a guest
Aug 12th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. "test_ability"
  2. {
  3. // General
  4. //-------------------------------------------------------------------------------------------------------------
  5. "BaseClass" "ability_datadriven"
  6. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  7. "AbilityTextureName" "axe_battle_hunger"
  8. // Time
  9. //-------------------------------------------------------------------------------------------------------------
  10. "AbilityCooldown" "4.0"
  11. // Cost
  12. //-------------------------------------------------------------------------------------------------------------
  13. "AbilityManaCost" "44"
  14.  
  15. // Modifiers
  16. //-------------------------------------------------------------------------------------------------------------
  17. "Modifiers"
  18. {
  19. "test_modifier"
  20. {
  21.  
  22. "OnSpellStart"
  23. {
  24. "AttachEffect"
  25. {
  26. "Target" "TARGET"
  27. "ModifierName" "test_modifier"
  28.  
  29. }
  30. }
  31. }
  32. }
  33.  
  34. "Modifiers"
  35. {
  36. "test_modifier"
  37. {
  38. "Duration" "%duration"
  39. "EffectName" "generic_buff_1"
  40. "EffectAttachType" "follow_overhead"
  41. "EffectLifeDurationScale" "1"
  42. "EffectColorA" "0 0 0"
  43. "Properties"
  44. {
  45.  
  46. "MODIFIER_PROPERTY_ATTACKSPEED_BONUS_CONSTANT"
  47. {
  48. "Target" "TARGET"
  49. "ATTACKSPEED_BONUS" "%bonus_attack_speed"
  50. }
  51. }
  52. }
  53. }
  54. // Special
  55. //-------------------------------------------------------------------------------------------------------------
  56. "AbilitySpecial"
  57. {
  58. "01"
  59. {
  60. "var_type" "FIELD_INTEGER"
  61. "bonus_attack_speed" "200 220 240 260"
  62. }
  63. "02"
  64. {
  65. "var_type" "FIELD_FLOAT"
  66. "duration" "3.0 3.0 3.0 3.0"
  67. }
  68. }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement