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

@ -121,15 +121,15 @@ namespace Server.Items
}
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class IronIngot : BaseIngot
{
[Constructable]
[Constructible]
public IronIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public IronIngot( int amount ) : base( CraftResource.Iron, amount )
{
}
@ -155,15 +155,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class DullCopperIngot : BaseIngot
{
[Constructable]
[Constructible]
public DullCopperIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public DullCopperIngot( int amount ) : base( CraftResource.DullCopper, amount )
{
}
@ -189,15 +189,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class ShadowIronIngot : BaseIngot
{
[Constructable]
[Constructible]
public ShadowIronIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public ShadowIronIngot( int amount ) : base( CraftResource.ShadowIron, amount )
{
}
@ -223,15 +223,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class CopperIngot : BaseIngot
{
[Constructable]
[Constructible]
public CopperIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public CopperIngot( int amount ) : base( CraftResource.Copper, amount )
{
}
@ -257,15 +257,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class BronzeIngot : BaseIngot
{
[Constructable]
[Constructible]
public BronzeIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public BronzeIngot( int amount ) : base( CraftResource.Bronze, amount )
{
}
@ -291,15 +291,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class GoldIngot : BaseIngot
{
[Constructable]
[Constructible]
public GoldIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public GoldIngot( int amount ) : base( CraftResource.Gold, amount )
{
}
@ -325,15 +325,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class AgapiteIngot : BaseIngot
{
[Constructable]
[Constructible]
public AgapiteIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public AgapiteIngot( int amount ) : base( CraftResource.Agapite, amount )
{
}
@ -359,15 +359,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class VeriteIngot : BaseIngot
{
[Constructable]
[Constructible]
public VeriteIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public VeriteIngot( int amount ) : base( CraftResource.Verite, amount )
{
}
@ -393,15 +393,15 @@ namespace Server.Items
}
[FlipableAttribute( 0x1BF2, 0x1BEF )]
[FlippableAttribute( 0x1BF2, 0x1BEF )]
public class ValoriteIngot : BaseIngot
{
[Constructable]
[Constructible]
public ValoriteIngot() : this( 1 )
{
}
[Constructable]
[Constructible]
public ValoriteIngot( int amount ) : base( CraftResource.Valorite, amount )
{
}

View file

@ -371,12 +371,12 @@ namespace Server.Items
public class IronOre : BaseOre
{
[Constructable]
[Constructible]
public IronOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public IronOre( int amount ) : base( CraftResource.Iron, amount )
{
}
@ -413,12 +413,12 @@ namespace Server.Items
public class DullCopperOre : BaseOre
{
[Constructable]
[Constructible]
public DullCopperOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public DullCopperOre( int amount ) : base( CraftResource.DullCopper, amount )
{
}
@ -449,12 +449,12 @@ namespace Server.Items
public class ShadowIronOre : BaseOre
{
[Constructable]
[Constructible]
public ShadowIronOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public ShadowIronOre( int amount ) : base( CraftResource.ShadowIron, amount )
{
}
@ -485,12 +485,12 @@ namespace Server.Items
public class CopperOre : BaseOre
{
[Constructable]
[Constructible]
public CopperOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public CopperOre( int amount ) : base( CraftResource.Copper, amount )
{
}
@ -521,12 +521,12 @@ namespace Server.Items
public class BronzeOre : BaseOre
{
[Constructable]
[Constructible]
public BronzeOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public BronzeOre( int amount ) : base( CraftResource.Bronze, amount )
{
}
@ -557,12 +557,12 @@ namespace Server.Items
public class GoldOre : BaseOre
{
[Constructable]
[Constructible]
public GoldOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public GoldOre( int amount ) : base( CraftResource.Gold, amount )
{
}
@ -593,12 +593,12 @@ namespace Server.Items
public class AgapiteOre : BaseOre
{
[Constructable]
[Constructible]
public AgapiteOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public AgapiteOre( int amount ) : base( CraftResource.Agapite, amount )
{
}
@ -629,12 +629,12 @@ namespace Server.Items
public class VeriteOre : BaseOre
{
[Constructable]
[Constructible]
public VeriteOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public VeriteOre( int amount ) : base( CraftResource.Verite, amount )
{
}
@ -665,12 +665,12 @@ namespace Server.Items
public class ValoriteOre : BaseOre
{
[Constructable]
[Constructible]
public ValoriteOre() : this( 1 )
{
}
[Constructable]
[Constructible]
public ValoriteOre( int amount ) : base( CraftResource.Valorite, amount )
{
}

View file

@ -70,12 +70,12 @@ namespace Server.Items
public class RedScales : BaseScales
{
[Constructable]
[Constructible]
public RedScales() : this( 1 )
{
}
[Constructable]
[Constructible]
public RedScales( int amount ) : base( CraftResource.RedScales, amount )
{
}
@ -103,12 +103,12 @@ namespace Server.Items
public class YellowScales : BaseScales
{
[Constructable]
[Constructible]
public YellowScales() : this( 1 )
{
}
[Constructable]
[Constructible]
public YellowScales( int amount ) : base( CraftResource.YellowScales, amount )
{
}
@ -136,12 +136,12 @@ namespace Server.Items
public class BlackScales : BaseScales
{
[Constructable]
[Constructible]
public BlackScales() : this( 1 )
{
}
[Constructable]
[Constructible]
public BlackScales( int amount ) : base( CraftResource.BlackScales, amount )
{
}
@ -169,12 +169,12 @@ namespace Server.Items
public class GreenScales : BaseScales
{
[Constructable]
[Constructible]
public GreenScales() : this( 1 )
{
}
[Constructable]
[Constructible]
public GreenScales( int amount ) : base( CraftResource.GreenScales, amount )
{
}
@ -202,12 +202,12 @@ namespace Server.Items
public class WhiteScales : BaseScales
{
[Constructable]
[Constructible]
public WhiteScales() : this( 1 )
{
}
[Constructable]
[Constructible]
public WhiteScales( int amount ) : base( CraftResource.WhiteScales, amount )
{
}
@ -237,12 +237,12 @@ namespace Server.Items
{
public override int LabelNumber{ get{ return 1053140; } } // sea serpent scales
[Constructable]
[Constructible]
public BlueScales() : this( 1 )
{
}
[Constructable]
[Constructible]
public BlueScales( int amount ) : base( CraftResource.BlueScales, amount )
{
}