Try using this:
public class xxxxxxx : BaseShirt, IDyable
(where x is the name of your clothing item)
then insert this in the constructable:
Code:
public new bool Dye( Mobile from, DyeTub sender )
{
from.SendMessage( "You cannot dye this item." );
return false;
}