CeremonialBlade.lua 563 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Scout/Bard/Troubadour/CeremonialBlade.lua
  3. Script Author : Zcoretri
  4. Script Date : 19.March.2014
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinDmg, MaxDmg, DmgType2, MinDmg2, MaxDmg2)
  9. -- Inflicts mental damage on target
  10. -- Inflicts mental damage on target
  11. SpellDamage(Target, DmgType, MinDmg, MaxDmg)
  12. if LastSpellAttackHit() then
  13. SpellDamage(Target, DmgType2, MinDmg2, MaxDmg2)
  14. end
  15. end
  16. function remove(Caster, Target)
  17. end