Lots of fixes, changes, rewrites of various things, including but not limited to:

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.
This commit is contained in:
asayre 2007-05-26 03:12:41 +00:00
parent f12e9745c6
commit 2ad37d54aa
214 changed files with 4881 additions and 1243 deletions

View file

@ -4,17 +4,18 @@ using Server.Network;
namespace Server.Spells.Third
{
public class BlessSpell : Spell
public class BlessSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Bless", "Rel Sanct",
SpellCircle.Third,
203,
9061,
Reagent.Garlic,
Reagent.MandrakeRoot
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public BlessSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -4,16 +4,17 @@ using Server.Network;
namespace Server.Spells.Third
{
public class FireballSpell : Spell
public class FireballSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Fireball", "Vas Flam",
SpellCircle.Third,
203,
9041,
Reagent.BlackPearl
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public FireballSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -5,11 +5,10 @@ using Server.Items;
namespace Server.Spells.Third
{
public class MagicLockSpell : Spell
public class MagicLockSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Magic Lock", "An Por",
SpellCircle.Third,
215,
9001,
Reagent.Garlic,
@ -17,6 +16,8 @@ namespace Server.Spells.Third
Reagent.SulfurousAsh
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public MagicLockSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -4,16 +4,17 @@ using Server.Network;
namespace Server.Spells.Third
{
public class PoisonSpell : Spell
public class PoisonSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Poison", "In Nox",
SpellCircle.Third,
203,
9051,
Reagent.Nightshade
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public PoisonSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -6,17 +6,18 @@ using Server.Items;
namespace Server.Spells.Third
{
public class TelekinesisSpell : Spell
public class TelekinesisSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Telekinesis", "Ort Por Ylem",
SpellCircle.Third,
203,
9031,
Reagent.Bloodmoss,
Reagent.MandrakeRoot
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public TelekinesisSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -6,17 +6,18 @@ using Server.Items;
namespace Server.Spells.Third
{
public class TeleportSpell : Spell
public class TeleportSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Teleport", "Rel Por",
SpellCircle.Third,
215,
9031,
Reagent.Bloodmoss,
Reagent.MandrakeRoot
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public TeleportSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -5,17 +5,18 @@ using Server.Items;
namespace Server.Spells.Third
{
public class UnlockSpell : Spell
public class UnlockSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Unlock Spell", "Ex Por",
SpellCircle.Third,
215,
9001,
Reagent.Bloodmoss,
Reagent.SulfurousAsh
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public UnlockSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}

View file

@ -6,11 +6,10 @@ using Server.Items;
namespace Server.Spells.Third
{
public class WallOfStoneSpell : Spell
public class WallOfStoneSpell : MagerySpell
{
private static SpellInfo m_Info = new SpellInfo(
"Wall of Stone", "In Sanct Ylem",
SpellCircle.Third,
227,
9011,
false,
@ -18,6 +17,8 @@ namespace Server.Spells.Third
Reagent.Garlic
);
public override SpellCircle Circle { get { return SpellCircle.Third; } }
public WallOfStoneSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}