diff --git a/Scripts/Items/Clothing/OuterTorso.cs b/Scripts/Items/Clothing/OuterTorso.cs index b4b830e69..9488e81ab 100644 --- a/Scripts/Items/Clothing/OuterTorso.cs +++ b/Scripts/Items/Clothing/OuterTorso.cs @@ -635,46 +635,6 @@ namespace Server.Items } } - [Flipable( 0x2684, 0x2683 )] - public class HoodedShroudOfShadows : BaseOuterTorso - { - [Constructable] - public HoodedShroudOfShadows() : this( 0x455 ) - { - } - - [Constructable] - public HoodedShroudOfShadows( int hue ) : base( 0x2684, hue ) - { - LootType = LootType.Blessed; - Weight = 3.0; - } - - public override bool Dye( Mobile from, DyeTub sender ) - { - from.SendLocalizedMessage( sender.FailMessage ); - return false; - } - - public HoodedShroudOfShadows( Serial serial ) : base( serial ) - { - } - - public override void Serialize( GenericWriter writer ) - { - base.Serialize( writer ); - - writer.Write( (int) 0 ); // version - } - - public override void Deserialize( GenericReader reader ) - { - base.Deserialize( reader ); - - int version = reader.ReadInt(); - } - } - [Flipable( 0x1f01, 0x1f02 )] public class PlainDress : BaseOuterTorso {