BlightoftheMorning.lua 810 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : ItemScripts/BlightoftheMorning.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.10.11 12:10:41
  5. Script Purpose :
  6. :
  7. --]]
  8. --[[ Begin Item Effects
  9. * Applies Blight of the Morning when Activated. Lasts for 12 hours.
  10. * On a combat hit this spell may cast Poison on target of attack. Lasts for 24.0 seconds. Triggers about 5.0 times per minute.
  11. * Inflicts 9 poison damage on target
  12. * Inflicts 11 poison damage on target instantly and every 6 seconds
  13. * Cannot be modified except by direct means
  14. * Grants a total of 100 triggers of the spell.
  15. End Item Effects--]]
  16. function examined(Item, Player)
  17. end
  18. function used(Item, Player)
  19. Spell = GetSpell(2550440)
  20. CastCustomSpell(Spell, Player, Player)
  21. end