superCat = function() {
var superCat =
{
name: 'Kitty',
purrStrength: 21,
coatGlossLevel: 25,
runThroughMud: function (){
this.coatGlossLevel = this.coatGlossLevel - 4
this.purrStrength = this.purrStrength - 2
},
changeName: function (newName) {
this.name = newName
},
freeSpaDay: function () {
this.coatGlossLevel = this.coatGlossLevel + 5
this.purrStrength= this.purrStrength + 9
}
}
return superCat;
}