case ItemPool.RAIN_DOH_BOX:
// You push the button on the side of the box.
// It makes a scary noise, and a tiny, ghostly image
// of your opponent appears inside it.
if ( responseText.indexOf( "ghostly image of your opponent" ) != -1 )
{
Preferences.increment( "_raindohCopiesMade", 1 );
Preferences.setString( "rainDohMonster", MonsterStatusTracker.getLastMonsterName() );
Preferences.setString( "autoPutty", "" );
return true;
}
if ( responseText.indexOf( "too scared to use this box anymore today" ) != -1 )
{
Preferences.setInteger( "_raindohCopiesMade", 5 );
}
return false;