ModernUO/Projects/UOContent/Spells/Spellweaving/GiftOfRenewal.cs
Kamron Batman 9b7fea2c20
fix: Magic NPCs now use spell range (#1870)
### Summary
- Drastically streamlines the spell targeting by collapsing the target classes into a single `SpellTarget<T>` class.
- Moves TargetRange to the spell itself so it can be used by MageAI.
- Changes range check in MageAI to use TargetRange. This should fix target acquisition bugs
2024-08-08 07:05:27 -07:00

139 lines
4.1 KiB
C#

using System;
using System.Collections.Generic;
using Server.Targeting;
namespace Server.Spells.Spellweaving
{
public class GiftOfRenewalSpell : ArcanistSpell, ITargetingSpell<Mobile>
{
private static readonly SpellInfo _info = new(
"Gift of Renewal",
"Olorisstra",
-1
);
private static readonly Dictionary<Mobile, GiftOfRenewalTimer> _table = new();
public GiftOfRenewalSpell(Mobile caster, Item scroll = null) : base(caster, scroll, _info)
{
}
public override TimeSpan CastDelayBase => TimeSpan.FromSeconds(3.0);
public override double RequiredSkill => 0.0;
public override int RequiredMana => 24;
public void Target(Mobile m)
{
if (_table.ContainsKey(m))
{
Caster.SendLocalizedMessage(501775); // This spell is already in effect.
}
else if (!Caster.CanBeginAction<GiftOfRenewalSpell>())
{
Caster.SendLocalizedMessage(501789); // You must wait before trying again.
}
else if (CheckBSequence(m))
{
SpellHelper.Turn(Caster, m);
Caster.FixedEffect(0x374A, 10, 20);
Caster.PlaySound(0x5C9);
if (m.Poisoned)
{
m.CurePoison(m);
}
else
{
var skill = Caster.Skills.Spellweaving.Value;
var hitsPerRound = 5 + (int)(skill / 24) + FocusLevel;
var duration = 30 + FocusLevel * 10;
var t = new GiftOfRenewalTimer(Caster, m, hitsPerRound, duration);
_table[m] = t;
t.Start();
Caster.BeginAction<GiftOfRenewalSpell>();
BuffInfo.AddBuff(
m,
new BuffInfo(BuffIcon.GiftOfRenewal, 1031602, 1075797, TimeSpan.FromSeconds(duration), m, hitsPerRound.ToString())
);
}
}
}
public override void OnCast()
{
Caster.Target = new SpellTarget<Mobile>(this, TargetFlags.Beneficial);
}
public static bool StopEffect(Mobile m)
{
BuffInfo.RemoveBuff(m, BuffIcon.GiftOfRenewal);
if (_table.Remove(m, out var timer))
{
timer.Stop();
Timer.StartTimer(TimeSpan.FromSeconds(60), timer._caster.EndAction<GiftOfRenewalSpell>);
return true;
}
return false;
}
private class GiftOfRenewalTimer : Timer
{
public Mobile _caster;
public int _hitsPerRound;
public Mobile _mobile;
internal GiftOfRenewalTimer(Mobile caster, Mobile mobile, int hitsPerRound, int duration)
: base(TimeSpan.FromSeconds(2.0), TimeSpan.FromSeconds(2.0), duration / 2)
{
_caster = caster;
_mobile = mobile;
_hitsPerRound = hitsPerRound;
}
protected override void OnTick()
{
// Last tick will change running to false
if (!Running)
{
StopEffect(_mobile);
_mobile.PlaySound(0x455);
_mobile.SendLocalizedMessage(1075071); // The Gift of Renewal has faded.
return;
}
if (!_table.ContainsKey(_mobile))
{
Stop();
return;
}
if (!_mobile.Alive)
{
Stop();
StopEffect(_mobile);
return;
}
if (_mobile.Hits >= _mobile.HitsMax)
{
return;
}
var toHeal = _hitsPerRound;
SpellHelper.Heal(toHeal, _mobile, _caster);
_mobile.FixedParticles(0x376A, 9, 32, 5005, EffectLayer.Waist);
}
}
}
}