var cursedObjectGroups = {
'bookshelf things': [
'Basics of Parenting',
'Cosmopolitan Magazine',
'dance DVD',
'Handsome And Handy',
'Hustler magazine',
'leather-bound tome',
'Light Feet',
'martial arts DVD',
"Men's Health magazine",
'Office Environments For Imbeciles',
'Parenting for Dummies',
'Poker Face',
'Sex Herald magazine',
'Style Magazine',
'Waving the Flag',
"What to Expect When You're Expecting",
"Women's Health magazine"
],
'casual clothes new': [
'flirty clothes',
'floral print dress',
'jumpsuit',
'nun outfit',
'purple belted dress',
'special outfit',
'tanktop and shorts',
't-shirt and capris',
't-shirt and jeans',
'white cotton dress'
],
'maternity clothes': [
'flirty maternity clothes',
'maternity dress',
'sexy maternity clothes',
'stretchy shirt and pants'
],
'professional clothes': [
'black dress with white jacket',
'black halter vest top and skirt',
'black v-neck dress',
'blouse and pants',
'grey pantsuit'
],
'sexy clothes': [
'asymmetrical mini dress',
'black cutaway gown',
'cheerleader outfit (reward)',
'elegant dress',
'japanese maid outfit',
'leather dress'
],
'slutty clothes': [
'club clothes',
'fishnet mini dress',
'french maid outfit',
'latex keyhole dress',
'secretary outfit',
'slutty schoolgirl outfit (reward)',
'waitress uniform (reward)'
],
'utilitarian clothes': [
'form-fitting clothes',
'robe',
'sweatsuit'
]
}
Object.keys(cursedObjectGroups).forEach(function (groupName) {
var objectsInGroup = cursedObjectGroups[groupName];
for (var i = 0; i < objectsInGroup.length; i++) {
Finder.object(objectsInGroup[i]).GroupName = groupName;
}
})