From Decompile of Game:
public enum OutfitCategories
{
None=0,
Naked=1,
Everyday=2,
Formalwear=4,
Sleepwear=8,
Swimwear=16,
Athletic=32,
Singed=64,
MartialArts=128,
Career=256,
PrimaryCategories=318,
FireFighting=512,
Makeover=1024,
SkinnyDippingTowel=2048,
Racing=4096,
Jumping=8192,
Bridle=16384,
PrimaryHorseCategories=28674,
Massage=32768,
ChildImagination=65536,
Special=131072,
CategoryMask=524287,
All=4294967295,
}
The things which are not powers-of-2 are not actual categories and should not be used. Also, it shouldn't let you do anything REALLY invalid.