ProtectionoftheLuckyCabbage.lua 372 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Commoner/ProtectionoftheLuckyCabbage.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.05.04 08:05:55
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. level = GetLevel(Caster)
  10. AddWard(math.ceil(level * 6.5), 1)
  11. end
  12. function remove(Caster, Target)
  13. RemoveWard()
  14. end