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:
parent
f12e9745c6
commit
2ad37d54aa
214 changed files with 4881 additions and 1243 deletions
|
|
@ -7,11 +7,10 @@ using Server.Mobiles;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class DispelSpell : Spell
|
||||
public class DispelSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Dispel", "An Ort",
|
||||
SpellCircle.Sixth,
|
||||
218,
|
||||
9002,
|
||||
Reagent.Garlic,
|
||||
|
|
@ -19,6 +18,8 @@ namespace Server.Spells.Sixth
|
|||
Reagent.SulfurousAsh
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public DispelSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,17 +4,18 @@ using Server.Network;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class EnergyBoltSpell : Spell
|
||||
public class EnergyBoltSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Energy Bolt", "Corp Por",
|
||||
SpellCircle.Sixth,
|
||||
230,
|
||||
9022,
|
||||
Reagent.BlackPearl,
|
||||
Reagent.Nightshade
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public EnergyBoltSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,17 +4,18 @@ using Server.Network;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class ExplosionSpell : Spell
|
||||
public class ExplosionSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Explosion", "Vas Ort Flam",
|
||||
SpellCircle.Sixth,
|
||||
230,
|
||||
9041,
|
||||
Reagent.Bloodmoss,
|
||||
Reagent.MandrakeRoot
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public ExplosionSpell( Mobile caster, Item scroll )
|
||||
: base( caster, scroll, m_Info )
|
||||
{
|
||||
|
|
@ -52,11 +53,11 @@ namespace Server.Spells.Sixth
|
|||
|
||||
private class InternalTimer : Timer
|
||||
{
|
||||
private Spell m_Spell;
|
||||
private MagerySpell m_Spell;
|
||||
private Mobile m_Target;
|
||||
private Mobile m_Attacker, m_Defender;
|
||||
|
||||
public InternalTimer( Spell spell, Mobile attacker, Mobile defender, Mobile target )
|
||||
public InternalTimer( MagerySpell spell, Mobile attacker, Mobile defender, Mobile target )
|
||||
: base( TimeSpan.FromSeconds( Core.AOS ? 3.0 : 2.5 ) )
|
||||
{
|
||||
m_Spell = spell;
|
||||
|
|
|
|||
|
|
@ -6,17 +6,18 @@ using Server.Items;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class InvisibilitySpell : Spell
|
||||
public class InvisibilitySpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Invisibility", "An Lor Xen",
|
||||
SpellCircle.Sixth,
|
||||
206,
|
||||
9002,
|
||||
Reagent.Bloodmoss,
|
||||
Reagent.Nightshade
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public InvisibilitySpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,11 +6,10 @@ using Server.Regions;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class MarkSpell : Spell
|
||||
public class MarkSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Mark", "Kal Por Ylem",
|
||||
SpellCircle.Sixth,
|
||||
218,
|
||||
9002,
|
||||
Reagent.BlackPearl,
|
||||
|
|
@ -18,6 +17,8 @@ namespace Server.Spells.Sixth
|
|||
Reagent.MandrakeRoot
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public MarkSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,11 +7,10 @@ using Server.Network;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class MassCurseSpell : Spell
|
||||
public class MassCurseSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Mass Curse", "Vas Des Sanct",
|
||||
SpellCircle.Sixth,
|
||||
218,
|
||||
9031,
|
||||
false,
|
||||
|
|
@ -21,6 +20,8 @@ namespace Server.Spells.Sixth
|
|||
Reagent.SulfurousAsh
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public MassCurseSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,11 +6,10 @@ using Server.Misc;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class ParalyzeFieldSpell : Spell
|
||||
public class ParalyzeFieldSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Paralyze Field", "In Ex Grav",
|
||||
SpellCircle.Sixth,
|
||||
230,
|
||||
9012,
|
||||
false,
|
||||
|
|
@ -19,6 +18,8 @@ namespace Server.Spells.Sixth
|
|||
Reagent.SpidersSilk
|
||||
);
|
||||
|
||||
public override SpellCircle Circle { get { return SpellCircle.Sixth; } }
|
||||
|
||||
public ParalyzeFieldSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,17 +7,18 @@ using Server.Network;
|
|||
|
||||
namespace Server.Spells.Sixth
|
||||
{
|
||||
public class RevealSpell : Spell
|
||||
public class RevealSpell : MagerySpell
|
||||
{
|
||||
private static SpellInfo m_Info = new SpellInfo(
|
||||
"Reveal", "Wis Quas",
|
||||
SpellCircle.Sixth,
|
||||
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 )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue