Upgrades code style - First batch (#22)
This commit is contained in:
parent
8ee42c8ea2
commit
632e8b4757
1834 changed files with 10245 additions and 10437 deletions
|
|
@ -13,13 +13,13 @@ namespace Server.Spells.Spellweaving
|
|||
public abstract class ArcaneForm : ArcanistSpell, ITransformationSpell
|
||||
{
|
||||
public abstract int Body { get; }
|
||||
public virtual int Hue { get { return 0; } }
|
||||
public virtual int Hue => 0;
|
||||
|
||||
public virtual int PhysResistOffset { get { return 0; } }
|
||||
public virtual int FireResistOffset { get { return 0; } }
|
||||
public virtual int ColdResistOffset { get { return 0; } }
|
||||
public virtual int PoisResistOffset { get { return 0; } }
|
||||
public virtual int NrgyResistOffset { get { return 0; } }
|
||||
public virtual int PhysResistOffset => 0;
|
||||
public virtual int FireResistOffset => 0;
|
||||
public virtual int ColdResistOffset => 0;
|
||||
public virtual int PoisResistOffset => 0;
|
||||
public virtual int NrgyResistOffset => 0;
|
||||
|
||||
public ArcaneForm( Mobile caster, Item scroll, SpellInfo info ) : base( caster, scroll, info )
|
||||
{
|
||||
|
|
@ -57,4 +57,4 @@ namespace Server.Spells.Spellweaving
|
|||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue