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

@ -10,7 +10,7 @@ namespace Server.Items
get { return "a resurrection gate"; }
}
[Constructable]
[Constructible]
public ResGate() : base( 0xF6C )
{
Movable = false;

View file

@ -10,7 +10,7 @@ namespace Server.Items
get { return "an Alchemist Supply Stone"; }
}
[Constructable]
[Constructible]
public AlchemyStone() : base( 0xED4 )
{
Movable = false;

View file

@ -12,7 +12,7 @@ namespace Server.Items
get { return "a GM stone"; }
}
[Constructable]
[Constructible]
public GMStone() : base( 0xED4 )
{
Movable = false;

View file

@ -23,7 +23,7 @@ namespace Server.Items
get { return "a gambling stone"; }
}
[Constructable]
[Constructible]
public GamblingStone()
: base( 0xED4 )
{

View file

@ -10,7 +10,7 @@ namespace Server.Items
get { return "an Ingot stone"; }
}
[Constructable]
[Constructible]
public IngotStone() : base( 0xED4 )
{
Movable = false;

View file

@ -10,7 +10,7 @@ namespace Server.Items
get { return "a reagent stone"; }
}
[Constructable]
[Constructible]
public RegStone() : base( 0xED4 )
{
Movable = false;

View file

@ -10,7 +10,7 @@ namespace Server.Items
get { return "a Scribe Supply Stone"; }
}
[Constructable]
[Constructible]
public ScribeStone() : base( 0xED4 )
{
Movable = false;

View file

@ -10,7 +10,7 @@ namespace Server.Items
get { return "a Blacksmith Supply Stone"; }
}
[Constructable]
[Constructible]
public SmithStone() : base( 0xED4 )
{
Movable = false;

View file

@ -10,7 +10,7 @@ namespace Server.Items
get { return "a Tailor Supply Stone"; }
}
[Constructable]
[Constructible]
public TailorStone() : base( 0xED4 )
{
Movable = false;

View file

@ -11,14 +11,14 @@ namespace Server.Items
get { return "an Alchemy Kit"; }
}
[Constructable]
[Constructible]
public AlchemyBag() : this( 1 )
{
Movable = true;
Hue = 0x250;
}
[Constructable]
[Constructible]
public AlchemyBag( int amount )
{
DropItem( new MortarPestle( 5 ) );

View file

@ -6,12 +6,12 @@ namespace Server.Items
{
public class BagOfingots : Bag
{
[Constructable]
[Constructible]
public BagOfingots() : this( 5000 )
{
}
[Constructable]
[Constructible]
public BagOfingots( int amount )
{
DropItem( new DullCopperIngot ( amount ) );

View file

@ -11,14 +11,14 @@ namespace Server.Items
get { return "a Scribe Kit"; }
}
[Constructable]
[Constructible]
public ScribeBag() : this( 1 )
{
Movable = true;
Hue = 0x105;
}
[Constructable]
[Constructible]
public ScribeBag( int amount )
{
DropItem( new BagOfReagents( 5000 ) );

View file

@ -6,12 +6,12 @@ namespace Server.Items
{
public class SmithBag : Bag
{
[Constructable]
[Constructible]
public SmithBag() : this( 5000 )
{
}
[Constructable]
[Constructible]
public SmithBag( int amount )
{
DropItem( new DullCopperIngot ( amount ) );

View file

@ -11,14 +11,14 @@ namespace Server.Items
get { return "a Tailoring Kit"; }
}
[Constructable]
[Constructible]
public TailorBag() : this( 1 )
{
Movable = true;
Hue = 0x315;
}
[Constructable]
[Constructible]
public TailorBag( int amount )
{
DropItem( new SewingKit( 5 ) );