Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
149
Scripts/Spells/Third/Bless.cs
Normal file
149
Scripts/Spells/Third/Bless.cs
Normal file
@@ -0,0 +1,149 @@
|
||||
using System;
|
||||
using Server.Targeting;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Spells.Third
|
||||
{
|
||||
public class BlessSpell : MagerySpell
|
||||
{
|
||||
private static readonly SpellInfo m_Info = new SpellInfo(
|
||||
"Bless", "Rel Sanct",
|
||||
203,
|
||||
9061,
|
||||
Reagent.Garlic,
|
||||
Reagent.MandrakeRoot);
|
||||
|
||||
private static Dictionary<Mobile, InternalTimer> _Table;
|
||||
|
||||
public static bool IsBlessed(Mobile m)
|
||||
{
|
||||
return _Table != null && _Table.ContainsKey(m);
|
||||
}
|
||||
|
||||
public static void AddBless(Mobile m, TimeSpan duration)
|
||||
{
|
||||
if (_Table == null)
|
||||
_Table = new Dictionary<Mobile, InternalTimer>();
|
||||
|
||||
if (_Table.ContainsKey(m))
|
||||
{
|
||||
_Table[m].Stop();
|
||||
}
|
||||
|
||||
_Table[m] = new InternalTimer(m, duration);
|
||||
}
|
||||
|
||||
public static void RemoveBless(Mobile m, bool early = false)
|
||||
{
|
||||
if (_Table != null && _Table.ContainsKey(m))
|
||||
{
|
||||
_Table[m].Stop();
|
||||
m.Delta(MobileDelta.Stat);
|
||||
|
||||
_Table.Remove(m);
|
||||
}
|
||||
}
|
||||
|
||||
public BlessSpell(Mobile caster, Item scroll)
|
||||
: base(caster, scroll, m_Info)
|
||||
{
|
||||
}
|
||||
|
||||
public override SpellCircle Circle
|
||||
{
|
||||
get
|
||||
{
|
||||
return SpellCircle.Third;
|
||||
}
|
||||
}
|
||||
|
||||
public override void OnCast()
|
||||
{
|
||||
this.Caster.Target = new InternalTarget(this);
|
||||
}
|
||||
|
||||
public void Target(Mobile m)
|
||||
{
|
||||
if (!this.Caster.CanSee(m))
|
||||
{
|
||||
this.Caster.SendLocalizedMessage(500237); // Target can not be seen.
|
||||
}
|
||||
else if (this.CheckBSequence(m))
|
||||
{
|
||||
SpellHelper.Turn(this.Caster, m);
|
||||
|
||||
int oldStr = SpellHelper.GetBuffOffset(m, StatType.Str);
|
||||
int oldDex = SpellHelper.GetBuffOffset(m, StatType.Dex);
|
||||
int oldInt = SpellHelper.GetBuffOffset(m, StatType.Int);
|
||||
|
||||
int newStr = SpellHelper.GetOffset(Caster, m, StatType.Str, false, true);
|
||||
int newDex = SpellHelper.GetOffset(Caster, m, StatType.Dex, false, true);
|
||||
int newInt = SpellHelper.GetOffset(Caster, m, StatType.Int, false, true);
|
||||
|
||||
if ((newStr < oldStr && newDex < oldDex && newInt < oldInt) ||
|
||||
(newStr == 0 && newDex == 0 && newInt == 0))
|
||||
{
|
||||
DoHurtFizzle();
|
||||
}
|
||||
else
|
||||
{
|
||||
SpellHelper.AddStatBonus(this.Caster, m, false, StatType.Str);
|
||||
SpellHelper.AddStatBonus(this.Caster, m, true, StatType.Dex);
|
||||
SpellHelper.AddStatBonus(this.Caster, m, true, StatType.Int);
|
||||
|
||||
int percentage = (int)(SpellHelper.GetOffsetScalar(this.Caster, m, false) * 100);
|
||||
TimeSpan length = SpellHelper.GetDuration(this.Caster, m);
|
||||
string args = String.Format("{0}\t{1}\t{2}", percentage, percentage, percentage);
|
||||
BuffInfo.AddBuff(m, new BuffInfo(BuffIcon.Bless, 1075847, 1075848, length, m, args.ToString()));
|
||||
|
||||
m.FixedParticles(0x373A, 10, 15, 5018, EffectLayer.Waist);
|
||||
m.PlaySound(0x1EA);
|
||||
|
||||
AddBless(Caster, length + TimeSpan.FromMilliseconds(50));
|
||||
}
|
||||
}
|
||||
|
||||
this.FinishSequence();
|
||||
}
|
||||
|
||||
private class InternalTarget : Target
|
||||
{
|
||||
private readonly BlessSpell m_Owner;
|
||||
public InternalTarget(BlessSpell owner)
|
||||
: base(Core.ML ? 10 : 12, false, TargetFlags.Beneficial)
|
||||
{
|
||||
this.m_Owner = owner;
|
||||
}
|
||||
|
||||
protected override void OnTarget(Mobile from, object o)
|
||||
{
|
||||
if (o is Mobile)
|
||||
{
|
||||
this.m_Owner.Target((Mobile)o);
|
||||
}
|
||||
}
|
||||
|
||||
protected override void OnTargetFinish(Mobile from)
|
||||
{
|
||||
this.m_Owner.FinishSequence();
|
||||
}
|
||||
}
|
||||
|
||||
private class InternalTimer : Timer
|
||||
{
|
||||
public Mobile Mobile { get; set; }
|
||||
|
||||
public InternalTimer(Mobile m, TimeSpan duration)
|
||||
: base(duration)
|
||||
{
|
||||
Mobile = m;
|
||||
Start();
|
||||
}
|
||||
|
||||
protected override void OnTick()
|
||||
{
|
||||
BlessSpell.RemoveBless(Mobile);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user