Files
abysmal-isle/Scripts/Spells/Spellweaving/GiftOfLife.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

261 lines
7.8 KiB
C#

using System;
using System.Collections.Generic;
using Server.Gumps;
using Server.Mobiles;
using Server.Targeting;
namespace Server.Spells.Spellweaving
{
public class GiftOfLifeSpell : ArcanistSpell
{
private static readonly SpellInfo m_Info = new SpellInfo(
"Gift of Life", "Illorae",
-1);
private static readonly Dictionary<Mobile, ExpireTimer> m_Table = new Dictionary<Mobile, ExpireTimer>();
public GiftOfLifeSpell(Mobile caster, Item scroll)
: base(caster, scroll, m_Info)
{
}
public override TimeSpan CastDelayBase
{
get
{
return TimeSpan.FromSeconds(4.0);
}
}
public override double RequiredSkill
{
get
{
return 38.0;
}
}
public override int RequiredMana
{
get
{
return 70;
}
}
public double HitsScalar
{
get
{
return ((Caster.Skills.Spellweaving.Value / 2.4) + FocusLevel) / 100;
}
}
public static void Initialize()
{
EventSink.PlayerDeath += HandleDeath;
EventSink.Login += Login;
}
public static void HandleDeath(PlayerDeathEventArgs e)
{
HandleDeath(e.Mobile);
}
public static void HandleDeath(Mobile m)
{
if (m_Table.ContainsKey(m))
Timer.DelayCall<Mobile>(TimeSpan.FromSeconds(Utility.RandomMinMax(2, 4)), new TimerStateCallback<Mobile>(HandleDeath_OnCallback), m);
}
public static void Login(LoginEventArgs e)
{
Mobile m = e.Mobile;
if (m_Table.ContainsKey(m))
{
var timer = m_Table[m];
if (timer.EndTime > DateTime.UtcNow)
{
BuffInfo.AddBuff(m, new BuffInfo(BuffIcon.GiftOfLife, 1031615, 1075807, timer.EndTime - DateTime.UtcNow, m, null, true));
}
}
}
public static void OnLogin(LoginEventArgs e)
{
Mobile m = e.Mobile;
if (m == null || m.Alive || m_Table[m] == null)
return;
HandleDeath_OnCallback(m);
}
public override void OnCast()
{
Caster.Target = new InternalTarget(this);
}
public void Target(Mobile m)
{
BaseCreature bc = m as BaseCreature;
if (!Caster.CanSee(m))
{
Caster.SendLocalizedMessage(500237); // Target can not be seen.
}
else if (m.IsDeadBondedPet || !m.Alive)
{
// As per Osi: Nothing happens.
}
else if (m != Caster && (bc == null || !bc.IsBonded || bc.ControlMaster != Caster))
{
Caster.SendLocalizedMessage(1072077); // You may only cast this spell on yourself or a bonded pet.
}
else if (m_Table.ContainsKey(m))
{
Caster.SendLocalizedMessage(501775); // This spell is already in effect.
}
else if (CheckBSequence(m))
{
if (Caster == m)
{
Caster.SendLocalizedMessage(1074774); // You weave powerful magic, protecting yourself from death.
}
else
{
Caster.SendLocalizedMessage(1074775); // You weave powerful magic, protecting your pet from death.
SpellHelper.Turn(Caster, m);
}
m.PlaySound(0x244);
m.FixedParticles(0x3709, 1, 30, 0x26ED, 5, 2, EffectLayer.Waist);
m.FixedParticles(0x376A, 1, 30, 0x251E, 5, 3, EffectLayer.Waist);
double skill = Caster.Skills[SkillName.Spellweaving].Value;
TimeSpan duration = TimeSpan.FromMinutes(((int)(skill / 24)) * 2 + FocusLevel);
ExpireTimer t = new ExpireTimer(m, duration, this);
t.Start();
m_Table[m] = t;
BuffInfo.AddBuff(m, new BuffInfo(BuffIcon.GiftOfLife, 1031615, 1075807, duration, m, null, true));
}
FinishSequence();
}
private static void HandleDeath_OnCallback(Mobile m)
{
ExpireTimer timer;
if (m_Table.TryGetValue(m, out timer))
{
double hitsScalar = timer.Spell.HitsScalar;
if (m is BaseCreature && m.IsDeadBondedPet)
{
BaseCreature pet = (BaseCreature)m;
Mobile master = pet.GetMaster();
if (master != null && master.NetState != null && Utility.InUpdateRange(pet, master))
{
master.CloseGump(typeof(PetResurrectGump));
master.SendGump(new PetResurrectGump(master, pet, hitsScalar));
}
else
{
List<Mobile> friends = pet.Friends;
for (int i = 0; friends != null && i < friends.Count; i++)
{
Mobile friend = friends[i];
if (friend.NetState != null && Utility.InUpdateRange(pet, friend))
{
friend.CloseGump(typeof(PetResurrectGump));
friend.SendGump(new PetResurrectGump(friend, pet));
break;
}
}
}
}
else
{
m.CloseGump(typeof(ResurrectGump));
m.SendGump(new ResurrectGump(m, hitsScalar));
}
//Per OSI, buff is removed when gump sent, irregardless of online status or acceptence
timer.DoExpire();
}
}
public class InternalTarget : Target
{
private readonly GiftOfLifeSpell m_Owner;
public InternalTarget(GiftOfLifeSpell owner)
: base(10, false, TargetFlags.Beneficial)
{
m_Owner = owner;
}
protected override void OnTarget(Mobile m, object o)
{
if (o is Mobile)
{
m_Owner.Target((Mobile)o);
}
else
{
m.SendLocalizedMessage(1072077); // You may only cast this spell on yourself or a bonded pet.
}
}
protected override void OnTargetFinish(Mobile m)
{
m_Owner.FinishSequence();
}
}
private class ExpireTimer : Timer
{
private readonly Mobile m_Mobile;
private readonly GiftOfLifeSpell m_Spell;
public DateTime EndTime { get; private set; }
public ExpireTimer(Mobile m, TimeSpan delay, GiftOfLifeSpell spell)
: base(delay)
{
m_Mobile = m;
m_Spell = spell;
EndTime = DateTime.UtcNow + delay;
}
public GiftOfLifeSpell Spell
{
get
{
return m_Spell;
}
}
public void DoExpire()
{
Stop();
m_Mobile.SendLocalizedMessage(1074776); // You are no longer protected with Gift of Life.
m_Table.Remove(m_Mobile);
BuffInfo.RemoveBuff(m_Mobile, BuffIcon.GiftOfLife);
}
protected override void OnTick()
{
DoExpire();
}
}
}
}