ElementalMastery.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/ElementalMastery.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 08:08:25
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- code to cast the spell
  10. Say(Caster, "Whoops! Guess this is not implemented yet!")
  11. -- Info from spell_display_effects (remove from script when done)
  12. -- On a hostile spell cast this spell has a 12% chance to cast Inferno on target of spell. Lasts for 12.0 seconds.
  13. -- Inflicts 592 - 888 heat damage on target
  14. -- Inflicts 194 - 292 heat damage on target every 3 seconds
  15. -- Applies Inferno. Lasts for 12.0 seconds.
  16. -- Increases Crit Chance of pet by 20.0
  17. -- Prevents AOE (except when direct)
  18. -- Cannot be modified except by direct means
  19. -- Improves the damage of the Conjuror's pet.
  20. -- Increases the base damage of hostile spells by 10%
  21. -- Cannot be modified except by direct means
  22. end
  23. function tick(Caster, Target)
  24. -- code to process each call_frequency (tick) set in spell_tiers
  25. end
  26. function remove(Caster, Target)
  27. -- code to remove the spell
  28. end