http://www.uodemise.com/forum/showthread.php?t=145364 BOD turn-in should have 10 second timer since pub 50 http://www.uodemise.com/forum/showthread.php?t=156441 Vet reward ore carts, gem carts, and stumps have missing range check added http://www.uodemise.com/forum/showthread.php?t=156380 Blood Oath: missing 35hp pvp dmg cap added, correct credit for kills/dmg given to caster, ML magic resist now applies. http://www.uodemise.com/forum/showthread.php?t=118729&page=3 Missing ore sizes added http://www.uodemise.com/forum/showthread.php?t=119888 Player-cast gates reveal stealthers/hiders. http://www.uodemise.com/forum/showthread.php?t=149218 Some necro spells should disturb a casting target http://www.uodemise.com/forum/showthread.php?t=149361 Failed snoop attempts should reveal thief if hidden. http://www.uodemise.com/forum/showthread.php?t=153962 Pets do not autostable in the case of a server restart/cash: fixed http://www.uodemise.com/forum/showthread.php?t=122745 Misc Aesthetic changes to spells, etc. earthquake wrong sound magic arrow inappropriate particles curse wrong sound agility wrong sound chain lightning should always play sound poison wrong sound dispel evil missing sound noble sacrifice male/female, diff sounds sacred journey missing sound
111 lines
No EOL
2.8 KiB
C#
111 lines
No EOL
2.8 KiB
C#
using System;
|
|
using System.Collections;
|
|
using Server.Targeting;
|
|
using Server.Network;
|
|
|
|
namespace Server.Spells.Fourth
|
|
{
|
|
public class CurseSpell : MagerySpell
|
|
{
|
|
private static SpellInfo m_Info = new SpellInfo(
|
|
"Curse", "Des Sanct",
|
|
227,
|
|
9031,
|
|
Reagent.Nightshade,
|
|
Reagent.Garlic,
|
|
Reagent.SulfurousAsh
|
|
);
|
|
|
|
public override SpellCircle Circle { get { return SpellCircle.Fourth; } }
|
|
|
|
public CurseSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
|
{
|
|
}
|
|
|
|
public override void OnCast()
|
|
{
|
|
Caster.Target = new InternalTarget( this );
|
|
}
|
|
|
|
private static Hashtable m_UnderEffect = new Hashtable();
|
|
|
|
public static void RemoveEffect( object state )
|
|
{
|
|
Mobile m = (Mobile)state;
|
|
|
|
m_UnderEffect.Remove( m );
|
|
|
|
m.UpdateResistances();
|
|
}
|
|
|
|
public static bool UnderEffect( Mobile m )
|
|
{
|
|
return m_UnderEffect.Contains( m );
|
|
}
|
|
|
|
public void Target( Mobile m )
|
|
{
|
|
if ( !Caster.CanSee( m ) )
|
|
{
|
|
Caster.SendLocalizedMessage( 500237 ); // Target can not be seen.
|
|
}
|
|
else if ( CheckHSequence( m ) )
|
|
{
|
|
SpellHelper.Turn( Caster, m );
|
|
|
|
SpellHelper.CheckReflect( (int)this.Circle, Caster, ref m );
|
|
|
|
SpellHelper.AddStatCurse( Caster, m, StatType.Str ); SpellHelper.DisableSkillCheck = true;
|
|
SpellHelper.AddStatCurse( Caster, m, StatType.Dex );
|
|
SpellHelper.AddStatCurse( Caster, m, StatType.Int ); SpellHelper.DisableSkillCheck = false;
|
|
|
|
Timer t = (Timer)m_UnderEffect[m];
|
|
|
|
if ( Caster.Player && m.Player /*&& Caster != m */ && t == null ) //On OSI you CAN curse yourself and get this effect.
|
|
{
|
|
TimeSpan duration = SpellHelper.GetDuration( Caster, m );
|
|
m_UnderEffect[m] = t = Timer.DelayCall( duration, new TimerStateCallback( RemoveEffect ), m );
|
|
m.UpdateResistances();
|
|
}
|
|
|
|
if ( m.Spell != null )
|
|
m.Spell.OnCasterHurt();
|
|
|
|
m.Paralyzed = false;
|
|
|
|
m.FixedParticles( 0x374A, 10, 15, 5028, EffectLayer.Waist );
|
|
m.PlaySound( 0x1E1 );
|
|
|
|
int percentage = (int)(SpellHelper.GetOffsetScalar(Caster, m, true) * 100);
|
|
TimeSpan length = SpellHelper.GetDuration(Caster, m);
|
|
|
|
string args = String.Format("{0}\t{1}\t{2}\t{3}\t{4}\t{5}\t{6}", percentage, percentage, percentage, 10, 10, 10, 10);
|
|
|
|
BuffInfo.AddBuff(m, new BuffInfo(BuffIcon.Curse, 1075835, 1075836, length, m, args.ToString()));
|
|
}
|
|
|
|
FinishSequence();
|
|
}
|
|
|
|
private class InternalTarget : Target
|
|
{
|
|
private CurseSpell m_Owner;
|
|
|
|
public InternalTarget( CurseSpell owner ) : base( Core.ML? 10 : 12, false, TargetFlags.Harmful )
|
|
{
|
|
m_Owner = owner;
|
|
}
|
|
|
|
protected override void OnTarget( Mobile from, object o )
|
|
{
|
|
if ( o is Mobile )
|
|
m_Owner.Target( (Mobile)o );
|
|
}
|
|
|
|
protected override void OnTargetFinish( Mobile from )
|
|
{
|
|
m_Owner.FinishSequence();
|
|
}
|
|
}
|
|
}
|
|
} |