Advertisement
Guest User

Untitled

a guest
Mar 17th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. "ability_nm_spawn_undead_walker"
  2. {
  3. "BaseClass" "ability_datadriven"
  4. "AbilityTextureName" "warlock_fatal_bonds"
  5. "MaxLevel" "1"
  6.  
  7. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  8.  
  9. "AbilityGoldCost" "10"
  10.  
  11. "OnSpellStart"
  12. {
  13. "RunScript"
  14. {
  15. "ScriptFile" "buildings/rally_point.lua"
  16. "Function" "Check"
  17. }
  18. "SpawnUnit"
  19. {
  20. "UnitName" "npc_nm_min_undead_walker"
  21. "Target" "CASTER"
  22. "UnitCount" "1"
  23. "UnitLimit" "100"
  24. "GrantsGold" "0"
  25. "GrantsXP" "0"
  26. "SpawnRadius" "10"
  27. "OnSpawn"
  28. {
  29. "ApplyModifier"
  30. {
  31. "ModifierName" "modifier_phased"
  32. "Target" "TARGET"
  33. "Duration" "0.03"
  34. }
  35. "RunScript"
  36. {
  37. "ScriptFile" "buildings/rally_point.lua"
  38. "Function" "MoveToRallyPoint"
  39. }
  40. }
  41. }
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement