Fixes lots more spelling errors (#5)

* Renames constructable to constructible
* Fixes project references.
* Fixes BaseEquippableLight file name
* Replaces payed with paid.
* Fixes various other spelling errors
This commit is contained in:
Kamron Batman 2018-02-20 16:01:41 -08:00 • committed by GitHub
parent ca4e99c179
commit 20ae1b3989
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2195 changed files with 4617 additions and 4617 deletions

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int DexOffset{ get{ return 10; } }
public override TimeSpan Duration{ get{ return TimeSpan.FromMinutes( 2.0 ); } }
[Constructable]
[Constructible]
public AgilityPotion() : base( PotionEffect.Agility )
{
}

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int DexOffset{ get{ return 20; } }
public override TimeSpan Duration{ get{ return TimeSpan.FromMinutes( 2.0 ); } }
[Constructable]
[Constructible]
public GreaterAgilityPotion() : base( PotionEffect.AgilityGreater )
{
}

View file

@ -30,7 +30,7 @@ namespace Server.Items
Conflagration,
ConflagrationGreater,
MaskOfDeath, // Mask of Death is not available in OSI but does exist in cliloc files
MaskOfDeathGreater, // included in enumeration for compatability if later enabled by OSI
MaskOfDeathGreater, // included in enumeration for compatibility if later enabled by OSI
ConfusionBlast,
ConfusionBlastGreater,
Invisibility,
@ -272,4 +272,4 @@ namespace Server.Items
#endregion
}
}
}

View file

@ -10,7 +10,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1072095; } } // a Conflagration potion
[Constructable]
[Constructible]
public ConflagrationPotion() : base( PotionEffect.Conflagration )
{
}

View file

@ -10,7 +10,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1072098; } } // a Greater Conflagration potion
[Constructable]
[Constructible]
public GreaterConflagrationPotion() : base( PotionEffect.ConflagrationGreater )
{
}

View file

@ -9,7 +9,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1072105; } } // a Confusion Blast potion
[Constructable]
[Constructible]
public ConfusionBlastPotion() : base( PotionEffect.ConfusionBlast )
{
}

View file

@ -9,7 +9,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1072108; } } // a Greater Confusion Blast potion
[Constructable]
[Constructible]
public GreaterConfusionBlastPotion() : base( PotionEffect.ConfusionBlastGreater )
{
}

View file

@ -24,7 +24,7 @@ namespace Server.Items
public override CureLevelInfo[] LevelInfo{ get{ return Core.AOS ? m_AosLevelInfo : m_OldLevelInfo; } }
[Constructable]
[Constructible]
public CurePotion() : base( PotionEffect.Cure )
{
}

View file

@ -25,7 +25,7 @@ namespace Server.Items
public override CureLevelInfo[] LevelInfo{ get{ return Core.AOS ? m_AosLevelInfo : m_OldLevelInfo; } }
[Constructable]
[Constructible]
public GreaterCurePotion() : base( PotionEffect.CureGreater )
{
}

View file

@ -21,7 +21,7 @@ namespace Server.Items
public override CureLevelInfo[] LevelInfo{ get{ return Core.AOS ? m_AosLevelInfo : m_OldLevelInfo; } }
[Constructable]
[Constructible]
public LesserCurePotion() : base( PotionEffect.CureLesser )
{
}

View file

@ -12,7 +12,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1072849; } } // Darkglow Poison
[Constructable]
[Constructible]
public DarkglowPotion() : base( PotionEffect.Darkglow )
{
Hue = 0x96;

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int MinDamage { get { return 10; } }
public override int MaxDamage { get { return 20; } }
[Constructable]
[Constructible]
public ExplosionPotion() : base( PotionEffect.Explosion )
{
}

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int MinDamage { get { return Core.AOS ? 20 : 15; } }
public override int MaxDamage { get { return Core.AOS ? 40 : 30; } }
[Constructable]
[Constructible]
public GreaterExplosionPotion() : base( PotionEffect.ExplosionGreater )
{
}

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int MinDamage { get { return 5; } }
public override int MaxDamage { get { return 10; } }
[Constructable]
[Constructible]
public LesserExplosionPotion() : base( PotionEffect.ExplosionLesser )
{
}

View file

@ -9,7 +9,7 @@ namespace Server.Items
public override int MaxHeal { get { return (Core.AOS ? 25 : 30); } }
public override double Delay{ get{ return 10.0; } }
[Constructable]
[Constructible]
public GreaterHealPotion() : base( PotionEffect.HealGreater )
{
}

View file

@ -9,7 +9,7 @@ namespace Server.Items
public override int MaxHeal { get { return (Core.AOS ? 16 : 20); } }
public override double Delay{ get{ return (Core.AOS ? 8.0 : 10.0); } }
[Constructable]
[Constructible]
public HealPotion() : base( PotionEffect.Heal )
{
}

View file

@ -9,7 +9,7 @@ namespace Server.Items
public override int MaxHeal { get { return (Core.AOS ? 8 : 10); } }
public override double Delay{ get{ return (Core.AOS ? 3.0 : 10.0); } }
[Constructable]
[Constructible]
public LesserHealPotion() : base( PotionEffect.HealLesser )
{
}

View file

@ -8,7 +8,7 @@ namespace Server.Items
{
public override int LabelNumber{ get{ return 1072941; } } // Potion of Invisibility
[Constructable]
[Constructible]
public InvisibilityPotion() : base( 0xF0A, PotionEffect.Invisibility )
{
Hue = 0x48D;

View file

@ -5,7 +5,7 @@ namespace Server.Items
{
public class NightSightPotion : BasePotion
{
[Constructable]
[Constructible]
public NightSightPotion() : base( 0xF06, PotionEffect.Nightsight )
{
}

View file

@ -12,7 +12,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1072848; } } // Parasitic Poison
[Constructable]
[Constructible]
public ParasiticPotion() : base( PotionEffect.Parasitic )
{
Hue = 0x17C;

View file

@ -10,7 +10,7 @@ namespace Server.Items
public override double MinPoisoningSkill{ get{ return 95.0; } }
public override double MaxPoisoningSkill{ get{ return 100.0; } }
[Constructable]
[Constructible]
public DeadlyPoisonPotion() : base( PotionEffect.PoisonDeadly )
{
}

View file

@ -10,7 +10,7 @@ namespace Server.Items
public override double MinPoisoningSkill{ get{ return 60.0; } }
public override double MaxPoisoningSkill{ get{ return 100.0; } }
[Constructable]
[Constructible]
public GreaterPoisonPotion() : base( PotionEffect.PoisonGreater )
{
}

View file

@ -10,7 +10,7 @@ namespace Server.Items
public override double MinPoisoningSkill{ get{ return 0.0; } }
public override double MaxPoisoningSkill{ get{ return 60.0; } }
[Constructable]
[Constructible]
public LesserPoisonPotion() : base( PotionEffect.PoisonLesser )
{
}

View file

@ -10,7 +10,7 @@ namespace Server.Items
public override double MinPoisoningSkill{ get{ return 30.0; } }
public override double MaxPoisoningSkill{ get{ return 70.0; } }
[Constructable]
[Constructible]
public PoisonPotion() : base( PotionEffect.Poison )
{
}

View file

@ -7,7 +7,7 @@ namespace Server.Items
{
public override double Refresh{ get{ return 0.25; } }
[Constructable]
[Constructible]
public RefreshPotion() : base( PotionEffect.Refresh )
{
}

View file

@ -7,7 +7,7 @@ namespace Server.Items
{
public override double Refresh{ get{ return 1.0; } }
[Constructable]
[Constructible]
public TotalRefreshPotion() : base( PotionEffect.RefreshTotal )
{
}

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int StrOffset{ get{ return 20; } }
public override TimeSpan Duration{ get{ return TimeSpan.FromMinutes( 2.0 ); } }
[Constructable]
[Constructible]
public GreaterStrengthPotion() : base( PotionEffect.StrengthGreater )
{
}

View file

@ -8,7 +8,7 @@ namespace Server.Items
public override int StrOffset{ get{ return 10; } }
public override TimeSpan Duration{ get{ return TimeSpan.FromMinutes( 2.0 ); } }
[Constructable]
[Constructible]
public StrengthPotion() : base( PotionEffect.Strength )
{
}