This commit is contained in:
mark 2009-06-28 03:36:42 +00:00
parent c63a5f13fa
commit 2204d5fb86
86 changed files with 1077 additions and 257 deletions

View file

@ -157,7 +157,7 @@ namespace Server.Items
[Constructable]
public SushiPlatter() : base( 0x2840 )
{
Stackable = false;
Stackable = Core.ML;
Weight = 3.0;
FillFactor = 2;
}

View file

@ -26,6 +26,7 @@ namespace Server.Items
[Constructable]
public Dough() : base( 0x103d )
{
Stackable = Core.ML;
Weight = 1.0;
}
@ -124,6 +125,7 @@ namespace Server.Items
[Constructable]
public SweetDough() : base( 0x103d )
{
Stackable = Core.ML;
Weight = 1.0;
Hue = 150;
}

View file

@ -688,7 +688,7 @@ namespace Server.Items
[Constructable]
public Cookies() : base( 0x160b )
{
Stackable = false;
Stackable = Core.ML;
this.Weight = 1.0;
this.FillFactor = 4;
}
@ -997,7 +997,7 @@ namespace Server.Items
[Constructable]
public Quiche() : base( 0x1041 )
{
Stackable = false;
Stackable = Core.ML;
this.Weight = 1.0;
this.FillFactor = 5;
}