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.
25 lines
No EOL
624 B
C#
25 lines
No EOL
624 B
C#
using System;
|
|
using Server.Mobiles;
|
|
|
|
namespace Server.Spells.Spellweaving
|
|
{
|
|
public class SummonFeySpell : ArcaneSummon<ArcaneFey>
|
|
{
|
|
private static SpellInfo m_Info = new SpellInfo(
|
|
"Summon Fey", "Alalithra",
|
|
-1
|
|
);
|
|
|
|
public override TimeSpan CastDelayBase { get { return TimeSpan.FromSeconds( 1.5 ); } }
|
|
|
|
public override double RequiredSkill { get { return 38.0; } }
|
|
public override int RequiredMana { get { return 10; } }
|
|
|
|
public SummonFeySpell( Mobile caster, Item scroll )
|
|
: base( caster, scroll, m_Info )
|
|
{
|
|
}
|
|
|
|
public override int Sound { get { return 0x217; } }
|
|
}
|
|
} |