90 lines
2.4 KiB
C#
90 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Server.Spells.Spellweaving
|
|
{
|
|
public class ThunderstormSpell : ArcanistSpell
|
|
{
|
|
private static readonly SpellInfo m_Info = new SpellInfo(
|
|
"Thunderstorm", "Erelonia",
|
|
-1);
|
|
|
|
private static readonly Dictionary<Mobile, Timer> m_Table = new Dictionary<Mobile, Timer>();
|
|
|
|
public ThunderstormSpell(Mobile caster, Item scroll = null)
|
|
: base(caster, scroll, m_Info)
|
|
{
|
|
}
|
|
|
|
public override TimeSpan CastDelayBase => TimeSpan.FromSeconds(1.5);
|
|
|
|
public override double RequiredSkill => 10.0;
|
|
public override int RequiredMana => 32;
|
|
|
|
public override void OnCast()
|
|
{
|
|
if (CheckSequence())
|
|
{
|
|
Caster.PlaySound(0x5CE);
|
|
|
|
double skill = Caster.Skills.Spellweaving.Value;
|
|
|
|
int damage = Math.Max(11, 10 + (int)(skill / 24)) + FocusLevel;
|
|
|
|
int sdiBonus = AosAttributes.GetValue(Caster, AosAttribute.SpellDamage);
|
|
|
|
int pvmDamage = damage * (100 + sdiBonus);
|
|
pvmDamage /= 100;
|
|
|
|
if (sdiBonus > 15)
|
|
sdiBonus = 15;
|
|
|
|
int pvpDamage = damage * (100 + sdiBonus);
|
|
pvpDamage /= 100;
|
|
|
|
int range = 2 + FocusLevel;
|
|
TimeSpan duration = TimeSpan.FromSeconds(5 + FocusLevel);
|
|
|
|
IPooledEnumerable<Mobile> eable = Caster.GetMobilesInRange(range);
|
|
|
|
foreach (Mobile m in eable)
|
|
{
|
|
if (Caster == m || !SpellHelper.ValidIndirectTarget(Caster, m) || !Caster.CanBeHarmful(m, false) ||
|
|
!Caster.InLOS(m))
|
|
continue;
|
|
|
|
Caster.DoHarmful(m);
|
|
|
|
Spell oldSpell = m.Spell as Spell;
|
|
|
|
SpellHelper.Damage(this, m, m.Player && Caster.Player ? pvpDamage : pvmDamage, 0, 0, 0, 0, 100);
|
|
|
|
if (oldSpell == null || oldSpell == m.Spell || CheckResisted(m))
|
|
continue;
|
|
|
|
m_Table[m] = Timer.DelayCall(duration, DoExpire, m);
|
|
|
|
BuffInfo.AddBuff(m,
|
|
new BuffInfo(BuffIcon.Thunderstorm, 1075800, duration, m, GetCastRecoveryMalus(m)));
|
|
}
|
|
|
|
eable.Free();
|
|
}
|
|
|
|
FinishSequence();
|
|
}
|
|
|
|
public static int GetCastRecoveryMalus(Mobile m) => m_Table.ContainsKey(m) ? 6 : 0;
|
|
|
|
public static void DoExpire(Mobile m)
|
|
{
|
|
if (!m_Table.TryGetValue(m, out Timer t))
|
|
return;
|
|
|
|
t.Stop();
|
|
m_Table.Remove(m);
|
|
|
|
BuffInfo.RemoveBuff(m, BuffIcon.Thunderstorm);
|
|
}
|
|
}
|
|
}
|