Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -30,10 +30,7 @@ namespace Server.Spells.Spellweaving
|
|||
FinishSequence();
|
||||
}
|
||||
|
||||
public virtual double TickRate
|
||||
{
|
||||
get { return 1.0; }
|
||||
}
|
||||
public virtual double TickRate => 1.0;
|
||||
|
||||
public virtual void OnTick( Mobile m )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -22,10 +22,7 @@ namespace Server.Spells.Spellweaving
|
|||
{
|
||||
}
|
||||
|
||||
public virtual int FocusLevel
|
||||
{
|
||||
get { return m_CastTimeFocusLevel; }
|
||||
}
|
||||
public virtual int FocusLevel => m_CastTimeFocusLevel;
|
||||
|
||||
public static int GetFocusLevel( Mobile from )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ namespace Server.Spells.Spellweaving
|
|||
|
||||
}
|
||||
|
||||
public double HitsScalar { get { return ((Caster.Skills.Spellweaving.Value/2.4) + FocusLevel)/100; } }
|
||||
public double HitsScalar => ((Caster.Skills.Spellweaving.Value/2.4) + FocusLevel)/100;
|
||||
|
||||
public static void OnLogin( LoginEventArgs e )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ namespace Server.Items
|
|||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public int StrengthBonus
|
||||
{
|
||||
get { return m_StrengthBonus; }
|
||||
set { m_StrengthBonus = value; }
|
||||
get => m_StrengthBonus;
|
||||
set => m_StrengthBonus = value;
|
||||
}
|
||||
|
||||
[Constructible]
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@ namespace Server.Items
|
|||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public TimeSpan LifeSpan
|
||||
{
|
||||
get { return m_LifeSpan; }
|
||||
set { m_LifeSpan = value; }
|
||||
get => m_LifeSpan;
|
||||
set => m_LifeSpan = value;
|
||||
}
|
||||
|
||||
private DateTime m_CreationTime;
|
||||
|
|
@ -18,8 +18,8 @@ namespace Server.Items
|
|||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public DateTime CreationTime
|
||||
{
|
||||
get { return m_CreationTime; }
|
||||
set { m_CreationTime = value; }
|
||||
get => m_CreationTime;
|
||||
set => m_CreationTime = value;
|
||||
}
|
||||
|
||||
private Timer m_Timer;
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@ namespace Server.Spells.Spellweaving
|
|||
public override int PoisResistOffset => 5 + FocusLevel;
|
||||
public override int NrgyResistOffset => 5 + FocusLevel;
|
||||
|
||||
public virtual int SwingSpeedBonus { get { return 10 + FocusLevel; } }
|
||||
public virtual int SpellDamageBonus { get { return 10 + FocusLevel; } }
|
||||
public virtual int SwingSpeedBonus => 10 + FocusLevel;
|
||||
public virtual int SpellDamageBonus => 10 + FocusLevel;
|
||||
|
||||
public ReaperFormSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue