Logging of staff crafting items, Fixes for the OSI client changes The potion stacking stuff BaseWeapon fix, so that damage increase things don't multiply themselves. admin gump fixes for Firewall Various display tweaks for weight SoS no longer spawn in Tokuno Hiryu hues happified to OSI standards staff now see alliance chat correctly Play barkeeper text increased per OSI Various other OSI skill requirement changes Various unimplemented features of the SE moves EventSink for when the client version is received from client. Client validation moved out of the core. Client version validation now has options to ignore/kick/warn/annoy. Automagically tries to detect current client. Reverted the delayeddamagecontext back to OSI standards. Can no longer use bags of sending in jail. MagerySpell implemented. Now only Magery spells have a circle, and various other properties of 'em. TransformationSpellHelper now implemented. Things moved around for this. Spells now need a Timespan for the cast delay, instead of arbitrarily based on Circle. Circle doesn't make sense for non-Magery spells! Alot of the spellweaving spells added to OSI standards.
123 lines
No EOL
2.9 KiB
C#
123 lines
No EOL
2.9 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Server.Misc;
|
|
using Server.Targeting;
|
|
using Server.Network;
|
|
|
|
namespace Server.Spells.Sixth
|
|
{
|
|
public class RevealSpell : MagerySpell
|
|
{
|
|
private static SpellInfo m_Info = new SpellInfo(
|
|
"Reveal", "Wis Quas",
|
|
206,
|
|
9002,
|
|
Reagent.Bloodmoss,
|
|
Reagent.SulfurousAsh
|
|
);
|
|
|
|
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
|
|
|
public RevealSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
|
{
|
|
}
|
|
|
|
public override void OnCast()
|
|
{
|
|
Caster.Target = new InternalTarget( this );
|
|
}
|
|
|
|
public void Target( IPoint3D p )
|
|
{
|
|
if ( !Caster.CanSee( p ) )
|
|
{
|
|
Caster.SendLocalizedMessage( 500237 ); // Target can not be seen.
|
|
}
|
|
else if ( CheckSequence() )
|
|
{
|
|
SpellHelper.Turn( Caster, p );
|
|
|
|
SpellHelper.GetSurfaceTop( ref p );
|
|
|
|
List<Mobile> targets = new List<Mobile>();
|
|
|
|
Map map = Caster.Map;
|
|
|
|
if ( map != null )
|
|
{
|
|
IPooledEnumerable eable = map.GetMobilesInRange( new Point3D( p ), 1 + (int)(Caster.Skills[SkillName.Magery].Value / 20.0) );
|
|
|
|
foreach ( Mobile m in eable )
|
|
{
|
|
if ( m is Mobiles.ShadowKnight && (m.X != p.X || m.Y != p.Y) )
|
|
continue;
|
|
|
|
if ( m.Hidden && (m.AccessLevel == AccessLevel.Player || Caster.AccessLevel > m.AccessLevel) && Caster.CanBeHarmful( m, false, true ) && CheckDifficulty( Caster, m ) )
|
|
targets.Add( m );
|
|
}
|
|
|
|
eable.Free();
|
|
}
|
|
|
|
for ( int i = 0; i < targets.Count; ++i )
|
|
{
|
|
Mobile m = targets[i];
|
|
|
|
m.RevealingAction();
|
|
|
|
m.FixedParticles( 0x375A, 9, 20, 5049, EffectLayer.Head );
|
|
m.PlaySound( 0x1FD );
|
|
}
|
|
}
|
|
|
|
FinishSequence();
|
|
}
|
|
|
|
// Reveal uses magery and detect hidden vs. hide and stealth
|
|
private static bool CheckDifficulty( Mobile from, Mobile m )
|
|
{
|
|
// Reveal always reveals vs. invisibility spell
|
|
if ( !Core.AOS || InvisibilitySpell.HasTimer( m ) )
|
|
return true;
|
|
|
|
int magery = from.Skills[SkillName.Magery].Fixed;
|
|
int detectHidden = from.Skills[SkillName.DetectHidden].Fixed;
|
|
|
|
int hiding = m.Skills[SkillName.Hiding].Fixed;
|
|
int stealth = m.Skills[SkillName.Stealth].Fixed;
|
|
int divisor = hiding + stealth;
|
|
|
|
int chance;
|
|
if ( divisor > 0 )
|
|
chance = 50 * (magery + detectHidden) / divisor;
|
|
else
|
|
chance = 100;
|
|
|
|
return chance > Utility.Random( 100 );
|
|
}
|
|
|
|
private class InternalTarget : Target
|
|
{
|
|
private RevealSpell m_Owner;
|
|
|
|
public InternalTarget( RevealSpell owner ) : base( 12, true, TargetFlags.None )
|
|
{
|
|
m_Owner = owner;
|
|
}
|
|
|
|
protected override void OnTarget( Mobile from, object o )
|
|
{
|
|
IPoint3D p = o as IPoint3D;
|
|
|
|
if ( p != null )
|
|
m_Owner.Target( p );
|
|
}
|
|
|
|
protected override void OnTargetFinish( Mobile from )
|
|
{
|
|
m_Owner.FinishSequence();
|
|
}
|
|
}
|
|
}
|
|
} |