From 21de8d92c6620fac6ec60b13546229b9d59e3736 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Tue, 14 Nov 2023 07:12:56 +0000 Subject: [PATCH] Remove old action.php and replays Our new API replacement for action.php is in https://github.com/smogon/pokemon-showdown-loginserver I haven't completely deleted the old-replays folder because there are some things we haven't replaced that I don't know what to do with... I guess that'll come in a future commit. --- action.php | 39 - lib/dispatcher.lib.php | 555 - old-replays/.htaccess | 40 - old-replays/404.php | 46 - old-replays/503.php | 43 - old-replays/apple-touch-icon.png | Bin 45373 -> 0 bytes old-replays/build | 48 - old-replays/favicon.ico | Bin 318 -> 0 bytes old-replays/index.php | 246 - old-replays/js/ou-305002749.log | 14927 -------------------------- old-replays/js/smogtours-ou-509.log | 5064 --------- old-replays/search.json.php | 51 - old-replays/search.php | 277 - 13 files changed, 21336 deletions(-) delete mode 100644 action.php delete mode 100644 lib/dispatcher.lib.php delete mode 100644 old-replays/.htaccess delete mode 100644 old-replays/404.php delete mode 100644 old-replays/503.php delete mode 100644 old-replays/apple-touch-icon.png delete mode 100755 old-replays/build delete mode 100644 old-replays/favicon.ico delete mode 100644 old-replays/index.php delete mode 100644 old-replays/js/ou-305002749.log delete mode 100644 old-replays/js/smogtours-ou-509.log delete mode 100644 old-replays/search.json.php delete mode 100644 old-replays/search.php diff --git a/action.php b/action.php deleted file mode 100644 index fc8b68ea1..000000000 --- a/action.php +++ /dev/null @@ -1,39 +0,0 @@ - - -*/ - -error_reporting(E_ALL); - -include_once __DIR__ . '/config/config.inc.php'; - -if (@$_GET['act'] === 'dlteam') { - header("Content-Type: text/plain; charset=utf-8"); - if (substr(@$_SERVER['HTTP_REFERER'], 0, 32) !== 'https://' . $psconfig['routes']['client']) { - // since this is only to support Chrome on HTTPS, we can get away with a very specific referer check - die("access denied"); - } - echo base64_decode(@$_GET['team']); - die(); -} - -if (preg_match('/^http\\:\\/\\/[a-z0-9]+\\.psim\\.us\\//', $_SERVER['HTTP_REFERER'] ?? '')) { - header("Access-Control-Allow-Origin: *"); -} else if ($_POST['sid'] ?? null) { - header("Access-Control-Allow-Origin: *"); -} -// header("X-Debug: " . @$_SERVER['HTTP_REFERER']); - -require_once __DIR__ . '/lib/ntbb-session.lib.php'; -include_once __DIR__ . '/config/servers.inc.php'; -include_once __DIR__ . '/lib/dispatcher.lib.php'; - -$dispatcher = new ActionDispatcher(array( - new DefaultActionHandler(), - new LadderActionHandler() -)); -$dispatcher->executeActions(); diff --git a/lib/dispatcher.lib.php b/lib/dispatcher.lib.php deleted file mode 100644 index 809a79b96..000000000 --- a/lib/dispatcher.lib.php +++ /dev/null @@ -1,555 +0,0 @@ - - * - * This could let them steal the secrets. In modern times, browsers - * are protected against this kind of attack, but our `]` adds some - * safety for older browsers. - * - * Adding `]` to the beginning makes sure that the output is a syntax - * error in JS, so treating it as a JS file will simply crash and fail. - */ - private $outPrefix = ']'; - private $outArray = array(); - - public function __construct($handlers) { - $this->handlers = $handlers; - if (empty($_REQUEST)) { - $this->reqs = null; - if (substr($_SERVER["CONTENT_TYPE"] ?? '', 0, 16) === 'application/json') { - // screw you too Axios - // also come on PHP, you could just support JSON natively instead of putting me through this - $input = trim(file_get_contents('php://input')); - if ($input[0] === '[') { - $this->reqs = json_decode($input, true); - } else if ($input[0] === '{') { - $this->reqs = [json_decode($input, true)]; - } - } - - if (empty($this->reqs)) die("no request data found - you need to send some sort of data"); - $_POST['is_post_request'] = true; - } else { - $this->reqs = [$_REQUEST]; - } - if (@$_REQUEST['json']) { - $this->reqs = json_decode($_REQUEST['json'], true); - $this->multiReqs = true; - } - } - - public function setPrefix($prefix) { - $this->outPrefix = $prefix; - } - - public function getServerHostName($serverid) { - global $PokemonServers; - $server = @$PokemonServers[$serverid]; - return $server ? $server['server'] : $serverid; - } - - public function verifyCrossDomainRequest() { - global $psconfig; - // No cross-domain multi-requests for security reasons. - // No need to do anything if this isn't a cross-domain request. - if ($this->multiReqs || !isset($_SERVER['HTTP_ORIGIN'])) { - return ''; - } - - $origin = $_SERVER['HTTP_ORIGIN']; - $prefix = null; - foreach ($psconfig['cors'] as $i => &$j) { - if (!preg_match($i, $origin)) continue; - $prefix = $j; - break; - } - if ($prefix === null) { - // Bogus request. - return ''; - } - - // Valid CORS request. - header('Access-Control-Allow-Origin: ' . $origin); - header('Access-Control-Allow-Credentials: true'); - return $prefix; - } - - public function getIp() { - global $users; - return $users->getIp(); - } - - public function findServer() { - global $PokemonServers; - - $serverid = @$this->reqData['serverid']; - $server = null; - $ip = $this->getIp(); - if (!isset($PokemonServers[$serverid])) { - // Try to find the server by source IP, rather than by serverid. - if ($serverid === 'testtimeout') { - foreach ($PokemonServers as &$i) { - gethostbyname($i['server']); - } - } - return null; - } else { - $server = & $PokemonServers[$serverid]; - if (empty($server['skipipcheck']) && empty($server['token']) && $serverid !== 'showdown') { - if (!isset($server['ipcache'])) { - $server['ipcache'] = gethostbyname($server['server']); - } - if ($ip !== $server['ipcache']) return null; - } - } - if (!empty($server['token'])) { - if ($server['token'] !== md5($this->reqData['servertoken'] ?? '')) return null; - } - return $server; - } - - public function executeActions() { - $outArray = null; - if ($this->multiReqs) $outArray = array(); - - foreach ($this->reqs as $this->reqData) { - $this->reqData = array_merge($_REQUEST, $this->reqData); - if (!isset($this->reqData['act'])) die("action not found - make sure your request data includes act=something"); - $action = $this->reqData['act']; - if (!ctype_alnum($action)) die("invalid action: " . var_export($action, true)); - $out = array(); - - foreach ($this->handlers as &$i) { - if (is_callable(array($i, $action))) { - $i->$action($this, $this->reqData, $out); - } - } - - if ($this->multiReqs) $outArray[] = $out; - } - // json output - if ($this->outPrefix !== '') { - // Technically this is not JSON because of the initial prefix. - header('Content-Type: text/plain; charset=utf-8'); - } else { - header('Content-Type: application/json'); - } - if ($this->multiReqs) { - die($this->outPrefix . json_encode($outArray)); - } else { - die($this->outPrefix . json_encode($out)); - } - } -} - -class DefaultActionHandler { - public function login($dispatcher, &$reqData, &$out) { - global $users, $curuser; - $challengeprefix = $dispatcher->verifyCrossDomainRequest(); - - if (!$_POST) die('for security reasons, logins must happen with POST data'); - if (empty($reqData['name']) || empty($reqData['pass'])) die('incorrect login data, you need "name" and "pass" fields'); - try { - $users->login($reqData['name'], $reqData['pass']); - } catch (Exception $e) { - $out['error'] = $e->getMessage() . "\n" . $e->getFile() . '(' . $e->getLine() . ')' . "\n" . $e->getTraceAsString(); - } - unset($curuser['userdata']); - $out['curuser'] = $curuser; - $out['actionsuccess'] = ($curuser ? $curuser['loggedin'] : false); - $serverhostname = '' . $dispatcher->getServerHostName(@$reqData['serverid']); - $challengekeyid = !isset($reqData['challengekeyid']) ? -1 : intval($reqData['challengekeyid']); - $challenge = !isset($reqData['challenge']) ? '' : $reqData['challenge']; - if (!$challenge) { - $challenge = !isset($reqData['challstr']) ? '' : $reqData['challstr']; - } - $out['assertion'] = $users->getAssertion($curuser['userid'], $serverhostname, null, - $challengekeyid, $challenge, $challengeprefix); - } - - public function register($dispatcher, &$reqData, &$out) { - global $users, $curuser; - $challengeprefix = $dispatcher->verifyCrossDomainRequest(); - - $serverhostname = '' . $dispatcher->getServerHostName(@$reqData['serverid']); - $user = [ - 'username' => @$_POST['username'], - ]; - $userid = $users->userid($user['username']); - if ((mb_strlen($userid) < 1) || ctype_digit($userid)) { - $out['actionerror'] = 'Your username must contain at least one letter.'; - } else if (substr($userid, 0, 5) === 'guest') { - $out['actionerror'] = 'Your username cannot start with \'guest\'.'; - } else if (mb_strlen($user['username']) > 18) { - $out['actionerror'] = 'Your username must be less than 19 characters long.'; - } else if (mb_strlen(@$_POST['password']) < 5) { - $out['actionerror'] = 'Your password must be at least 5 characters long.'; - } else if (@$_POST['password'] !== @$_POST['cpassword']) { - $out['actionerror'] = 'Your passwords do not match.'; - } else if (trim(strtolower(@$_POST['captcha'])) !== 'pikachu') { - $out['actionerror'] = 'Please answer the anti-spam question given.'; - } else if (($registrationcount = $users->getRecentRegistrationCount()) === false) { - $out['actionerror'] = 'A database error occurred. Please try again.'; - } else if ($registrationcount >= 2) { - $out['actionerror'] = 'You can\'t register more than two usernames every two hours. Try again later.'; - } else if ($user = $users->addUser($user, $_POST['password'])) { - $challengekeyid = !isset($reqData['challengekeyid']) ? -1 : intval($reqData['challengekeyid']); - $challenge = !isset($reqData['challenge']) ? '' : $reqData['challenge']; - if (!$challenge) { - $challenge = !isset($reqData['challstr']) ? '' : $reqData['challstr']; - } - $out['curuser'] = $user; - $out['assertion'] = $users->getAssertion($user['userid'], - $serverhostname, $user, $challengekeyid, $challenge, $challengeprefix); - $out['actionsuccess'] = true; - } else { - $out['actionerror'] = 'Your username is already taken.'; - } - } - - public function changepassword($dispatcher, &$reqData, &$out) { - global $users, $curuser; - - if (!$_POST || - !isset($reqData['oldpassword']) || - !isset($reqData['password']) || - !isset($reqData['cpassword'])) { - $out['actionerror'] = 'Invalid request.'; - } else if (!$curuser['loggedin']) { - $out['actionerror'] = 'Your session has expired. Please log in again.'; - } else if ($reqData['password'] !== $reqData['cpassword']) { - $out['actionerror'] = 'Your new passwords do not match.'; - } else if (!$users->passwordVerify($curuser['userid'], $reqData['oldpassword'])) { - $out['actionerror'] = 'Your old password was incorrect.'; - } else if (mb_strlen($reqData['password']) < 5) { - $out['actionerror'] = 'Your new password must be at least 5 characters long.'; - } else if (!$users->modifyUser($curuser['userid'], array( - 'password' => $reqData['password']))) { - $out['actionerror'] = 'A database error occurred. Please try again.'; - } else { - $out['actionsuccess'] = true; - } - } - - public function changeusername($dispatcher, &$reqData, &$out) { - global $users, $curuser; - - if (!$_POST || - !isset($reqData['username'])) { - $out['actionerror'] = 'Invalid request.'; - } else if (!$curuser['loggedin']) { - $out['actionerror'] = 'Your session has expired. Please log in again.'; - } else if (!$users->modifyUser($curuser['userid'], array( - 'username' => $reqData['username']))) { - $out['actionerror'] = 'A database error occurred. Please try again.'; - } else { - $out['actionsuccess'] = true; - } - } - - public function logout($dispatcher, &$reqData, &$out) { - global $users, $curuser, $psconfig; - - if (!$_POST || - !isset($reqData['userid']) || - // some CSRF protection (client must know current userid) - ($reqData['userid'] !== $curuser['userid'])) { - die; - } - $users->logout(); // this kills the `sid` cookie - setcookie('showdown_username', '', time()-60*60*24*2, '/', $psconfig['routes']['client']); - $out['actionsuccess'] = true; - } - - public function getassertion($dispatcher, &$reqData, &$out) { - global $users, $curuser; - $challengeprefix = $dispatcher->verifyCrossDomainRequest(); - - $serverhostname = '' . $dispatcher->getServerHostName(@$reqData['serverid']); - $challengekeyid = !isset($reqData['challengekeyid']) ? -1 : intval($reqData['challengekeyid']); - $challenge = !isset($reqData['challenge']) ? '' : $reqData['challenge']; - if (!$challenge) { - $challenge = !isset($reqData['challstr']) ? '' : $reqData['challstr']; - } - header('Content-Type: text/plain; charset=utf-8'); - if (empty($reqData['userid'])) { - $userid = $curuser['userid']; - if ($userid === 'guest') { - // Special error message for this case. - die(';'); - } - } else { - $userid = $users->userid($reqData['userid']); - } - $serverhostname = htmlspecialchars($serverhostname); // Protect against theoretical IE6 XSS - die($users->getAssertion($userid, $serverhostname, null, $challengekeyid, $challenge, $challengeprefix)); - } - - public function upkeep($dispatcher, &$reqData, &$out) { - global $users, $curuser; - $challengeprefix = $dispatcher->verifyCrossDomainRequest(); - - $out['loggedin'] = $curuser['loggedin']; - $userid = ''; - if ($curuser['loggedin']) { - $out['username'] = $curuser['username']; - $userid = $curuser['userid']; - } else if (isset($_COOKIE['showdown_username'])) { - $out['username'] = $_COOKIE['showdown_username']; - $userid = $users->userid($out['username']); - } - if ($userid !== '') { - $serverhostname = '' . $dispatcher->getServerHostName(@$reqData['serverid']); - $challengekeyid = !isset($reqData['challengekeyid']) ? -1 : intval($reqData['challengekeyid']); - $challenge = !isset($reqData['challenge']) ? '' : $reqData['challenge']; - if (!$challenge) { - $challenge = !isset($reqData['challstr']) ? '' : $reqData['challstr']; - } - $out['assertion'] = $users->getAssertion($userid, $serverhostname, null, $challengekeyid, $challenge, $challengeprefix); - } - } - - public function updateuserstats($dispatcher, &$reqData, &$out) { - global $psdb; - - $server = $dispatcher->findServer(); - if (!$server) { - $out = 0; - return; - } - - $date = @$reqData['date']; - $usercount = @$reqData['users']; - if (!is_numeric($date) || !is_numeric($usercount)) { - $out = 0; - return; - } - - $out = !!$psdb->query( - "INSERT INTO `ntbb_userstats` (`serverid`, `date`, `usercount`) " . - "VALUES ('" . $psdb->escape($server['id']) . "', '" . $psdb->escape($date) . "', '" . $psdb->escape($usercount) . "') " . - "ON DUPLICATE KEY UPDATE `date`='" . $psdb->escape($date) . "', `usercount`='" . $psdb->escape($usercount) . "'"); - - if ($server['id'] === 'showdown') { - $psdb->query( - "INSERT INTO `ntbb_userstatshistory` (`date`, `usercount`) " . - "VALUES ('" . $psdb->escape($date) . "', '" . $psdb->escape($usercount) . "')"); - } - $dispatcher->setPrefix(''); // No need for prefix since only usable by server. - } - - public function updatenamecolor($dispatcher, &$reqData, &$out) { - global $psdb, $psconfig, $users; - $server = $dispatcher->findServer(); - if (!isset($psconfig['mainserver']) || !$server || $server['id'] !== $psconfig['mainserver']) { - $out['actionerror'] = 'Access denied'; - return; - } - if (!isset($reqData['userid']) || !mb_strlen($users->userid($reqData['userid']))) { - $out['actionerror'] = 'No userid was specified.'; - return; - } - $userid = $users->userid($reqData['userid']); - if (!isset($reqData['source'])) { - $out['actionerror'] = 'No color adjustment was specified.'; - return; - } - if (strlen($userid) > 18) { - $out['actionerror'] = 'Usernames can only be 18 characters long'; - return; - } - if (!isset($reqData['by']) || !mb_strlen($users->userid($reqData['by']))) { - $out['actionerror'] = 'Specify the action\'s actor.'; - return; - } - $colors = array(); - $path = realpath(__DIR__ . '/../config/colors.json'); - try { - $data = file_get_contents($path, true); - $colors = json_decode($data, true); - } catch (Exception $e) {} - $modlog_entry = ''; - if (!$reqData['source']) { - if (!isset($colors[$userid])) { - $out['actionerror'] = ( - 'That user does not have a custom color set by the loginserver. ' . - 'Ask an admin to remove it manually if they have one.' - ); - return; - } else { - unset($colors[$userid]); - $modlog_entry = 'Username color was removed'; - } - } else { - $colors[$userid] = $reqData['source']; - $modlog_entry = "Username color was set to \"{$reqData['source']}\""; - } - file_put_contents($path, json_encode($colors)); - - $psdb->query( - "INSERT INTO `{$psdb->prefix}usermodlog`". - "(`userid`, `actorid`, `date`, `ip`, `entry`) " . - "VALUES(?, ?, ?, ?, ?)", - [$userid, $users->userid($reqData['by']), time(), $dispatcher->getIp(), $modlog_entry] - ); - - $out['success'] = true; - return $out; - } - - public function prepreplay($dispatcher, &$reqData, &$out) { - global $psdb, $users; - // include_once dirname(__FILE__) . '/ntbb-ladder.lib.php'; // not clear if this is needed - - $server = $dispatcher->findServer(); - if (!$server) { - $out['errorip'] = $dispatcher->getIp(); - return; - } - if ( - // the server must be registered - !$server || - // the server must send all the required values - !isset($reqData['id']) || - !isset($reqData['format']) || - !isset($reqData['loghash']) || - !isset($reqData['p1']) || - !isset($reqData['p2']) || - // player usernames cannot be longer than 18 characters - (mb_strlen($reqData['p1']) > 18) || - (mb_strlen($reqData['p2']) > 18) || - // the battle ID must be valid - !preg_match('/^([a-z0-9]+)-[0-9]+$/', $reqData['id'], $m1) || - // the format ID must be valid - !preg_match('/^([a-z0-9]+)$/', $reqData['format'], $m2) || - // the format from the battle ID must match the format ID - ($m1[1] !== $m2[1])) { - $out = 0; - return; - } - - if ($server['id'] !== 'showdown') { - $reqData['id'] = $server['id'].'-'.$reqData['id']; - } - $reqData['serverid'] = $server['id']; - - include_once __DIR__.'/../replays/replays.lib.php'; - $out = $GLOBALS['Replays']->prepUpload($reqData); - - $dispatcher->setPrefix(''); // No need for prefix since only usable by server. - } - - public function uploadreplay($dispatcher, &$reqData, &$out) { - global $psdb, $users; - - header('Content-Type: text/plain; charset=utf-8'); - - include __DIR__.'/../replays/replays.lib.php'; - die($GLOBALS['Replays']->upload($reqData)); - } - - public function invalidatecss($dispatcher, &$reqData, &$out) { - $server = $dispatcher->findServer(); - if (!$server) { - $out['errorip'] = $dispatcher->getIp(); - return; - } - // No need to sanitise $server['id'] because it should be safe already. - $cssfile = __DIR__ . '/../config/customcss/' . $server['id'] . '.css'; - @unlink($cssfile); - } -} - -// This class should not depend on ntbb-session.lib.php. -class LadderActionHandler { - // There's no need to make a database query for this. - private function getUserData($username) { - if (!$username) $username = ''; - $userid = strtr($username, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "abcdefghijklmnopqrstuvwxyz"); - $userid = preg_replace('/[^A-Za-z0-9]+/', '', $userid); - if (mb_strlen($userid) > 18) return false; - return array('userid' => $userid, 'username' => $username); - } - - public function ladderupdate($dispatcher, &$reqData, &$out) { - include_once dirname(__FILE__) . '/ntbb-ladder.lib.php'; - - $server = $dispatcher->findServer(); - if (!$server || $server['id'] !== 'showdown') { - $out['errorip'] = "Your version of PS is too old for this ladder system. Please update."; - return; - } - - $ladder = new NTBBLadder(@$reqData['format']); - $p1 = $this->getUserData(@$reqData['p1']); - $p2 = $this->getUserData(@$reqData['p2']); - if (!$p1 || !$p2) { - // The server should not send usernames > 18 characters long. - $out = 0; - return; - } - - $ladder->updateRating($p1, $p2, floatval($reqData['score'])); - $out['actionsuccess'] = true; - $out['p1rating'] = $p1['rating']; - $out['p2rating'] = $p2['rating']; - unset($out['p1rating']['rpdata']); - unset($out['p2rating']['rpdata']); - $dispatcher->setPrefix(''); // No need for prefix since only usable by server. - } - - public function ladderget($dispatcher, &$reqData, &$out) { - global $PokemonServers; - include_once dirname(__FILE__) . '/ntbb-ladder.lib.php'; - - $server = @$PokemonServers[@$reqData['serverid']]; - if (!$server || $server['id'] !== 'showdown') { - die; - } - - $ladder = new NTBBLadder(@$reqData['format']); - $user = $this->getUserData(@$reqData['user']); - if (!$user) die; - $ladder->getAllRatings($user); - $out = $user['ratings']; - } - - public function mmr($dispatcher, &$reqData, &$out) { - global $PokemonServers; - include_once dirname(__FILE__) . '/ntbb-ladder.lib.php'; - - $server = $dispatcher->findServer(); - if (!$server || $server['id'] !== 'showdown') { - $out['errorip'] = "Your version of PS is too old for this ladder system. Please update."; - return; - } - - $ladder = new NTBBLadder(@$reqData['format']); - $user = $this->getUserData(@$reqData['user']); - $out = 1000; - if ($user) { - $ladder->getRating($user); - if (@$user['rating']) { - $out = intval($user['rating']['elo']); - } - } - } -} diff --git a/old-replays/.htaccess b/old-replays/.htaccess deleted file mode 100644 index 0473bb21f..000000000 --- a/old-replays/.htaccess +++ /dev/null @@ -1,40 +0,0 @@ -# -FrontPage- - -IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* - - -order deny,allow -deny from all -allow from all - - -order deny,allow -deny from all - - -AddType text/plain .phps -AddType application/x-tgz .tgz -AddType application/x-chrome-extension .crx -AddType application/x-web-app-manifest+json .webapp - - -RewriteEngine on - -RewriteCond %{HTTP:X-Forwarded-Proto} ^http$ -RewriteRule ^(.*)$ https://replay.pokemonshowdown.com/$1 [R=302,NE,L] - -RewriteRule ^replay\/(.*)$ /$1 [R=302,L] - -RewriteRule ^battle-([A-Za-z0-9-]+)?$ /$1 [R=302,L] - -RewriteRule ^search/?$ search.php [L,QSA] -RewriteRule ^search\.json$ search.json.php [L,QSA] -RewriteRule ^([A-Za-z0-9-]+)$ battle.php?name=$1 [L,QSA] -RewriteRule ^([A-Za-z0-9-]+)/manage$ battle.php?name=$1&manage [L,QSA] -RewriteRule ^([A-Za-z0-9-]+)\.log$ battle.log.php?name=$1 [L,QSA] -RewriteRule ^([A-Za-z0-9-]+)\.json$ battle.log.php?json&name=$1 [L,QSA] - -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule ^(apple-touch-icon-precomposed\.png)$ - [R=404,L] - - diff --git a/old-replays/404.php b/old-replays/404.php deleted file mode 100644 index d6f99c92b..000000000 --- a/old-replays/404.php +++ /dev/null @@ -1,46 +0,0 @@ -setPageTitle("Replay not found"); -$panels->noScripts(); -$panels->start(); - -?> -
-
- -

Not Found

-

- The battle you're looking for has expired. Battles expire after 15 minutes of inactivity unless they're saved. -

-

- In the future, remember to click Upload and share replay to save a replay permanently. -

- - - - -
-
-end(); - -?> diff --git a/old-replays/503.php b/old-replays/503.php deleted file mode 100644 index 723f865be..000000000 --- a/old-replays/503.php +++ /dev/null @@ -1,43 +0,0 @@ -setPageTitle("Replay not found"); -$panels->noScripts(); -$panels->start(); - -?> -
-
- -

Technical difficulties

-

- offlineReason ? $Replays->offlineReason : "We're currently experiencing some technical difficulties. Please try again later. Sorry." ?> -

- - - - -
-
-end(); - -?> diff --git a/old-replays/apple-touch-icon.png b/old-replays/apple-touch-icon.png deleted file mode 100644 index bfff1b75c5929e6a147712035ef225dc2e511854..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 45373 zcmcF~WmgU4pwMxH}9M+=9CXcL>25ToN?6L$DBBg9O*$u7Sbbb"Jnwt& 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 diff --git a/old-replays/build b/old-replays/build deleted file mode 100755 index b58d8a99e..000000000 --- a/old-replays/build +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env node - -/** - * This script parses index.html and sets the version query string of each - * resource to be the MD5 hash of that resource. - */ - -const fs = require('fs'); -const crypto = require('crypto'); - -process.chdir(__dirname); - -function updateIndex() { - let indexContents = fs.readFileSync('theme/wrapper.inc.template.php', {encoding: 'utf8'}); - - // add hashes to js and css files - process.stdout.write("Updating hashes... "); - // Check for ]+?src|]+?href|]+?src)="\/(.*?)(\?[a-z0-9]*?)?"/g, runReplace); - console.log("DONE"); - - process.stdout.write("Writing new `wrapper.inc.php` file... "); - fs.writeFileSync('theme/wrapper.inc.php', indexContents); - console.log("DONE"); -} - -function runReplace(a, b, c) { - let hash = Math.random(); // just in case creating the hash fails - const routes = JSON.parse(fs.readFileSync('../config/routes.json')); - try { - var filepath = c; - if (c.includes('/' + routes.client + '/')) { - const filename = c.replace('/' + routes.client + '/', ''); - filepath = '../' + filename; - } - const fstr = fs.readFileSync(filepath, {encoding: 'utf8'}); - hash = crypto.createHash('md5').update(fstr).digest('hex').substr(0, 8); - } catch (e) {} - c = c.replace('/replay.pokemonshowdown.com/', '/' + routes.replays + '/'); - c = c.replace('/dex.pokemonshowdown.com/', '/' + routes.dex + '/'); - c = c.replace('/play.pokemonshowdown.com/', '/' + routes.client + '/'); - c = c.replace('/pokemonshowdown.com/users/', '/' + routes.users + '/'); - c = c.replace('/pokemonshowdown.com/', '/' + routes.root + '/'); - - return b + '="/' + c + '?' + hash + '"'; -} - -updateIndex(); diff --git a/old-replays/favicon.ico b/old-replays/favicon.ico deleted file mode 100644 index 34b1536b185990d18a6d143df6526eaf88c35898..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 318 zcmZQzU<5(|0RaXO&|qX>5ChRb3=&ZQVnzlQAj!bc045;>L^T7$ijGvUz}NRL8CK-! zGbB37GrYdK4@o6{rXUu;zyJ~yQc?{7(JC%ZAX>=T*hCRT8!JI*B^46|ki3wy5k#G_ zk`g13uWY2^1g4FR!L*REF~lGxrBJX!K|vS|RQ>-y0|OZIGcf!B;txRlKpu)=V(dV1 RDE`6B!0-o%{~w0v0|1VuEFS;> diff --git a/old-replays/index.php b/old-replays/index.php deleted file mode 100644 index 8aba3a528..000000000 --- a/old-replays/index.php +++ /dev/null @@ -1,246 +0,0 @@ -setPageTitle('Replays'); -$panels->setPageDescription('Watch replays of battles on Pokémon Showdown!'); -$panels->setTab('replay'); -$panels->start(); -?> -
-

Upload replays

-

- To upload a replay, click "Share" or use the command /savereplay in a Pokémon Showdown battle! -

-

Search replays

- -
-

- - -

-
-
-

- - -

-
-

Featured replays

- -

Recent replays

- -
- -end(); - -?> diff --git a/old-replays/js/ou-305002749.log b/old-replays/js/ou-305002749.log deleted file mode 100644 index 0bb335583..000000000 --- a/old-replays/js/ou-305002749.log +++ /dev/null @@ -1,14927 +0,0 @@ -|j|CHEF BOY4RDEEZNUTS -|player|p1|CHEF BOY4RDEEZNUTS|203 -|player|p2|Crime♥|146 -|gametype|singles -|gen|6 -|tier|OU -|rated -|seed|51607,1132,42462,64155 -|clearpoke -|poke|p1|Sableye, M -|poke|p1|Tentacruel, M -|poke|p1|Gliscor, M -|poke|p1|Chansey, F -|poke|p1|Jirachi -|poke|p1|Clefable, M -|poke|p2|Chansey, F -|poke|p2|Skarmory, F -|poke|p2|Heatran, F, shiny -|poke|p2|Florges, F -|poke|p2|Cobalion -|poke|p2|Slowbro, F -|rule|Swagger Clause: Swagger is banned -|rule|Baton Pass Clause: Limit one Baton Passer, can't pass Spe and other stats simultaneously -|rule|Sleep Clause Mod: Limit one foe put to sleep -|rule|Species Clause: Limit one of each Pokémon -|rule|OHKO Clause: OHKO moves are banned -|rule|Moody Clause: Moody is banned -|rule|Evasion Moves Clause: Evasion moves are banned -|rule|Endless Battle Clause: Forcing endless battles is banned -|rule|HP Percentage Mod: HP is shown in percentages -|teampreview -|c|★Crime♥|nice stall -|c|★Crime♥|<3 -|choice|team 5|team 3 -| -|start -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Heatran|Heatran, F, shiny|386/386 -|turn|1 -|c|★Crime♥|im not good at stall yet ;3 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Heatran -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Heatran|Stealth Rock|p1a: TheMoreYouKnow -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|turn|2 -|c|★CHEF BOY4RDEEZNUTS|its a fun play style -|c|★Crime♥|yes haha -|c|★Crime♥|people get so mad! -|c|★CHEF BOY4RDEEZNUTS|alot of ppl hate it when you use it tho -|c|★Crime♥|XD -|choice|move 2|move 1 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Heatran -|-status|p2a: Heatran|par -|cant|p2a: Heatran|par -| -|turn|3 -|c|★Crime♥|its called playing defensive.. -|c|★Crime♥|with healers and tanks -|choice|move 3|move 1 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|372/386 par -|choice|switch 2| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-crit|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|262/363 -|-status|p1a: U Jelly Bruh?|brn -| -|-heal|p1a: U Jelly Bruh?|284/363 brn|[from] item: Black Sludge -|-heal|p2a: Heatran|386/386 par|[from] item: Leftovers -|-damage|p1a: U Jelly Bruh?|239/363 brn|[from] brn -|turn|4 -|c|★Crime♥|you jelly bruhhhhhhhhhh -|c|★Crime♥|:3 -|choice|move 4|switch 4 -| -|switch|p2a: Florges|Florges, F|360/360 -|-damage|p2a: Florges|315/360|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Florges -|-damage|p2a: Florges|308/360 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|261/363 brn|[from] item: Black Sludge -|-heal|p2a: Florges|330/360|[from] item: Leftovers -|-damage|p1a: U Jelly Bruh?|216/363 brn|[from] brn -|turn|5 -|choice|switch 4|move 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -| -|-heal|p2a: Florges|352/360|[from] item: Leftovers -|turn|6 -|choice|move 4|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -| -|turn|7 -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye, M|301/301 -|move|p2a: Skarmory|Defog|p1a: I <3 Stall -|-unboost|p1a: I <3 Stall|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|8 -|c|★Crime♥|should i replace cobalion -|c|★CHEF BOY4RDEEZNUTS|idk ive never seen one on a stall team -|c|★Crime♥|haha -|choice|move 2 mega|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|detailschange|p1a: I <3 Stall|Sableye-Mega, M -|-mega|p1a: I <3 Stall|Sableye|Sablenite -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|9 -|choice|move 2|move 1 -| -|move|p2a: Slowbro|Scald|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|243/301 -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|10 -|choice|move 1|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|386/386 -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|253/386 -| -|-heal|p2a: Heatran|277/386|[from] item: Leftovers -|turn|11 -|choice|move 1|move 1 -| -|move|p2a: Heatran|Lava Plume|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|189/301 -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|139/386 -| -|-heal|p2a: Heatran|163/386|[from] item: Leftovers -|turn|12 -|choice|move 4|switch 3 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|turn|13 -|choice|move 2|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|14 -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|163/386 -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-heal|p2a: Heatran|386/386|[from] move: Wish|[wisher] Chansey -|turn|15 -|choice|move 2|move 1 -| -|move|p2a: Heatran|Lava Plume|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|265/301 -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|16 -|choice|move 1|move 1 -| -|move|p2a: Heatran|Lava Plume|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|237/301 -|-status|p1a: I <3 Stall|brn -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|149/386 -| -|-heal|p2a: Heatran|173/386|[from] item: Leftovers -|-damage|p1a: I <3 Stall|200/301 brn|[from] brn -|turn|17 -|choice|move 4|switch 3 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 brn -| -|-damage|p1a: I <3 Stall|264/301 brn|[from] brn -|turn|18 -|choice|switch 2|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|19 -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|173/386 -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Heatran -|-status|p2a: Heatran|par -| -|-heal|p2a: Heatran|386/386 par|[from] move: Wish|[wisher] Chansey -|turn|20 -|choice|move 3|move 4 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|373/386 par -|choice|switch 5| -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|386/386 par|[from] item: Leftovers -|turn|21 -|choice|move 1|move 3 -| -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|286/386 par -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|310/386 par|[from] item: Leftovers -|turn|22 -|choice|move 1|switch 3 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|move|p1a: Fatty|Seismic Toss|p2a: Chansey -|-damage|p2a: Chansey|542/642 -| -|-end|p1a: Fatty|move: Taunt -|turn|23 -|choice|move 4|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|310/386 par -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -| -|-heal|p2a: Heatran|334/386 par|[from] item: Leftovers -|turn|24 -|choice|move 3|move 4 -| -|move|p1a: Fatty|Wish|p1a: Fatty -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|358/386 par|[from] item: Leftovers -|turn|25 -|choice|switch 4|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|216/363 -|-damage|p1a: U Jelly Bruh?|171/363|[from] Stealth Rock -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|-damage|p1a: I <3 Stall|227/301|[from] Stealth Rock -| -|-heal|p1a: I <3 Stall|301/301|[from] move: Wish|[wisher] Fatty -|-heal|p2a: Heatran|382/386 par|[from] item: Leftovers -|turn|26 -|choice|move 1|move 1 -| -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|316/386 par -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|340/386 par|[from] item: Leftovers -|turn|27 -|choice|switch 2|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|171/363 -|-damage|p1a: U Jelly Bruh?|126/363|[from] Stealth Rock -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|89/363 -| -|-heal|p1a: U Jelly Bruh?|111/363|[from] item: Black Sludge -|-heal|p2a: Heatran|364/386 par|[from] item: Leftovers -|turn|28 -|choice|move 4|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|387/394 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|133/363|[from] item: Black Sludge -|turn|29 -|choice|switch 4|move 1 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-crit|p1a: Fatty -|-damage|p1a: Fatty|575/642 -| -|turn|30 -|choice|move 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|542/642 -|move|p1a: Fatty|Toxic|p2a: Chansey -|-status|p2a: Chansey|tox -| -|-damage|p2a: Chansey|502/642 tox|[from] psn -|turn|31 -|c|★Crime♥|do you get high in rating with ur stall team? -|c|★CHEF BOY4RDEEZNUTS|not super high but decent -|c|★Crime♥|oh -|c|★Crime♥|i got to 1650 max -|c|★CHEF BOY4RDEEZNUTS|i have good streaks and bad streaks lol -|choice|switch 4|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|133/363 -|move|p2a: Chansey|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|155/363|[from] item: Black Sludge -|-damage|p2a: Chansey|422/642 tox|[from] psn -|turn|32 -|c|★Crime♥|yes -|choice|move 3|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|344/394 -| -|-heal|p1a: U Jelly Bruh?|177/363|[from] item: Black Sludge -|turn|33 -|choice|switch 5|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Slowbro|Scald|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|312/403 -| -|-heal|p1a: TheMoreYouKnow|337/403|[from] item: Leftovers -|turn|34 -|choice|move 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|422/642 -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Chansey -|-status|p2a: Chansey|par -| -|-heal|p1a: TheMoreYouKnow|362/403|[from] item: Leftovers -|turn|35 -|choice|move 1|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|261/334 -| -|-heal|p1a: TheMoreYouKnow|387/403|[from] item: Leftovers -|turn|36 -|choice|switch 2|switch 6 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Chansey|Chansey, F|422/642 -| -|turn|37 -|choice|switch 5|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|177/363 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|642/642 -| -|-heal|p1a: U Jelly Bruh?|199/363|[from] item: Black Sludge -|turn|38 -|c|★Crime♥|imagine -|c|★Crime♥|if we time stall this -|c|★Crime♥|XD -|choice|move 3|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|344/394 -| -|-heal|p1a: U Jelly Bruh?|221/363|[from] item: Black Sludge -|turn|39 -|choice|switch 4|move 1 -| -|switch|p1a: Fatty|Chansey, F|575/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|527/642 -| -|turn|40 -|choice|move 1|switch 3 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|move|p1a: Fatty|Seismic Toss|p2a: Chansey -|-damage|p2a: Chansey|542/642 -| -|turn|41 -|choice|switch 2|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|387/403 -|move|p2a: Chansey|Seismic Toss|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|287/403 -| -|-heal|p1a: TheMoreYouKnow|312/403|[from] item: Leftovers -|turn|42 -|choice|move 4|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|261/334 -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|337/403|[from] item: Leftovers -|turn|43 -|choice|move 2|move 3 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Skarmory -|-status|p2a: Skarmory|par -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: TheMoreYouKnow|362/403|[from] item: Leftovers -|turn|44 -|choice|move 4|move 2 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 par -| -|-heal|p1a: TheMoreYouKnow|387/403|[from] item: Leftovers -|turn|45 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|300/334 par -|cant|p2a: Skarmory|flinch -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|turn|46 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|266/334 par -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|47 -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 4|move 1 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|cant|p2a: Skarmory|par -| -|turn|48 -|c|★Crime♥|:P -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|235/334 par -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|49 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|50 -|c|★Crime♥|lmao -|c|★Crime♥|this game -|c|★Crime♥|XD -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|cant|p2a: Skarmory|par -| -|turn|51 -|choice|switch 6|move 3 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Skarmory|Defog|p1a: Redbull -|-unboost|p1a: Redbull|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|52 -|c|★Crime♥|no rocks! -|choice|move 2|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|364/386 par -|move|p1a: Redbull|Flamethrower|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|386/386 par|[from] item: Leftovers -|turn|53 -|c|★CHEF BOY4RDEEZNUTS|guess it was obvious eh -|choice|switch 2|move 1 -| -|switch|p1a: Fatty|Chansey, F|527/642 -|cant|p2a: Heatran|par -| -|turn|54 -|choice|move 3|move 1 -| -|move|p1a: Fatty|Wish|p1a: Fatty -|move|p2a: Heatran|Lava Plume|p1a: Fatty -|-crit|p1a: Fatty -|-damage|p1a: Fatty|386/642 -| -|turn|55 -|choice|move 1|move 2 -| -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|286/386 par -|cant|p2a: Heatran|par -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Fatty -|-heal|p2a: Heatran|310/386 par|[from] item: Leftovers -|turn|56 -|choice|move 1|move 4 -| -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|210/386 par -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|234/386 par|[from] item: Leftovers -|turn|57 -|choice|move 1|switch 6 -| -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Chansey|Chansey, F|542/642 -|move|p1a: Fatty|Seismic Toss|p2a: Chansey -|-damage|p2a: Chansey|442/642 -| -|turn|58 -|choice|switch 6|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|59 -|choice|move 4|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|235/334 par -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p2a: Skarmory|334/334 par|[from] move: Wish|[wisher] Chansey -|turn|60 -|choice|move 3|move 3 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|324/334 par -|choice|switch 5| -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Defog|p1a: I <3 Stall -|move|p1a: I <3 Stall|Defog|p2a: Skarmory|[from]Magic Bounce -|-unboost|p2a: Skarmory|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|61 -|c|★Crime♥|!data cobalion -|c|~|/data-pokemon Cobalion - -|c|★Crime♥|look at that hp and defense.. -|c|★Crime♥|the type makes it perfect -|choice|move 2|switch 4 -| -|switch|p2a: Chansey|Chansey, F|442/642 -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|62 -|c|★CHEF BOY4RDEEZNUTS|i dont think ive ever used one -|choice|move 2|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|63 -|choice|move 1|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|234/386 par -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|107/386 par -|-unboost|p2a: Heatran|spd|1 -| -|-heal|p2a: Heatran|386/386 par|[from] move: Wish|[wisher] Chansey -|turn|64 -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|442/642 -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|65 -|choice|move 2|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|66 -|choice|move 2|move 1 -| -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-heal|p2a: Chansey|642/642|[from] move: Wish|[wisher] Chansey -|turn|67 -|choice|move 3|switch 2 -| -|switch|p2a: Florges|Florges, F|352/360 -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Florges -|-status|p2a: Florges|brn -| -|-heal|p2a: Florges|360/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|315/360 brn|[from] brn -|turn|68 -|choice|move 1|move 3 -| -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -|move|p1a: I <3 Stall|Shadow Ball|p2a: Florges -|-damage|p2a: Florges|188/360 -| -|-heal|p2a: Florges|210/360|[from] item: Leftovers -|turn|69 -|choice|switch 5|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Florges|Protect|p2a: Florges -|-fail|p2a: Florges -| -|-heal|p2a: Florges|232/360|[from] item: Leftovers -|turn|70 -|choice|move 2|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|324/334 -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Skarmory -|-status|p2a: Skarmory|par -| -|turn|71 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|72 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|73 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|74 -|c|★Crime♥|lol -|c|★Crime♥|i might need 2x defoggers -|c|★Crime♥|in my team -|c|★Crime♥|XD -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|75 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|76 -|c|★Crime♥|see -|c|★CHEF BOY4RDEEZNUTS|XD -|c|★Crime♥|thats how i lose -|c|★Crime♥|xD -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|77 -|choice|move 4|move 3 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|78 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|291/334 par -|cant|p2a: Skarmory|flinch -| -|turn|79 -|choice|move 4|move 4 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|cant|p2a: Skarmory|par -| -|turn|80 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|255/334 par -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|81 -|choice|move 4|move 4 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Skarmory -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Skarmory|Whirlwind|p1a: TheMoreYouKnow -|drag|p1a: Fatty|Chansey, F|642/642 -| -|turn|82 -|choice|move 1|move 3 -| -|move|p1a: Fatty|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|155/334 par -|move|p2a: Skarmory|Defog|p1a: Fatty -|-unboost|p1a: Fatty|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|83 -|choice|move 1|switch 2 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|move|p1a: Fatty|Seismic Toss|p2a: Chansey -|-damage|p2a: Chansey|542/642 -| -|turn|84 -|choice|switch 4|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|221/363 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|-heal|p1a: U Jelly Bruh?|243/363|[from] item: Black Sludge -|turn|85 -|choice|move 3|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|155/334 par -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Skarmory -|-crit|p2a: Skarmory -|-damage|p2a: Skarmory|114/334 par -|-enditem|p2a: Skarmory|Shed Shell|[from] move: Knock Off|[of] p1a: U Jelly Bruh? -| -|-heal|p2a: Skarmory|334/334 par|[from] move: Wish|[wisher] Chansey -|-heal|p1a: U Jelly Bruh?|265/363|[from] item: Black Sludge -|turn|86 -|c|★Crime♥|doesnt matter lol -|c|★Crime♥|its for magnezone -|c|★CHEF BOY4RDEEZNUTS|yeah -|c|★Crime♥|XD -|choice|switch 6|switch 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Chansey|Chansey, F|542/642 -| -|turn|87 -|choice|move 1|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|386/386 -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|363/386 -| -|-heal|p2a: Heatran|386/386|[from] item: Leftovers -|turn|88 -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|turn|89 -|c|★Crime♥|please -|c|★Crime♥|;c -|choice|switch 4|switch 6 -| -|switch|p2a: Chansey|Chansey, F|542/642 -|switch|p1a: Fatty|Chansey, F|642/642 -| -|turn|90 -|c|★Crime♥|maybe i should get a bold clefable instead of cobalion -|c|★Crime♥|:P -|choice|switch 3|switch 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 -|switch|p2a: Skarmory|Skarmory, F|334/334 par -| -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|91 -|c|★CHEF BOY4RDEEZNUTS|its come in handy numerous times -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Brave Bird|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|229/301 -|-damage|p2a: Skarmory|310/334 par|[from] recoil|[of] p1a: I <3 Stall -| -|turn|92 -|c|★Crime♥|it tanks fight and dark right -|c|★CHEF BOY4RDEEZNUTS|yeah -|c|★Crime♥|how is fairy vs fairy -|c|★Crime♥|normal? -|choice|move 1|switch 2 -| -|switch|p2a: Chansey|Chansey, F|542/642 -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|93 -|choice|move 4|switch 4 -| -|switch|p2a: Florges|Florges, F|232/360 -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|-heal|p2a: Florges|254/360|[from] item: Leftovers -|turn|94 -|c|★CHEF BOY4RDEEZNUTS|it depends on the fairy -|c|★CHEF BOY4RDEEZNUTS|like gard wrecks clef unless you alread have calm minds up -|choice|switch 5|switch 4 -| -|switch|p2a: Chansey|Chansey, F|542/642 -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|95 -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|386/386 -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Heatran -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|turn|96 -|c|★CHEF BOY4RDEEZNUTS|thats what my rachi is for :P -|c|★CHEF BOY4RDEEZNUTS|fairy counter -|c|★CHEF BOY4RDEEZNUTS|and the latis -|c|★Crime♥|oh oke -|choice|move 3|move 1 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|372/386 -|choice|switch 6| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|265/363 -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|227/363 -| -|-heal|p1a: U Jelly Bruh?|249/363|[from] item: Black Sludge -|-heal|p2a: Heatran|386/386|[from] item: Leftovers -|turn|97 -|choice|move 1|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 -| -|-heal|p1a: U Jelly Bruh?|271/363|[from] item: Black Sludge -|turn|98 -|choice|switch 3|move 1 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|596/642 -| -|turn|99 -|c|★Crime♥|how many turns will we reach? -|choice|move 1|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|310/334 par -|-damage|p2a: Skarmory|269/334 par|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|169/334 par -| -|turn|100 -|c|★CHEF BOY4RDEEZNUTS|200? lol -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|542/642 -|-damage|p2a: Chansey|462/642|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Chansey -|-damage|p2a: Chansey|362/642 -| -|turn|101 -|c|★Crime♥|yes i think -|choice|switch 6|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|102 -|choice|move 3|move 3 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Chansey -|-damage|p2a: Chansey|273/642 -|choice|switch 3| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|271/363 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|594/642 -| -|-heal|p2a: Chansey|642/642|[from] move: Wish|[wisher] Chansey -|-heal|p1a: U Jelly Bruh?|293/363|[from] item: Black Sludge -|turn|103 -|c|★Crime♥|this game wouldnt end with time stall -|choice|switch 3|switch 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|104 -|choice|move 3|switch 2 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|-damage|p2a: Chansey|562/642|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Chansey -|-damage|p2a: Chansey|464/642 -|choice|switch 3| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|293/363 -| -|-heal|p1a: U Jelly Bruh?|315/363|[from] item: Black Sludge -|turn|105 -|choice|move 3|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|299/394 -| -|-heal|p1a: U Jelly Bruh?|337/363|[from] item: Black Sludge -|turn|106 -|c|★Crime♥|knock off my chansey huh? -|choice|switch 6|switch 2 -| -|switch|p1a: Fatty|Chansey, F|596/642 -|switch|p2a: Chansey|Chansey, F|464/642 -|-damage|p2a: Chansey|384/642|[from] Stealth Rock -| -|turn|107 -|c|★CHEF BOY4RDEEZNUTS|trying to lol -|c|★Crime♥|lol -|choice|switch 3|move 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|642/642 -| -|turn|108 -|c|★Crime♥|i need moves to get PP backk -|c|★Crime♥|XD -|choice|move 2|move 4 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Chansey -|-status|p2a: Chansey|par -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|109 -|choice|move 2|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|169/334 par -|-damage|p2a: Skarmory|128/334 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Skarmory -|-fail|p2a: Skarmory|par -| -|-heal|p2a: Skarmory|334/334 par|[from] move: Wish|[wisher] Chansey -|turn|110 -|c|★CHEF BOY4RDEEZNUTS|derp -|choice|move 3|switch 6 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|-damage|p2a: Chansey|562/642|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Chansey -|-damage|p2a: Chansey|476/642 -|choice|switch 2| -| -|switch|p1a: Redbull|Clefable, M|393/393 -| -|turn|111 -|choice|move 4|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|386/386 -|-damage|p2a: Heatran|338/386|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|362/386|[from] item: Leftovers -|turn|112 -|choice|switch 6|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|337/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|359/363|[from] item: Black Sludge -|-heal|p2a: Heatran|386/386|[from] item: Leftovers -|turn|113 -|choice|move 4|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|337/394 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|114 -|choice|move 1|switch 5 -| -|switch|p2a: Cobalion|Cobalion|386/386 -|-damage|p2a: Cobalion|374/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Cobalion -|-damage|p2a: Cobalion|272/386 -|-status|p2a: Cobalion|brn -|-enditem|p2a: Cobalion|Lum Berry|[eat] -|-curestatus|p2a: Cobalion|brn -| -|turn|115 -|c|★CHEF BOY4RDEEZNUTS|ooooo -|c|★Crime♥|lol -|choice|switch 4|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|292/352 tox -| -|-heal|p1a: Annoying AF|336/352 tox|[from] ability: Poison Heal -|turn|116 -|choice|move 1|move 2 -| -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|284/352 tox -|cant|p1a: Annoying AF|flinch -| -|-heal|p1a: Annoying AF|328/352 tox|[from] ability: Poison Heal -|turn|117 -|choice|move 1|move 3 -| -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -|move|p1a: Annoying AF|Earthquake|p2a: Cobalion -|-supereffective|p2a: Cobalion -|-damage|p2a: Cobalion|246/386 slp -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|118 -|c|★Crime♥|tanky right -|c|★Crime♥|:P -|c|★CHEF BOY4RDEEZNUTS|bulkier than i thought XD -|choice|move 3|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 par -|-damage|p2a: Skarmory|293/334 par|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -| -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|119 -|c|★Crime♥|lol -|choice|move 1|move 3 -| -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -|move|p2a: Skarmory|Defog|p1a: Annoying AF -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|120 -|choice|switch 2|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Slowbro|Slowbro, F|394/394 -| -|turn|121 -|choice|move 4|move 1 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Slowbro -|-sidestart|p2: Crime♥|move: Stealth Rock -|move|p2a: Slowbro|Scald|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|313/403 -| -|-heal|p1a: TheMoreYouKnow|338/403|[from] item: Leftovers -|turn|122 -|choice|move 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|476/642 -|-damage|p2a: Chansey|396/642|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Chansey -|-status|p2a: Chansey|par -| -|-heal|p1a: TheMoreYouKnow|363/403|[from] item: Leftovers -|turn|123 -|choice|move 1|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 par -|-damage|p2a: Skarmory|252/334 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|216/334 par -| -|-heal|p1a: TheMoreYouKnow|388/403|[from] item: Leftovers -|turn|124 -|choice|move 1|move 2 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|181/334 par -|cant|p2a: Skarmory|flinch -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|turn|125 -|choice|move 1|switch 6 -| -|switch|p2a: Cobalion|Cobalion|246/386 slp -|-damage|p2a: Cobalion|234/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|199/386 slp -| -|turn|126 -|c|★Crime♥|3% dmg from rocks -|c|★Crime♥|so good -|choice|move 3|move 3 -| -|cant|p2a: Cobalion|slp -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|189/386 slp -|choice|switch 2| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|turn|127 -|choice|switch 2|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|181/334 par -|-damage|p2a: Skarmory|140/334 par|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|128 -|choice|move 1|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|306/394 -| -|turn|129 -|choice|move 3|switch 3 -| -|switch|p2a: Skarmory|Skarmory, F|140/334 par -|-damage|p2a: Skarmory|99/334 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|90/334 par -|choice|switch 6| -| -|switch|p1a: Redbull|Clefable, M|393/393 -| -|turn|130 -|choice|switch 2|switch 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|switch|p2a: Heatran|Heatran, F, shiny|386/386 -|-damage|p2a: Heatran|338/386|[from] Stealth Rock -| -|-heal|p2a: Heatran|362/386|[from] item: Leftovers -|turn|131 -|c|★Crime♥|lmao -|choice|move 1|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|90/334 par -|-damage|p2a: Skarmory|49/334 par|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|132 -|choice|switch 4|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|216/334 par -| -|turn|133 -|c|★CHEF BOY4RDEEZNUTS|nooooooooo lol -|choice|move 1|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|298/394 -| -|turn|134 -|choice|switch 3|move 3 -| -|switch|p1a: Fatty|Chansey, F|596/642 -|move|p2a: Slowbro|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|556/642 tox|[from] psn -|turn|135 -|choice|move 2|switch 4 -| -|switch|p2a: Florges|Florges, F|254/360 -|-damage|p2a: Florges|209/360|[from] Stealth Rock -|move|p1a: Fatty|Toxic|p2a: Florges -|-status|p2a: Florges|tox -| -|-heal|p2a: Florges|231/360 tox|[from] item: Leftovers -|-damage|p2a: Florges|209/360 tox|[from] psn -|-damage|p1a: Fatty|476/642 tox|[from] psn -|turn|136 -|choice|move 2|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Fatty|Toxic|p2a: Florges|[miss] -|-miss|p1a: Fatty|p2a: Florges -| -|-heal|p2a: Florges|231/360 tox|[from] item: Leftovers -|-damage|p2a: Florges|187/360 tox|[from] psn -|-damage|p1a: Fatty|356/642 tox|[from] psn -|turn|137 -|choice|move 4|move 1 -| -|move|p2a: Florges|Moonblast|p1a: Fatty -|-damage|p1a: Fatty|296/642 tox -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -| -|-heal|p2a: Florges|360/360 tox|[from] move: Wish|[wisher] Florges -|-damage|p2a: Florges|294/360 tox|[from] psn -|turn|138 -|choice|move 3|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Fatty|Wish|p1a: Fatty -| -|-heal|p2a: Florges|316/360 tox|[from] item: Leftovers -|-damage|p2a: Florges|228/360 tox|[from] psn -|turn|139 -|choice|move 1|switch 6 -| -|switch|p2a: Cobalion|Cobalion|189/386 slp -|-damage|p2a: Cobalion|177/386 slp|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|77/386 slp -| -|-heal|p2a: Cobalion|257/386 slp|[from] move: Wish|[wisher] Florges -|-heal|p1a: Fatty|617/642|[from] move: Wish|[wisher] Fatty -|turn|140 -|c|★Crime♥|welcome back to life -|c|★Crime♥|;c -|choice|switch 4|switch 5 -| -|switch|p2a: Chansey|Chansey, F|396/642 -|-damage|p2a: Chansey|316/642|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 -| -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|141 -|choice|move 1|switch 3 -| -|switch|p2a: Skarmory|Skarmory, F|216/334 par -|-damage|p2a: Skarmory|175/334 par|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|142 -|choice|switch 6|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|cant|p2a: Skarmory|par -| -|turn|143 -|choice|move 2|move 2 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Skarmory -|-fail|p2a: Skarmory|par -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 par -| -|turn|144 -|choice|move 3|switch 5 -| -|switch|p2a: Cobalion|Cobalion|257/386 slp -|-damage|p2a: Cobalion|245/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-crit|p2a: Cobalion -|-damage|p2a: Cobalion|231/386 slp -|c|★Crime♥|4% crit -|c|★Crime♥|op -|choice|switch 6| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|turn|145 -|choice|switch 6|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 par -|-damage|p2a: Skarmory|293/334 par|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|146 -|choice|move 1|switch 5 -| -|switch|p2a: Cobalion|Cobalion|231/386 slp -|-damage|p2a: Cobalion|219/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|186/386 slp -| -|turn|147 -|choice|move 3|move 3 -| -|cant|p2a: Cobalion|slp -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|176/386 slp -|c| Team Delta Ethan|bruh -|c|★Crime♥|lol -|choice|switch 6| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|turn|148 -|c|★Crime♥|boring battle -|c|★Crime♥|but we are talking so -|c|★Crime♥|:P -|choice|move 1|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 par -|-damage|p2a: Skarmory|252/334 par|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|149 -|c|★CHEF BOY4RDEEZNUTS|150 turns no mons dead lol -|c|★Crime♥|XD -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Whirlwind|p1a: I <3 Stall -|move|p1a: I <3 Stall|Whirlwind|p2a: Skarmory|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|150 -|c|★Crime♥|weeeeeeeeeeee -|c|★Crime♥|lmao -|choice|move 1|switch 3 -| -|switch|p2a: Chansey|Chansey, F|316/642 -|-damage|p2a: Chansey|236/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|151 -|choice|switch 2|move 3 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|557/642 -| -|turn|152 -|choice|move 4|switch 2 -| -|switch|p2a: Heatran|Heatran, F, shiny|362/386 -|-damage|p2a: Heatran|314/386|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|338/386|[from] item: Leftovers -|turn|153 -|choice|switch 3|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|362/386|[from] item: Leftovers -|turn|154 -|choice|move 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|337/394 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|turn|155 -|choice|move 3|move 2 -| -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-singleturn|p2a: Slowbro|Protect -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-activate|p2a: Slowbro|Protect -| -|turn|156 -|c|★Crime♥|protect slowbro -|c|★Crime♥|XDDDDDDDDD -|choice|switch 6|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|turn|157 -|choice|move 3|switch 2 -| -|switch|p2a: Chansey|Chansey, F|557/642 -|-damage|p2a: Chansey|477/642|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Chansey -|-damage|p2a: Chansey|389/642 -|choice|switch 2| -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|158 -|choice|move 2|move 3 -| -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|642/642 -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|159 -|choice|move 1|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|362/386 -|-damage|p2a: Heatran|314/386|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|208/386 -| -|-heal|p2a: Heatran|232/386|[from] item: Leftovers -|turn|160 -|choice|move 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|-damage|p2a: Chansey|562/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|161 -|c|★Crime♥|omg -|c|★Crime♥|my -|c|★Crime♥|family -|c|★Crime♥|is so fucked up in the head -|c|★Crime♥|seriously -|c|★CHEF BOY4RDEEZNUTS|wat? -|c|★Crime♥|especially in the mornings -|c|★Crime♥|just screaming like idiots in the morning -|c|★Crime♥|and blaming me all day -|choice|move 1|move 1 -| -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|162 -|choice|move 2|move 1 -| -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|163 -|choice|move 3|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|482/642 brn|[from] brn -|turn|164 -|choice|move 1|switch 6 -| -|switch|p2a: Florges|Florges, F|228/360 tox -|-damage|p2a: Florges|183/360 tox|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Florges -|-damage|p2a: Florges|71/360 tox -| -|-heal|p2a: Florges|360/360 tox|[from] move: Wish|[wisher] Chansey -|-damage|p2a: Florges|338/360 tox|[from] psn -|turn|165 -|c|★Crime♥|phew -|choice|switch 6|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -| -|-heal|p2a: Florges|360/360|[from] item: Leftovers -|turn|166 -|choice|move 2|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|296/394 -|-unboost|p2a: Slowbro|spd|2 -| -|turn|167 -|choice|move 2|move 2 -| -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-singleturn|p2a: Slowbro|Protect -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-activate|p2a: Slowbro|Protect -| -|turn|168 -|choice|move 3|switch 5 -| -|switch|p2a: Cobalion|Cobalion|176/386 -|-damage|p2a: Cobalion|164/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|154/386 -|-ability|p2a: Cobalion|Justified|boost -|-boost|p2a: Cobalion|atk|1 -| -|turn|169 -|choice|switch 5|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|170 -|c|★Crime♥|XD -|c|★Crime♥|rest# -|choice|switch 6|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|252/334 -|-damage|p2a: Skarmory|211/334|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|171 -|c|★Crime♥|will we get to turn 300 -|choice|move 2|switch 6 -| -|switch|p2a: Chansey|Chansey, F|482/642 -|-damage|p2a: Chansey|402/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|172 -|choice|switch 2|switch 4 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|173 -|choice|move 3|move 4 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|365/386 slp -|choice|switch 6| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|cant|p2a: Cobalion|slp -| -|turn|174 -|choice|move 1|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|211/334 -|-damage|p2a: Skarmory|170/334|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|175 -|c|★CHEF BOY4RDEEZNUTS|at this rate yes -|choice|move 1|move 2 -| -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -| -|turn|176 -|choice|switch 2|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Whirlwind|p1a: I <3 Stall -|move|p1a: I <3 Stall|Whirlwind|p2a: Skarmory|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|177 -|choice|move 1|switch 2 -| -|switch|p2a: Florges|Florges, F|360/360 -|-damage|p2a: Florges|315/360|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Florges -|-damage|p2a: Florges|267/360 -|-unboost|p2a: Florges|spd|1 -| -|-heal|p2a: Florges|289/360|[from] item: Leftovers -|turn|178 -|c|★Crime♥|im gonna change my playstyle -|choice|switch 5|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Florges|Wish|p2a: Florges -| -|-heal|p2a: Florges|311/360|[from] item: Leftovers -|turn|179 -|c| Bambi22|plz -|c| Team Delta Ethan|>:( -|choice|move 3|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|360/360|[from] move: Wish|[wisher] Florges -|turn|180 -|c|★CHEF BOY4RDEEZNUTS|lol -|c|★Crime♥|no -|c|★Crime♥|im running out of pp -|c|★Crime♥|:P -|c|★Crime♥|im losing -|c| Team Delta Ethan|I FUCKING HATE PHABLE -|c| Team Delta Ethan|HE SUCKS -|choice|move 3|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|299/394 -| -|turn|181 -|choice|move 2|move 1 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|253/394 -|-unboost|p2a: Slowbro|spd|2 -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|333/363 -|-status|p1a: U Jelly Bruh?|brn -| -|-heal|p1a: U Jelly Bruh?|355/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|310/363 brn|[from] brn -|turn|182 -|c| Bambi22|ok -|c|★Crime♥|and please run out of knock off -|c|★Crime♥|llol -|choice|move 1|switch 6 -| -|switch|p2a: Cobalion|Cobalion|365/386 slp -|-damage|p2a: Cobalion|353/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Cobalion -|-damage|p2a: Cobalion|254/386 slp -| -|-heal|p1a: U Jelly Bruh?|332/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|287/363 brn|[from] brn -|turn|183 -|choice|switch 2|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|384/394 -|-damage|p2a: Slowbro|335/394|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|turn|184 -|choice|move 2|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|185 -|c|★Crime♥|annoying AF! -|c| Bambi22|do you not have a water move on tentacruel -|choice|switch 6|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|186 -|c|★Crime♥|lmao -|c|★Crime♥|no scald tenta -|c|★Crime♥|op -|choice|move 3|switch 6 -| -|switch|p2a: Cobalion|Cobalion|254/386 slp -|-damage|p2a: Cobalion|242/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-crit|p2a: Cobalion -|-damage|p2a: Cobalion|227/386 slp -|c|★CHEF BOY4RDEEZNUTS|it has scald -|c| Bambi22|oh wait i thought crime had the gliscor -|c| Bambi22|my bad -|choice|switch 3| -| -|switch|p1a: Redbull|Clefable, M|393/393 -| -|turn|187 -|c|★Crime♥|i really need weed for this battle -|c|★Crime♥|haha -|choice|switch 6|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|232/386 -|-damage|p2a: Heatran|184/386|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-heal|p2a: Heatran|208/386|[from] item: Leftovers -|turn|188 -|choice|move 1|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 -|-damage|p2a: Skarmory|252/334|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|189 -|choice|switch 3|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Whirlwind|p1a: TheMoreYouKnow -|drag|p1a: Fatty|Chansey, F|617/642 -| -|turn|190 -|choice|move 4|move 4 -| -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -|move|p2a: Skarmory|Whirlwind|p1a: Fatty -|drag|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|191 -|choice|move 3|move 4 -| -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Skarmory -|-status|p2a: Skarmory|brn -|move|p2a: Skarmory|Whirlwind|p1a: I <3 Stall -|move|p1a: I <3 Stall|Whirlwind|p2a: Skarmory|[from]Magic Bounce -|drag|p2a: Chansey|Chansey, F|402/642 -|-damage|p2a: Chansey|322/642|[from] Stealth Rock -| -|turn|192 -|choice|switch 2|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|287/363 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|642/642 -| -|-heal|p1a: U Jelly Bruh?|309/363|[from] item: Black Sludge -|turn|193 -|choice|move 1|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|300/394 -|-status|p2a: Slowbro|brn -| -|-heal|p1a: U Jelly Bruh?|331/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|251/394 brn|[from] brn -|turn|194 -|choice|move 1|move 4 -| -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|202/394 brn -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 brn -| -|-heal|p1a: U Jelly Bruh?|353/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|345/394 brn|[from] brn -|turn|195 -|c|★CHEF BOY4RDEEZNUTS|yup knew it -|choice|move 2|move 1 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|296/394 brn -|-unboost|p2a: Slowbro|spd|2 -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|323/363 -| -|-heal|p1a: U Jelly Bruh?|345/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|247/394 brn|[from] brn -|turn|196 -|c|★Crime♥|lol -|c|★Crime♥|ofcourse i have slack off -|c|★Crime♥|XD -|choice|move 1|move 4 -| -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|153/394 brn -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|350/394 brn -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|301/394 brn|[from] brn -|turn|197 -|choice|move 2|move 1 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|213/394 brn -|-unboost|p2a: Slowbro|spd|2 -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|333/363 -| -|-heal|p1a: U Jelly Bruh?|355/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|164/394 brn|[from] brn -|turn|198 -|choice|move 1|move 4 -| -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|29/394 brn -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|226/394 brn -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|177/394 brn|[from] brn -|turn|199 -|c| Bambi22|and this is only in the 1400s on the ladder? -|c|★Crime♥|yes around -|c|★CHEF BOY4RDEEZNUTS|im at 1420 -|c|★CHEF BOY4RDEEZNUTS|currently -|c| Team Delta Ethan|this annoys me -|choice|move 1|switch 2 -| -|switch|p2a: Florges|Florges, F|360/360 -|-damage|p2a: Florges|315/360|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Florges -|-damage|p2a: Florges|267/360 -|-status|p2a: Florges|brn -| -|-heal|p2a: Florges|289/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|244/360 brn|[from] brn -|turn|200 -|c| Team Delta Ethan|i hate tank battles -|choice|move 2|move 4 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Florges -|-supereffective|p2a: Florges -|-crit|p2a: Florges -|-damage|p2a: Florges|178/360 brn -|-unboost|p2a: Florges|spd|2 -|move|p2a: Florges|Wish|p2a: Florges -| -|-heal|p2a: Florges|200/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|155/360 brn|[from] brn -|turn|201 -|c|★CHEF BOY4RDEEZNUTS|incoming protect -|c| Bambi22|where are the stallbreakers at? -|choice|move 1|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: U Jelly Bruh?|Scald|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|335/360 brn|[from] move: Wish|[wisher] Florges -|-heal|p2a: Florges|357/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|312/360 brn|[from] brn -|turn|202 -|choice|move 2|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|308/394 brn -|-damage|p2a: Slowbro|259/394 brn|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|216/394 brn -|-unboost|p2a: Slowbro|spd|2 -| -|-damage|p2a: Slowbro|167/394 brn|[from] brn -|turn|203 -|choice|move 2|move 4 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|70/394 brn -|-unboost|p2a: Slowbro|spd|2 -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|267/394 brn -| -|-damage|p2a: Slowbro|218/394 brn|[from] brn -|turn|204 -|choice|move 2|switch 2 -| -|switch|p2a: Florges|Florges, F|312/360 brn -|-damage|p2a: Florges|267/360 brn|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Florges -|-supereffective|p2a: Florges -|-damage|p2a: Florges|225/360 brn -|-unboost|p2a: Florges|spd|2 -| -|-heal|p2a: Florges|247/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|202/360 brn|[from] brn -|turn|205 -|choice|move 2|move 3 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Florges -|-supereffective|p2a: Florges -|-damage|p2a: Florges|118/360 brn -|-unboost|p2a: Florges|spd|2 -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -| -|-heal|p2a: Florges|140/360|[from] item: Leftovers -|turn|206 -|choice|move 2|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|162/360|[from] item: Leftovers -|turn|207 -|choice|move 2|switch 3 -| -|switch|p2a: Cobalion|Cobalion|227/386 -|-damage|p2a: Cobalion|215/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|turn|208 -|choice|move 1|move 3 -| -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -|move|p1a: U Jelly Bruh?|Scald|p2a: Cobalion -|-damage|p2a: Cobalion|278/386 slp -| -|turn|209 -|c|★CHEF BOY4RDEEZNUTS|ugh -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 1|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|349/394 -|-damage|p2a: Slowbro|300/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-crit|p2a: Slowbro -|-damage|p2a: Slowbro|232/394 -| -|turn|210 -|c|★Crime♥|lol -|choice|move 2|move 4 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|183/394 -|-unboost|p2a: Slowbro|spd|2 -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|380/394 -| -|turn|211 -|c|★Crime♥|!data acid spray -|c|~|/data-move Acid Spray - -|choice|move 2|move 1 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|284/394 -|-unboost|p2a: Slowbro|spd|2 -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|336/363 -| -|-heal|p1a: U Jelly Bruh?|358/363|[from] item: Black Sludge -|turn|212 -|c| Bambi22|this is the definition of pp stall -|c|★CHEF BOY4RDEEZNUTS|useful for against calm mind clef -|c|★CHEF BOY4RDEEZNUTS|acid spray -|choice|move 2|switch 2 -| -|switch|p2a: Cobalion|Cobalion|278/386 slp -|-damage|p2a: Cobalion|266/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|213 -|choice|move 1|switch 3 -| -|switch|p2a: Florges|Florges, F|162/360 -|-damage|p2a: Florges|117/360|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Florges -|-damage|p2a: Florges|72/360 -|-status|p2a: Florges|brn -| -|-heal|p2a: Florges|94/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|49/360 brn|[from] brn -|turn|214 -|c|★Crime♥|nooo -|c|★CHEF BOY4RDEEZNUTS|yussss -|c| Bambi22|and there it is. -|choice|move 2|move 3 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Florges -|-supereffective|p2a: Florges -|-damage|p2a: Florges|7/360 brn -|-unboost|p2a: Florges|spd|2 -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -| -|-heal|p2a: Florges|29/360|[from] item: Leftovers -|turn|215 -|c|★Crime♥|lol -|choice|move 2|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|51/360|[from] item: Leftovers -|turn|216 -|c|★CHEF BOY4RDEEZNUTS|sighhhhh -|c| Bambi22|or not -|choice|move 2|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|252/334 -|-damage|p2a: Skarmory|211/334|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|217 -|c|★CHEF BOY4RDEEZNUTS|no more aromatherapy at least -|choice|move 1|move 2 -| -|move|p1a: U Jelly Bruh?|Scald|p2a: Skarmory -|-damage|p2a: Skarmory|115/334 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|282/334 -| -|turn|218 -|choice|move 1|move 3 -| -|move|p1a: U Jelly Bruh?|Scald|p2a: Skarmory -|-damage|p2a: Skarmory|174/334 -|move|p2a: Skarmory|Defog|p1a: U Jelly Bruh? -|-unboost|p1a: U Jelly Bruh?|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|219 -|c|★Crime♥|oh -|c|★Crime♥|i has enough -|c|★Crime♥|aroma -|c|★Crime♥|:P -|c|★Crime♥|for another 200 turns -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|move|p1a: U Jelly Bruh?|Scald|p2a: Chansey -|-damage|p2a: Chansey|597/642 -| -|turn|220 -|c|★CHEF BOY4RDEEZNUTS|u wont get a chance to use it -|c|★CHEF BOY4RDEEZNUTS|tho -|choice|move 3|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|342/394 -| -|turn|221 -|choice|switch 5|move 1 -| -|switch|p1a: Fatty|Chansey, F|617/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|568/642 -| -|turn|222 -|choice|move 2|switch 2 -| -|switch|p2a: Chansey|Chansey, F|597/642 -|move|p1a: Fatty|Toxic|p2a: Chansey -|-status|p2a: Chansey|tox -| -|-damage|p2a: Chansey|557/642 tox|[from] psn -|turn|223 -|choice|switch 4|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|-damage|p2a: Chansey|477/642 tox|[from] psn -|turn|224 -|choice|move 1|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|174/334 -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|138/334 -| -|-heal|p2a: Skarmory|334/334|[from] move: Wish|[wisher] Chansey -|turn|225 -|choice|move 4|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|208/386 -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Heatran -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p2a: Heatran|232/386|[from] item: Leftovers -|turn|226 -|choice|move 2|move 3 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Heatran -|-status|p2a: Heatran|par -|move|p2a: Heatran|Stealth Rock|p1a: TheMoreYouKnow -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|227 -|choice|move 3|move 2 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|242/386 par -|choice|switch 5| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|cant|p2a: Heatran|par -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|-heal|p2a: Heatran|266/386 par|[from] item: Leftovers -|turn|228 -|c| Bambi22|maybe run scarf rachi with fire punch? -|choice|move 4|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|338/394 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|362/363|[from] item: Black Sludge -|turn|229 -|choice|switch 4|move 1 -| -|switch|p1a: Fatty|Chansey, F|568/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|516/642 -| -|turn|230 -|choice|move 2|switch 3 -| -|switch|p2a: Cobalion|Cobalion|266/386 -|-damage|p2a: Cobalion|254/386|[from] Stealth Rock -|move|p1a: Fatty|Toxic|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|turn|231 -|choice|switch 2|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|232 -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|477/642 -|-damage|p2a: Chansey|397/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|233 -|choice|move 2|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|234 -|choice|move 2|switch 2 -| -|switch|p2a: Heatran|Heatran, F, shiny|266/386 par -|-damage|p2a: Heatran|218/386 par|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-heal|p2a: Heatran|386/386 par|[from] move: Wish|[wisher] Chansey -|turn|235 -|choice|move 1|switch 2 -| -|switch|p2a: Chansey|Chansey, F|397/642 -|-damage|p2a: Chansey|317/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|236 -|choice|switch 5|move 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|638/642 -| -|turn|237 -|c|★Crime♥|lmao -|choice|move 2|switch 3 -| -|switch|p2a: Cobalion|Cobalion|254/386 -|-damage|p2a: Cobalion|242/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-status|p2a: Cobalion|par -| -|turn|238 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|204/386 par -|cant|p2a: Cobalion|par -| -|turn|239 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|170/386 par -|cant|p2a: Cobalion|flinch -| -|turn|240 -|c|★Crime♥|opls -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|135/386 par -|cant|p2a: Cobalion|flinch -| -|turn|241 -|c|★Crime♥|pls -|choice|move 1|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|260/334 -| -|turn|242 -|choice|switch 4|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|362/363 -|move|p2a: Skarmory|Defog|p1a: U Jelly Bruh? -|-unboost|p1a: U Jelly Bruh?|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|243 -|choice|move 1|switch 3 -| -|switch|p2a: Chansey|Chansey, F|638/642 -|move|p1a: U Jelly Bruh?|Scald|p2a: Chansey -|-damage|p2a: Chansey|599/642 -| -|turn|244 -|choice|move 2|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|349/394 -|-unboost|p2a: Slowbro|spd|2 -| -|turn|245 -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|599/642 -|move|p1a: U Jelly Bruh?|Scald|p2a: Chansey -|-damage|p2a: Chansey|557/642 -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|477/642 brn|[from] brn -|turn|246 -|choice|switch 6|switch 6 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Slowbro|Slowbro, F|394/394 -| -|turn|247 -|c|★Crime♥|maybe turn 400? -|c|★CHEF BOY4RDEEZNUTS|oh god lol -|choice|move 1|switch 2 -| -|switch|p2a: Heatran|Heatran, F, shiny|386/386 par -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|364/386 par -|-unboost|p2a: Heatran|spa|1 -| -|-heal|p2a: Heatran|386/386 par|[from] item: Leftovers -|turn|248 -|c|★Crime♥|i want to break down my record -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Stealth Rock|p1a: I <3 Stall -|move|p1a: I <3 Stall|Stealth Rock|p2a: Heatran|[from]Magic Bounce -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|turn|249 -|choice|switch 3|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 -|move|p2a: Heatran|Lava Plume|p1a: Annoying AF -|-damage|p1a: Annoying AF|250/352 -| -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|250 -|choice|move 1|switch 3 -| -|switch|p2a: Skarmory|Skarmory, F|260/334 -|-damage|p2a: Skarmory|219/334|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|-heal|p1a: Annoying AF|294/352 tox|[from] ability: Poison Heal -|turn|251 -|choice|switch 4|move 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|252 -|choice|move 4|switch 4 -| -|switch|p2a: Florges|Florges, F|51/360 -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Florges -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p2a: Florges|73/360|[from] item: Leftovers -|turn|253 -|choice|move 1|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|95/360|[from] item: Leftovers -|turn|254 -|c|★Crime♥|welcome back to life -|c|★Crime♥|florges -|choice|move 1|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|219/334 -|-damage|p2a: Skarmory|178/334|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|141/334 -| -|turn|255 -|choice|move 1|move 2 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|106/334 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|273/334 -| -|turn|256 -|choice|move 2|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Slowbro -|-status|p2a: Slowbro|par -| -|turn|257 -|choice|move 3|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|273/334 -|-damage|p2a: Skarmory|232/334|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|222/334 -|choice|switch 2| -| -|switch|p1a: Fatty|Chansey, F|516/642 -| -|turn|258 -|choice|move 1|move 4 -| -|move|p1a: Fatty|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|122/334 -|move|p2a: Skarmory|Whirlwind|p1a: Fatty -|drag|p1a: Annoying AF|Gliscor, M|294/352 tox -| -|-heal|p1a: Annoying AF|338/352 tox|[from] ability: Poison Heal -|turn|259 -|choice|switch 4|move 2 -| -|switch|p1a: Fatty|Chansey, F|516/642 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|289/334 -| -|turn|260 -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|477/642 -|-damage|p2a: Chansey|397/642|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Chansey -|-damage|p2a: Chansey|297/642 -| -|turn|261 -|choice|switch 5|move 3 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|618/642 -| -|turn|262 -|choice|move 4|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|386/386 par -|-damage|p2a: Heatran|338/386 par|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|362/386 par|[from] item: Leftovers -|turn|263 -|c|★Crime♥|omg -|c|★Crime♥|i need a smoke -|c|★Crime♥|LOL -|choice|move 4|move 3 -| -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|386/386 par|[from] item: Leftovers -|turn|264 -|c|★CHEF BOY4RDEEZNUTS|i mean you could always forfeit lol -|choice|move 4|move 2 -| -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: Fatty|Chansey, F|516/642 -| -|turn|265 -|c|★Crime♥|lol -|choice|move 1|move 3 -| -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|286/386 par -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|310/386 par|[from] item: Leftovers -|turn|266 -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: TheMoreYouKnow|Jirachi|403/403 -|-damage|p1a: TheMoreYouKnow|378/403|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|-heal|p2a: Heatran|334/386 par|[from] item: Leftovers -|turn|267 -|c|★CHEF BOY4RDEEZNUTS|we're literally going to struggle to the death -|choice|move 3|move 2 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|320/386 par -|c|★Crime♥|lmao -|choice|switch 4| -| -|switch|p1a: Annoying AF|Gliscor, M|338/352 tox -|-damage|p1a: Annoying AF|294/352 tox|[from] Stealth Rock -|move|p2a: Heatran|Roar|p1a: Annoying AF -|drag|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|-damage|p1a: I <3 Stall|264/301|[from] Stealth Rock -| -|-heal|p2a: Heatran|344/386 par|[from] item: Leftovers -|turn|268 -|choice|switch 2|switch 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|318/363 -|-damage|p1a: U Jelly Bruh?|273/363|[from] Stealth Rock -|switch|p2a: Chansey|Chansey, F|618/642 -|-damage|p2a: Chansey|538/642|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|295/363|[from] item: Black Sludge -|turn|269 -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|135/386 par -|-damage|p2a: Cobalion|123/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|120/386 par -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|317/363|[from] item: Black Sludge -|turn|270 -|c|★CHEF BOY4RDEEZNUTS|can jelly do it? -|choice|move 1|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 par -|-damage|p2a: Slowbro|345/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 par -| -|-heal|p1a: U Jelly Bruh?|339/363|[from] item: Black Sludge -|turn|271 -|c|★Crime♥|not risking that -|choice|move 2|move 1 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|249/394 par -|-unboost|p2a: Slowbro|spd|2 -|cant|p2a: Slowbro|par -| -|-heal|p1a: U Jelly Bruh?|361/363|[from] item: Black Sludge -|turn|272 -|choice|move 3|move 4 -| -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|197/394 par -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 par -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|273 -|choice|move 2|move 2 -| -|cant|p2a: Slowbro|par -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|307/394 par -|-unboost|p2a: Slowbro|spd|2 -| -|turn|274 -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|344/386 par -|-damage|p2a: Heatran|296/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Heatran -|-immune|p2a: Heatran|[msg] -| -|-heal|p2a: Heatran|320/386 par|[from] item: Leftovers -|turn|275 -|choice|move 3|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 par -|-damage|p2a: Slowbro|345/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 par -| -|turn|276 -|choice|move 2|move 1 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|256/394 par -|-unboost|p2a: Slowbro|spd|2 -|cant|p2a: Slowbro|par -| -|turn|277 -|choice|move 3|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|289/334 -|-damage|p2a: Skarmory|248/334|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Skarmory -|-crit|p2a: Skarmory -|-damage|p2a: Skarmory|219/334 -| -|turn|278 -|choice|move 1|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|387/394 par -|-damage|p2a: Slowbro|338/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|293/394 par -| -|turn|279 -|c|★Crime♥|lol -|c|★Crime♥|crazy battle -|choice|switch 4|switch 6 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Skarmory|Skarmory, F|219/334 -|-damage|p2a: Skarmory|178/334|[from] Stealth Rock -| -|turn|280 -|choice|move 3|move 2 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|168/334 -|choice|switch 5| -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -| -|turn|281 -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|320/386 par -|-damage|p2a: Heatran|272/386 par|[from] Stealth Rock -|move|p1a: Redbull|Flamethrower|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|296/386 par|[from] item: Leftovers -|turn|282 -|c|★Crime♥|no defog -|c|★Crime♥|;c -|choice|switch 4|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: I <3 Stall|Sableye-Mega, M|264/301 -| -|-heal|p2a: Heatran|320/386 par|[from] item: Leftovers -|turn|283 -|choice|switch 2|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: Annoying AF|Gliscor, M|294/352 tox -| -|-heal|p2a: Heatran|344/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|338/352 tox|[from] ability: Poison Heal -|turn|284 -|c|★Crime♥|lol -|c| Bambi22|predicted -|choice|move 1|switch 3 -| -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|285 -|choice|switch 5|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Whirlwind|p1a: TheMoreYouKnow -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|286 -|choice|move 4|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 par -|-damage|p2a: Slowbro|345/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|336/394 par -| -|turn|287 -|c|★CHEF BOY4RDEEZNUTS|gotta save dat pp -|choice|switch 6|move 1 -| -|switch|p1a: Fatty|Chansey, F|516/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|464/642 -| -|turn|288 -|choice|move 3|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 -|-damage|p2a: Skarmory|252/334|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|turn|289 -|choice|switch 2|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Skarmory|Whirlwind|p1a: I <3 Stall -|move|p1a: I <3 Stall|Whirlwind|p2a: Skarmory|[from]Magic Bounce -|drag|p2a: Chansey|Chansey, F|538/642 -|-damage|p2a: Chansey|458/642|[from] Stealth Rock -| -|-heal|p1a: I <3 Stall|301/301|[from] move: Wish|[wisher] Fatty -|turn|290 -|c| Bambi22|someone save a replay of this when it's done -|c|★CHEF BOY4RDEEZNUTS|almost 300 turns no kills good lord -|choice|switch 3|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|291 -|c|★Crime♥|lol -|choice|move 3|switch 2 -| -|switch|p2a: Cobalion|Cobalion|120/386 par -|-damage|p2a: Cobalion|108/386 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|97/386 par -|choice|switch 5| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-heal|p2a: Cobalion|386/386 par|[from] move: Wish|[wisher] Chansey -|turn|292 -|choice|switch 4|switch 5 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Skarmory|Skarmory, F|252/334 -|-damage|p2a: Skarmory|211/334|[from] Stealth Rock -| -|turn|293 -|choice|move 4|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|344/386 par -|-damage|p2a: Heatran|296/386 par|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|320/386 par|[from] item: Leftovers -|turn|294 -|choice|move 1|move 3 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|287/386 par -|move|p2a: Heatran|Stealth Rock|p1a: Redbull -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|311/386 par|[from] item: Leftovers -|turn|295 -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-crit|p2a: Heatran -|-damage|p2a: Heatran|262/386 par -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|286/386 par|[from] item: Leftovers -|turn|296 -|choice|move 1|move 4 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|256/386 par -|move|p2a: Heatran|Taunt|p1a: Redbull -|-start|p1a: Redbull|move: Taunt -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|297 -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|250/386 par -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|-heal|p2a: Heatran|274/386 par|[from] item: Leftovers -|turn|298 -|c|★CHEF BOY4RDEEZNUTS|theres the roar -|choice|move 4|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 par -|-damage|p2a: Slowbro|345/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|337/394 par -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|362/363|[from] item: Black Sludge -|turn|299 -|choice|switch 2|move 2 -| -|switch|p1a: Fatty|Chansey, F|464/642 -|cant|p2a: Slowbro|par -| -|turn|300 -|c|★CHEF BOY4RDEEZNUTS|that para is saving your pp -|choice|move 3|switch 3 -| -|switch|p2a: Skarmory|Skarmory, F|211/334 -|-damage|p2a: Skarmory|170/334|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|turn|301 -|choice|move 1|move 2 -| -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -|move|p1a: Fatty|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|234/334 -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Fatty -|turn|302 -|c|★Crime♥|yeah -|c|★Crime♥|lol -|choice|move 1|move 3 -| -|move|p2a: Skarmory|Defog|p1a: Fatty -|-unboost|p1a: Fatty|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -|move|p1a: Fatty|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|134/334 -| -|turn|303 -|choice|move 1|move 2 -| -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|301/334 -|move|p1a: Fatty|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|201/334 -| -|turn|304 -|c|★Crime♥|sec -|c|★CHEF BOY4RDEEZNUTS|ok -|choice|move 1|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 par -|move|p1a: Fatty|Seismic Toss|p2a: Slowbro -|-damage|p2a: Slowbro|294/394 par -| -|turn|305 -|choice|switch 5|switch 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Skarmory|Skarmory, F|201/334 -| -|turn|306 -|choice|move 4|switch 4 -| -|switch|p2a: Florges|Florges, F|95/360 -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Florges -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p2a: Florges|117/360|[from] item: Leftovers -|turn|307 -|choice|move 2|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|139/360|[from] item: Leftovers -|turn|308 -|choice|move 2|switch 5 -| -|switch|p2a: Cobalion|Cobalion|386/386 par -|-damage|p2a: Cobalion|374/386 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-fail|p2a: Cobalion|par -| -|turn|309 -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|cant|p2a: Cobalion|par -| -|turn|310 -|choice|switch 2|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|362/363 -|cant|p2a: Cobalion|par -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|311 -|choice|move 1|move 4 -| -|move|p1a: U Jelly Bruh?|Scald|p2a: Cobalion -|-damage|p2a: Cobalion|266/386 par -|move|p2a: Cobalion|Roar|p1a: U Jelly Bruh? -|drag|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|312 -|choice|move 3|move 3 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|255/386 par -|choice|switch 2| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|313 -|c| lollity|hoooooly shit man -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|i know lol -|choice|switch 6|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|201/334 -|-damage|p2a: Skarmory|160/334|[from] Stealth Rock -|switch|p1a: Redbull|Clefable, M|393/393 -| -|turn|314 -|choice|move 4|switch 2 -| -|switch|p2a: Chansey|Chansey, F|458/642 -|-damage|p2a: Chansey|378/642|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|turn|315 -|c| lollity|holy -|c| lollity|fucking shit -|choice|move 4|move 3 -| -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|642/642 -| -|turn|316 -|c| lollity|300 fucking turns -|choice|move 4|move 4 -| -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|317 -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|274/386 par -|-damage|p2a: Heatran|226/386 par|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|386/386 par|[from] move: Wish|[wisher] Chansey -|turn|318 -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|320/386 par -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|-heal|p2a: Heatran|344/386 par|[from] item: Leftovers -|turn|319 -|c|★Crime♥|there's the roar -|choice|move 3|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 par -|-damage|p2a: Slowbro|345/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|297/394 par -| -|turn|320 -|c| lollity|and everyone is like full hp -|c| lollity|this is going to struggle i guess -|choice|move 2|move 2 -| -|cant|p2a: Slowbro|par -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|252/394 par -|-unboost|p2a: Slowbro|spd|2 -| -|turn|321 -|c| Bambi22|cuz wish support, roost, etc. -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|344/386 par -|-damage|p2a: Heatran|296/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Heatran -|-immune|p2a: Heatran|[msg] -| -|-heal|p2a: Heatran|320/386 par|[from] item: Leftovers -|turn|322 -|choice|move 3|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|383/394 par -|-damage|p2a: Slowbro|334/394 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|282/394 par -| -|turn|323 -|c| lollity|you know -|c| lollity|yo could have won like 20 battles in this time -|choice|move 2|switch 4 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|turn|324 -|c|★Crime♥|lol -|choice|switch 6|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|cant|p2a: Cobalion|slp -| -|turn|325 -|c|★CHEF BOY4RDEEZNUTS|shhhhhh lol -|c| tuxedo_cat|I have a rant against stalling for this. -|choice|switch 3|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Cobalion|slp -| -|turn|326 -|choice|move 2|move 2 -| -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Iron Head|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|246/301 -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|327 -|c| tuxedo_cat|Yeesh. -|choice|move 1|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|320/386 par -|-damage|p2a: Heatran|272/386 par|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|173/386 par -| -|-heal|p2a: Heatran|197/386 par|[from] item: Leftovers -|turn|328 -|c| tuxedo_cat|I hate the process, but I have to applaud you two. -|choice|move 3|switch 6 -| -|switch|p2a: Chansey|Chansey, F|642/642 -|-damage|p2a: Chansey|562/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|482/642 brn|[from] brn -|turn|329 -|choice|switch 2|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Toxic|p1a: TheMoreYouKnow -|-immune|p1a: TheMoreYouKnow|[msg] -| -|-damage|p2a: Chansey|402/642 brn|[from] brn -|turn|330 -|choice|move 1|switch 3 -| -|switch|p2a: Cobalion|Cobalion|374/386 -|-damage|p2a: Cobalion|362/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|326/386 -| -|turn|331 -|c| tuxedo_cat|How long have you two been here? -|c|★Crime♥|2 hours? -|c| tuxedo_cat|Yeesh! -|choice|move 2|move 4 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-status|p2a: Cobalion|par -|move|p2a: Cobalion|Roar|p1a: TheMoreYouKnow -|drag|p1a: Redbull|Clefable, M|393/393 -| -|turn|332 -|c|★CHEF BOY4RDEEZNUTS|has it really been that long? -|c| tuxedo_cat|The highest I've ever gone was 93 moves. -|c|★Crime♥|lol 93.. -|c|★CHEF BOY4RDEEZNUTS|this is def my longest battle -|choice|move 4|switch 5 -| -|switch|p2a: Florges|Florges, F|139/360 -|-damage|p2a: Florges|94/360|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Florges|116/360|[from] item: Leftovers -|turn|333 -|choice|move 1|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Redbull|Moonblast|p2a: Florges -|-damage|p2a: Florges|22/360 -| -|-heal|p2a: Florges|44/360|[from] item: Leftovers -|turn|334 -|c|★Crime♥|ow ow ow -|c|★Crime♥|close -|c|★CHEF BOY4RDEEZNUTS|nooooooooooooooooooo -|choice|move 4|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Florges|224/360|[from] move: Wish|[wisher] Florges -|-heal|p2a: Florges|246/360|[from] item: Leftovers -|turn|335 -|c| tuxedo_cat|I could only imagine this taking place in the anime universe, in like the League... -|c| tuxedo_cat|And the crowd would have left by that point. -|choice|move 1|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Redbull|Moonblast|p2a: Florges -|-damage|p2a: Florges|128/360 -| -|-heal|p2a: Florges|150/360|[from] item: Leftovers -|turn|336 -|c| tuxedo_cat|Tournament over. -|c| lollity|ah -|c| tuxedo_cat|Sun is rising... -|choice|move 4|move 3 -| -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Florges|330/360|[from] move: Wish|[wisher] Florges -|-heal|p2a: Florges|352/360|[from] item: Leftovers -|turn|337 -|c| tuxedo_cat|New trainers starting... -|choice|move 4|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Florges|360/360|[from] item: Leftovers -|turn|338 -|c| lollity|and ash's companions are just sleeping on a bnech -|c| tuxedo_cat|And by the time the next league comes around, it'll still be going. -|choice|move 1|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|197/386 -|-damage|p2a: Heatran|149/386|[from] Stealth Rock -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|85/386 -| -|-heal|p2a: Heatran|265/386|[from] move: Wish|[wisher] Florges -|-heal|p2a: Heatran|289/386|[from] item: Leftovers -|turn|339 -|c|★Crime♥|gosh -|c|★Crime♥|florges back to life -|c| lollity|and i bet -|c| tuxedo_cat|Battling with tents and campfires on each side. -|c| lollity|both of you have like 10 max revives -|c| lollity|in your pokcket -|c|★CHEF BOY4RDEEZNUTS|howd u know lol -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-heal|p2a: Heatran|313/386|[from] item: Leftovers -|turn|340 -|c|★Crime♥|oke im gonna stay -|c|★Crime♥|dont earthquake me -|choice|move 1|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|160/334 -|-damage|p2a: Skarmory|119/334|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|341 -|c|★Crime♥|lol -|c| lollity|oshit -|c| lollity|rekt -|c|★CHEF BOY4RDEEZNUTS|skarm needs to die lol -|c| lollity|the ssweep boys -|c| tuxedo_cat|And so the cycle continues. -|c|★Crime♥|can you guys get more viewers -|c|★CHEF BOY4RDEEZNUTS|i cant flamethrower with tran around... -|c| General Zelgius|shouldn't someone run out of pp by now? -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|286/334 -| -|turn|342 -|choice|move 2|switch 5 -| -|switch|p2a: Cobalion|Cobalion|326/386 -|-damage|p2a: Cobalion|314/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-status|p2a: Cobalion|par -| -|turn|343 -|c| lollity|nah -|c| lollity|they have leppa berries -|c| lollity|just a backapck full of leppa berries -|c|★Crime♥|i need more support in my team -|c|★Crime♥|another pokemon with wish and heal bell -|c|★Crime♥|maybe a clefable -|c|★Crime♥|instead of cobalion -|c|★Crime♥|but cobalion is great -|c|★CHEF BOY4RDEEZNUTS|alomomola -|c|★CHEF BOY4RDEEZNUTS|that thing never dies -|c|★Crime♥|lol -|c|★Crime♥|no? :D -|c| tuxedo_cat|Not likely. If each move has say... 10 moves to it, that'd last for 240 turns. -|c|★Crime♥|might try it -|c| tuxedo_cat|And since most have 20+... -|choice|move 3|move 4 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|303/386 par -|choice|switch 4| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|cant|p2a: Cobalion|par -| -|turn|344 -|c| General Zelgius|rip... -|choice|switch 5|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Skarmory|Skarmory, F|286/334 -|-damage|p2a: Skarmory|245/334|[from] Stealth Rock -| -|turn|345 -|choice|move 1|switch 5 -| -|switch|p2a: Cobalion|Cobalion|303/386 par -|-damage|p2a: Cobalion|291/386 par|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|191/386 par -| -|turn|346 -|c| tuxedo_cat|Factor in paralysis and other stop-attack conditions... -|c| tuxedo_cat|Switches... -|choice|move 1|move 3 -| -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|91/386 par -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|347 -|c| tuxedo_cat|And yeah. The battle will last just about as long as the universe. -|c|★CHEF BOY4RDEEZNUTS|sleep^ -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|switch 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|402/642 -|-damage|p2a: Chansey|322/642|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|246/301 -| -|turn|348 -|choice|move 3|move 3 -| -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|642/642 -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|562/642 brn|[from] brn -|turn|349 -|choice|switch 4|switch 2 -| -|switch|p2a: Heatran|Heatran, F, shiny|313/386 -|-damage|p2a: Heatran|265/386|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|289/386|[from] item: Leftovers -|turn|350 -|choice|switch 3|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p2a: Heatran|313/386|[from] item: Leftovers -|turn|351 -|c|★CHEF BOY4RDEEZNUTS|still got 56 of them rapid spins left :p -|c|★Crime♥|lol -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|295/394 -| -|turn|352 -|choice|move 2|switch 3 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|-end|p1a: U Jelly Bruh?|move: Taunt -|turn|353 -|choice|switch 5|switch 6 -| -|switch|p2a: Florges|Florges, F|360/360 -|-damage|p2a: Florges|315/360|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-heal|p2a: Florges|337/360|[from] item: Leftovers -|turn|354 -|c|★Crime♥|its funny -|c|★Crime♥|you didnt knock off my florges or heatran -|c|★Crime♥|neither chansey -|c|★Crime♥|skarmory cobalion didnt matter -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|ive been trying to the whole game -|c|★Crime♥|thats why i got them knocked off -|c|★Crime♥|xDDDDDDD -|choice|move 2|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|245/334 -|-damage|p2a: Skarmory|204/334|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Skarmory|[miss] -|-miss|p1a: Annoying AF|p2a: Skarmory -| -|turn|355 -|choice|switch 4|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|246/301 -|move|p2a: Skarmory|Whirlwind|p1a: I <3 Stall -|move|p1a: I <3 Stall|Whirlwind|p2a: Skarmory|[from]Magic Bounce -|drag|p2a: Florges|Florges, F|337/360 -|-damage|p2a: Florges|292/360|[from] Stealth Rock -| -|-heal|p2a: Florges|314/360|[from] item: Leftovers -|turn|356 -|c|★Crime♥|weeeeeeeee -|choice|switch 3|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Florges|Protect|p2a: Florges -|-fail|p2a: Florges -| -|-heal|p2a: Florges|336/360|[from] item: Leftovers -|turn|357 -|choice|switch 5|switch 6 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Cobalion|Cobalion|374/386 slp -|-damage|p2a: Cobalion|362/386 slp|[from] Stealth Rock -| -|turn|358 -|c|★Crime♥|omg -|c|★Crime♥|im gonna break down my record -|c|★Crime♥|!! -|c|★Crime♥|411 turns -|c|★Crime♥|:P -|c|★CHEF BOY4RDEEZNUTS|411 really? -|c|★CHEF BOY4RDEEZNUTS|wow -|c|★Crime♥|yes -|choice|switch 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|turn|359 -|choice|move 2|move 1 -| -|move|p1a: Annoying AF|Toxic|p2a: Slowbro -|-status|p2a: Slowbro|tox -|move|p2a: Slowbro|Scald|p1a: Annoying AF -|-supereffective|p1a: Annoying AF -|-damage|p1a: Annoying AF|112/352 tox -| -|-heal|p1a: Annoying AF|156/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|360 -|c|★CHEF BOY4RDEEZNUTS|worth it -|choice|move 3|move 1 -| -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|68/352 tox -|move|p2a: Slowbro|Scald|p1a: Annoying AF -|-supereffective|p1a: Annoying AF -|-end|p1a: Annoying AF|Substitute -| -|-heal|p1a: Annoying AF|112/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|361 -|choice|move 4|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|204/334 -|-damage|p2a: Skarmory|163/334|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|156/352 tox|[from] ability: Poison Heal -|turn|362 -|choice|move 2|move 2 -| -|move|p1a: Annoying AF|Toxic|p2a: Skarmory|[miss] -|-miss|p1a: Annoying AF|p2a: Skarmory -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|330/334 -| -|-heal|p1a: Annoying AF|200/352 tox|[from] ability: Poison Heal -|turn|363 -|c|★CHEF BOY4RDEEZNUTS|time to heal up -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|yummy poison -|c|★Crime♥|wanted to crit you -|choice|move 2|move 3 -| -|move|p1a: Annoying AF|Toxic|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -|move|p2a: Skarmory|Defog|p1a: Annoying AF -|-unboost|p1a: Annoying AF|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: Annoying AF|244/352 tox|[from] ability: Poison Heal -|turn|364 -|choice|move 4|move 4 -| -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-singleturn|p1a: Annoying AF|Protect -|move|p2a: Skarmory|Whirlwind|p1a: Annoying AF -|drag|p1a: Fatty|Chansey, F|642/642 -| -|turn|365 -|c| General Zelgius|4 more roosts on skarmory -|choice|move 1|switch 6 -| -|switch|p2a: Florges|Florges, F|336/360 -|move|p1a: Fatty|Seismic Toss|p2a: Florges -|-damage|p2a: Florges|236/360 -| -|-heal|p2a: Florges|258/360|[from] item: Leftovers -|turn|366 -|choice|move 2|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: Fatty|Toxic|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|280/360|[from] item: Leftovers -|turn|367 -|c|★Crime♥|but -|c|★Crime♥|we got the wishes -|c|★Crime♥|left -|choice|move 1|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Fatty|Seismic Toss|p2a: Florges -|-damage|p2a: Florges|180/360 -| -|-heal|p2a: Florges|202/360|[from] item: Leftovers -|turn|368 -|choice|move 3|move 1 -| -|move|p2a: Florges|Moonblast|p1a: Fatty -|-damage|p1a: Fatty|578/642 -|-unboost|p1a: Fatty|spa|1 -|move|p1a: Fatty|Wish|p1a: Fatty -| -|-heal|p2a: Florges|360/360|[from] move: Wish|[wisher] Florges -|turn|369 -|c| General Zelgius|true, that was the the lowest healing move pp I saw -|choice|move 2|move 1 -| -|move|p2a: Florges|Moonblast|p1a: Fatty -|-damage|p1a: Fatty|517/642 -|move|p1a: Fatty|Toxic|p2a: Florges -|-status|p2a: Florges|tox -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Fatty -|-damage|p2a: Florges|338/360 tox|[from] psn -|turn|370 -|choice|move 1|move 3 -| -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -|move|p1a: Fatty|Seismic Toss|p2a: Florges -|-damage|p2a: Florges|238/360 -| -|-heal|p2a: Florges|260/360|[from] item: Leftovers -|turn|371 -|c|★CHEF BOY4RDEEZNUTS|last aromatherapy left -|c|★Crime♥|:( -|c|★Crime♥|ill RAGE -|c|★Crime♥|QUIT -|c|★Crime♥|NOAW. -|c| General Zelgius|that would be so lame -|c|★CHEF BOY4RDEEZNUTS|agreed lol -|c|★Crime♥|lol -|choice|move 2|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|313/386 -|move|p1a: Fatty|Toxic|p2a: Heatran -|-immune|p2a: Heatran|[msg] -| -|-heal|p2a: Heatran|337/386|[from] item: Leftovers -|turn|372 -|c| tuxedo_cat|I walked off for a bit... -|choice|switch 3|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|246/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Florges|Florges, F|260/360 -| -|-heal|p2a: Florges|282/360|[from] item: Leftovers -|turn|373 -|c| tuxedo_cat|I shouldn't be surprised that nothing has changed. -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|switch 3|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|337/386 -|switch|p1a: Fatty|Chansey, F|642/642 -| -|-heal|p2a: Heatran|361/386|[from] item: Leftovers -|turn|374 -|c| General Zelgius|yeah I played a game of league during this -|choice|move 1|move 4 -| -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|261/386 -| -|-heal|p2a: Heatran|285/386|[from] item: Leftovers -|turn|375 -|c| tuxedo_cat|Is this like the countdown to the Force Awakens? -|c| lollity|i got my phd during this -|c| General Zelgius|lmao -|c|★Crime♥|omg -|c| tuxedo_cat|When this ends, the movie will come out? -|c|★Crime♥|400 turns almost -|choice|switch 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|376 -|choice|move 4|move 2 -| -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-singleturn|p2a: Slowbro|Protect -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-activate|p2a: Slowbro|Protect -| -|turn|377 -|c|★CHEF BOY4RDEEZNUTS|55 moar rapid spins :p -|c|★Crime♥|rapid spin time? -|c| lollity|i witnessed my childrens' graduation -|choice|switch 4|switch 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|362/386 -| -|turn|378 -|c| tuxedo_cat|OH GOD! -|choice|switch 2|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|244/352 tox -|move|p2a: Cobalion|Close Combat|p1a: Annoying AF -|-resisted|p1a: Annoying AF -|-damage|p1a: Annoying AF|202/352 tox -|-unboost|p2a: Cobalion|def|1 -|-unboost|p2a: Cobalion|spd|1 -| -|-heal|p1a: Annoying AF|246/352 tox|[from] ability: Poison Heal -|turn|379 -|c| tuxedo_cat|There are 64 rapid spins! -|c| lollity|OH GOD -|c| lollity|oh jesus -|c|★CHEF BOY4RDEEZNUTS|thought it was cc -|choice|switch 5|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|330/334 -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|380 -|c|★CHEF BOY4RDEEZNUTS|2 defogs left -|choice|move 4|switch 6 -| -|switch|p2a: Cobalion|Cobalion|362/386 -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Cobalion -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|turn|381 -|c|★CHEF BOY4RDEEZNUTS|11 stealth rox -|c|★CHEF BOY4RDEEZNUTS|XD -|choice|switch 5|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|246/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: I <3 Stall|Sableye-Mega, M|246/301 -| -|turn|382 -|c| tuxedo_cat|Am I the only one who thinks that moves should have a max of say... 30 PP? -|choice|move 3|switch 4 -| -|switch|p2a: Florges|Florges, F|282/360 -|-damage|p2a: Florges|237/360|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Florges -|-status|p2a: Florges|brn -| -|-heal|p2a: Florges|259/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|214/360 brn|[from] brn -|turn|383 -|choice|switch 4|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Florges|Wish|p2a: Florges -| -|-heal|p2a: Florges|236/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|191/360 brn|[from] brn -|turn|384 -|c|★Crime♥|lol -|c| General Zelgius|that would be nice -|choice|move 4|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|360/360 brn|[from] move: Wish|[wisher] Florges -|-damage|p2a: Florges|315/360 brn|[from] brn -|turn|385 -|choice|move 3|switch 4 -| -|switch|p2a: Cobalion|Cobalion|362/386 -|-damage|p2a: Cobalion|350/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|339/386 -|-ability|p2a: Cobalion|Justified|boost -|-boost|p2a: Cobalion|atk|1 -| -|turn|386 -|c| General Zelgius|but having the same amount of sr as rapid spins would be really annoying -|choice|switch 3|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|246/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|165/352 tox -| -|-heal|p1a: Annoying AF|209/352 tox|[from] ability: Poison Heal -|turn|387 -|choice|move 4|move 4 -| -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-singleturn|p1a: Annoying AF|Protect -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: I <3 Stall|Sableye-Mega, M|246/301 -| -|turn|388 -|c|★Crime♥|bye -|c|★Crime♥|XD -|c| tuxedo_cat|This is the battle of the century... Because it's lasted about a century. -|choice|move 4|switch 4 -| -|switch|p2a: Florges|Florges, F|315/360 brn -|-damage|p2a: Florges|270/360 brn|[from] Stealth Rock -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|-heal|p2a: Florges|292/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|247/360 brn|[from] brn -|turn|389 -|c| General Zelgius|The hundred year war -|choice|switch 5|switch 4 -| -|switch|p2a: Cobalion|Cobalion|339/386 -|-damage|p2a: Cobalion|327/386|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|390 -|c| tuxedo_cat|Pfft! -|c| lollity|i just had grandkids -|c| lollity|jesus christ -|c|★CHEF BOY4RDEEZNUTS|the potato famine was shorter than this -|c| lollity|are you guys almost out of pp? -|c|★Crime♥|lmfao -|c|★CHEF BOY4RDEEZNUTS|nope lol -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Skarmory|Skarmory, F|330/334 -|-damage|p2a: Skarmory|289/334|[from] Stealth Rock -| -|turn|391 -|c|★Crime♥|we should make a stall team together CHEF boy -|c|★Crime♥|:_: -|c| lollity|how about -|c| lollity|6 mews -|c| lollity|recover moonlight -|c| lollity|and some other heals -|c|★Crime♥|1 bisharp and they are all gone -|c|★Crime♥|with knock off sword dance -|c|★CHEF BOY4RDEEZNUTS|6 FAT PINK MONS -|c|★Crime♥|XD -|choice|move 3|switch 6 -| -|switch|p2a: Cobalion|Cobalion|327/386 -|-damage|p2a: Cobalion|315/386|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Cobalion -|-status|p2a: Cobalion|brn -| -|-damage|p2a: Cobalion|267/386 brn|[from] brn -|turn|392 -|choice|switch 4|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|209/352 tox -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|-heal|p1a: Annoying AF|253/352 tox|[from] ability: Poison Heal -|turn|393 -|c|★CHEF BOY4RDEEZNUTS|kanye west used kanye rest -|c| tuxedo_cat|There should really be a draw option. -|choice|switch 3|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|289/334 -|-damage|p2a: Skarmory|248/334|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|394 -|choice|move 1|switch 6 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Cobalion -|-damage|p2a: Cobalion|266/386 slp -| -|turn|395 -|choice|switch 3|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|253/352 tox -|cant|p2a: Cobalion|slp -| -|-heal|p1a: Annoying AF|297/352 tox|[from] ability: Poison Heal -|turn|396 -|choice|move 3|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|248/334 -|-damage|p2a: Skarmory|207/334|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|209/352 tox -| -|-heal|p1a: Annoying AF|253/352 tox|[from] ability: Poison Heal -|turn|397 -|choice|switch 4|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -| -|turn|398 -|choice|switch 5|switch 2 -| -|switch|p2a: Chansey|Chansey, F|562/642 -|-damage|p2a: Chansey|482/642|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|399 -|c|★Crime♥|omg -|c|★Crime♥|2 turns -|c|★Crime♥|1 -|c|★Crime♥|400+ -|c| lennylennylenny|better be good -|choice|move 2|switch 6 -| -|switch|p2a: Cobalion|Cobalion|266/386 slp -|-damage|p2a: Cobalion|254/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|400 -|choice|switch 4|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|253/352 tox -|cant|p2a: Cobalion|slp -| -|-heal|p1a: Annoying AF|297/352 tox|[from] ability: Poison Heal -|turn|401 -|c| General Zelgius|400 hype -|c|★CHEF BOY4RDEEZNUTS|oh snap -|choice|switch 6|move 3 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|402 -|c| lollity|wait how many are we at? -|c|★Crime♥|lol -|choice|move 4|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|285/386 -|-damage|p2a: Heatran|237/386|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|261/386|[from] item: Leftovers -|turn|403 -|choice|move 1|move 3 -| -|move|p2a: Heatran|Stealth Rock|p1a: Redbull -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|229/386 -| -|-heal|p2a: Heatran|253/386|[from] item: Leftovers -|turn|404 -|c| lennylennylenny|hey alia that sounds muslim to me -|c| lollity|i dont see the correct turn number -|c| lollity|which turn is it? -|c| lennylennylenny|4040 -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|223/386 -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: Fatty|Chansey, F|642/642 -|-damage|p1a: Fatty|562/642|[from] Stealth Rock -| -|-heal|p2a: Heatran|247/386|[from] item: Leftovers -|turn|405 -|c| lennylennylenny|404* -|c| lollity|jeeeeez -|choice|switch 3|switch 4 -| -|switch|p2a: Florges|Florges, F|247/360 brn -|-damage|p2a: Florges|202/360 brn|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|-heal|p2a: Florges|224/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|179/360 brn|[from] brn -|turn|406 -|c|★Crime♥|dont knock off me -|choice|move 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|337/394 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|362/363|[from] item: Black Sludge -|turn|407 -|c|★CHEF BOY4RDEEZNUTS|53 moar rapid spins -|choice|move 2|switch 5 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|408 -|c| lennylennylenny|404 no one died yet -|c| lennylennylenny|how -|c|★CHEF BOY4RDEEZNUTS|stall for daysssss -|choice|switch 6|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|297/352 tox -|cant|p2a: Cobalion|slp -| -|-heal|p1a: Annoying AF|341/352 tox|[from] ability: Poison Heal -|turn|409 -|c|★Crime♥|2 scals -|c|★Crime♥|scalds -|choice|switch 3|move 4 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|cant|p2a: Cobalion|slp -| -|turn|410 -|choice|switch 3|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|341/352 tox -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Close Combat|p1a: Annoying AF -|-resisted|p1a: Annoying AF -|-damage|p1a: Annoying AF|303/352 tox -|-unboost|p2a: Cobalion|def|1 -|-unboost|p2a: Cobalion|spd|1 -| -|-heal|p1a: Annoying AF|347/352 tox|[from] ability: Poison Heal -|turn|411 -|c| General Zelgius|we made it -|choice|switch 4|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|412 -|c|★Crime♥|omg -|c|★Crime♥|new record -|c| General Zelgius|record broken -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 4|switch 2 -| -|switch|p2a: Cobalion|Cobalion|374/386 -|-damage|p2a: Cobalion|362/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|413 -|c|★Crime♥|can we hit 500? -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|347/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|414 -|c|★CHEF BOY4RDEEZNUTS|probs lol -|choice|move 1|move 2 -| -|move|p2a: Cobalion|Iron Head|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|299/363 -|move|p1a: U Jelly Bruh?|Scald|p2a: Cobalion -|-damage|p2a: Cobalion|254/386 -| -|-heal|p1a: U Jelly Bruh?|321/363|[from] item: Black Sludge -|turn|415 -|choice|switch 6|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|347/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|296/352 tox -| -|-heal|p1a: Annoying AF|340/352 tox|[from] ability: Poison Heal -|turn|416 -|c|★Crime♥|1 scald babe -|c|★Crime♥|:3 -|choice|move 1|move 3 -| -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -|move|p1a: Annoying AF|Earthquake|p2a: Cobalion -|-supereffective|p2a: Cobalion -|-crit|p2a: Cobalion -|-damage|p2a: Cobalion|180/386 slp -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|417 -|c|★CHEF BOY4RDEEZNUTS|PHAT -|c|★CHEF BOY4RDEEZNUTS|jesus -|choice|switch 5|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 -|-damage|p2a: Skarmory|252/334|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|418 -|c|★Crime♥|not much dmg at all -|c|★Crime♥|with a crit.. -|choice|move 1|switch 6 -| -|switch|p2a: Chansey|Chansey, F|482/642 -|-damage|p2a: Chansey|402/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|419 -|c|★CHEF BOY4RDEEZNUTS|THAT WAS A CRIT? HOLY SHIT -|c| General Zelgius|nothing here can do much damage -|c| General Zelgius|53% is good -|c|★CHEF BOY4RDEEZNUTS|trueeee -|choice|move 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Slowbro|[miss] -|-miss|p1a: I <3 Stall|p2a: Slowbro -| -|turn|420 -|choice|move 1|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|247/386 -|-damage|p2a: Heatran|199/386|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|130/386 -|-unboost|p2a: Heatran|spd|1 -| -|-heal|p2a: Heatran|154/386|[from] item: Leftovers -|turn|421 -|c| lollity|a dude on the internet said his record was 1k + -|c| lollity|can we get there? -|choice|move 1|switch 5 -| -|switch|p2a: Chansey|Chansey, F|402/642 -|-damage|p2a: Chansey|322/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|422 -|c| General Zelgius|don't think so -|c|★Crime♥|with alot of switching yes -|c|★Crime♥|but that isnt legit -|c|★Crime♥|this battle is legit -|c| General Zelgius|^ -|c| lollity|i dont think he used switching -|choice|switch 5|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Chansey|Wish|p2a: Chansey -| -|turn|423 -|c| lollity|it was just a really stally team -|c|★CHEF BOY4RDEEZNUTS|everything with rest lol -|c| tuxedo_cat|One side would run out of PP, if it were a legitimate battle. -|c| Bambi22|what turn now? -|c|★CHEF BOY4RDEEZNUTS|423 -|choice|switch 2|switch 2 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Cobalion|Cobalion|180/386 slp -|-damage|p2a: Cobalion|168/386 slp|[from] Stealth Rock -| -|-heal|p2a: Cobalion|386/386 slp|[from] move: Wish|[wisher] Chansey -|turn|424 -|c| Bambi22|it stopped showing the turn number on mine -|choice|move 2|switch 3 -| -|switch|p2a: Florges|Florges, F|179/360 brn -|-damage|p2a: Florges|134/360 brn|[from] Stealth Rock -|move|p1a: Redbull|Flamethrower|p2a: Florges -|-damage|p2a: Florges|94/360 brn -| -|-heal|p2a: Florges|116/360 brn|[from] item: Leftovers -|-damage|p2a: Florges|71/360 brn|[from] brn -|turn|425 -|choice|move 1|move 3 -| -|move|p2a: Florges|Aromatherapy|p2a: Florges -|-cureteam|p2a: Florges|[from] move: Aromatherapy -|move|p1a: Redbull|Moonblast|p2a: Florges -|-damage|p2a: Florges|14/360 -| -|-heal|p2a: Florges|36/360|[from] item: Leftovers -|turn|426 -|c|★CHEF BOY4RDEEZNUTS|nooooooooooooooo -|c|★Crime♥|lol -|c| tuxedo_cat|YOU CAN DO IT! -|choice|move 2|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: Redbull|Flamethrower|p2a: Florges -|-activate|p2a: Florges|Protect -| -|-heal|p2a: Florges|58/360|[from] item: Leftovers -|turn|427 -|c|★Crime♥|here we go again -|c| tuxedo_cat|NO! -|c|★Crime♥|XD -|choice|move 1|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Redbull|Moonblast|p2a: Florges -|-damage|p2a: Florges|1/360 -| -|-heal|p2a: Florges|23/360|[from] item: Leftovers -|turn|428 -|c|★Crime♥|lOL -|c|★Crime♥|LLOl -|c|★Crime♥|LOl -|c| General Zelgius|omg -|c|★Crime♥|LOL -|c|★Crime♥|LOl -|c| Bambi22|if only someone had spikes -|c|★Crime♥|LOL -|c|★Crime♥|LOL -|c| General Zelgius|fuck that -|c|★Crime♥|LOL -|c|★CHEF BOY4RDEEZNUTS|NOOOOOOOOOOOOOOOOOOOOOOOOOOO -|c| tuxedo_cat|Calm mind! -|c|★Crime♥|LOL -|c|★Crime♥|LOL -|c|★Crime♥|LOL -|c|★Crime♥|LOL -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 4|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Florges|203/360|[from] move: Wish|[wisher] Florges -|-heal|p2a: Florges|225/360|[from] item: Leftovers -|turn|429 -|choice|move 4|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Florges|247/360|[from] item: Leftovers -|turn|430 -|c| lollity|what turn is it now -|c|★Crime♥|power of florges -|c|★Crime♥|XD -|choice|move 4|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|154/386 -|-damage|p2a: Heatran|106/386|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|286/386|[from] move: Wish|[wisher] Florges -|-heal|p2a: Heatran|310/386|[from] item: Leftovers -|turn|431 -|c|★Crime♥|432 -|choice|switch 5|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|432 -|choice|switch 3|switch 2 -| -|switch|p2a: Chansey|Chansey, F|322/642 -|-damage|p2a: Chansey|242/642|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|562/642 -| -|turn|433 -|choice|move 2|move 3 -| -|move|p1a: Fatty|Toxic|p2a: Chansey -|-status|p2a: Chansey|tox -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|563/642 tox -| -|-damage|p2a: Chansey|523/642 tox|[from] psn -|turn|434 -|choice|move 1|switch 3 -| -|switch|p2a: Cobalion|Cobalion|386/386 -|-damage|p2a: Cobalion|374/386|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|274/386 -| -|turn|435 -|choice|switch 2|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Fatty|Chansey, F|562/642 -| -|turn|436 -|c| tuxedo_cat|...I take it back. -|choice|switch 2|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|292/352 tox -| -|-heal|p1a: Annoying AF|336/352 tox|[from] ability: Poison Heal -|turn|437 -|c| tuxedo_cat|You COULD go for 1k moves. -|c| lollity|are you guys out of pp yet? -|c|★Crime♥|not yet -|c|★CHEF BOY4RDEEZNUTS|nope -|choice|switch 4|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|252/334 -|-damage|p2a: Skarmory|211/334|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|438 -|c| lollity|whos gonna win this game -|c|★Crime♥|think we get to turn 500 -|c| lollity|is my guestion -|c| tuxedo_cat|You can check, lollity. -|c| lollity|ah so you can -|choice|move 4|switch 6 -| -|switch|p2a: Cobalion|Cobalion|274/386 -|-damage|p2a: Cobalion|262/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|439 -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|336/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: U Jelly Bruh?|Tentacruel, M|321/363 -| -|-heal|p1a: U Jelly Bruh?|343/363|[from] item: Black Sludge -|turn|440 -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-crit|p2a: Cobalion -|-damage|p2a: Cobalion|257/386 -|move|p2a: Cobalion|Roar|p1a: U Jelly Bruh? -|drag|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|441 -|c|★CHEF BOY4RDEEZNUTS|52 more rapid spinzzzz -|choice|move 1|switch 3 -| -|switch|p2a: Chansey|Chansey, F|523/642 -|-damage|p2a: Chansey|443/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|442 -|choice|switch 5|move 2 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Chansey|Toxic|p1a: Redbull -|-status|p1a: Redbull|tox -| -|-damage|p1a: Redbull|369/393 tox|[from] psn -|turn|443 -|choice|move 3|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|310/386 -|-damage|p2a: Heatran|262/386|[from] Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p2a: Heatran|286/386|[from] item: Leftovers -|-heal|p1a: Redbull|393/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|345/393 tox|[from] psn -|turn|444 -|c| Bambi22|wait ur unaware? -|c|★CHEF BOY4RDEEZNUTS|yup -|choice|switch 2|move 3 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Redbull -|-heal|p2a: Heatran|310/386|[from] item: Leftovers -|turn|445 -|c|★CHEF BOY4RDEEZNUTS|took this long for it to be revealed lol -|c| Bambi22|unless I didn't notice u taking rocks damage -|c|★Crime♥|ye -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|i spun them away before bringing clef in -|c| tuxedo_cat|So 440 moves in, we find out there's another 16 to add to the counter. -|choice|move 4|move 1 -| -|move|p2a: Heatran|Lava Plume|p1a: Fatty -|-damage|p1a: Fatty|578/642 -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -| -|-heal|p2a: Heatran|334/386|[from] item: Leftovers -|turn|446 -|choice|switch 3|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|343/363 -|-damage|p1a: U Jelly Bruh?|298/363|[from] Stealth Rock -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p1a: U Jelly Bruh?|320/363|[from] item: Black Sludge -|-heal|p2a: Heatran|358/386|[from] item: Leftovers -|turn|447 -|choice|move 3|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 -| -|-heal|p1a: U Jelly Bruh?|342/363|[from] item: Black Sludge -|turn|448 -|choice|move 4|move 1 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|293/394 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|312/363 -| -|-heal|p1a: U Jelly Bruh?|334/363|[from] item: Black Sludge -|-end|p1a: U Jelly Bruh?|move: Taunt -|turn|449 -|choice|switch 3|switch 3 -| -|switch|p1a: Fatty|Chansey, F|578/642 -|switch|p2a: Cobalion|Cobalion|257/386 -|-damage|p2a: Cobalion|245/386|[from] Stealth Rock -| -|turn|450 -|choice|switch 6|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|336/352 -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: U Jelly Bruh?|Tentacruel, M|334/363 -| -|-heal|p1a: U Jelly Bruh?|356/363|[from] item: Black Sludge -|turn|451 -|choice|switch 3|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|336/352 -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|284/352 -| -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|452 -|choice|move 1|switch 6 -| -|switch|p2a: Skarmory|Skarmory, F|211/334 -|-damage|p2a: Skarmory|170/334|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|-heal|p1a: Annoying AF|328/352 tox|[from] ability: Poison Heal -|turn|453 -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -| -|turn|454 -|choice|move 2|switch 4 -| -|switch|p2a: Chansey|Chansey, F|443/642 -|-damage|p2a: Chansey|363/642|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Chansey -|-status|p2a: Chansey|par -| -|turn|455 -|choice|move 1|move 3 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Chansey -|-damage|p2a: Chansey|209/642 par -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|530/642 par -| -|turn|456 -|c|★Crime♥|phew -|choice|move 3|switch 6 -| -|switch|p2a: Cobalion|Cobalion|245/386 -|-damage|p2a: Cobalion|233/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|223/386 -|choice|switch 4| -| -|switch|p1a: Annoying AF|Gliscor, M|328/352 tox -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|457 -|choice|move 2|move 3 -| -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -|move|p1a: Annoying AF|Toxic|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|458 -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|cant|p2a: Cobalion|slp -| -|turn|459 -|choice|move 4|move 4 -| -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Cobalion -|-fail|p2a: Cobalion -|cant|p2a: Cobalion|slp -| -|turn|460 -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|461 -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -| -|turn|462 -|c|★Crime♥|lmfao -|choice|move 3|switch 6 -| -|switch|p2a: Chansey|Chansey, F|530/642 -|-damage|p2a: Chansey|450/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|370/642 brn|[from] brn -|turn|463 -|c| lollity|you guys are still at half pp -|c| tuxedo_cat|Just calm mind to death. -|choice|switch 2|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 -|-damage|p2a: Slowbro|345/394|[from] Stealth Rock -|switch|p1a: Redbull|Clefable, M|345/393 -| -|-heal|p1a: Redbull|369/393|[from] item: Leftovers -|turn|464 -|choice|switch 2|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Slowbro|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Slowbro|[from]Magic Bounce -|-status|p2a: Slowbro|tox -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|465 -|c| tuxedo_cat|Eventually, the chancey will run out of moves. -|c|★CHEF BOY4RDEEZNUTS|YUSSSSS -|choice|switch 6|switch 5 -| -|switch|p2a: Florges|Florges, F|247/360 -|-damage|p2a: Florges|202/360|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|578/642 -| -|-heal|p2a: Florges|224/360|[from] item: Leftovers -|turn|466 -|choice|move 2|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Fatty|Toxic|p2a: Florges|[miss] -|-miss|p1a: Fatty|p2a: Florges -| -|-heal|p2a: Florges|246/360|[from] item: Leftovers -|turn|467 -|c| lollity|can you pass turns in this game -|c|★CHEF BOY4RDEEZNUTS|noooooo -|choice|move 2|switch 6 -| -|switch|p2a: Chansey|Chansey, F|370/642 -|-damage|p2a: Chansey|290/642|[from] Stealth Rock -|move|p1a: Fatty|Toxic|p2a: Chansey -|-status|p2a: Chansey|tox -| -|-heal|p2a: Chansey|470/642 tox|[from] move: Wish|[wisher] Florges -|-damage|p2a: Chansey|430/642 tox|[from] psn -|turn|468 -|c| lollity|or is it like chess -|c| General Zelgius|you need to move -|choice|switch 3|switch 6 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|356/363 -|switch|p2a: Florges|Florges, F|246/360 -|-damage|p2a: Florges|201/360|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-heal|p2a: Florges|223/360|[from] item: Leftovers -|turn|469 -|c| General Zelgius|so like chess -|c| tuxedo_cat|You can switch. That's sort of like a pass. -|choice|move 3|move 4 -| -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Florges -|-resisted|p2a: Florges -|-damage|p2a: Florges|190/360 -|-enditem|p2a: Florges|Leftovers|[from] move: Knock Off|[of] p1a: U Jelly Bruh? -|move|p2a: Florges|Wish|p2a: Florges -| -|turn|470 -|c|★CHEF BOY4RDEEZNUTS|NO MOAR LEFTIES -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|switch 3|move 1 -| -|switch|p1a: Fatty|Chansey, F|578/642 -|move|p2a: Florges|Moonblast|p1a: Fatty -|-damage|p1a: Fatty|515/642 -| -|-heal|p2a: Florges|360/360|[from] move: Wish|[wisher] Florges -|turn|471 -|choice|move 1|switch 3 -| -|switch|p2a: Cobalion|Cobalion|386/386 -|-damage|p2a: Cobalion|374/386|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|274/386 -| -|turn|472 -|c| General Zelgius|switching is not an offensive move but it can drastically change the state of the game -|c| Nass-T|niggas -|c| tuxedo_cat|Oh God... We're now 28 turns away from 500... -|choice|switch 6|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Florges|Florges, F|360/360 -|-damage|p2a: Florges|315/360|[from] Stealth Rock -| -|turn|473 -|c| General Zelgius|wouldn't say it's a pass -|choice|switch 5|switch 6 -| -|switch|p2a: Chansey|Chansey, F|430/642 -|-damage|p2a: Chansey|350/642|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|474 -|c| tuxedo_cat|Switching is also the dumbest concept in the entire metagame. -|c| Nass-T|This is straight cancer -|c|★Crime♥|lmao -|choice|move 4|switch 3 -| -|switch|p2a: Cobalion|Cobalion|274/386 -|-damage|p2a: Cobalion|262/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|475 -|c| General Zelgius|been here since turn 143 -|c| tuxedo_cat|If you declared t-bolt, and your opponent swapped to an escadrill... -|c| Nass-T|You're just switching over and over lol -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|369/393 -| -|-heal|p1a: Redbull|393/393|[from] item: Leftovers -|turn|476 -|c| Nass-T|I'm not impressed -|c| tuxedo_cat|WHY would you continue with t-bolt? -|c| tuxedo_cat|Why wouldn't you switch at the same time? -|choice|switch 5|switch 2 -| -|switch|p2a: Heatran|Heatran, F, shiny|358/386 -|-damage|p2a: Heatran|310/386|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-heal|p2a: Heatran|334/386|[from] item: Leftovers -|turn|477 -|c| tuxedo_cat|Or pick another move... -|c|★Crime♥|this is stall -|c|★Crime♥|we have different play style's -|choice|move 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|350/642 -|-damage|p2a: Chansey|270/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|478 -|c| tuxedo_cat|Stalling isn't battling. -|c| Nass-T|Setup -|c|★Crime♥|stalling isnt easy... -|c|★Crime♥|1 mistake and you lost the game -|c| tuxedo_cat|The fact that no one's died in this battle yet is proof of that. -|c|★Crime♥|people underestimate it -|c| Amber Torrey|Different pokemon doesn't mean different playstyle -|c|★Crime♥|also -|c| tuxedo_cat|You guys are both using pure stall teams. -|c| lollity|have you guys considered using a leppa harvest pokemon -|c|★Crime♥|with stalling you cant get high in rankings.. -|c| lollity|so you never run out of pp -|c| tuxedo_cat|There's a difference. -|c| tuxedo_cat|Sort of. -|choice|switch 4|move 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|591/642 -| -|turn|479 -|choice|move 3|switch 2 -| -|switch|p2a: Cobalion|Cobalion|262/386 -|-damage|p2a: Cobalion|250/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|240/386 -|c| tuxedo_cat|And if stalling can't get you high, then why do so many people use it? -|choice|switch 2| -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|turn|480 -|c| lollity|it's fun for some people i guess -|c|★Crime♥|because tanking is fun -|c|★CHEF BOY4RDEEZNUTS|i dont really care about ratings -|c| tuxedo_cat|Oh yeah... Because everyone high up is a legendary whore. -|c| lollity|personally i dont like it -|c|★CHEF BOY4RDEEZNUTS|and yeah legendary whores are no fun -|choice|move 2|move 3 -| -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -|move|p1a: Annoying AF|Toxic|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|481 -|c| tuxedo_cat|"I got a high score with kyurem-black, heatran, landorus, thunderous, tornadus, and keldo." -|c| Amber Torrey|only kind of stall i dislike is toxic protect stalling -|c| lollity|whats a legendary whore -|c| General Zelgius|for lower elos people will instantly quit when they one into one -|c| Amber Torrey|that is just a cop out -|c| tuxedo_cat|Indeed. -|choice|switch 2|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|cant|p2a: Cobalion|slp -| -|turn|482 -|c| tuxedo_cat|Here's my proposal. -|c| tuxedo_cat|Ban protect. -|c|★CHEF BOY4RDEEZNUTS|only iif i had taunt -|choice|switch 4|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Cobalion|slp -| -|turn|483 -|c| lollity|then everyone switches to detect :P -|c| tuxedo_cat|And make toxic a poison type exclusive move. -|c| Amber Torrey|Just shouldn't allow protect and toxic on the same pokemon -|choice|move 3|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|334/386 -|-damage|p2a: Heatran|286/386|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|310/386|[from] item: Leftovers -|turn|484 -|c| tuxedo_cat|Nah. No protect, period. -|c| tuxedo_cat|It's a cop out move. -|c| Amber Torrey|how so? -|choice|switch 2|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Heatran|Lava Plume|p1a: Annoying AF -|-damage|p1a: Annoying AF|144/352 tox -| -|-heal|p2a: Heatran|334/386|[from] item: Leftovers -|-heal|p1a: Annoying AF|188/352 tox|[from] ability: Poison Heal -|turn|485 -|c| tuxedo_cat|It's the equivelent of saying "FORCEFIELD" in a playground battle. -|c| Amber Torrey|it blocks outrage users easy to get confused -|choice|move 4|switch 4 -| -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|232/352 tox|[from] ability: Poison Heal -|turn|486 -|c| tuxedo_cat|Yeah. And it's bullshit. What is a protect? -|c| lollity|yeahh but youre giving up the utility of a move slot -|c|★CHEF BOY4RDEEZNUTS|protect against mega lop high jump kick :p -|c| Amber Torrey|and it makes it so you can see what your opponent is gonna do -|c| tuxedo_cat|Why can a bellsprout use it to the same effectiveness as Arceus? -|c|★CHEF BOY4RDEEZNUTS|useful if you ask me -|c|★Crime♥|bellsprout stall -|choice|switch 4|move 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Whirlwind|p1a: TheMoreYouKnow -|drag|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|487 -|c|★Crime♥|lma -|c|★Crime♥|oo -|c| tuxedo_cat|It has it's uses, yes. -|c|★Crime♥|!data bellsprout -|c|~|/data-pokemon Bellsprout - -|c|★CHEF BOY4RDEEZNUTS|lol -|c|★Crime♥|!data gluttony -|c|~|/data-ability Gluttony - -|choice|move 2|switch 2 -| -|switch|p2a: Chansey|Chansey, F|591/642 -|-damage|p2a: Chansey|511/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|488 -|c| tuxedo_cat|Bellsprout = Arceus in the use of protect. -|c| Amber Torrey|My most hated pokemon is in fact gliscor -|choice|switch 6|move 1 -| -|switch|p1a: Fatty|Chansey, F|515/642 -|move|p2a: Chansey|Seismic Toss|p1a: Fatty -|-damage|p1a: Fatty|415/642 -| -|turn|489 -|c| Amber Torrey|the master of toxic protect stalling -|c|★Crime♥|omg -|c|★Crime♥|i wanna smoke -|c|★CHEF BOY4RDEEZNUTS|i like stall for the sole purpose of making ppl salty -|c| tuxedo_cat|I'm from the days before fairies... -|c|★Crime♥|im in here for over 2 hours -|c| tuxedo_cat|Back in my day, dragons ruled the roost, and gliscors ruled the night. -|c| Amber Torrey|sigh why does everyone say fairies ruined the game? -|c| tuxedo_cat|And I was the vampire hunter. -|choice|move 3|switch 3 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|turn|490 -|c| Amber Torrey|i'm so sorry your bs dragon types have a real counter now -|c| tuxedo_cat|PorygonZ with an ice beam and nasty plot. -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|232/352 tox -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|393/393 -| -|turn|491 -|c| tuxedo_cat|I'm not complaining about fairies. -|choice|move 1|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|334/386 -|-damage|p2a: Heatran|286/386|[from] Stealth Rock -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|265/386 -| -|-heal|p2a: Heatran|289/386|[from] item: Leftovers -|turn|492 -|choice|move 3|move 3 -| -|move|p2a: Heatran|Stealth Rock|p1a: Redbull -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p2a: Heatran|313/386|[from] item: Leftovers -|turn|493 -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|293/386 -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: Fatty|Chansey, F|415/642 -|-damage|p1a: Fatty|335/642|[from] Stealth Rock -| -|-heal|p1a: Fatty|531/642|[from] move: Wish|[wisher] Redbull -|-heal|p2a: Heatran|317/386|[from] item: Leftovers -|turn|494 -|c| tuxedo_cat|I was just saying that I remember when toxic-gliscor was on EVERY team. -|c| Amber Torrey|still is -|c| lollity|hmm -|c| tuxedo_cat|Then aegislash showed up and they went away for a while. -|c| lollity|21 more stealth rocks -|c| tuxedo_cat|Then aegislash got banned... -|choice|switch 3|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|-heal|p2a: Heatran|341/386|[from] item: Leftovers -|turn|495 -|c| tuxedo_cat|And they returned. -|c|★CHEF BOY4RDEEZNUTS|51 moar rapid spins lol -|choice|move 4|switch 6 -| -|switch|p2a: Florges|Florges, F|315/360 -|-damage|p2a: Florges|270/360|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Florges -|-damage|p2a: Florges|256/360 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|362/363|[from] item: Black Sludge -|turn|496 -|c| Amber Torrey|no earthpower on heatran? -|choice|switch 2|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Florges|Moonblast|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|346/403 -| -|-heal|p1a: TheMoreYouKnow|371/403|[from] item: Leftovers -|turn|497 -|c| lollity|wait -|c| tuxedo_cat|I'm convinced that Smogon is ran by the dumbest competitive fans in the business. -|c| lollity|how does florges walk? -|c| lollity|it has no legs -|c|★Crime♥|lol -|c| Amber Torrey|it doesn;t -|c| Amber Torrey|florges floats -|c|★Crime♥|3 turns guys -|c|★Crime♥|omg -|c|★Crime♥|legit! -|c| lollity|how does it float -|choice|move 3|switch 4 -| -|switch|p2a: Cobalion|Cobalion|374/386 -|-damage|p2a: Cobalion|362/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|351/386 -|c| lollity|phsyics???? -|c|★CHEF BOY4RDEEZNUTS|holy shit lol -|c| Amber Torrey|by being a fairy -|choice|switch 5| -| -|switch|p1a: Annoying AF|Gliscor, M|232/352 tox -| -|-heal|p1a: Annoying AF|276/352 tox|[from] ability: Poison Heal -|turn|498 -|c| tuxedo_cat|They'll ban a Pokemon because they deem it "too powerful"... -|c|★Crime♥|will we hit 600+? -|c|★CHEF BOY4RDEEZNUTS|fuck logic thats why -|c| tuxedo_cat|When they could just as easily ban a particular moveset. -|choice|switch 6|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Chansey|Chansey, F|511/642 -|-damage|p2a: Chansey|431/642|[from] Stealth Rock -| -|turn|499 -|c| Amber Torrey|to be fair Ageislash is extremely op -|choice|switch 4|move 1 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Chansey|Seismic Toss|p1a: Redbull -|-damage|p1a: Redbull|293/393 -| -|-heal|p1a: Redbull|317/393|[from] item: Leftovers -|turn|500 -|c|+Jack Dalton|complex bans aren't intuitive -|c| tuxedo_cat|They'll treat the symptoms, but not the disease. -|c|★CHEF BOY4RDEEZNUTS|#FREEAEGI -|c|★Crime♥|500 -|c|★Crime♥|sweet jezus -|c| Amber Torrey|sword dance plus shadow sneak with insane attack stat -|c| Amber Torrey|and sacred sword for normal type counters -|c|+Jack Dalton|and it's easier to explain to people "hey this is too strong" than to go into all the intricacies about why a particular part of that thing is too strong -|c| tuxedo_cat|You people are weak. -|c| tuxedo_cat|Aegislash was fun to fight. -|c| tuxedo_cat|He had a dance to him. -|c| Amber Torrey|how so? -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|341/386 -|-damage|p2a: Heatran|293/386|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|317/386|[from] item: Leftovers -|-heal|p1a: Redbull|341/393|[from] item: Leftovers -|turn|501 -|c|+Jack Dalton|also some things are too strong because everything about them is too strong as a whole -|c| lennylennylenny|aegi was fun -|c| tuxedo_cat|And if you could dance in turn, he'd be taken down easily. -|c| Amber Torrey|every ageislash was the exact same thing -|c|★Crime♥|20 sec -|c| Amber Torrey|sword dance while staying defense form to never die -|c| Amber Torrey|shadow sneak sacred sword -|c| Amber Torrey|and protect -|c|+Jack Dalton|aegislash made a lot of things unviable because it was staple on every team -|c|★CHEF BOY4RDEEZNUTS|i think crime went on a smoke break lolk -|c| Amber Torrey|that was literally every ageislash -|c| General Zelgius|actually aegi got banned because he several very strong movesets -|c|★Crime♥|im back -|c|★Crime♥|:P -|choice|move 4|move 3 -| -|move|p2a: Heatran|Stealth Rock|p1a: Redbull -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|341/386|[from] item: Leftovers -|-heal|p1a: Redbull|365/393|[from] item: Leftovers -|turn|502 -|choice|move 1|move 4 -| -|move|p2a: Heatran|Taunt|p1a: Redbull -|-start|p1a: Redbull|move: Taunt -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|298/386 -| -|-heal|p2a: Heatran|322/386|[from] item: Leftovers -|-heal|p1a: Redbull|389/393|[from] item: Leftovers -|turn|503 -|c| tuxedo_cat|How is it that I was in the wake of 6th gen with a team of birds, and I thrived? -|c| lennylennylenny|502 -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|-damage|p1a: I <3 Stall|264/301|[from] Stealth Rock -|move|p2a: Heatran|Lava Plume|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|170/301 -| -|-heal|p2a: Heatran|346/386|[from] item: Leftovers -|turn|504 -|c| General Zelgius|and at that point he forced like 2-3 counters to check all his different movesets -|c| lennylennylenny|mind games -|c| Amber Torrey|ageislash would even ohko on not very effective hits -|choice|switch 2|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|362/363 -|-damage|p1a: U Jelly Bruh?|317/363|[from] Stealth Rock -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|277/363 -|-status|p1a: U Jelly Bruh?|brn -| -|-heal|p1a: U Jelly Bruh?|299/363 brn|[from] item: Black Sludge -|-heal|p2a: Heatran|370/386|[from] item: Leftovers -|-damage|p1a: U Jelly Bruh?|254/363 brn|[from] brn -|turn|505 -|c| tuxedo_cat|And aegislash wasn't the one to make everything else useless. -|c| tuxedo_cat|GRENINJA PROTEAN was. -|c|★Crime♥|finally a burn -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 4|switch 3 -| -|switch|p2a: Cobalion|Cobalion|351/386 -|-damage|p2a: Cobalion|339/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|338/386 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|276/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|231/363 brn|[from] brn -|turn|506 -|c|+Jack Dalton|no, aegislash made a lot of things pointless to run -|c| Amber Torrey|Talonflame ageislash and talonflame all go in the same boat for being op -|choice|switch 6|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|276/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: TheMoreYouKnow|Jirachi|371/403 -| -|-heal|p1a: TheMoreYouKnow|396/403|[from] item: Leftovers -|turn|507 -|c| Amber Torrey|greninja* -|c| tuxedo_cat|My talonflame > everyone elses. -|choice|move 2|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|508 -|c| tuxedo_cat|Because everyone is an idiot. No offense. -|choice|move 3|switch 5 -| -|switch|p2a: Cobalion|Cobalion|338/386 -|-damage|p2a: Cobalion|326/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|315/386 -|c| tuxedo_cat|Everyone only knows one or two runs for any and all Pokemon. -|c| Amber Torrey|bet it has flare blitz and brave bird tuxedo-cat -|choice|switch 5| -| -|switch|p1a: Annoying AF|Gliscor, M|276/352 tox -| -|-heal|p1a: Annoying AF|320/352 tox|[from] ability: Poison Heal -|turn|509 -|c| tuxedo_cat|Which by all Pokemon, I mean about 12. -|c| Amber Torrey|and maybe bulk up and roost -|c| lennylennylenny|there is mo stall breaker -|c|★Crime♥|gosh -|c|★Crime♥|going to 600 turns -|c|★CHEF BOY4RDEEZNUTS|guess im not sleeping tonight -|choice|move 1|move 4 -| -|move|p1a: Annoying AF|Earthquake|p2a: Cobalion -|-supereffective|p2a: Cobalion -|-damage|p2a: Cobalion|175/386 -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|389/393 -| -|-heal|p1a: Redbull|393/393|[from] item: Leftovers -|turn|510 -|c| Amber Torrey|did i hit the mark Tuxedo_cat? -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|370/386 -|-damage|p2a: Heatran|322/386|[from] Stealth Rock -|move|p1a: Redbull|Flamethrower|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|346/386|[from] item: Leftovers -|turn|511 -|c| tuxedo_cat|Because everyone is convinced to the 9th degree that if they play outside of the box, or if they bring in an underused, they'll lose, or do poorly. -|c| lollity|tuxedo_cat im sure as heck not spending my time memorizing 720 pokemon -|choice|switch 3|move 1 -| -|switch|p1a: Fatty|Chansey, F|531/642 -|move|p2a: Heatran|Lava Plume|p1a: Fatty -|-damage|p1a: Fatty|432/642 -| -|-heal|p2a: Heatran|370/386|[from] item: Leftovers -|turn|512 -|c| lollity|not like i play this game for a living -|choice|move 3|move 4 -| -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -|cant|p1a: Fatty|move: Taunt|Wish -| -|-heal|p2a: Heatran|386/386|[from] item: Leftovers -|turn|513 -|c| tuxedo_cat|Not EVERY Pokemon. -|choice|move 1|move 1 -| -|move|p2a: Heatran|Lava Plume|p1a: Fatty -|-damage|p1a: Fatty|336/642 -|-status|p1a: Fatty|brn -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|286/386 -| -|-heal|p2a: Heatran|310/386|[from] item: Leftovers -|-damage|p1a: Fatty|256/642 brn|[from] brn -|turn|514 -|c| tuxedo_cat|But try an empoleon. -|c|★CHEF BOY4RDEEZNUTS|im feelin the pressure -|c| lennylennylenny|thats where i see hope -|choice|switch 6|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|231/363 brn -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|176/363 brn -| -|-heal|p1a: U Jelly Bruh?|198/363 brn|[from] item: Black Sludge -|-heal|p2a: Heatran|334/386|[from] item: Leftovers -|-damage|p1a: U Jelly Bruh?|153/363 brn|[from] brn -|turn|515 -|c| Amber Torrey|which type of empleon atk or sp.atk? -|c| tuxedo_cat|Try something you don't battle 600 of in the OU tier. -|c|★Crime♥|lmao -|c| tuxedo_cat|Attack for me. -|c|★Crime♥|me too CHEF -|c|★Crime♥|i feel the pressure -|c| tuxedo_cat|Dude... Defiant empoleon can slay gods! -|c| lollity|but -|choice|move 3|switch 3 -| -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Cobalion|Cobalion|175/386 -|-damage|p2a: Cobalion|163/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|158/386 -|-ability|p2a: Cobalion|Justified|boost -|-boost|p2a: Cobalion|atk|1 -| -|-heal|p1a: U Jelly Bruh?|175/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|130/363 brn|[from] brn -|turn|516 -|c| lollity|so can other stuff -|c| Amber Torrey|iron head, waterfall, swords dance, aqua jet? -|choice|switch 4|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|320/352 tox -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|517 -|c| tuxedo_cat|Weakness policy, max special defense... -|choice|switch 6|move 4 -| -|switch|p1a: Fatty|Chansey, F|256/642 -|cant|p2a: Cobalion|slp -| -|turn|518 -|choice|move 4|move 1 -| -|cant|p2a: Cobalion|slp -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -| -|turn|519 -|c| tuxedo_cat|You will EAT mega manectriks. -|choice|switch 2|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|170/301 -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Close Combat|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|520 -|choice|switch 6|switch 6 -| -|switch|p2a: Chansey|Chansey, F|431/642 -|-damage|p2a: Chansey|351/642|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 -| -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|521 -|choice|switch 2|switch 6 -| -|switch|p1a: Fatty|Chansey, F|256/642 -|switch|p2a: Cobalion|Cobalion|386/386 -|-damage|p2a: Cobalion|374/386|[from] Stealth Rock -| -|turn|522 -|c| tuxedo_cat|Chef... -|choice|switch 2|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|298/352 tox -| -|-heal|p1a: Annoying AF|342/352 tox|[from] ability: Poison Heal -|turn|523 -|c|★CHEF BOY4RDEEZNUTS|ya -|c| tuxedo_cat|Don't switch sableye for chancey. -|c| tuxedo_cat|*from chancey. -|c| tuxedo_cat|It can't kill you. -|choice|move 3|move 4 -| -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|254/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|393/393 -| -|turn|524 -|c| tuxedo_cat|Just run it with calm mind. -|c|★Crime♥|dont believe him -|c| Amber Torrey|Tux -|choice|switch 3|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|334/386 -|-damage|p2a: Heatran|286/386|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|254/352 tox -| -|-heal|p2a: Heatran|310/386|[from] item: Leftovers -|-heal|p1a: Annoying AF|298/352 tox|[from] ability: Poison Heal -|turn|525 -|c| Amber Torrey|what nature on your empoleon? -|c|★Crime♥|oke -|c|★Crime♥|im going to stay -|c| tuxedo_cat|One sec... -|c|★Crime♥|you risk ur last 2pp earthquake? -|c| tuxedo_cat|OH GOD...! -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 2|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|293/334 -|-damage|p2a: Skarmory|252/334|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|-heal|p1a: Annoying AF|342/352 tox|[from] ability: Poison Heal -|turn|526 -|c| tuxedo_cat|My teams! -|c| tuxedo_cat|They're gone! -|c|★Crime♥|XD -|c| Amber Torrey|I bet... -|choice|switch 6|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|170/301 -|move|p2a: Skarmory|Whirlwind|p1a: I <3 Stall -|move|p1a: I <3 Stall|Whirlwind|p2a: Skarmory|[from]Magic Bounce -|drag|p2a: Florges|Florges, F|256/360 -|-damage|p2a: Florges|211/360|[from] Stealth Rock -| -|turn|527 -|c| tuxedo_cat|I recently cleared out my cookies... -|c| tuxedo_cat|And I lost my empoleon. -|choice|switch 5|switch 2 -| -|switch|p2a: Heatran|Heatran, F, shiny|310/386 -|-damage|p2a: Heatran|262/386|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|286/386|[from] item: Leftovers -|turn|528 -|c| tuxedo_cat|And my birds... -|c| tuxedo_cat|And my general grevious team... -|c| lollity|empoleon is a bird -|c| tuxedo_cat|Son of a bitch... -|choice|move 2|move 1 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Heatran -|-status|p2a: Heatran|par -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|310/386 par|[from] item: Leftovers -|turn|529 -|c| lollity|im pretty sure -|c| tuxedo_cat|Yes. -|c| tuxedo_cat|He's a penguin. -|c| lollity|yes -|c| lollity|im glad we had this discussion -|c| lennylennylenny|its a pengin -|choice|move 3|move 3 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|297/386 par -|choice|switch 2| -| -|switch|p1a: Fatty|Chansey, F|256/642 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|321/386 par|[from] item: Leftovers -|turn|530 -|c| lennylennylenny|penguin * -|choice|move 3|move 4 -| -|move|p1a: Fatty|Wish|p1a: Fatty -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|345/386 par|[from] item: Leftovers -|turn|531 -|choice|move 1|move 3 -| -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|245/386 par -|cant|p2a: Heatran|par -| -|-heal|p1a: Fatty|577/642|[from] move: Wish|[wisher] Fatty -|-heal|p2a: Heatran|269/386 par|[from] item: Leftovers -|turn|532 -|c| Amber Torrey|252+ SpA Mega Manectric Thunderbolt vs. 0 HP / 0+ SpD Empoleon: 302-356 (97.7 - 115.2%) -- 81.3% chance to OHKO -|c| Amber Torrey|eat mega manatric my butt -|c|★Crime♥|lol -|choice|move 1|switch 3 -| -|switch|p2a: Cobalion|Cobalion|374/386 -|-damage|p2a: Cobalion|362/386|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|262/386 -| -|turn|533 -|c|★Crime♥|turn 600 pls -|c| Amber Torrey|your empleon would get ohko'ed without a sp.def boosting nature -|choice|switch 6|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|342/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|393/393 -| -|turn|534 -|choice|move 3|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|269/386 par -|-damage|p2a: Heatran|221/386 par|[from] Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p2a: Heatran|245/386 par|[from] item: Leftovers -|turn|535 -|choice|switch 4|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|130/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: Fatty|Chansey, F|577/642 -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Redbull -|-heal|p2a: Heatran|269/386 par|[from] item: Leftovers -|turn|536 -|c| Amber Torrey|and a 81 percent chance to get ohkoed with a sp.def nature -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|170/301 -|move|p2a: Heatran|Stealth Rock|p1a: I <3 Stall -|move|p1a: I <3 Stall|Stealth Rock|p2a: Heatran|[from]Magic Bounce -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|293/386 par|[from] item: Leftovers -|turn|537 -|c| Amber Torrey|empoleon don't eat a mega manatric no matter what -|choice|move 4|switch 6 -| -|switch|p2a: Chansey|Chansey, F|351/642 -|-damage|p2a: Chansey|271/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|turn|538 -|choice|move 3|move 3 -| -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|592/642 -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|512/642 brn|[from] brn -|turn|539 -|c| Amber Torrey|hmmm that made you quite real fast tux... -|choice|move 2|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|293/386 par -|-damage|p2a: Heatran|245/386 par|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-heal|p2a: Heatran|269/386 par|[from] item: Leftovers -|turn|540 -|choice|move 2|switch 6 -| -|switch|p2a: Chansey|Chansey, F|512/642 -|-damage|p2a: Chansey|432/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|541 -|choice|move 2|move 1 -| -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|542 -|choice|move 3|move 1 -| -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|352/642 brn|[from] brn -|turn|543 -|c| lennylennylenny|this sableye is going places -|c| Amber Torrey|Don't say people are stupid when your trying to block a mega-manatric with a water type -|choice|move 2|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-damage|p2a: Chansey|272/642 brn|[from] brn -|turn|544 -|c| Amber Torrey|those spots go to lanturn and ground types' -|c| Amber Torrey|or lightning roders -|choice|move 2|switch 2 -| -|switch|p2a: Florges|Florges, F|211/360 -|-damage|p2a: Florges|166/360|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-heal|p2a: Florges|360/360|[from] move: Wish|[wisher] Chansey -|turn|545 -|choice|move 2|switch 2 -| -|switch|p2a: Chansey|Chansey, F|272/642 -|-damage|p2a: Chansey|192/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|546 -|choice|move 3|move 3 -| -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|513/642 -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|433/642 brn|[from] brn -|turn|547 -|c|★Crime♥|hmmm -|c|★Crime♥|its over -|c| Amber Torrey|nah -|c| Amber Torrey|you have a good move -|c| Amber Torrey|not gonna say it tho -|c| tuxedo_cat|Sorry Amber. -|choice|move 2|switch 2 -| -|switch|p2a: Florges|Florges, F|360/360 -|-damage|p2a: Florges|315/360|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-fail|p1a: I <3 Stall -| -|turn|548 -|c| lollity|what turn number is this -|c| tuxedo_cat|I've been away for a sec. -|choice|move 4|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-fail|p1a: I <3 Stall -| -|turn|549 -|c| Amber Torrey|548 -|c| lollity|k -|c| tuxedo_cat|What were you saying? -|choice|move 3|switch 2 -| -|switch|p2a: Chansey|Chansey, F|433/642 -|-damage|p2a: Chansey|353/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|273/642 brn|[from] brn -|turn|550 -|c| Amber Torrey|wish to know look up not repeating myself -|choice|switch 5|switch 2 -| -|switch|p2a: Florges|Florges, F|315/360 -|-damage|p2a: Florges|270/360|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|turn|551 -|c| tuxedo_cat|I'm not even kidding when I say that a high special defense empoleon can tank t-bolts. -|choice|move 3|move 4 -| -|move|p2a: Florges|Wish|p2a: Florges -|move|p1a: Fatty|Wish|p1a: Fatty -| -|turn|552 -|choice|switch 6|switch 2 -| -|switch|p2a: Chansey|Chansey, F|273/642 -|-damage|p2a: Chansey|193/642|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|130/363 -| -|-heal|p2a: Chansey|373/642|[from] move: Wish|[wisher] Florges -|-heal|p1a: U Jelly Bruh?|363/363|[from] move: Wish|[wisher] Fatty -|turn|553 -|c| lollity|but -|c| lollity|so can latias -|c| tuxedo_cat|I'm probably going to use this unfortunate opportunity to experiment. -|choice|move 4|switch 3 -| -|switch|p2a: Cobalion|Cobalion|262/386 -|-damage|p2a: Cobalion|250/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|247/386 -| -|turn|554 -|c|★Crime♥|knock off my chansey idc anymore -|c|★Crime♥|it has no heals left -|c|★Crime♥|:( -|choice|switch 3|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|342/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|393/393 -| -|turn|555 -|c| Amber Torrey|252+ SpA Mega Manectric Thunderbolt vs. 0 HP / 0 SpD Empoleon: 330-390 (106.7 - 126.2%) -- guaranteed OHKO empoleon gets 100 percent ohko'ed with a sp.def boosting nature -|c| Amber Torrey|and with one it's a 81 percent ohko rate -|choice|switch 4|switch 2 -| -|switch|p2a: Florges|Florges, F|270/360 -|-damage|p2a: Florges|225/360|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|342/352 tox -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|556 -|c| Amber Torrey|empoleon can not tank mega-manatric -|choice|move 2|switch 4 -| -|switch|p2a: Skarmory|Skarmory, F|252/334 -|-damage|p2a: Skarmory|211/334|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|557 -|c| Amber Torrey|without* -|c|★Crime♥|emopoleon sux -|c|★Crime♥|for offensive and stall. -|c|★Crime♥|lol -|c| Amber Torrey|empoleon is so so -|c|★Crime♥|600 turns -|c|★Crime♥|pls -|c| Amber Torrey|but blocking eletric attacks from the strongest electric type -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Defog|p1a: I <3 Stall -|move|p1a: I <3 Stall|Defog|p2a: Skarmory|[from]Magic Bounce -|-unboost|p2a: Skarmory|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|558 -|c| Amber Torrey|not a chance in hell -|c| tuxedo_cat|Jolteons... -|c| Amber Torrey|are way weaker -|c| tuxedo_cat|Thunderous... -|c| tuxedo_cat|Nah. -|choice|switch 2|switch 2 -| -|switch|p2a: Cobalion|Cobalion|247/386 -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|turn|559 -|c| Amber Torrey|still weaker -|c|★CHEF BOY4RDEEZNUTS|last defog -|c| tuxedo_cat|My empoleon can't take those. -|choice|move 4|move 2 -| -|move|p2a: Cobalion|Iron Head|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|361/403 -|cant|p1a: TheMoreYouKnow|flinch -| -|-heal|p1a: TheMoreYouKnow|386/403|[from] item: Leftovers -|turn|560 -|c|★Crime♥|no rocks -|c| tuxedo_cat|Earthquakes, no chance in hell. -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|269/386 par -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Heatran -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|-heal|p2a: Heatran|293/386 par|[from] item: Leftovers -|turn|561 -|choice|move 3|move 3 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|279/386 par -|choice|switch 2| -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Stealth Rock|p1a: I <3 Stall -|move|p1a: I <3 Stall|Stealth Rock|p2a: Heatran|[from]Magic Bounce -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|303/386 par|[from] item: Leftovers -|turn|562 -|choice|move 2|move 2 -| -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Cobalion|Cobalion|247/386 -|-damage|p2a: Cobalion|235/386|[from] Stealth Rock -| -|turn|563 -|c| Amber Torrey|probably the reason you can't take a jolteon or thunderus is because of choiice specs -|c| tuxedo_cat|For jolteon, maybe. -|c|★CHEF BOY4RDEEZNUTS|jolteon is awesome -|choice|move 1|switch 4 -| -|switch|p2a: Florges|Florges, F|225/360 -|-damage|p2a: Florges|180/360|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Florges -|-damage|p2a: Florges|117/360 -| -|turn|564 -|c| Amber Torrey|no matter what empoleon can't eletric types man -|c| tuxedo_cat|But megatrics typically leave me at about 20%, give or take. -|c| tuxedo_cat|But when they mega evolve... -|choice|switch 5|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Florges|Wish|p2a: Florges -| -|turn|565 -|c| tuxedo_cat|That sets off defiant. -|choice|move 3|move 2 -| -|move|p2a: Florges|Protect|p2a: Florges -|-singleturn|p2a: Florges|Protect -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -| -|-heal|p2a: Florges|297/360|[from] move: Wish|[wisher] Florges -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|566 -|c| lollity|yeah bu -|c| lollity|it wont do you much good if youre dead -|c| tuxedo_cat|Then, I survive t-bolt and get weakness policy. -|c|★CHEF BOY4RDEEZNUTS|lol -|c| Amber Torrey|252+ SpA Mega Manectric Thunderbolt vs. 0 HP / 0+ SpD Empoleon: 302-356 (97.7 - 115.2%) -- 81.3% chance to OHKO 20 percent left hp my left nut -|choice|move 2|switch 2 -| -|switch|p2a: Skarmory|Skarmory, F|211/334 -|-damage|p2a: Skarmory|170/334|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|567 -|c| lollity|plus -|c| Amber Torrey|your have lower then 3 percent -|c| lollity|doesnt it still outspeed you -|c| Amber Torrey|if your lucky -|c| lollity|? -|choice|switch 2|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -| -|turn|568 -|c|★Crime♥|5 rocks -|c|★Crime♥|not bad -|c| tuxedo_cat|I guess I've been lucky for 3 years then. -|choice|move 2|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|569 -|c| lollity|i guess so -|c| lollity|:P -|choice|move 3|move 1 -| -|move|p1a: TheMoreYouKnow|U-turn|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-crit|p2a: Slowbro -|-damage|p2a: Slowbro|177/394 tox -|c| Amber Torrey|your just a big liar for 3 years -|c|★Crime♥|oh guys wait -|c|★CHEF BOY4RDEEZNUTS|ooof lol -|c|★Crime♥|we still have mega slowbro -|choice|switch 6| -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|596/642 -| -|-damage|p2a: Slowbro|129/394 tox|[from] psn -|turn|570 -|c| Amber Torrey|because calcs don't lie -|c|★CHEF BOY4RDEEZNUTS|hes posioned doe -|c|★CHEF BOY4RDEEZNUTS|poisoned -|c|★Crime♥|we will heal slowbro -|choice|move 1|switch 4 -| -|switch|p2a: Cobalion|Cobalion|235/386 -|-damage|p2a: Cobalion|223/386|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|123/386 -| -|turn|571 -|c|★Crime♥|dont worry -|c| lollity|can he just jkeep switching out with reggenerator -|c|★Crime♥|i have a hidden move -|c| lollity|to heal to full -|c|★CHEF BOY4RDEEZNUTS|not when hes mega -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|572 -|choice|move 2|move 4 -| -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -|cant|p2a: Cobalion|slp -| -|turn|573 -|choice|move 2|move 4 -| -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -|cant|p2a: Cobalion|slp -| -|turn|574 -|c| Amber Torrey|I think there needs to be a sp.atk verson of foul play -|c| Amber Torrey|but fairy typing -|c|★CHEF BOY4RDEEZNUTS|that would be dope -|choice|move 3|move 2 -| -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Iron Head|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|244/301 -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Cobalion -|-status|p2a: Cobalion|brn -| -|-damage|p2a: Cobalion|338/386 brn|[from] brn -|turn|575 -|c|★CHEF BOY4RDEEZNUTS|YUSSSSSS -|c|★CHEF BOY4RDEEZNUTS|until he rests -|choice|move 2|switch 3 -| -|switch|p2a: Chansey|Chansey, F|373/642 -|-damage|p2a: Chansey|293/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|576 -|c|★Crime♥|it has rest remember -|choice|move 2|switch 3 -| -|switch|p2a: Cobalion|Cobalion|338/386 brn -|-damage|p2a: Cobalion|326/386 brn|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-damage|p2a: Cobalion|278/386 brn|[from] brn -|turn|577 -|choice|move 1|switch 3 -| -|switch|p2a: Chansey|Chansey, F|293/642 -|-damage|p2a: Chansey|213/642|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Chansey -|-immune|p2a: Chansey|[msg] -| -|turn|578 -|c|★Crime♥|tricking you a bit -|choice|move 3|move 4 -| -|move|p2a: Chansey|Wish|p2a: Chansey -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|133/642 brn|[from] brn -|turn|579 -|c|★CHEF BOY4RDEEZNUTS|no moar wishes -|choice|move 2|move 1 -| -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|-heal|p2a: Chansey|454/642 brn|[from] move: Wish|[wisher] Chansey -|-damage|p2a: Chansey|374/642 brn|[from] brn -|turn|580 -|choice|move 4|switch 2 -| -|switch|p2a: Florges|Florges, F|297/360 -|-damage|p2a: Florges|252/360|[from] Stealth Rock -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|turn|581 -|c| Amber Torrey|hmmm no toxic on chansey? -|c|★Crime♥|i do -|c|★CHEF BOY4RDEEZNUTS|same -|c|★CHEF BOY4RDEEZNUTS|magic bounce -|c|★CHEF BOY4RDEEZNUTS|tho -|c| Amber Torrey|right -|choice|switch 5|move 1 -| -|switch|p1a: Fatty|Chansey, F|596/642 -|move|p2a: Florges|Moonblast|p1a: Fatty -|-damage|p1a: Fatty|538/642 -|-unboost|p1a: Fatty|spa|1 -| -|turn|582 -|c| Amber Torrey|forgot sableye in general is a dbag -|c|★Crime♥|omg -|c|★Crime♥|600 turns -|c|★Crime♥|we will made it -|c|★CHEF BOY4RDEEZNUTS|oh no not my sp attack lol -|choice|move 3|switch 3 -| -|switch|p2a: Cobalion|Cobalion|278/386 brn -|-damage|p2a: Cobalion|266/386 brn|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|-damage|p2a: Cobalion|218/386 brn|[from] brn -|turn|583 -|choice|switch 2|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|584 -|choice|move 3|move 4 -| -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -|cant|p2a: Cobalion|slp -| -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|585 -|choice|move 4|move 4 -| -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-singleturn|p1a: Annoying AF|Protect -|cant|p2a: Cobalion|slp -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|586 -|c| Amber Torrey|ah the typiical gliscor set sub,protect,toxic,equake -|choice|move 2|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|334/334 -|-damage|p2a: Skarmory|293/334|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|587 -|c| Amber Torrey|why toxic? -|c|★CHEF BOY4RDEEZNUTS|i love stalling rotom w with it -|c| Amber Torrey|cabolion is steel typing to -|c|★CHEF BOY4RDEEZNUTS|pp bro -|c|★CHEF BOY4RDEEZNUTS|least useful more for him rn -|c|★CHEF BOY4RDEEZNUTS|move -|choice|switch 6|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -| -|turn|588 -|c| Amber Torrey|hmmm you do have 3 steel types kinda makes gliscor useless -|c| Amber Torrey|and a skarmory for his equakes -|c|★Crime♥|we are battling for 3 hours.. -|c|★Crime♥|i want to smoke -|choice|move 3|move 2 -| -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Iron Head|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|364/403 -|move|p1a: TheMoreYouKnow|U-turn|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|364/386 -|c|★CHEF BOY4RDEEZNUTS|3 hours oh my lol -|choice|switch 5| -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|turn|589 -|c| Amber Torrey|This is why I think tournament rules need to be put in the game -|choice|switch 6|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|301/352 tox -| -|-heal|p1a: Annoying AF|345/352 tox|[from] ability: Poison Heal -|turn|590 -|c| Amber Torrey|after 75 turns both teams both auto lose -|c|★CHEF BOY4RDEEZNUTS|someone on AG awhile back was using 6 klefkis -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|lasted probs as long as this battle -|choice|switch 6|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Heatran|Heatran, F, shiny|303/386 par -|-damage|p2a: Heatran|255/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|279/386 par|[from] item: Leftovers -|turn|591 -|c|★Crime♥|1 bisharp -|c|★Crime♥|and its over -|c|★CHEF BOY4RDEEZNUTS|with all the full paras -|choice|switch 6|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|345/352 tox -|move|p2a: Heatran|Lava Plume|p1a: Annoying AF -|-damage|p1a: Annoying AF|209/352 tox -| -|-heal|p2a: Heatran|303/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|253/352 tox|[from] ability: Poison Heal -|turn|592 -|choice|move 1|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|260/394 tox -|-damage|p2a: Slowbro|211/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Slowbro -|-damage|p2a: Slowbro|138/394 tox -| -|-heal|p1a: Annoying AF|297/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|114/394 tox|[from] psn -|turn|593 -|choice|switch 3|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Skarmory|Skarmory, F|293/334 -|-damage|p2a: Skarmory|252/334|[from] Stealth Rock -| -|turn|594 -|c| Amber Torrey|was that the last equake? -|choice|move 1|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|245/394 tox -|-damage|p2a: Slowbro|196/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Scald|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|146/394 tox -| -|-damage|p2a: Slowbro|122/394 tox|[from] psn -|turn|595 -|c|★Crime♥|1 left -|c|★CHEF BOY4RDEEZNUTS|1 more left -|c|★CHEF BOY4RDEEZNUTS|last scald doe -|choice|move 2|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|252/334 -|-damage|p2a: Skarmory|211/334|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Skarmory -|-immune|p2a: Skarmory|[msg] -| -|turn|596 -|choice|switch 3|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|297/352 tox -|switch|p2a: Slowbro|Slowbro, F|253/394 tox -|-damage|p2a: Slowbro|204/394 tox|[from] Stealth Rock -| -|-heal|p1a: Annoying AF|341/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|180/394 tox|[from] psn -|turn|597 -|choice|switch 3|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Skarmory|Skarmory, F|211/334 -|-damage|p2a: Skarmory|170/334|[from] Stealth Rock -| -|turn|598 -|choice|move 3|move 1 -| -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Skarmory -|-damage|p2a: Skarmory|152/334 -|move|p2a: Skarmory|Brave Bird|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|195/363 -|-damage|p2a: Skarmory|97/334|[from] recoil|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|217/363|[from] item: Black Sludge -|turn|599 -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|264/334 -| -|turn|600 -|choice|switch 2|switch 6 -| -|switch|p2a: Cobalion|Cobalion|364/386 -|-damage|p2a: Cobalion|352/386|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|538/642 -| -|turn|601 -|c|★Crime♥|omg 600+ -|c|★Crime♥|im gonna put it in lobby chat -|c|★CHEF BOY4RDEEZNUTS|lol -|c| tuxedo_cat|...Jesus Chroist people! It's still going? -|c| Amber Torrey|hmm so defense is higher -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|and no kills....lol -|choice|switch 3|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|341/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|284/352 tox -| -|-heal|p1a: Annoying AF|328/352 tox|[from] ability: Poison Heal -|turn|602 -|c| Amber Torrey|meh just two stall teams fighting each other -|choice|move 2|move 2 -| -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|277/352 tox -|move|p1a: Annoying AF|Toxic|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|-heal|p1a: Annoying AF|321/352 tox|[from] ability: Poison Heal -|turn|603 -|choice|move 3|move 2 -| -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|269/352 tox -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|181/352 tox -| -|-heal|p1a: Annoying AF|225/352 tox|[from] ability: Poison Heal -|turn|604 -|choice|move 4|move 2 -| -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-singleturn|p1a: Annoying AF|Protect -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-activate|p1a: Annoying AF|Protect -| -|-heal|p1a: Annoying AF|269/352 tox|[from] ability: Poison Heal -|turn|605 -|c| Amber Torrey|darn -|c| Amber Torrey|you need some iron head flinches -|choice|move 1|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|311/394 tox -|-damage|p2a: Slowbro|262/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Earthquake|p2a: Slowbro -|-damage|p2a: Slowbro|190/394 tox -| -|-heal|p1a: Annoying AF|313/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|166/394 tox|[from] psn -|turn|606 -|c| Santeyan|what the actual f-ck is this game -|c| Amber Torrey|a battle between two full stall teams -|choice|move 2|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|303/386 par -|-damage|p2a: Heatran|255/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Heatran -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|279/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|607 -|c| Santeyan|how many hours has it been? -|c|★Crime♥|no earthquakes -|c|★Crime♥|XD -|c|★CHEF BOY4RDEEZNUTS|no eqs :( -|c|★Crime♥|3 hours and 20 mins+ -|choice|switch 6|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|217/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|239/363|[from] item: Black Sludge -|-heal|p2a: Heatran|303/386 par|[from] item: Leftovers -|turn|608 -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|352/386 -|-damage|p2a: Cobalion|340/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|337/386 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|261/363|[from] item: Black Sludge -|turn|609 -|c| Amber Torrey|I made a pure competitive team irl for pokemon ORAS in that team -|c|★Crime♥|luckily -|c| Amber Torrey|geez -|c| General Zelgius|wow -|c|★Crime♥|i still have a defog -|c| General Zelgius|nothing died? -|c|★CHEF BOY4RDEEZNUTS|i have 5 rocks lol -|choice|switch 6|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|297/394 tox -|-damage|p2a: Slowbro|248/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-damage|p2a: Slowbro|224/394 tox|[from] psn -|turn|610 -|c|★Crime♥|5 rocks -|c|★Crime♥|lel -|choice|move 3|switch 4 -| -|switch|p2a: Cobalion|Cobalion|337/386 -|-damage|p2a: Cobalion|325/386|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -| -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|611 -|c| Amber Torrey|If this does come down to no pp and swap stalling alone -|choice|move 2|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|355/394 tox -|-damage|p2a: Slowbro|306/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Slowbro -|-fail|p2a: Slowbro|tox -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|282/394 tox|[from] psn -|turn|612 -|c| Amber Torrey|i will call down a higher up to end this -|c| Juggerton|lol -|c|★CHEF BOY4RDEEZNUTS|i have rocks on the field at least -|c|★Crime♥|lol -|c| lollity|jesus -|choice|switch 6|switch 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|261/363 -|switch|p2a: Cobalion|Cobalion|325/386 -|-damage|p2a: Cobalion|313/386|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|283/363|[from] item: Black Sludge -|turn|613 -|c| Amber Torrey|because it would no longer be a legit 600+ rounds game -|choice|switch 2|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|614 -|c| Amber Torrey|would be just two people swap stalling -|c|★Crime♥|it will be legit -|c| Amber Torrey|which anyone can do -|c|★Crime♥|till this game has finished -|choice|move 3|switch 4 -| -|switch|p2a: Cobalion|Cobalion|313/386 -|-damage|p2a: Cobalion|301/386|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Cobalion -|-status|p2a: Cobalion|brn -| -|-damage|p2a: Cobalion|253/386 brn|[from] brn -|turn|615 -|c| Santeyan|I saw a guy called I AM NOT STALLING set the record on showdown with a 402 turn battle -|c| Santeyan|his record got destroyed -|choice|move 1|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: I <3 Stall|Shadow Ball|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|159/394 tox -| -|-damage|p2a: Slowbro|135/394 tox|[from] psn -|turn|616 -|choice|move 3|switch 4 -| -|switch|p2a: Cobalion|Cobalion|253/386 brn -|-damage|p2a: Cobalion|241/386 brn|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Cobalion|[miss] -|-miss|p1a: I <3 Stall|p2a: Cobalion -| -|-damage|p2a: Cobalion|193/386 brn|[from] brn -|turn|617 -|c|★Crime♥|her* -|c| Amber Torrey|saw people with 2k plus round matches just turn stalling -|c| Santeyan|i have to go to school, but i want to watch this :'( -|c|★Crime♥|and thats me btw santeyan -|c|★Crime♥|my stalling skills got improved -|c|★Crime♥|xD -|c| Santeyan|nice :) -|choice|switch 5|move 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|364/403 -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|-heal|p1a: TheMoreYouKnow|389/403|[from] item: Leftovers -|turn|618 -|c| Santeyan|gtg, bye -|c|★Crime♥|bye -|c| Amber Torrey|so as soon as this turns into to a turn stall probably just gonna leave no longer legit at that point -|c|★CHEF BOY4RDEEZNUTS|2 rests left -|c|★Crime♥|rip rest -|choice|switch 2|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|283/363 -|cant|p2a: Cobalion|slp -| -|-heal|p1a: U Jelly Bruh?|305/363|[from] item: Black Sludge -|turn|619 -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|383/386 slp -|cant|p2a: Cobalion|slp -| -|-heal|p1a: U Jelly Bruh?|327/363|[from] item: Black Sludge -|turn|620 -|c|★CHEF BOY4RDEEZNUTS|1 percent -|c|★CHEF BOY4RDEEZNUTS|the power -|choice|switch 6|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|266/394 tox -|-damage|p2a: Slowbro|217/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-damage|p2a: Slowbro|193/394 tox|[from] psn -|turn|621 -|c|★Crime♥|im suprised it does 1% though -|choice|move 2|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|303/386 par -|-damage|p2a: Heatran|255/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Toxic|p2a: Heatran -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|279/386 par|[from] item: Leftovers -|turn|622 -|choice|move 2|move 3 -| -|move|p1a: Annoying AF|Toxic|p2a: Heatran -|-fail|p2a: Heatran -|move|p2a: Heatran|Stealth Rock|p1a: Annoying AF -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|303/386 par|[from] item: Leftovers -|turn|623 -|choice|switch 6|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|327/363 -|-damage|p1a: U Jelly Bruh?|282/363|[from] Stealth Rock -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|242/363 -|-status|p1a: U Jelly Bruh?|brn -| -|-heal|p1a: U Jelly Bruh?|264/363 brn|[from] item: Black Sludge -|-heal|p2a: Heatran|327/386 par|[from] item: Leftovers -|-damage|p1a: U Jelly Bruh?|219/363 brn|[from] brn -|turn|624 -|c|★Crime♥|yes burn -|c| Amber Torrey|woohoo burned -|c| lollity|jeez man -|choice|move 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|324/394 tox -|-damage|p2a: Slowbro|275/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|271/394 tox -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|241/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|196/363 brn|[from] brn -|-damage|p2a: Slowbro|247/394 tox|[from] psn -|turn|625 -|c| lollity|are you guys out of heal bells? -|c|★CHEF BOY4RDEEZNUTS|i got sum -|c|★Crime♥|i am -|choice|switch 3|switch 4 -| -|switch|p1a: Fatty|Chansey, F|538/642 -|switch|p2a: Cobalion|Cobalion|383/386 slp -|-damage|p2a: Cobalion|371/386 slp|[from] Stealth Rock -| -|turn|626 -|c|★Crime♥|1 left -|c|★Crime♥|heal bell -|c|★Crime♥|:P -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Cobalion|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|378/394 tox -|-damage|p2a: Slowbro|329/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|305/394 tox|[from] psn -|turn|627 -|choice|switch 5|switch 4 -| -|switch|p2a: Cobalion|Cobalion|371/386 -|-damage|p2a: Cobalion|359/386|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|538/642 -| -|turn|628 -|choice|switch 6|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|629 -|choice|switch 4|switch 4 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Cobalion|Cobalion|359/386 -|-damage|p2a: Cobalion|347/386|[from] Stealth Rock -| -|turn|630 -|c|★Crime♥|will we hit 700 -|choice|switch 2|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|327/386 par -|-damage|p2a: Heatran|279/386 par|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|389/403 -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|-heal|p2a: Heatran|303/386 par|[from] item: Leftovers -|turn|631 -|c| Amber Torrey|probably i mean your just switch stalling... -|choice|move 2|switch 5 -| -|switch|p2a: Cobalion|Cobalion|347/386 -|-damage|p2a: Cobalion|335/386|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-status|p2a: Cobalion|par -| -|turn|632 -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|255/394 tox -|c|★Crime♥|well we have to -|choice|switch 2| -| -|switch|p1a: Redbull|Clefable, M|393/393 -| -|-damage|p2a: Slowbro|231/394 tox|[from] psn -|turn|633 -|c|★Crime♥|dont we -|choice|move 1|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|303/386 par -|-damage|p2a: Heatran|255/386 par|[from] Stealth Rock -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|234/386 par -| -|-heal|p2a: Heatran|258/386 par|[from] item: Leftovers -|turn|634 -|choice|switch 6|move 3 -| -|switch|p1a: Fatty|Chansey, F|538/642 -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|282/386 par|[from] item: Leftovers -|turn|635 -|choice|move 4|move 4 -| -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|306/386 par|[from] item: Leftovers -|turn|636 -|c| Amber Torrey|you don't "have" to do anything -|c| Amber Torrey|your choose to -|c| Amber Torrey|you* -|choice|move 1|move 4 -| -|move|p1a: Fatty|Seismic Toss|p2a: Heatran -|-damage|p2a: Heatran|206/386 par -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|230/386 par|[from] item: Leftovers -|turn|637 -|choice|move 1|switch 4 -| -|switch|p2a: Cobalion|Cobalion|335/386 par -|-damage|p2a: Cobalion|323/386 par|[from] Stealth Rock -|move|p1a: Fatty|Seismic Toss|p2a: Cobalion -|-damage|p2a: Cobalion|223/386 par -| -|turn|638 -|choice|switch 4|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 -|-damage|p1a: Annoying AF|308/352|[from] Stealth Rock -|switch|p2a: Slowbro|Slowbro, F|362/394 tox -|-damage|p2a: Slowbro|313/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|289/394 tox|[from] psn -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|639 -|c|★Crime♥|out of Seis -|choice|move 4|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|230/386 par -|-damage|p2a: Heatran|182/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p2a: Heatran|206/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|640 -|choice|move 3|move 4 -| -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -|move|p2a: Heatran|Taunt|p1a: Annoying AF -|-start|p1a: Annoying AF|move: Taunt -| -|-heal|p2a: Heatran|230/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|641 -|c| Amber Torrey|hmm both opponents only have one physical attacker no wonder chansey has never died... -|c|★Crime♥|lol -|choice|move 1|move 3 -| -|-activate|p1a: Annoying AF|move: Struggle -|move|p1a: Annoying AF|Struggle|p2a: Heatran -|-damage|p2a: Heatran|201/386 par -|-damage|p1a: Annoying AF|220/352 tox|[from] recoil -|move|p2a: Heatran|Stealth Rock|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p2a: Heatran|225/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|264/352 tox|[from] ability: Poison Heal -|turn|642 -|choice|move 1|move 4 -| -|-activate|p1a: Annoying AF|move: Struggle -|move|p1a: Annoying AF|Struggle|p2a: Heatran -|-damage|p2a: Heatran|193/386 par -|-damage|p1a: Annoying AF|176/352 tox|[from] recoil -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|217/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|220/352 tox|[from] ability: Poison Heal -|turn|643 -|c| Amber Torrey|don't waste stealth rocks -|c|★CHEF BOY4RDEEZNUTS|struggle has no pp XD -|choice|move 1|move 2 -| -|-activate|p1a: Annoying AF|move: Struggle -|move|p1a: Annoying AF|Struggle|p2a: Heatran -|-damage|p2a: Heatran|184/386 par -|-damage|p1a: Annoying AF|132/352 tox|[from] recoil -|move|p2a: Heatran|Roar|p1a: Annoying AF -|drag|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|-damage|p1a: I <3 Stall|264/301|[from] Stealth Rock -| -|-heal|p2a: Heatran|208/386 par|[from] item: Leftovers -|turn|644 -|choice|move 4|move 4 -| -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|232/386 par|[from] item: Leftovers -|turn|645 -|choice|switch 4|move 1 -| -|switch|p1a: Fatty|Chansey, F|538/642 -|-damage|p1a: Fatty|458/642|[from] Stealth Rock -|move|p2a: Heatran|Lava Plume|p1a: Fatty -|-damage|p1a: Fatty|392/642 -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|646 -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|647 -|c|★Crime♥|700 turns pls -|c|★CHEF BOY4RDEEZNUTS|sleep pls -|c|★CHEF BOY4RDEEZNUTS|lol -|choice|move 2|move 1 -| -|move|p1a: Fatty|Toxic|p2a: Slowbro|[miss] -|-miss|p1a: Fatty|p2a: Slowbro -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|346/642 -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Fatty -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|648 -|choice|switch 3|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|196/363 -|-damage|p1a: U Jelly Bruh?|151/363|[from] Stealth Rock -|switch|p2a: Cobalion|Cobalion|223/386 par -|-damage|p2a: Cobalion|211/386 par|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|173/363|[from] item: Black Sludge -|turn|649 -|choice|move 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|337/394 tox -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|195/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|313/394 tox|[from] psn -|turn|650 -|choice|move 3|switch 5 -| -|switch|p2a: Cobalion|Cobalion|211/386 par -|-damage|p2a: Cobalion|199/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|188/386 par -|-ability|p2a: Cobalion|Justified|boost -|-boost|p2a: Cobalion|atk|1 -| -|-heal|p1a: U Jelly Bruh?|217/363|[from] item: Black Sludge -|turn|651 -|choice|switch 5|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|132/352 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Annoying AF|176/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|652 -|c| tuxedo_cat|... -|c| tuxedo_cat|Oh... -|c| tuxedo_cat|650 moves... -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|188/386 par -|-damage|p2a: Cobalion|176/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|220/352 tox|[from] ability: Poison Heal -|turn|653 -|c|★Crime♥|lol -|c| tuxedo_cat|What left is there? -|choice|move 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|264/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|654 -|c|★Crime♥|lmao -|c|★Crime♥|only sub and protect left -|c| tuxedo_cat|Yeesh. Slowbro still has a lot going. -|c|★Crime♥|useless pok -|c|★Crime♥|xD -|choice|switch 3|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|176/386 par -|-damage|p2a: Cobalion|164/386 par|[from] Stealth Rock -| -|turn|655 -|c|★CHEF BOY4RDEEZNUTS|it still walls cob -|choice|switch 3|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|264/352 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|656 -|choice|switch 5|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|217/363 -|switch|p2a: Cobalion|Cobalion|164/386 par -|-damage|p2a: Cobalion|152/386 par|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|239/363|[from] item: Black Sludge -|turn|657 -|choice|move 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-crit|p2a: Slowbro -|-damage|p2a: Slowbro|273/394 tox -| -|-heal|p1a: U Jelly Bruh?|261/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|249/394 tox|[from] psn -|turn|658 -|c|★Crime♥|crit mattered -|c|★CHEF BOY4RDEEZNUTS|switch after switch after switch -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|152/386 par -|-damage|p2a: Cobalion|140/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|137/386 par -| -|-heal|p1a: U Jelly Bruh?|283/363|[from] item: Black Sludge -|turn|659 -|choice|move 2|move 3 -| -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|-heal|p1a: U Jelly Bruh?|305/363|[from] item: Black Sludge -|turn|660 -|c|★Crime♥|+2 free turns -|c|★Crime♥|XD -|choice|switch 6|move 4 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|cant|p2a: Cobalion|slp -| -|turn|661 -|choice|move 4|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|256/386 par -|-damage|p2a: Heatran|208/386 par|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|232/386 par|[from] item: Leftovers -|turn|662 -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|198/386 par -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-heal|p2a: Heatran|222/386 par|[from] item: Leftovers -|turn|663 -|c|★Crime♥|if heatran had no leftovers -|c|★CHEF BOY4RDEEZNUTS|tell me about it... -|c|★Crime♥|it was 300 turns earlier already over -|choice|move 1|move 3 -| -|move|p1a: I <3 Stall|Shadow Ball|p2a: Heatran -|-damage|p2a: Heatran|153/386 par -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|177/386 par|[from] item: Leftovers -|turn|664 -|c|★Crime♥|lol -|choice|switch 6|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|305/363 -|cant|p2a: Heatran|par -| -|-heal|p1a: U Jelly Bruh?|327/363|[from] item: Black Sludge -|-heal|p2a: Heatran|201/386 par|[from] item: Leftovers -|turn|665 -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|371/386 slp -| -|-heal|p1a: U Jelly Bruh?|349/363|[from] item: Black Sludge -|turn|666 -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|368/386 slp -|cant|p2a: Cobalion|slp -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|667 -|c|★Crime♥|those turns -|c|★Crime♥|incredible -|choice|switch 2|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|380/394 tox -|-damage|p2a: Slowbro|331/394 tox|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-damage|p2a: Slowbro|307/394 tox|[from] psn -|turn|668 -|c|★Crime♥|might smoke outside of my window -|c|★Crime♥|lol -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|368/386 slp -|-damage|p2a: Cobalion|356/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Cobalion -|-fail|p2a: Cobalion -| -|turn|669 -|c|★CHEF BOY4RDEEZNUTS|whens the last time you attacked -|choice|move 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|255/394 tox -|choice|switch 2| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|-damage|p2a: Slowbro|231/394 tox|[from] psn -|turn|670 -|c|★Crime♥|the toxic doesnt matter that much on my slowbro -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|356/386 slp -|-damage|p2a: Cobalion|344/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|341/386 slp -| -|turn|671 -|c|★Crime♥|we are the best stallers out there -|c|★Crime♥|:) -|choice|switch 5|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|362/394 tox -|-damage|p2a: Slowbro|313/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|308/352 tox -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|289/394 tox|[from] psn -|turn|672 -|choice|switch 5|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Cobalion|Cobalion|341/386 slp -|-damage|p2a: Cobalion|329/386 slp|[from] Stealth Rock -| -|turn|673 -|c|★CHEF BOY4RDEEZNUTS|if we both stopped switching it would go faster -|choice|move 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-crit|p2a: Slowbro -|-damage|p2a: Slowbro|271/394 tox -| -|-damage|p2a: Slowbro|247/394 tox|[from] psn -|turn|674 -|c|★Crime♥|but we have to switch -|c|★CHEF BOY4RDEEZNUTS|you have scalds -|c|★Crime♥|its a part of the stall -|c|★Crime♥|ohh i rather safe them -|c|★Crime♥|for later -|c|★Crime♥|dont have many left -|c|★Crime♥|XD -|c|★CHEF BOY4RDEEZNUTS|how much later jesus christ -|choice|switch 3|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|329/386 slp -|-damage|p2a: Cobalion|317/386 slp|[from] Stealth Rock -| -|turn|675 -|c|★Crime♥|lol -|c| lollity|its still fucking going -|c|★Crime♥|the game didnt even start yet -|c| lollity|it sbeen over an hour -|c|★CHEF BOY4RDEEZNUTS|i want to go to bed so bad -|choice|switch 2|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|378/394 tox -|-damage|p2a: Slowbro|329/394 tox|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-damage|p2a: Slowbro|305/394 tox|[from] psn -|turn|676 -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|pls attack me -|choice|move 1|switch 5 -| -|switch|p2a: Cobalion|Cobalion|317/386 slp -|-damage|p2a: Cobalion|305/386 slp|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|270/386 slp -| -|turn|677 -|c|★Crime♥|no -|c|★Crime♥|you have heal bells -|c|★CHEF BOY4RDEEZNUTS|i have a heal bell -|choice|move 3|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|201/386 par -|-damage|p2a: Heatran|153/386 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|U-turn|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|139/386 par -|c|★CHEF BOY4RDEEZNUTS|im switching but im at least still using some of my pp -|choice|switch 3| -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|678 -|choice|move 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 tox -| -|-damage|p2a: Slowbro|277/394 tox|[from] psn -|turn|679 -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|270/386 slp -|-damage|p2a: Cobalion|258/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|255/386 slp -| -|turn|680 -|c|★Crime♥|0% -|c|★Crime♥|dmg -|c|★Crime♥|xD -|choice|switch 5|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|681 -|c|★CHEF BOY4RDEEZNUTS|scald me -|c|★CHEF BOY4RDEEZNUTS|do it -|choice|switch 2|move 1 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Slowbro|Scald|p1a: Fatty -|-damage|p1a: Fatty|593/642 -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|682 -|c|★CHEF BOY4RDEEZNUTS|yay lol -|c|★Crime♥|i wont use it -|choice|move 2|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|163/386 par -|-damage|p2a: Heatran|115/386 par|[from] Stealth Rock -|move|p1a: Fatty|Toxic|p2a: Heatran -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|139/386 par|[from] item: Leftovers -|turn|683 -|c|★CHEF BOY4RDEEZNUTS|god i hate those lefties -|c|★Crime♥|haha -|choice|switch 5|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|684 -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|255/386 slp -|-damage|p2a: Cobalion|243/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|240/386 slp -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|turn|685 -|choice|switch 2|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: Redbull|Clefable, M|393/393 -| -|turn|686 -|choice|move 2|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|163/386 par -|-damage|p2a: Heatran|115/386 par|[from] Stealth Rock -|move|p1a: Redbull|Flamethrower|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|139/386 par|[from] item: Leftovers -|turn|687 -|choice|switch 2|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|688 -|choice|move 3|switch 5 -| -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|299/394 tox -| -|-damage|p2a: Slowbro|275/394 tox|[from] psn -|turn|689 -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|240/386 -|-damage|p2a: Cobalion|228/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|225/386 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|turn|690 -|c|★CHEF BOY4RDEEZNUTS|attack me -|c|★Crime♥|no ty -|c|★Crime♥|im going to have a smoke -|c|★Crime♥|what about that -|c|★Crime♥|dont i deserve one? -|c|★Crime♥|lol -|c|★Crime♥|oh my god -|c|★Crime♥|4 hours battling -|c|★Crime♥|10 more turns -|c|★CHEF BOY4RDEEZNUTS|i wanna go to bed -|c|★Crime♥|!! -|choice|switch 4|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Roar|p1a: Annoying AF -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|691 -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 tox -| -|-damage|p2a: Slowbro|277/394 tox|[from] psn -|turn|692 -|c|★CHEF BOY4RDEEZNUTS|i need goth back -|choice|switch 3|switch 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Cobalion|Cobalion|225/386 -|-damage|p2a: Cobalion|213/386|[from] Stealth Rock -| -|turn|693 -|c|★Crime♥|goth? -|c|★CHEF BOY4RDEEZNUTS|gothitelle -|c|★CHEF BOY4RDEEZNUTS|shadow tag -|c|★CHEF BOY4RDEEZNUTS|stops switches -|c|★Crime♥|lol -|choice|move 4|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|163/386 par -|-damage|p2a: Heatran|115/386 par|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Heatran -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|139/386 par|[from] item: Leftovers -|turn|694 -|c|★Crime♥|that pokemon counters me yes -|c|★Crime♥|hope i get a par -|c|★Crime♥|lol -|choice|move 1|move 1 -| -|move|p1a: TheMoreYouKnow|Iron Head|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|115/386 par -|cant|p2a: Heatran|flinch -| -|-heal|p2a: Heatran|139/386 par|[from] item: Leftovers -|turn|695 -|choice|switch 3|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Lava Plume|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|327/363 -| -|-heal|p1a: U Jelly Bruh?|349/363|[from] item: Black Sludge -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|696 -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|301/394 tox -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|277/394 tox|[from] psn -|turn|697 -|choice|switch 2|switch 5 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Cobalion|Cobalion|213/386 -|-damage|p2a: Cobalion|201/386|[from] Stealth Rock -| -|turn|698 -|choice|move 3|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|163/386 par -|-damage|p2a: Heatran|115/386 par|[from] Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p2a: Heatran|139/386 par|[from] item: Leftovers -|turn|699 -|c|★Crime♥|omg -|c|★Crime♥|1 more turn -|c|★Crime♥|700!!!! -|c|★Crime♥|OMG -|choice|switch 5|move 3 -| -|switch|p1a: Fatty|Chansey, F|593/642 -|cant|p2a: Heatran|par -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Redbull -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|700 -|choice|switch 2|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|187/386 par|[from] item: Leftovers -|turn|701 -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|201/386 -|-damage|p2a: Cobalion|189/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|186/386 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|turn|702 -|c|★CHEF BOY4RDEEZNUTS|whos still alive in here -|c|★Crime♥|not me -|c| LifeisDANK|JESUS -|c|★Crime♥|why timer :'( -|c|★Crime♥|after 4 hours -|c|★CHEF BOY4RDEEZNUTS|yeah 4 hours i wanna sleep -|c| lollity|im here -|c| lollity|mannn -|choice|move 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|293/394 tox -| -|-damage|p2a: Slowbro|269/394 tox|[from] psn -|turn|703 -|c|★CHEF BOY4RDEEZNUTS|ive lost my patience -|c| lollity|y'all -|c|★Crime♥|pls put the timer off -|c|★Crime♥|i wanna smoke -|c| lollity|better hurry up -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|186/386 -|-damage|p2a: Cobalion|174/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|171/386 -| -|turn|704 -|c| lollity|700 turns jesus -|c|★Crime♥|lol -|c| LifeisDANK|i cant see what is happening HOW DID YOU GET 700 turns -|c| lollity|throug stall -|c| lollity|and all 12 pokemon are stll alive -|choice|switch 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|705 -|choice|switch 3|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Cobalion|Cobalion|171/386 -|-damage|p2a: Cobalion|159/386|[from] Stealth Rock -| -|turn|706 -|c|★CHEF BOY4RDEEZNUTS|attack me pussy -|choice|switch 6|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|707 -|c|★Crime♥|lol -|choice|move 3|move 1 -| -|move|p2a: Slowbro|Scald|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|214/301 -|-status|p1a: I <3 Stall|brn -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|-damage|p1a: I <3 Stall|177/301 brn|[from] brn -|turn|708 -|c|★Crime♥|when i have to yes.. -|c|★Crime♥|the right moments -|choice|switch 2|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|187/386 par -|-damage|p2a: Heatran|139/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|709 -|c|★CHEF BOY4RDEEZNUTS|you had a million right moments -|choice|switch 4|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p2a: Heatran|187/386 par|[from] item: Leftovers -|turn|710 -|c| LifeisDANK|how did this come to this -|c| Gaussfield|well -|c| Gaussfield|this should take a while huh -|c|★CHEF BOY4RDEEZNUTS|i basically cant attack -|c| LifeisDANK|oh lordy -|c|★Crime♥|you cant attack -|c|★Crime♥|bceause i out pp'd you -|c|★CHEF BOY4RDEEZNUTS|because youre a switch stally mother lover -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|295/394 tox -| -|-damage|p2a: Slowbro|271/394 tox|[from] psn -|turn|711 -|c|★Crime♥|i didnt switch stall -|c|★Crime♥|after 600+ i used to switch more -|c|★Crime♥|be honest -|c|★Crime♥|lol -|c| Gaussfield|does that slowbro have rgen? -|c| Gaussfield|regen* -|c| Amber Torrey|yes -|c|★Crime♥|yees -|c| Gaussfield|oh my god -|c| Gaussfield|this is amazing -|choice|switch 3|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|switch|p2a: Cobalion|Cobalion|159/386 -|-damage|p2a: Cobalion|147/386|[from] Stealth Rock -| -|turn|712 -|c| Amber Torrey|which makes him the ultimate switch staller -|c|★Crime♥|yes -|c|★Crime♥|slowbro wins -|c|★Crime♥|lol -|choice|switch 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|713 -|choice|move 3|move 3 -| -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Slowbro -|-supereffective|p2a: Slowbro -|-damage|p2a: Slowbro|275/394 tox -|move|p2a: Slowbro|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-damage|p2a: Slowbro|227/394 tox|[from] psn -|turn|714 -|c| LifeisDANK|ill watch this untill im tired i guess -|choice|move 2|switch 5 -| -|switch|p2a: Cobalion|Cobalion|147/386 -|-damage|p2a: Cobalion|135/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Cobalion -|-immune|p2a: Cobalion|[msg] -| -|turn|715 -|c| Gaussfield|i m m u n e -|c| Amber Torrey|i'm about to stop watching to much switch stalling not enough skill -|c|★Crime♥|not enough skill? -|c|★Crime♥|we are out of pp -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|no u are not -|c|★Crime♥|ofcourse we have to switch -|c| Amber Torrey|not my problem -|c|★CHEF BOY4RDEEZNUTS|you have like 6 scalds -|c| LifeisDANK|,':) -|choice|move 2|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|358/394 tox -|-damage|p2a: Slowbro|309/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Acid Spray|p2a: Slowbro -|-damage|p2a: Slowbro|261/394 tox -|-unboost|p2a: Slowbro|spd|2 -| -|-damage|p2a: Slowbro|237/394 tox|[from] psn -|turn|716 -|c|★Crime♥|like 6 scalds '' -|c|★CHEF BOY4RDEEZNUTS|4 -|choice|move 3|switch 5 -| -|switch|p2a: Cobalion|Cobalion|135/386 -|-damage|p2a: Cobalion|123/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|112/386 -|-ability|p2a: Cobalion|Justified|boost -|-boost|p2a: Cobalion|atk|1 -| -|turn|717 -|c|★Crime♥|4'' -|c| Gaussfield|dat attack boost -|c| LifeisDANK|gg -|choice|switch 3|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Cobalion|Rest|p2a: Cobalion -|-status|p2a: Cobalion|slp -|-heal|p2a: Cobalion|386/386 slp|[silent] -|-status|p2a: Cobalion|slp|[from] move: Rest -| -|turn|718 -|c| LifeisDANK|jk -|c| Amber Torrey|this is kinda why they shouldn't give every pokemon move a pp max... -|c| Gaussfield|REST -|c|★Crime♥|rest op -|c| Gaussfield|geezus -|c|★CHEF BOY4RDEEZNUTS|if he would attack he could take advantage of it -|c|★Crime♥|she* -|c|★Crime♥|lel -|c|★Crime♥|can we get to turn 800 -|c|★Crime♥|pls -|c| LifeisDANK|this is insane -|c|★Crime♥|im so excited -|c|★Crime♥|lol -|c| Amber Torrey|Kinda a love how it no longer is counting your guys turns -|choice|switch 5|move 2 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|cant|p2a: Cobalion|slp -| -|turn|719 -|choice|move 4|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|187/386 par -|-damage|p2a: Heatran|139/386 par|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|163/386 par|[from] item: Leftovers -|turn|720 -|c| LifeisDANK|the highest turns i ever got was around 150 on a tanky struggle battle -|c| Gaussfield|is this it -|c| Gaussfield|is this the redbull sweep -|choice|move 4|move 2 -| -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -|move|p2a: Heatran|Roar|p1a: Redbull -|drag|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|187/386 par|[from] item: Leftovers -|turn|721 -|c| LifeisDANK|kets see -|c| LifeisDANK|naw -|c| Gaussfield|nope -|choice|switch 4|move 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|211/386 par|[from] item: Leftovers -|turn|722 -|choice|switch 5|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|-damage|p1a: Annoying AF|308/352 tox|[from] Stealth Rock -|move|p2a: Heatran|Taunt|p1a: Annoying AF -|-start|p1a: Annoying AF|move: Taunt -| -|-heal|p2a: Heatran|235/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|723 -|c|★Crime♥|we are battling over 5 hours -|c|★Crime♥|lol -|c|★Crime♥|my eyessssssss -|c| LifeisDANK|5 HOURS -|c| Gaussfield|dude -|c|★CHEF BOY4RDEEZNUTS|I WANNA GO TO BED JESUS CHRIST -|c|★Crime♥|lol -|c| LifeisDANK|its 4am here -|c| LifeisDANK|how late is it there -|c| Gaussfield|i don't know if i should be impressed or concerned -|choice|move 1|move 4 -| -|-activate|p1a: Annoying AF|move: Struggle -|move|p1a: Annoying AF|Struggle|p2a: Heatran -|-damage|p2a: Heatran|202/386 par -|-damage|p1a: Annoying AF|264/352 tox|[from] recoil -|move|p2a: Heatran|Taunt|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p2a: Heatran|226/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|724 -|c|★CHEF BOY4RDEEZNUTS|u should be concerned -|choice|move 1|move 1 -| -|-activate|p1a: Annoying AF|move: Struggle -|move|p1a: Annoying AF|Struggle|p2a: Heatran -|-damage|p2a: Heatran|192/386 par -|-damage|p1a: Annoying AF|220/352 tox|[from] recoil -|move|p2a: Heatran|Lava Plume|p1a: Annoying AF -|-damage|p1a: Annoying AF|61/352 tox -| -|-heal|p2a: Heatran|216/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|105/352 tox|[from] ability: Poison Heal -|-end|p1a: Annoying AF|move: Taunt -|turn|725 -|c|★CHEF BOY4RDEEZNUTS|now he attacks... -|c| LifeisDANK|first kill?! -|choice|move 3|move 4 -| -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|17/352 tox -|move|p2a: Heatran|Taunt|p1a: Annoying AF -|-start|p1a: Annoying AF|move: Taunt -| -|-heal|p2a: Heatran|240/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|61/352 tox|[from] ability: Poison Heal -|turn|726 -|choice|switch 3|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|switch|p2a: Slowbro|Slowbro, F|368/394 tox -|-damage|p2a: Slowbro|319/394 tox|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|295/394 tox|[from] psn -|turn|727 -|c|★CHEF BOY4RDEEZNUTS|he could kill something if he attacked... -|c| Amber Torrey|I still think poison heal, heals for way to much -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|386/386 slp -|-damage|p2a: Cobalion|374/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|371/386 slp -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|362/363|[from] item: Black Sludge -|turn|728 -|c|★Crime♥|turn 800 -|c| Gaussfield|i think it heals for just right -|c|★Crime♥|here we go -|c|★Crime♥|<3 -|choice|switch 3|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|61/352 tox -|cant|p2a: Cobalion|slp -| -|-heal|p1a: Annoying AF|105/352 tox|[from] ability: Poison Heal -|turn|729 -|c| Amber Torrey|1/8th is way to much hp each turn -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|17/352 tox -| -|-heal|p1a: Annoying AF|61/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|730 -|c| LifeisDANK|its annoying tbh -|c| Gaussfield|you either have breloom, who doesn't quite have coverage -|c| Gaussfield|or gliscor, which is hard to get in the first place -|c| tuxedo_cat|No one's died yet? -|c|★CHEF BOY4RDEEZNUTS|its annoying when your opp refuses to use his pp -|choice|move 4|move 3 -| -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-singleturn|p1a: Annoying AF|Protect -|move|p2a: Slowbro|Toxic|p1a: Annoying AF -|-activate|p1a: Annoying AF|Protect -| -|-heal|p1a: Annoying AF|105/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|731 -|choice|move 3|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|240/386 par -|-damage|p2a: Heatran|192/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-fail|p1a: Annoying AF|move: Substitute -| -|-heal|p2a: Heatran|216/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|149/352 tox|[from] ability: Poison Heal -|turn|732 -|c| LifeisDANK|if only you had eq still -|c|★Crime♥|only'' -|c| Amber Torrey|wouldn't matter -|c| Amber Torrey|would switch to skarmory -|c|★Crime♥|XD -|c|★CHEF BOY4RDEEZNUTS|hed switch to skarm every time -|c|★Crime♥|or cobalionnnnnnn -|c|★Crime♥|cobalion op -|c| Gaussfield|there's like 1 place in all of gen vi where you can get immunity gligar -|c|★Crime♥|!data cobalion -|c|~|/data-pokemon Cobalion - -|c| Gaussfield|and sometimes it rains -|c| Gaussfield|so you can't use honey -|c| Gaussfield|or sweet scent -|choice|switch 5|move 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|240/386 par|[from] item: Leftovers -|turn|733 -|c|★Crime♥|use ur last heal bell -|choice|switch 3|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|362/363 -|-damage|p1a: U Jelly Bruh?|317/363|[from] Stealth Rock -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p1a: U Jelly Bruh?|339/363|[from] item: Black Sludge -|-heal|p2a: Heatran|264/386 par|[from] item: Leftovers -|turn|734 -|c|★Crime♥|and ill start attacking -|c| LifeisDANK|lel -|c|★Crime♥|im gonna stay with heatran -|c| LifeisDANK|negotiating moves -|c|★Crime♥|knock off me -|c|★Crime♥|ur last one -|c|★Crime♥|and you win the game -|c|★Crime♥|if not -|c|★Crime♥|you lose -|c|★CHEF BOY4RDEEZNUTS|eat my ass -|choice|move 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|338/394 tox -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|361/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|314/394 tox|[from] psn -|turn|735 -|c|★Crime♥|lol -|c|★Crime♥|you were so gentle to me 6 hours ago.. -|c|★Crime♥|now you are so rude to me -|c|★Crime♥|when we first met.. -|c|★Crime♥|well i understand -|c| LifeisDANK|Thats how a relationship goes m8 -|c|★Crime♥|this game is very exhausting -|choice|move 3|switch 4 -| -|switch|p2a: Cobalion|Cobalion|371/386 slp -|-damage|p2a: Cobalion|359/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Knock Off|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|348/386 slp -|-ability|p2a: Cobalion|Justified|boost -|-boost|p2a: Cobalion|atk|1 -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-end|p1a: U Jelly Bruh?|move: Taunt -|turn|736 -|c| Gaussfield|saturday was like 2 days ago -|c|★CHEF BOY4RDEEZNUTS|im cranky when i want sleepppppp -|c| BayFence|6 hours ? -|c|★Crime♥|there we go -|c| Gaussfield|now is not the time for eating ass -|c| LifeisDANK|welcome to hell -|c|★Crime♥|last knock off -|c|★Crime♥|rip -|c| Amber Torrey|iron heads gonna wreck ya up if he has pp still -|choice|switch 5|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|264/386 par -|-damage|p2a: Heatran|216/386 par|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|149/352 tox -| -|-heal|p2a: Heatran|240/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|193/352 tox|[from] ability: Poison Heal -|turn|737 -|choice|switch 5|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|264/386 par|[from] item: Leftovers -|turn|738 -|c| LifeisDANK|I just have to see how this ends -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|348/386 slp -|-damage|p2a: Cobalion|336/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|333/386 slp -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|turn|739 -|c| Crean|how is this still 6v6 -|c| Crean|smh -|c| EL20|http://play.pokemonshowdown.com/battle-ou-305002749 -|choice|switch 5|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|193/352 tox -| -|-heal|p1a: Annoying AF|237/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|740 -|c| EL20|lol fail -|c| Amber Torrey|sigh rapid spin has way to much pp... -|choice|move 4|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|264/386 par -|-damage|p2a: Heatran|216/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p2a: Heatran|240/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|281/352 tox|[from] ability: Poison Heal -|turn|741 -|choice|switch 5|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|264/386 par|[from] item: Leftovers -|turn|742 -|choice|move 4|move 3 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|259/386 par -|move|p2a: Heatran|Stealth Rock|p1a: U Jelly Bruh? -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|283/386 par|[from] item: Leftovers -|turn|743 -|c| Crean|i legit took like 6minutes to refresh -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|279/386 par -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|303/386 par|[from] item: Leftovers -|turn|744 -|c| LifeisDANK|stealth rock also has a lot of pp -|c| EL20|1000+? -|choice|switch 5|move 4 -| -|switch|p1a: Annoying AF|Gliscor, M|281/352 tox -|move|p2a: Heatran|Taunt|p1a: Annoying AF -|-start|p1a: Annoying AF|move: Taunt -| -|-heal|p2a: Heatran|327/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|325/352 tox|[from] ability: Poison Heal -|turn|745 -|c| Crean|that battle made my computer freeze -|c|★Crime♥|lol -|choice|move 1|move 3 -| -|-activate|p1a: Annoying AF|move: Struggle -|move|p1a: Annoying AF|Struggle|p2a: Heatran -|-damage|p2a: Heatran|293/386 par -|-damage|p1a: Annoying AF|237/352 tox|[from] recoil -|move|p2a: Heatran|Stealth Rock|p1a: Annoying AF -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|317/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|281/352 tox|[from] ability: Poison Heal -|turn|746 -|c| EL20|are y'all doing this on purpose? -|c|&xfix|Okay, the battle finally did load for me. -|c| LifeisDANK|the struggle is real -|c|★CHEF BOY4RDEEZNUTS|no -|c|&xfix|Do you want a tie? -|c| Amber Torrey|welp in the time this battle started -|c|★Crime♥|no please -|c|★Crime♥|im winning -|c|★CHEF BOY4RDEEZNUTS|yes pls -|c|★Crime♥|no -|c| EL20|no tie please, it will be a humiliation -|c| LifeisDANK|FIght -|c| Amber Torrey|found my 6 pokemon breed them iv'ed them ev'ed them and got them to lvl 50 -|c|★CHEF BOY4RDEEZNUTS|youre switch stalling -|c|&xfix|Hm, fair... -|c|★Crime♥|its still a fair legit battle -|c| BayFence|chef lost since he used his last knock off :/ -|c|★Crime♥|:) -|c| Amber Torrey|and this battle isn't over -|c| LifeisDANK|someone needs to get dunked on -|c|★Crime♥|thank you though admin! -|choice|switch 5|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|-heal|p2a: Heatran|341/386 par|[from] item: Leftovers -|turn|747 -|c|★Crime♥|the game will end soon -|c|★Crime♥|finally.. -|c| EL20|'soon' -|c|★Crime♥|after 6 hours -|c| EL20|someone place this on youtube -|c|&xfix|That was 6 hours? -|c|★Crime♥|yes -|c|★Crime♥|5-6 hours. -|c|★CHEF BOY4RDEEZNUTS|not 6 hours idk how long -|c| Amber Torrey|Wanna hear my amazing IRL competitive team? -|c|★Crime♥|without time stalling -|c| BayFence|na this battle is not 6 hours -|c|★Crime♥|we played 5-6 hours -|c|★Crime♥|it is -|c|★Crime♥|ask CHEF. -|c| BayFence|na -|c|&xfix|By the way, feel free to download a replay after this battle finishes, if you want it. -|c|★CHEF BOY4RDEEZNUTS|at least im still using my pp -|c| LifeisDANK|I accidently refreshed -|c| LifeisDANK|send help -|c| BayFence|one of my friend battle 500 rounds and was like 45 minutes -|c|&xfix|Replay server doesn't handle such long replays last time I checked. -|c|+SpaceBass|Holy shit -|c| EL20|sigh, just play -|choice|move 4|move 2 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|336/386 par -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: I <3 Stall|Sableye-Mega, M|177/301 brn -| -|-heal|p2a: Heatran|360/386 par|[from] item: Leftovers -|-damage|p1a: I <3 Stall|140/301 brn|[from] brn -|turn|748 -|c| EL20|♥ > <3 -|choice|move 4|move 1 -| -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|291/301 brn -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|384/386 par|[from] item: Leftovers -|-damage|p1a: I <3 Stall|254/301 brn|[from] brn -|turn|749 -|c| Amber Torrey|Pidgeot, Jynx, Sawk, Darmanitan, Arbok, Simipour -|choice|switch 3|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|750 -|c| Amber Torrey|best team -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|333/386 slp -|-damage|p2a: Cobalion|321/386 slp|[from] Stealth Rock -|move|p1a: Fatty|Heal Bell|p1a: Fatty -|-cureteam|p1a: Fatty|[from] move: HealBell -| -|turn|751 -|c| AtmaARMS|took me a while but i finally got it loaded -|c| EL20|he -|choice|switch 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|254/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|752 -|c| LifeisDANK|This is the most determined battle ive ever seen. i dont even have 5 hours straight to spare in a day -|c|★CHEF BOY4RDEEZNUTS|BECAUSE ITS NOTHING BUT SWITCHING -|c|★CHEF BOY4RDEEZNUTS|sigh..... -|choice|switch 2|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|340/363 -|move|p2a: Slowbro|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|362/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|753 -|c| Gaussfield|switching needs pp :V -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|321/386 slp -|-damage|p2a: Cobalion|309/386 slp|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|306/386 slp -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|turn|754 -|c| EL20|worst idea ever -|choice|switch 2|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|254/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|755 -|c| LifeisDANK|that would be odd -|c| LifeisDANK|like the pokeball broke -|c| EL20|:D -|c| iliketrains11|FUNBRO IS BACK -|c|★CHEF BOY4RDEEZNUTS|not fun if you ask me -|c| EL20|say hello to youtube -|c| LifeisDANK|Eyyyy -|c|★Crime♥|hi youtube im the best staller -|c|★Crime♥|just kidding -|c| BayFence|lol best staller? -|c|★CHEF BOY4RDEEZNUTS|cough switch staller cough -|c|★Crime♥|KIDDINGG. -|c| EL20|best? you're not winning -|c|★Crime♥|im bad -|c| LifeisDANK|Hi Youtube Welcome to Hell -|c|★CHEF BOY4RDEEZNUTS|thank you el20 -|choice|switch 3|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|384/386 par -|-damage|p2a: Heatran|336/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|-heal|p2a: Heatran|360/386 par|[from] item: Leftovers -|turn|756 -|c| tuxedo_cat|Could it be possible for the match to end as a draw? -|c| BayFence|no -|c| EL20|yes -|c| LifeisDANK|this must end -|c|★CHEF BOY4RDEEZNUTS|staff could end it though right -|c| LifeisDANK|in a conclusion -|c| Amber Torrey|Only if this was tournament rules -|c| BayFence|this battle is for crime -|choice|switch 3|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|254/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|384/386 par|[from] item: Leftovers -|turn|757 -|c|★Crime♥|yes its for me! -|c| Amber Torrey|where after 75 turns both teams auto lose -|c| EL20|nope -|c| Gaussfield|this battle is a crime -|c| BayFence|chef cannot win withouth that knock off he used :c -|c| LifeisDANK|thats a little short -|c| tuxedo_cat|We're 10 fold past that mark. -|c| EL20|new worst idea ever, amber -|choice|switch 3|switch 4 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|306/386 slp -|-damage|p2a: Cobalion|294/386 slp|[from] Stealth Rock -| -|turn|758 -|c|★Crime♥|only 3% dmg from rocks -|c|★Crime♥|lol -|c| Amber Torrey|Sorry but it's not an idea -|c|★CHEF BOY4RDEEZNUTS|attack me pussy -|c|★Crime♥|omg turn 800 soon! -|c| Amber Torrey|it already exists -|c|★Crime♥|go to sleep CHEF -|c|★CHEF BOY4RDEEZNUTS|at least you can still attack -|c| EL20|showdown's server gonna melt after this -|c| BayFence|i want to battle with u crime :3 -|c| Gaussfield|"soon" -|c|★Crime♥|i cant attack -|c|★Crime♥|i have 3 scald left -|c|★CHEF BOY4RDEEZNUTS|yes you can -|c| Amber Torrey|matches don't need to last more then 75 rounds -|choice|switch 5|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|281/352 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|-status|p1a: Annoying AF|tox|[from] item: Toxic Orb -|turn|759 -|c| EL20|stupid ^ -|c| LifeisDANK|im waiting for the struggle battle of the century -|c| Gaussfield|but here we are -|c| Gaussfield|at more than 750 rounds -|c| Amber Torrey|it's purposeful switch stalling at that point -|c|★Crime♥|at the late yes Amber -|c| EL20|protect sub FYW -|c| EL20|FTW -|choice|switch 5|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|294/386 slp -|-damage|p2a: Cobalion|282/386 slp|[from] Stealth Rock -| -|turn|760 -|c| tuxedo_cat|How about this. No more switching is allowed. -|c| EL20|this ^ -|c|★CHEF BOY4RDEEZNUTS|yes pls -|c| LifeisDANK|thats lame -|c| tuxedo_cat|You stick with what you've got. -|choice|switch 5|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|281/352 tox -| -|-heal|p1a: Annoying AF|325/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|761 -|c|★Crime♥|that would be unfair cause, we have different teams -|c| EL20|both failed -|c|★CHEF BOY4RDEEZNUTS|no regen then hehe -|c| LifeisDANK|throw those pokes on the rocks till they cant feel their feet -|choice|move 3|move 1 -| -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|237/352 tox -|move|p2a: Slowbro|Scald|p1a: Annoying AF -|-supereffective|p1a: Annoying AF -|-end|p1a: Annoying AF|Substitute -| -|-heal|p1a: Annoying AF|281/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|762 -|c| iliketrains11|what i dont get is -|c| iliketrains11|why hasnt any1 forfeited yet -|c| iliketrains11|and how does every1 still have so much pp -|c| LifeisDANK|DETERMINATION -|c|★CHEF BOY4RDEEZNUTS|pride -|c| EL20|why would any do so? -|c|★Crime♥|i used scald -|c|★Crime♥|happy? -|c|★CHEF BOY4RDEEZNUTS|i want staff to end this shit -|c| LifeisDANK|or did you ,':) -|c| EL20|if you are a loser, don't impose this on others, lol -|choice|move 4|switch 5 -| -|switch|p2a: Cobalion|Cobalion|282/386 slp -|-damage|p2a: Cobalion|270/386 slp|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|325/352 tox|[from] ability: Poison Heal -|turn|763 -|c|★Crime♥|but i dont want this to end.. -|c|★Crime♥|bceause im winning -|c|★Crime♥|and i worked 6 hours for it -|c|★CHEF BOY4RDEEZNUTS|no youre not youre fucking stupid -|c| EL20|you're winning based on? -|c| LifeisDANK|this is art -|c|★Crime♥|so this game is mine.. -|c|★CHEF BOY4RDEEZNUTS|and it hasnt been 6 hours -|c|★CHEF BOY4RDEEZNUTS|tell him el20 -|c|★Crime♥|well 5 hours then -|choice|switch 6|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Redbull|Clefable, M|393/393 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|764 -|c| BayFence|this battles is less than 5 hours -|c|★Crime♥|nope -|c| LifeisDANK|I'll write a novel on the great 10 year stall war -|c|★Crime♥|its not -|c| EL20|how is this even close to a redbull? -|c| BayFence|yes it is -|c|★Crime♥|no -|c|★Crime♥|its not. -|c|★CHEF BOY4RDEEZNUTS|redbull gives you wings -|c| EL20|LOL -|choice|switch 3|switch 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|254/301 -|switch|p2a: Heatran|Heatran, F, shiny|384/386 par -|-damage|p2a: Heatran|336/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|360/386 par|[from] item: Leftovers -|turn|765 -|c| BayFence|bro i was in a 500 battle before it was 45 minutes -|c| Amber Torrey|Both of you at the start Full stall team if a fun playstyle -|c| Amber Torrey|you both are toxic as hell -|c| Amber Torrey|is* -|c| BayFence|do not exaggerate -|c| EL20|sigh, if you love switching so much, just switch until rocks lapidate all your pokés -|c|★CHEF BOY4RDEEZNUTS|lapidate his pokes ^ -|choice|move 4|move 4 -| -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|384/386 par|[from] item: Leftovers -|turn|766 -|c| tuxedo_cat|Amber, of course they're toxic. -|c| tuxedo_cat|They're stallers. -|c| tuxedo_cat|It's what they use. -|c|★CHEF BOY4RDEEZNUTS|at least im still using my pp -|c|★Crime♥|cat wanna play me after this game? -|c|★Crime♥|same team -|c|★CHEF BOY4RDEEZNUTS|i doubt he wants to play -|c| LifeisDANK|wouldnt the rocks start to just soak into their feet till they are off the field. they've fallen so many times on them.. -|c|★Crime♥|you'd be playing for 8 hours. -|c| tuxedo_cat|...In random battles? -|c| BayFence|lets play with me -|c| BayFence|i am staller too -|c|★Crime♥|my coballion takes 3% dmg rocks -|c|★Crime♥|lol -|choice|move 2|switch 5 -| -|switch|p2a: Cobalion|Cobalion|270/386 slp -|-damage|p2a: Cobalion|258/386 slp|[from] Stealth Rock -|move|p1a: I <3 Stall|Calm Mind|p1a: I <3 Stall -|-boost|p1a: I <3 Stall|spa|1 -|-boost|p1a: I <3 Stall|spd|1 -| -|turn|767 -|c| tuxedo_cat|I lost my legendary bird team. -|c|★CHEF BOY4RDEEZNUTS|fucking attack me pussy ass bitch -|choice|move 3|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|384/386 par -|-damage|p2a: Heatran|336/386 par|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|360/386 par|[from] item: Leftovers -|turn|768 -|c| EL20|23 more turns until coba is dead then -|c|★Crime♥|lol -|c|★Crime♥|wow ur flaming.. -|c|★Crime♥|you was so gentle before -|c| LifeisDANK|it says that you love stall -|choice|switch 5|move 4 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|384/386 par|[from] item: Leftovers -|turn|769 -|c|★CHEF BOY4RDEEZNUTS|yeah i do -|c| EL20|at least someone take the initiative to kill ONE poké -|c| LifeisDANK|this is your present -|c|★CHEF BOY4RDEEZNUTS|but not switch stalll -|c| tuxedo_cat|You've got him! -|c| tuxedo_cat|Go for it! -|c| tuxedo_cat|Flame on! -|choice|switch 2|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|386/386 par|[from] item: Leftovers -|turn|770 -|c| tuxedo_cat|No! -|c| BayFence|che keep playing i think u can win -|c| BayFence|chef* -|c| qsns|why would you ever waste pp and roar -|c| qsns|stop being bad -|c| EL20|you are bad -|c| Gaussfield|we're all bad deep inside -|c| tuxedo_cat|qsns, they've gone on since before you were born. -|c| EL20|and bald outside -|c|★CHEF BOY4RDEEZNUTS|my only attacks are flamethrower, moonblast, and rapid spin -|c| LifeisDANK|im more than bad ,':) -|choice|switch 6|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|325/352 tox -|move|p2a: Heatran|Lava Plume|p1a: Annoying AF -|-damage|p1a: Annoying AF|93/352 tox -| -|-heal|p1a: Annoying AF|137/352 tox|[from] ability: Poison Heal -|turn|771 -|c| EL20|YES -|c| EL20|die -|choice|move 4|switch 4 -| -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|181/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|772 -|c| tuxedo_cat|Taunt! -|c| tuxedo_cat|Oh come on! -|c|+SpaceBass|This is actually my idea of hell -|c|★CHEF BOY4RDEEZNUTS|pussy -|c| anthonygmars|my dick > all of you -|c|★CHEF BOY4RDEEZNUTS|you could have gotten a kill -|c| LifeisDANK|stop tallkin about cats -|c|★Crime♥|you keep protecting me -|c|★Crime♥|and running me out of moves -|c|★Crime♥|you just want to win this -|c| EL20|anthonygmars, lol the 1v1 eternal loser. please leave -|c| Aranacana|Lets lag boiis -|c| anthonygmars|lol you're funny -|choice|switch 2|switch 4 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Heatran|Heatran, F, shiny|386/386 par -|-damage|p2a: Heatran|338/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|362/386 par|[from] item: Leftovers -|turn|773 -|c| LifeisDANK|thanks m8 -|c| anthonygmars|that's why i raped your ass -|c| LifeisDANK|yum -|c|★CHEF BOY4RDEEZNUTS|yucky -|c| anthonygmars|indeed -|c| EL20|LOL you never beat me -|c| LifeisDANK|thats beastiality -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|774 -|c| LifeisDANK|ass raping is cruel to donkeys -|c| anthonygmars|;) -|c| LifeisDANK|;0 -|choice|move 2|move 3 -| -|move|p1a: Fatty|Toxic|p2a: Slowbro -|-fail|p2a: Slowbro|tox -|move|p2a: Slowbro|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|602/642 tox|[from] psn -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|775 -|c| Rath111|i thought there was an endless battle clause -|c|★Crime♥|he was so happy he poisoned my slowbro 400 turns ago, look at him now -|c| EL20|it's not endless :3 -|c|★Crime♥|not happy about it anymore .. lol -|c| anthonygmars|EL20: how do i report people talking trash to me. they hurt my feelings because i'm a little bitch -|c| anthonygmars|i'm not the one who gets butthurt over a game -|c| EL20|whatever mate, dont' talk to me :3 -|choice|switch 2|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|181/352 tox -|switch|p2a: Cobalion|Cobalion|258/386 slp -|-damage|p2a: Cobalion|246/386 slp|[from] Stealth Rock -| -|-heal|p1a: Annoying AF|225/352 tox|[from] ability: Poison Heal -|turn|776 -|c| LifeisDANK|the SALT in this chat is amazing -|c|★Crime♥|yes -|choice|switch 6|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|362/386 par -|-damage|p2a: Heatran|314/386 par|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|338/386 par|[from] item: Leftovers -|turn|777 -|c| Rath111|why do people have to be douchebags on smogon -|c|★Crime♥|in my own room! -|c| anthonygmars|NaCl at it's finest -|c| Rath111|i don't understand -|c| LifeisDANK|its delicious -|c| Rath111|you'd think in pokemon you'd find less ass holes -|c|~Zarel|Rath111, there is an endless battle clause, but it only comes into effect when neither player has any way to end the game -|c|★Crime♥|777 -|c| LifeisDANK|nah m8 ppl are agressive about their battle monsters -|c|★CHEF BOY4RDEEZNUTS|zarel can you end this please -|c| EL20|no don't -|c|★Crime♥|no please -|c|★Crime♥|im winning. -|c| anthonygmars|my pocket monster is better than yours -|c| LifeisDANK|dont end the fun -|c|~Zarel|any of them could stop doubleswitching whenever they wanted, so Endless Battle Clause doesn't apply -|c| anthonygmars|no don't end it -|c| EL20|unless each player agrees to it, you have no right to ask for zarel to end it -|c|★Crime♥|this game is legit and fair! -|c|★CHEF BOY4RDEEZNUTS|he can still attack i cant basically -|c|★CHEF BOY4RDEEZNUTS|theres a difference -|c|★Crime♥|and i disagree to end it -|c|★Crime♥|thats ur problem CHEF -|c| EL20|so do i -|c| BayFence|bro u can win just keep plating -|c|★Crime♥|this is my set up team. -|c| LifeisDANK|We didnt start the fire -|choice|switch 2|move 2 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|move|p2a: Heatran|Roar|p1a: Fatty -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|-heal|p2a: Heatran|362/386 par|[from] item: Leftovers -|turn|778 -|choice|switch 4|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|779 -|c| EL20|welcome spectators, popcorn? -|c| charizard8888|**THE LONGEST BATTLE EVER** -|c|★Crime♥|lol -|c|★Crime♥|popcorn! -|choice|switch 6|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|225/352 tox -|switch|p2a: Heatran|Heatran, F, shiny|362/386 par -|-damage|p2a: Heatran|314/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|338/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|269/352 tox|[from] ability: Poison Heal -|turn|780 -|c| LifeisDANK|no need to add salt for this popcorn plenty around! -|c| Crean|it is tho -|c| anthonygmars|El20 i want to rape your ass again in 1v1 -|c| EL20|lel -|c| EL20|start by raping me first -|choice|switch 6|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|781 -|c| charizard8888|Hey it's Zarel -|c| EL20|then we'll talk about again -|c| LifeisDANK|if its consensual it aint rape -|c| anthonygmars|i rape asses, not humans -|c| anthonygmars|that's disgusting -|c| LifeisDANK|^ -|choice|switch 5|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Heatran|Heatran, F, shiny|338/386 par -|-damage|p2a: Heatran|290/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|314/386 par|[from] item: Leftovers -|turn|782 -|c| AtmaARMS|what is the current record for longest battle on PS? -|c| charizard8888|Hi Zarel -|c| EL20|my own record is ~200 -|c|★CHEF BOY4RDEEZNUTS|Zarel pls end my misery -|c| Crean|this battle could go up to 1000 tbh -|c| anthonygmars|NO -|c| anthonygmars|make it to 1000 -|choice|switch 5|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|783 -|c|~Zarel|CHEF BOY4RDEEZNUTS, the Forfeit button is right there if you'd like to end your misery -|c|@Former Hope|You could always forfeit if you want to end it because you think you can't win. -|c| Rath111|let this battle continue -|c|★Crime♥|1000 rip -|c| EL20|let's agree to end it on 1000 -|c| Rath111|no -|c|~Zarel|if you'd like, I can add the Forfeit button right here so it's easy to click :) -|c|★Crime♥|yes CHEF you could always forfeit -|c|★Crime♥|if you want to sleep -|c|★CHEF BOY4RDEEZNUTS|sigjh -|c| LifeisDANK|Sleep is for the week -|c| EL20|weak? -|c| LifeisDANK|nah -|c| LifeisDANK|week -|c| LifeisDANK|like week days -|c| Rath111|so much for loving stall -|choice|move 2|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|314/386 par -|-damage|p2a: Heatran|266/386 par|[from] Stealth Rock -|move|p1a: Fatty|Toxic|p2a: Heatran|[miss] -|-miss|p1a: Fatty|p2a: Heatran -| -|-heal|p2a: Heatran|290/386 par|[from] item: Leftovers -|turn|784 -|c| Rath111|lol -|c| EL20|go back to school -|c| Nass-T|How is zarel here -|c| anthonygmars|what number are you guys on the ladder anyways? Does a loss even count? LOL -|c|★Crime♥|CHEF is almost out of PP , i got this uys -|c|★Crime♥|guys* -|c| LifeisDANK|ayyy -|c| Orchestrite|they are around 1400s I think -|c|★Crime♥|he is trying to make me out of PP and win this with a little bit hope.. -|c|★CHEF BOY4RDEEZNUTS|i have at least 30 rapid spins bro -|c| charizard8888|DAMN -|c| MyHandSlipped|this is actual cancer -|choice|switch 5|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|785 -|c| EL20|let's place our bets on how many turns the match will last. i say 873 -|c| LifeisDANK|that poor slow bros feet -|c| Gaussfield|at this rate -|c| charizard8888|1500 -|c| Rath111|i say 1000 -|c| anthonygmars|43859042385904238520542 -|choice|switch 6|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|290/386 par -|-damage|p2a: Heatran|242/386 par|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|269/352 tox -| -|-heal|p2a: Heatran|266/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|313/352 tox|[from] ability: Poison Heal -|turn|786 -|c| Orchestrite|Hi myhandslipped -|c| charizard8888|^ -|c|+SpaceBass|mfw this is PS' main tier -|c|&xfix|Yeah, I saw stuff like this in BH. -|c|&xfix|But in OU, crazy. -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|290/386 par|[from] item: Leftovers -|turn|787 -|c|+SpaceBass|I've had some 200+ BH battles -|c|~Zarel|this has to be a record or something -|c|+SpaceBass|But this is madness -|c| Rath111|what's BH? -|c|★Crime♥|lol Zarel -|c|@Former Hope|Balanced Hackmons -|c|&xfix|Balanced Hackmons -|c| charizard8888|Balanced Hackmons -|c|★Crime♥|i think so too -|c| LifeisDANK|this must be the record -|c|@Former Hope|HA -|c| The Suicoon|How long has this game gone on for? -|c| Rath111|hackmons? -|c|@Former Hope|Basically any ability/moveset -|c| charizard8888|This match is getting viral -|c|★Crime♥|i wanna have the PS record.. -|c| Rath111|you mean turns or time? -|c| Rath111|because if it is time, I have no answer -|c| The Suicoon|time. -|choice|switch 5|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|788 -|c| LifeisDANK|years -|c| The Suicoon|eaux -|c| charizard8888|Everyone is watching it -|c|★Crime♥|haha im famous! -|c|+SpaceBass|How long has this actually been going timewise -|c| Orchestrite|What was the record for longest battle when endless battle was still a thing? -|c| LifeisDANK|Battle of the century dear folks -|c| charizard8888|^ -|choice|switch 2|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Heatran|Heatran, F, shiny|290/386 par -|-damage|p2a: Heatran|242/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|266/386 par|[from] item: Leftovers -|turn|789 -|c| anthonygmars|mayweather vs mayweather -|choice|switch 2|move 2 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|move|p2a: Heatran|Roar|p1a: Fatty -|drag|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|290/386 par|[from] item: Leftovers -|turn|790 -|c| anthonygmars|both running around the ring -|c| LifeisDANK|Ill tell generations of this -|c| Gaussfield|battle of the century is right -|c|@Former Hope|If endless battle was still a thing...endless? -|c| LifeisDANK|also nice joke anthony -|c| Gaussfield|i wouldn't be surprised if this lasted until january -|c| AtmaARMS|place your bets, ladies and gentlemen, place your bets! -|c| charizard8888|If i play for these many turns i would get 35 gg(s) -|c|★CHEF BOY4RDEEZNUTS|im leaving at 800 -|choice|switch 4|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|791 -|c| charizard8888|NO -|c|@Former Hope|That would mean no server restart until then so...yeah, that would be suprising -|c| charizard8888|NOONE IS LEAVING -|c| Rath111|DON"T LEAVE -|c| Rath111|I'LL PLAY FOR U -|c| LifeisDANK|My bet is 24 caterpillars -|c| Rath111|GIMME DAT SHIT -|c|★Crime♥|oke i need a smoke.. -|c|★Crime♥|been playing for 5 hours now -|c|★CHEF BOY4RDEEZNUTS|smokers are jokers -|c| charizard8888|Replace player B4 leaving -|c| Rath111|lmao -|choice|move 4|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|290/386 par -|-damage|p2a: Heatran|242/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-crit|p2a: Heatran -|-damage|p2a: Heatran|235/386 par -| -|-heal|p2a: Heatran|259/386 par|[from] item: Leftovers -|turn|792 -|c| anthonygmars|bruh i'll let you rape my ass -|c| anthonygmars|don't leave -|c| The Suicoon|how is this fun/ -|c|★Crime♥|crit mattered -|c| EL20|you should create a Rape room, anthony -|c|★CHEF BOY4RDEEZNUTS|its not -|c| EL20|so you can to yourself -|c| The Suicoon|what've you been doing all day? -|c| EL20|talk* -|choice|switch 5|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|793 -|c| Gaussfield|this -|c| Gaussfield|they've been doing this -|c| LifeisDANK|the classy way to switch out -|choice|switch 2|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|259/386 par -|-damage|p2a: Heatran|211/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|602/642 -| -|-heal|p2a: Heatran|235/386 par|[from] item: Leftovers -|turn|794 -|c| LifeisDANK|is to magic bounce a roar -|c| Amber Torrey|Crime -|choice|switch 2|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|259/386 par|[from] item: Leftovers -|turn|795 -|c|★Crime♥|what? -|c|★Crime♥|dont flame me please -|c|★Crime♥|im justb attling -|c|★Crime♥|just battling* -|c|★CHEF BOY4RDEEZNUTS|hahah -|c| Crean|we should make this battle a room imo -|c| Amber Torrey|Idc about what people say -|c|★Crime♥|omg 5 more turns -|c| Amber Torrey|i'll battle yeah after this -|choice|switch 2|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|796 -|c| MyHandSlipped|im gonna sleep now, if i wake up and the battle is still going im never playing again -|c| EL20|LOL -|c|★Crime♥|ahha -|c| LifeisDANK|800 HYPE -|choice|switch 4|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Heatran|Heatran, F, shiny|259/386 par -|-damage|p2a: Heatran|211/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|235/386 par|[from] item: Leftovers -|turn|797 -|c| Amber Torrey|I'll use my IRL team -|choice|switch 2|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|259/386 par|[from] item: Leftovers -|turn|798 -|c| EL20|this battle almost has more turns than One Piece chapters -|c|★Crime♥|lol -|choice|switch 4|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|799 -|c| Amber Torrey|And is as equally as fun... -|choice|switch 3|switch 4 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Cobalion|Cobalion|246/386 slp -|-damage|p2a: Cobalion|234/386 slp|[from] Stealth Rock -| -|turn|800 -|c| The Suicoon|isn't one piece in the 1100's? -|c| EL20|nope, 809 -|c| Amber Torrey|nah -|c| charizard8888|**800 TURNS** -|c|★Crime♥|omg 800 -|c| anthonygmars|continue! -|c| The Suicoon|i fell off of that ship long ago -|c| EL20|chef, crime, are you in the illuminati or what? -|c| PI EddyChomp|Lol -|c| LifeisDANK|WE are all reptilians -|c|★CHEF BOY4RDEEZNUTS|i want to leave but i also want crime to learn that he is not the best -|c| anthonygmars|stay and show him who's boss -|c|★Crime♥|lol -|c| LifeisDANK|Place your bets folks -|c|★Crime♥|im against the illuminati... -|choice|move 1|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|259/386 par -|-damage|p2a: Heatran|211/386 par|[from] Stealth Rock -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|189/386 par -| -|-heal|p2a: Heatran|213/386 par|[from] item: Leftovers -|turn|801 -|c| Amber Torrey|So you up to it Crime -|c| Amber Torrey|to fight me after this? -|c| anthonygmars|I believe in the ways of Trump -|c| LifeisDANK|you can only bet with half living caterpillars -|choice|move 1|move 2 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|193/386 par -|-unboost|p2a: Heatran|spa|1 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|217/386 par|[from] item: Leftovers -|turn|802 -|c| EL20|on another note, we have a 1420 rated player against a 1339 one. the match will end in a +/- 30+ -|c| LifeisDANK|so what will it be folks -|choice|switch 4|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Stealth Rock|p1a: I <3 Stall -|move|p1a: I <3 Stall|Stealth Rock|p2a: Heatran|[from]Magic Bounce -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|241/386 par|[from] item: Leftovers -|turn|803 -|c| charizard8888|Endless Battle Clause: Forcing endless battles is banned -|c| EL20|it's not endless you stupid za -|c| EL20|zard -|c|★Crime♥|exactly EL20 -|c| Amber Torrey|it kinda is -|c| LifeisDANK|its just long -|c|★Crime♥|<3 -|c| Rath111|el20 is mean -|c| LifeisDANK|long af -|c| EL20|i apologise then, rath -|c| TheCanadianWifier|wtf is goin on -|choice|switch 3|move 3 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|265/386 par|[from] item: Leftovers -|turn|804 -|c| The Suicoon|Who is the one stalling here though? -|c| EL20|you -|c| Amber Torrey|he can just keep switching to regen slowbro and that is a forced perma endless battle -|c| EL20|don't blame slowbro -|c|★CHEF BOY4RDEEZNUTS|crime more than me rn but he can still attack for the most part -|c|★Crime♥|!data mega slowbro -|c|~|/data-pokemon Slowbro-Mega - -|c|★Crime♥|he didnt evolve yet! -|choice|switch 3|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|289/386 par|[from] item: Leftovers -|turn|805 -|c| EL20|lel -|c|★CHEF BOY4RDEEZNUTS|regenerator spam -|c| LifeisDANK|I am gonna write a novel on the tale of the stall wars. much better than star wars -|choice|switch 3|move 3 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|313/386 par|[from] item: Leftovers -|turn|806 -|c| EL20|FINALLY -|c| TheCanadianWifier|OMG -|c| EL20|after 806 he gets rocks on -|choice|switch 5|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|switch|p2a: Cobalion|Cobalion|234/386 slp -|-damage|p2a: Cobalion|222/386 slp|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|turn|807 -|c| Orchestrite|forcing endless bans leppa berry with healing moves only -|c| TheCanadianWifier|is it over? -|c|~Zarel|The clause summary is just a summary; the basic idea is that forcing the opponent into a situation where they can't end the game is banned. All these people have to do is stop switching to progress the game. -|c| Amber Torrey|nah he will rapid spin them -|c|~Zarel|So Endless Battle Clause doesn't cover it -|c| PI EddyChomp|I guess it will be 1000 turns....? -|choice|move 4|move 2 -| -|-curestatus|p2a: Cobalion|slp -|move|p2a: Cobalion|Iron Head|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|281/363 -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|219/386 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -| -|-heal|p1a: U Jelly Bruh?|303/363|[from] item: Black Sludge -|turn|808 -|c| Crean|i hope so -|c| TheCanadianWifier|Zarel, I love you. Thanks for the hard work on the site ! -|c| EL20|sigh, can someone go for ONE kill? then you can stall how much you want -|c| LifeisDANK|that 0 damage -|c| Gaussfield|0% -|c|★Crime♥|0% -|c|★CHEF BOY4RDEEZNUTS|i cant kill anything -|c| Gaussfield|hooooooooly shit -|c| charizard8888|Let's all place bids on turns -|c| TheCanadianWifier|0% nice nice -|c| EL20|then kill one, crime -|choice|switch 6|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|313/352 tox -|move|p2a: Cobalion|Iron Head|p1a: Annoying AF -|-damage|p1a: Annoying AF|259/352 tox -| -|-heal|p1a: Annoying AF|303/352 tox|[from] ability: Poison Heal -|turn|809 -|c| EL20|at least one -|c| LifeisDANK|24 caterpillars to crime -|c| Rath111|1000 turns -|choice|move 4|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|347/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|810 -|c| breloomiswaifu|1100 turns -|choice|switch 5|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Heatran|Heatran, F, shiny|313/386 par -|-damage|p2a: Heatran|265/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|289/386 par|[from] item: Leftovers -|turn|811 -|c| EL20|RIP gliscor -|c| TheCanadianWifier|PREDICTION TIME: -|c| TheCanadianWifier|1289 turns -|c| Amber Torrey|He can't out stall him when he keeps switching to slowbro -|c|★Crime♥|will we hit 900 turns? -|c| PI EddyChomp|Wow -|c| Amber Torrey|who can't die -|c| EL20|gliscor: 5 moves remaining, chansey: 5 moves remaining -|choice|switch 3|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|812 -|c| Rath111|going to go play a league match -|c| Amber Torrey|unless crime literally wants him to -|c| Rath111|gonna see if this ends after it -|choice|switch 3|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|289/386 par -|-damage|p2a: Heatran|241/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|602/642 -| -|-heal|p2a: Heatran|265/386 par|[from] item: Leftovers -|turn|813 -|choice|switch 3|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|814 -|c| EL20|chef, you can add cheat codes with F5 -|c| Amber Torrey|Chef will probably just leave at some point because it's a endless battle -|choice|move 4|switch 4 -| -|switch|p2a: Cobalion|Cobalion|219/386 -|-damage|p2a: Cobalion|207/386|[from] Stealth Rock -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-fail|p1a: I <3 Stall -| -|turn|815 -|c|★Crime♥|haha CHEF wants to go bed. -|choice|switch 5|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|347/352 tox -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|816 -|c|★Crime♥|820 turns+ -|c| Amber Torrey|This is literally just a battle on who wants to keep going -|c| LifeisDANK|hype -|c| lordkaelros|Wtf is this -|c|★Crime♥|but we are almost out of PP -|c| Amber Torrey|because this is endless -|c| EL20|let's boycott this game and leave -|c|★Crime♥|evetually we will run out of PP -|c|★CHEF BOY4RDEEZNUTS|yeah thats not skill its patience and pride -|c| EL20|let they choose what they want to do -|c|~Zarel|I bet CHEF will stop <3ing Stall after this -|c|★Crime♥|we cant keep switching.. -|c| CoolSwag2015|o zarel joined here -|c|★Crime♥|haha -|c|★Crime♥|nice one Zarel -|choice|switch 3|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Heatran|Heatran, F, shiny|265/386 par -|-damage|p2a: Heatran|217/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|241/386 par|[from] item: Leftovers -|turn|817 -|c|~Zarel|I probably wasn't the first one to make that joke -|c| Amber Torrey|sense they both have switch -ins that can't die to struggle -|c| PI EddyChomp|Lol -|c|★Crime♥|maybe i should give heatran rest -|c|★Crime♥|lel -|c| Amber Torrey|gliscor with poison heal -|c| LifeisDANK|oml -|c|★CHEF BOY4RDEEZNUTS|i heart stall just not like this -|c|@Former Hope|Sounds antimeta -|c| sancnea|none dead till now? -|c| Amber Torrey|and slowbro with regen -|c| charizard8888|Everyone Share Replay when it gets over -|c| tuxedo_cat|You're right, you can't keep switching. Eventually, one of you will have a job or responsibility of some sort to attend to. -|c| jepler|WAIT WUT? -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Stealth Rock|p1a: I <3 Stall -|move|p1a: I <3 Stall|Stealth Rock|p2a: Heatran|[from]Magic Bounce -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|265/386 par|[from] item: Leftovers -|turn|818 -|c| lordkaelros|Wait, so nothing died yet? -|c| EL20|tuxedo, best response ever -|choice|switch 5|move 3 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|move|p2a: Heatran|Stealth Rock|p1a: Fatty -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p2a: Heatran|289/386 par|[from] item: Leftovers -|turn|819 -|c| CoolSwag2015|turn 818 -|c| LifeisDANK|What is this responsibility you talk abou -|c| CoolSwag2015|6-6 -|c| lordkaelros|wow -|c| CoolSwag2015|im loving this -|c| charizard8888|12 Pokemons -|c| jepler|817 turns and still 6 pokes alive for both okayers o_O? -|c| drowzee518|how did this even happen? -|choice|move 3|move 4 -| -|move|p1a: Fatty|Wish|p1a: Fatty -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|313/386 par|[from] item: Leftovers -|turn|820 -|c|~Zarel|charizard8888, no, don't, the replay server can't handle replays this big anyway, you'll just get an error message -|c| EL20|boo -|c| EL20|fix the server -|c|~Zarel|there's a Download Replay button now, though! for posterity and all that -|c| CoolSwag2015|ima screenshot this when its over -|c| TheCanadianWifier|wait really? -|c| farty56 2.0|nothing has died yet? -|c| Amber Torrey|the replay would be to big -|c| drowzee518|tbh whoever forfeits is the real winner here -|c| anthonygmars|kill it! -|c| TheCanadianWifier|whats the apprx. limit for the replay server? -|c| TheCanadianWifier|like 200 turns -|c| EL20|big? meh -|c| TheCanadianWifier|? -|c| drowzee518|move on with ur life -|c| Amber Torrey|this replay would be around 10 g's -|c| drowzee518|forl -|choice|switch 6|move 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|303/363 -|-damage|p1a: U Jelly Bruh?|258/363|[from] Stealth Rock -|move|p2a: Heatran|Taunt|p1a: U Jelly Bruh? -|-start|p1a: U Jelly Bruh?|move: Taunt -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] move: Wish|[wisher] Fatty -|-heal|p2a: Heatran|337/386 par|[from] item: Leftovers -|turn|821 -|c| Danscott|wtf is happening -|c| tuxedo_cat|I give up. -|c|~Zarel|I'll manually upload the replay to the replay server, the rest of you don't need to do anything -|c| sancnea|damn zarel inerfering -|c| drowzee518|rofl* -|c| tuxedo_cat|I've been here long enough. -|c| sancnea|thats new -|c| TheCanadianWifier|Thank you :] -|c| LifeisDANK|I believe in you you got this! -|c| charizard8888|Okay Zarel -|c|★CHEF BOY4RDEEZNUTS|he could make it a tie -|c| QuagGod|holy jesus -|c| tuxedo_cat|Ya both talentless hacks, and combatitive frauds. -|c| QuagGod|o_o -|c|★CHEF BOY4RDEEZNUTS|;) -|c| EL20|zarel is my God -|c| charizard8888|^ -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|332/386 par -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|356/386 par|[from] item: Leftovers -|turn|822 -|c|@Former Hope|"Come play Pokemon Showdown, enjoy 1000+ turn battles!" -|choice|switch 6|move 4 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|380/386 par|[from] item: Leftovers -|turn|823 -|c| lordkaelros|26 rapid spins left -|c| CoolSwag2015|looooool -|c| lordkaelros|woohoo -|choice|switch 5|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|824 -|c| EL20|seismic toss FTW -|c| sancnea|no knock off? -|c| charizard8888|3 wish 1 Toxic -|c|★Crime♥|hey guys -|c| jepler|I just went to see the credits and I came here to see Zarel wow what a stroke of luck -|c| QuagGod|zarel ur the homie :) -|c|~Zarel|TheCanadianWifier, I don't remember the limit, but I think it's around 200 turns? -|c| EL20|sigh, it's not funny anymore -|c|★Crime♥|we still have 2 wishes left -|c|★Crime♥|<3 -|c| drowzee518|how long ago did this battle start? -|c| Danscott|i'm nott seein anything -|c|★Crime♥|the game didnt start yet -|c| EL20|824 ago? -|c| Danscott|'-' -|c| Amber Torrey|Crime you didn't answer me will you fight me after this? -|c|%Quite Quiet|the solution is to not have a full stall team without a way to beat opposing stall -|c|★Crime♥|6 hours ago drowzee518 -|c| PI EddyChomp|See -|c| TheCanadianWifier|that's what I guessed, yea that seems reasonable. -|c|★Crime♥|no amber im very tired -|c|★Crime♥|lol -|c|★Crime♥|my back hurts -|c|★Crime♥|my eyes are falling out -|c| CoolSwag2015|LOL 6 hours -|c|★Crime♥|and i want to smoke -|c| lordkaelros|lmao -|c| Amber Torrey|Weakling -|c| drowzee518|this actually took 6 hours? -|c|+SpaceBass|The solution is to play DOU where stall is unviable :) -|c| lordkaelros|The dedication is real -|c| TheCanadianWifier|LOL 6 hours -|c|★Crime♥|yes i am a weakling staller -|c|@Former Hope|Or just play 1v1 -|c|★CHEF BOY4RDEEZNUTS|no idea how long its been -|c| EL20|think about the electricity you've been using, could have been used for something with more purpose -|c| drowzee518|i would take 2141 losses to not waste 5 hours -|c| jepler|Lesson Learned always have taunt for STALL TEAMS -|c| LifeisDANK|guys Im gonna build a mine here so i can harvest all this salt -|c| Amber Torrey|Stalling doesn't make you a weakling -|c| PI EddyChomp|.................................................................................................................................................................................................................................................... -|c| CoolSwag2015|i love this battle -|c|★CHEF BOY4RDEEZNUTS|weakling because he wont attack me -|c| Amber Torrey|being a weakling makes you a weakling -|c|★Crime♥|oke amber -|c| PI EddyChomp|Exactly -|c|★Crime♥|you're so much better than me -|c| i am having fun|hm 800 turns and 6-6 -|c| hey i'm pikachu|WHAT IS HAPPENING -|c| i am having fun|ok -|choice|switch 5|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|380/386 par -|-damage|p2a: Heatran|332/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|602/642 -| -|-heal|p2a: Heatran|356/386 par|[from] item: Leftovers -|turn|825 -|c| hey i'm pikachu|LAGGING -|c| drowzee518|the points arent worth 6 hours -|c| PI EddyChomp|I KNOW -|c| GonxKillua|this lag -|c| Amber Torrey|Never said i was better then you -|c| Danscott|i hate stall -|c| sancnea|ikr? -|c| LifeisDANK|Hi pikachu welcome to the war! the GReat Stall WAr -|c| Amber Torrey|What a weakling -|c|★Crime♥|omg turn 900 -|c|★Crime♥|soon -|choice|switch 5|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|826 -|c| Amber Torrey|He folds so easily... -|c| Gaussfield|"soon" -|c| sancnea|soon? -|c| sancnea|lol -|c| CoolSwag2015|zarel nice avatar btw n.n -|choice|switch 5|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|356/386 par -|-damage|p2a: Heatran|308/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|602/642 -| -|-heal|p2a: Heatran|332/386 par|[from] item: Leftovers -|turn|827 -|c| EL20|yeah i'm fed up with all of you -|c| LifeisDANK|:( -|c| LifeisDANK|but ily -|choice|switch 6|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|828 -|c| lordkaelros|slowbro still healthy as fuck -|c| CriclesAreRound|man this almost crashed my phone -|c| lordkaelros|So this isn't gonna end -|c|★Crime♥|lol -|c| PI EddyChomp|How long will this **LAST?** -|choice|switch 6|switch 5 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|switch|p2a: Heatran|Heatran, F, shiny|332/386 par -|-damage|p2a: Heatran|284/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|308/386 par|[from] item: Leftovers -|turn|829 -|c| hey i'm pikachu|just loaded 700 turns -|c| Amber Torrey|Because slowbro literally can't die -|c| lordkaelros|They're just gonna keep swapping -|c| Amber Torrey|unless crime literally makes him -|c| hey i'm pikachu|200 more to go -|c| jepler|there's only one thing TO DO switch pokes until we reach turn 999 -|c| sancnea|pls stop -|c|★CHEF BOY4RDEEZNUTS|im forced to swap he can still attack -|c| lordkaelros|What happens at 999 -|choice|switch 5|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|830 -|c| CoolSwag2015|this was so close to crashing my laptop -|c| Danscott|the battle is stil hapening? -|c| LifeisDANK|same -|c| Durr00|MY PC IS LAGGATTLEING AND I CANT SEE SHIT OF THIS B -|c| QuagGod|same -|c| QuagGod|lol -|c| CoolSwag2015|it froze for like 2 minutes -|c| Aluminion|just knock it off already -|c| charizard8888|Yup Danscott -|choice|switch 5|move 3 -| -|switch|p1a: Fatty|Chansey, F|602/642 -|move|p2a: Slowbro|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|562/642 tox|[from] psn -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|831 -|c| Aluminion|nvm -|c|@Former Hope|You aren't forced to switch, if you can't attack you pretty much already lost -|c| Vicky★the✡Shitlord|top lag -|c|★Crime♥|hes out of knock off -|c| CoolSwag2015|i love this battle -|c| CoolSwag2015|<3 -|c| lordkaelros|No more heal bells -|c| CriclesAreRound|will this even upload?lol -|c| Vicky★the✡Shitlord|battle aint even loading for me -|c| LifeisDANK|this is my fav battle of all time -|c| Danscott|burn the florges -|c| charizard8888|3 wish 1 toxic -|c| CoolSwag2015|criclesareround, zarel said that he would manually upload it -|c|★Crime♥|florges op -|c|★Crime♥|!data florges -|c|~|/data-pokemon Florges - -|c| Gaussfield|i don't want this day to end -|c| i am having fun|pp stall and let hazards win? -|c| hey i'm pikachu|finally -|c| The Suicoon|it's about to get colossal -|c| hey i'm pikachu|loaded -|c| PI EddyChomp|Lol -|c| hey i'm pikachu|831 turn -|c| Aluminion|but chansey has natural cure....... -|c| lordkaelros|lol -|c| Vicky★the✡Shitlord|uh -|c| lordkaelros|oops -|choice|switch 2|switch 4 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Cobalion|Cobalion|207/386 -|-damage|p2a: Cobalion|195/386|[from] Stealth Rock -| -|turn|832 -|c| PI EddyChomp|Can someone voice me? -|c| charizard8888|Circlesareround don't upload it -|choice|switch 5|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|308/386 par -|-damage|p2a: Heatran|260/386 par|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-heal|p2a: Heatran|284/386 par|[from] item: Leftovers -|turn|833 -|c| charizard8888|Zarel will manually do it -|c| Danscott|he uses cobalion and florges that is cool -|c| CriclesAreRound|of course i wont -|c| Vicky★the✡Shitlord|ok -|c| sancnea|stealth rocks for the win -|c| hey i'm pikachu|how can u love stall -|c| Danscott|i love exotic pokemons '-' -|c| Vicky★the✡Shitlord|833 -|c| Vicky★the✡Shitlord|nice -|c| hey i'm pikachu|lol -|c| CoolSwag2015|so this will just be a game of switches -|c| PI EddyChomp|WE NEED YOUTUBE CHANNELS -|c| CoolSwag2015|and occasional attacking -|c| CriclesAreRound|crashing my phone -|c| charizard8888|^^ -|c| QuagGod|pretty much coolswag2015 -|c| PI EddyChomp|UPLOAD THESE BATTLES -|c| CoolSwag2015|yeah i love this -|c| PI EddyChomp|GET LOADS OF MONAY -|c| Aluminion|this is why i hate stall teams -|c| LifeisDANK|Woop woop -|c| drowzee518|this is such a waste of time -|c| PI EddyChomp|MONEY* -|c| sancnea|wait how could he have used that many calm minds? -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|834 -|c| jepler|I have a youtube account actually -|c| Gaussfield|it's never a waste of time -|c| Danscott|a sword dancer would fix this -|c| LifeisDANK|why so many salty people this aint your battle -|c| Aluminion|(though i have a stall team myself with slowbro, amoonguss and tornadus) -|c| sancnea|and still not finish the game? -|c| Aluminion|you all know how that goes -|c| Gaussfield|when it goes this far -|c| CriclesAreRound|send this to all youtubers u know -|c| charizard8888|5 Recover 3 Will o wisp -|c| jepler|but I don't do uploads cuz I'm still a kid lolz -|c| QuagGod|this my frens -|choice|switch 5|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|284/386 par -|-damage|p2a: Heatran|236/386 par|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-heal|p2a: Heatran|260/386 par|[from] item: Leftovers -|turn|835 -|c| Amber Torrey|No idea why people are still calling this a battle -|c| QuagGod|is why we bring proper stallbreakers on stall -|c| Amber Torrey|because it's not -|c| LifeisDANK|this is a lesson -|c| LifeisDANK|and an experience -|c| LifeisDANK|its art -|c| QuagGod|^ -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|284/386 par|[from] item: Leftovers -|turn|836 -|c| QuagGod|*-* -|c| Durr00|why is this battle taking so long without anyone fainting yet? -|c| Aluminion|lol -|c| anthonygmars|what move are we on again? -|c| anthonygmars|lol -|c| LifeisDANK|determination dear lad -|choice|move 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|837 -|c| Amber Torrey|Because both teams are pure stall pokemon -|c| CoolSwag2015|Turn 837 -|c| CoolSwag2015|woo -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|838 -|c| lordkaelros|I don't think he <3 stall anymore -|c| sancnea|wow they actually used moves -|c| Aluminion|jirachi isn't that stall -|c| Danscott|charizard y would be a problem to CHEF -|c| CoolSwag2015|this is longer than the time i used harvest leppa splash karp -|c| Amber Torrey|Jirachi is plenty of stall -|c| hey i'm pikachu|best solution: -|c| CriclesAreRound|was this random opponent or challenge battle -|c| QuagGod|aluminion rachi works on stall fam -|c| hey i'm pikachu|ban recovery -|choice|move 4|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|284/386 par -|-damage|p2a: Heatran|236/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|232/386 par -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|839 -|c| PI EddyChomp|Or ban Para -|c|★Crime♥|random opponent -|c| Gaussfield|i clicked on switch sides and HOO BOY -|c|★Crime♥|this is a legit OU battle -|c| drowzee518|best solution: one of these players has something irl to do -|c| lordkaelros|Holy fuck -|c|@Former Hope|Just ban everything and then nothing will be broken or OP -|c| Aluminion|24 more rapid spins -|c| LifeisDANK|yeah switching sides resets the page pmuch -|c| CoolSwag2015|lol -|c| charizard8888|Switch sides : forever to load -|c| sancnea|ban 10 switches ina row -|c| Danscott|a pokemon with only offensive attacks huahuahua -|choice|switch 5|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Heatran|Lava Plume|p1a: TheMoreYouKnow -|-supereffective|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|205/403 -| -|-heal|p1a: TheMoreYouKnow|230/403|[from] item: Leftovers -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|840 -|c| Aluminion|2 stealth rocks -|c| LifeisDANK|#banpokemon -|c| QuagGod|former hope but then what'll counter our lord and savior magikarp??? -|c| lordkaelros|plaid -|c| CriclesAreRound|hey i'm pikachu we should ban u for that name and not ban recovery -|c| sancnea|wow! damage -|choice|switch 2|move 2 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|841 -|c|★CHEF BOY4RDEEZNUTS|2 left bro -|c| hey i'm pikachu|noooooooooooooooo -|c| sancnea|i finally saw it -|c|★CHEF BOY4RDEEZNUTS|use em up -|c| PI EddyChomp|LOL -|c|★Crime♥|never -|c|★Crime♥|im not you who runs out of moves -|c| QuagGod|so when's the first blood -|c| Danscott|para is good for crime -|c| sancnea|man 2 chaneys -|c| Danscott|he will lost less pp's -|c| LasagnaIsRectangle|wow -|c|★Crime♥|yes -|c|★Crime♥|i need more pars -|choice|switch 6|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|328/386 par|[from] item: Leftovers -|turn|842 -|c|@Former Hope|Said no pokemon player until now -|c| Aluminion|lol -|c| PI EddyChomp|LOL -|c| Gaussfield|in the event of a struggle war -|c| QuagGod|gottem -|c|★CHEF BOY4RDEEZNUTS|once you run out youll just switch endlessly -|c| sancnea|clefable -|c|★CHEF BOY4RDEEZNUTS|but i have rocks -|c| sancnea|skarm -|c| Gaussfield|para would be op -|c| CriclesAreRound|lol -|c| Amber Torrey|Hmm pretty sure he has switched into slowbro over 350 times for regen switch stalling -|c|★Crime♥|hey guys -|c|★Crime♥|we still have skarmory! -|c| LasagnaIsRectangle|longest battle -|c|★Crime♥|and florges! -|c|★CHEF BOY4RDEEZNUTS|THANK YOU AMBER TORREY -|c| PI EddyChomp|Lol -|c|★Crime♥|no amber -|c| Aluminion|skarmory can just defog lol -|c| sancnea|man knock off all lefties and let rocks do the job -|c|★CHEF BOY4RDEEZNUTS|CRIME YOURE FULL OF SHIT -|c| Orchestrite|any mons with knock off here? -|c| Danscott|i wanna see this sableye burn -|c| hey i'm pikachu|leftovers should make your pokemon rotten -|c| i am having fun|rocks win -|c| sancnea|oh yeah... no knock off -|c| PI EddyChomp|Lol -|c|★Crime♥|we both switch stalled after turn 600+ -|c| lordkaelros|knock pp long gone -|c|★CHEF BOY4RDEEZNUTS|he has 1 defog i have 5 rocks -|c|★CHEF BOY4RDEEZNUTS|or something -|c| LifeisDANK|can we appreciate the amount of time these two put into this 6-6 battle -|c|★Crime♥|1 defog is enough -|c| lordkaelros|wait, sableye doesn't have knock off -|c|★CHEF BOY4RDEEZNUTS|i cant attack bro -|c| QuagGod|turn off timer fam -|c| QuagGod|pls -|c|★CHEF BOY4RDEEZNUTS|all i can do is bait you -|c| drowzee518|if i finish my 1500 word paper before u guys finish thats kinda sad -|c| Kuronachan|I hate everything about this -|c| The Suicoon|why can't you attack him? -|c| LifeisDANK|you got this drowzee -|c| hey i'm pikachu|i bet this chat takes more lines than the whole battle -|c| Kuronachan|This battle is killing me -|c| LifeisDANK|write them words -|c| Aluminion|he can stall out ur 5 rocks first though -|c| BayFence|this battle is for cheef -|c| Danscott|victini would destroy this team '-' -|c| sancnea|now timer stalling? -|choice|switch 3|switch 4 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|843 -|c| Aluminion|coz crime has more moves in total -|c| ZzamanN|And this is exactly why there is an in game timer -|c| QuagGod|rip kurona's browser yn -|c|★CHEF BOY4RDEEZNUTS|rapid spin, flamethrower, and moonblast dont do shit -|c| Kuronachan|this took like five minutes to load -|c|★CHEF BOY4RDEEZNUTS|especially with the switch stall -|choice|move 3|switch 4 -| -|switch|p2a: Heatran|Heatran, F, shiny|328/386 par -|-damage|p2a: Heatran|280/386 par|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -| -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|844 -|c|★Crime♥|lol -|c| Kuronachan|i had to watch shitty toy reviews while waiting -|c| hey i'm pikachu|stall=protect every other turn -|c| charizard8888|This VDO is viral -|c| lordkaelros|Whatchu gonna do with that sub bro -|c| Danscott|for a world without stall '-' -|c| CoolSwag2015|6-6 turn 844 -|c| lordkaelros|It's not like you have any attacks -|c| Aluminion|just switch lol gliscor can't do fuck -|c|★CHEF BOY4RDEEZNUTS|using my pp cause im not a bitch -|choice|switch 3|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Chansey|Chansey, F|374/642 -|-damage|p2a: Chansey|294/642|[from] Stealth Rock -| -|turn|845 -|c|★Crime♥|omg -|c| charizard8888|Annoying 2 Sub + 2 Protect -|c| Aluminion|lol rekt -|c| lordkaelros|played -|c| QuagGod|gottem -|c| charizard8888|LOL the Prediction -|c| LifeisDANK|aYYyy -|c| ZzamanN|deez nuts -|c| PI EddyChomp|THIS BATTLE THO -|c| hey i'm pikachu|gg -|c| hey i'm pikachu|not good game -|c| Kuronachan|endless battle clause -|c|★CHEF BOY4RDEEZNUTS|HE HAS A SOFTBOILED LEFT UGH -|c| LifeisDANK|best battle of allll time -|c| Kuronachan|clearly needs to have more rules -|c| Palace Dawson|mMEOW -|choice|move 3|move 3 -| -|move|p2a: Chansey|Soft-Boiled|p2a: Chansey -|-heal|p2a: Chansey|615/642 -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Chansey -|-status|p2a: Chansey|brn -| -|-damage|p2a: Chansey|535/642 brn|[from] brn -|turn|846 -|c| Amber Torrey|Not much of a prediction when he always uses roar on a subbed gliscor -|c| LasagnaIsRectangle|put in world longest battle -|c| hey i'm pikachu|there -|c| sancnea|yay -|c| hey i'm pikachu|full -|c| Aluminion|natural cure lol -|choice|switch 3|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|308/352 tox -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|847 -|c| charizard8888|23 Seismic Tosses -|c| sancnea|no more softboil -|choice|switch 5|switch 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Heatran|Heatran, F, shiny|304/386 par -|-damage|p2a: Heatran|256/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|848 -|c| Kyorem|is this still goin -|c| LifeisDANK|you betcah -|c| Kyorem|this took -|c|★Crime♥|lol -|c| Nortellaz|I'm guessing the two of you are only continuing the battle out of principle rather than actually caring for the points. -|c| PI EddyChomp|I think there will be 946 turns -|c| charizard8888|__Struggle__ to end the fight -|c| Kyorem|5 minutes + to load -|c| charizard8888|^ -|c| hey i'm pikachu|10 hours -|c|★Crime♥|yes nortellaz -|c| Nortellaz|If the latter, that's really, really, REALLY sad -|c| hey i'm pikachu|4 me -|c| CoolSwag2015|took me 2 minutes -|c| Funkytoucan|turn 100 the dream -|c| Aluminion|if it comes down to the wire crime will just switch between slowbro (who has regen) and coba (who takes jackshit from stealth rock -|c| lordkaelros|*1000 -|c| PI EddyChomp|MAKE IT 900 TURNS -|c| Funkytoucan|*1000 -|c| LifeisDANK|Only the stalliest will survive -|c|★Crime♥|the whole lobby is in this game -|c| CriclesAreRound|1000 -|c| PI EddyChomp|U CAN DO IT -|c| CoolSwag2015|loool -|c| charizard8888|Don't Stop -|c| LasagnaIsRectangle|if this battle is in oras , i bet it will a draw because there is a time -|c| charizard8888|Play fast -|c|★CHEF BOY4RDEEZNUTS|i hope the site crashes -|c| LifeisDANK|ILY bby -|c| BayFence|come on chef u can win this -|choice|switch 3|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|849 -|c|+SpaceBass|Inb4 someone disconnects -|c| Asada Shino San|I can't see shit -|c|~Zarel|took me around 12 seconds, if you're wondering what a powerful computer is like :) -|c| hey i'm pikachu|stealth rock should do 25% -|c| charizard8888|40 Secs left -|c| Amber Torrey|Both sides if both run of PP have endless battle pokemon -|c| PI EddyChomp|Nope -|c| charizard8888|**Turn off the timer** -|choice|switch 6|move 4 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|move|p2a: Heatran|Taunt|p1a: Fatty -|-start|p1a: Fatty|move: Taunt -| -|-heal|p2a: Heatran|328/386 par|[from] item: Leftovers -|turn|850 -|c| hey i'm pikachu|and 100%to charizard -|c| Amber Torrey|gliscors poison heal and slowbros regen -|c| Kyorem|Zarel pls -|c| QuagGod|**turn off timer pls** -|c| LifeisDANK|Turn UP the timer -|c| Vicky★the✡Shitlord|it took me like 50 seconds ?_>? -|c| QuagGod|fr tho -|c| QuagGod|lol -|c| anthonygmars|so what move are we on? -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Florges|Florges, F|252/360 -|-damage|p2a: Florges|207/360|[from] Stealth Rock -| -|turn|851 -|c| XXawesomenessXX|lol 850 turns without a single fainted pokemon -|c| Vicky★the✡Shitlord|rawr -|c| The Suicoon|took me about 30 secs -|c| i am having fun|imagine loading this on a phone -|c| PI EddyChomp|But if the server has to restart, you are in luck. -|c|★Crime♥|florges in action -|c| i am having fun|shieet -|c| hey i'm pikachu|spoiler:18 moonblasts -|c| Vicky★the✡Shitlord|i am having fun, it would probably be impossible -|c| lordkaelros|florges gonna sweep bois -|c| charizard8888|1 Protect , 1 Wish , 18 Moonblast -|c|★CHEF BOY4RDEEZNUTS|JOHN CENAAAAAA -|c| Nortellaz|Tentacruel can absorb that shit right up anyway -|c| LifeisDANK|Im having a good time -|c|@Former Hope|Now just imagine this game if Zarel hadn't added the PP tracker -|c| PI EddyChomp|Spoiler: 999999 Struggles......? -|c| QuagGod|florges going in for the sweep -|c| QuagGod|*-* -|c| Amber Torrey|florges can't do anything -|c| Kyorem|Zarel what would happen if someone uploaded the reply for this lol -|c| Amber Torrey|chansey walls it -|c| Asada Shino San|finally I get a screen -|choice|switch 3|switch 2 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|852 -|c| Vicky★the✡Shitlord|hi shrang -|c|@Former Hope|Kyorem, you couldn't -|c| go for busted|>seeking -|c| hey i'm pikachu|best game -|choice|switch 6|switch 5 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|switch|p2a: Cobalion|Cobalion|195/386 -|-damage|p2a: Cobalion|183/386|[from] Stealth Rock -| -|turn|853 -|c| go for busted|finally -|c| Kyorem|no? :[ -|c|★Crime♥|i have a good idea -|c|@Former Hope|It would have to be made manually since it won't make the replay past a certain number of turns -|c| hey i'm pikachu|0 deaths -|c| LasagnaIsRectangle|u can do it!!! -|c| hey i'm pikachu|how peaceful -|c| hey i'm pikachu|stall is peace -|c|★Crime♥|awe Former hope -|c| go for busted|mega sab isn't broken -|c| hey i'm pikachu|the best playstyle -|c| Aluminion|dare you to stay in chef -|c| CoolSwag2015|~Zarel: I'll manually upload the replay to the replay server, the rest of you don't need to do anything -|c| CoolSwag2015|Kyorem -|c| XXawesomenessXX|this is what happens if both teams are defensive -|c| LasagnaIsRectangle|lol -|c| charizard8888|go for busted have you named yourself after CANDACE from Phineas and Ferb ? -|c| Kyorem|Oh sick lol -|c| PI EddyChomp|Did anyone read my Spoiler? -|choice|switch 3|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|854 -|c| charizard8888|yup -|c| TLC1 parivar|hmmm -|c| MightySwagger013|PI EddyChomp 18 moonblasts -|c| go for busted|I named myself after your mom -|c| go for busted|ayy lmoa -|c| SingingTacos|this battle is so long that the mons are not even showign for me -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|855 -|c| LasagnaIsRectangle|IMOA -|c| Kuronachan|oh look nothing got done that turn -|c| PI EddyChomp|Spoiler: 999999999999 Attacks and Struggles. -|c| SingingTacos|,3, -|c| hey i'm pikachu|**wasted** -|c| LifeisDANK|Time to get switchy in here -|c| Aluminion|scald burn -|c| go for busted|how long have pebbles been up -|c| Aluminion|u can do this -|c|★Crime♥|3 scals -|c| SingingTacos|is this the longest battle on ps -|c|★Crime♥|scalds* -|c| QuagGod|oh fuck -|c| QuagGod|i think my comp is giving in -|c| i am having fun|long time go for busted -|c| SingingTacos|i thought the longest was like 1000 -|c| LasagnaIsRectangle|0 scald left -|c| QuagGod|noo ;_; -|c| Kuronachan|just use a move to use up PP already -|choice|switch 2|switch 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|230/403 -|switch|p2a: Heatran|Heatran, F, shiny|328/386 par -|-damage|p2a: Heatran|280/386 par|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|255/403|[from] item: Leftovers -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|856 -|c| SingingTacos|rip scalds -|c| lovemathboy|omg how many turns is this -|c| Asada Shino San|dem switches -|choice|move 2|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-heal|p1a: TheMoreYouKnow|280/403|[from] item: Leftovers -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|857 -|c| LasagnaIsRectangle|856 -|c| lovemathboy|it's loading -|c| Aluminion|lol -|c| CoolSwag2015|857* -|c| Kuronachan|fcuKING SWiTchES -|c| CoolSwag2015|kek -|c| PI EddyChomp|........................................ -|choice|switch 3|switch 3 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|switch|p2a: Heatran|Heatran, F, shiny|304/386 par -|-damage|p2a: Heatran|256/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|858 -|c| LasagnaIsRectangle|when is this going to end -|c| lovemathboy|OMG IT FINISHED LOADING -|c| SingingTacos|emm -|c| charizard8888|It will take 5 mins to load -|c| Kyorem|Zarel what comp do you have ? -|c| The Suicoon|how is this going to end? -|c| Amber Torrey|man look at all those slowbro regen switch-ins -|c| SingingTacos|do you guys get anything from this -|c| sancnea|ban switching... -|c| Wasim007|this battle will crash the servers -|c| lordkaelros|satisfaction -|c|★Crime♥|bann switching would be unfair, cause we have a different team -|c| hey i'm pikachu|what happens at 1000 -|c|★Crime♥|unfornately. -|c| LasagnaIsRectangle|idk -|c| LifeisDANK|we party -|c| Aluminion|this server is written in 10 bit binary -|c|★Crime♥|the game will automaticly end -|c| Aluminion|it wil only go up to 1024 -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Cobalion|Cobalion|183/386 -|-damage|p2a: Cobalion|171/386|[from] Stealth Rock -| -|turn|859 -|c| LifeisDANK|WE SHALLFIND OUT -|c| LasagnaIsRectangle|celebrate the longest battle to the chef and chime -|c| hey i'm pikachu|**same play** -|c| QuagGod|someone -|c| LifeisDANK|hype -|c| PI EddyChomp|YEAH -|c| QuagGod|pls turn off the timer -|c| QuagGod|jesus -|c| CriclesAreRound|has there ever been a longer one -|c| SingingTacos|i think funbro -|c| Wasim007|wake me up when its over -|c| Aluminion|what are your ratings -|c|+Frizy|funbro dont count -|choice|switch 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Redbull|Clefable, M|393/393 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|860 -|c| Amber Torrey|Yes longer battles exist -|c| SingingTacos|was the longest one -|c|★Crime♥|over 40 mins we are playing for 7 hours i think -|c| LasagnaIsRectangle|nope iirc -|c| PI EddyChomp|__Font abuse for longest **BATTLE!!**__ -|c| LifeisDANK|Wake me up -|c| LifeisDANK|wake me up inside -|c| PI EddyChomp|LOL -|c| Aluminion|PLEASE ANSWER: what are your elo ratings -|c| CriclesAreRound|what is funbro? -|c| PI EddyChomp|Redbull -|c|+Frizy|rip earthworms 716 turn gsc battles -|c|★Crime♥|no redbull unhealthy -|c|@Former Hope|Aluminion, you can use /rank username -|c| Aluminion|thx -|choice|switch 3|switch 5 -| -|switch|p1a: TheMoreYouKnow|Jirachi|280/403 -|switch|p2a: Heatran|Heatran, F, shiny|280/386 par -|-damage|p2a: Heatran|232/386 par|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|305/403|[from] item: Leftovers -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|861 -|c| LasagnaIsRectangle|keep going -|c|★CHEF BOY4RDEEZNUTS|redbull is life -|c| SingingTacos|**Em what do you guys get from this. Like +7 points in ladder?" -|c| CriclesAreRound|golduck is life -|c| LifeisDANK|redbull is gross tbh -|c| anthonygmars|WHAT MOVE ARE WE ON? -|c| CriclesAreRound|861 -|c| Asada Shino San|861 -|c| SingingTacos|**Em what do you guys get from this. Like +7 points in ladder?** -|choice|switch 4|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|862 -|c| Kuronachan|1 -|c| Aluminion|they're in the 1300's -|c| XXawesomenessXX|861 -|c| drowzee518|the points are not worh it at all -|c| Aluminion|rating -|c| drowzee518|even if u got 200 point -|c| LasagnaIsRectangle|0 uturn and ironhead rip -|c| drowzee518|s -|c|★CHEF BOY4RDEEZNUTS|i dont care bout points -|c| Aluminion|so it doesn't matter that much -|c| LifeisDANK|its not about the points...its about sending a message -|c| QuagGod|i dont think -|c| PI EddyChomp|**THER WILL BE 999999 TURNS!!** -|c| QuagGod|they care -|c|★CHEF BOY4RDEEZNUTS|dank u right -|c| QuagGod|about points -|c| Kuronachan|this is taking longer than goku's charge up time -|c|★Crime♥|omg -|c| XXawesomenessXX|☺☻☺☻☺ -|c|★Crime♥|900 turns soon -|c| Aluminion|for all this time i thought it was like 1600 or something -|choice|switch 6|switch 5 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|863 -|c| QuagGod|if they're expecting matches like this -|c| QuagGod|lol -|c| LifeisDANK|Dank always right ,':) -|c| LasagnaIsRectangle|later all 0 PP -|c| Aluminion|coz u 2 are playing immaculately -|c| SingingTacos|**GO to 1000 :^)** -|c| sancnea|noones going to forfei -|c| PI EddyChomp|This might take 100 Hours -|c| LasagnaIsRectangle|only sharpen -|choice|switch 3|switch 5 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Heatran|Heatran, F, shiny|280/386 par -|-damage|p2a: Heatran|232/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|864 -|c| Amber Torrey|These are the kind of watches that get things on the site banned from use -|c| Kuronachan|go to 1024 -|c| LasagnaIsRectangle|lol -|c| PI EddyChomp|__**100 HOURS**__ -|c| CriclesAreRound|just switch mindlessly -|c| sancnea|if they leave they wont even tell the other -|c| SingingTacos|~~inb4 next suspect test is Stall~~ -|c| LasagnaIsRectangle|0 PP left for all moves -|c| XXawesomenessXX|666 Decades -|c| Kyorem|how long in terms of time have you two been here for Crime and CHEF? -|c| charizard8888|^ -|c| breloomiswaifu|just 6 moar hours mom! -|c| CoolSwag2015|7 hours -|c| The Suicoon|7 hours -|c| hey i'm pikachu|spoiler: mold breaker swords dance haxours -|c| sancnea|just let the timer do its thing -|c| AtmaARMS|crean, you still alive in here? -|c| QuagGod|singingtacos does msab suspect count -|c|★CHEF BOY4RDEEZNUTS|no idea -|c| Wasim007|reminsd me of battle of Ash with metapod vs metapod in the anime -|c| hey i'm pikachu|defeat that unaware -|c|★CHEF BOY4RDEEZNUTS|im dying inside -|c| hey i'm pikachu|quag -|c| SingingTacos|msab suspect test was crap af lol -|c| LasagnaIsRectangle|tooo long -|c|★CHEF BOY4RDEEZNUTS|METAPOD USE HARDEN -|c| Asada Shino San|keep going bruh -|choice|switch 3|move 2 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|865 -|c| gutu170599|longest battle imo is 6492 turns -|c| sancnea|aww cmon -|choice|switch 6|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|866 -|c| CriclesAreRound|wtf -|c| QuagGod|jesus christ -|c| PI EddyChomp|Oh I heard you like Mudkips? -|c| QuagGod|just turn off the fking timer -|c| SingingTacos|this is why -|c|★Crime♥|i cant put the timer off -|c| LasagnaIsRectangle|just going to nap first -|c| drowzee518|wanna here something funny -|c| LifeisDANK|dootdootdootdootdootdodododoot Its the final countdown -|c| SingingTacos|there needs to be a playstle that revovles around taunt -|c| LifeisDANK|jk -|choice|switch 6|switch 5 -| -|switch|p2a: Heatran|Heatran, F, shiny|280/386 par -|-damage|p2a: Heatran|232/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|562/642 -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|867 -|c|★Crime♥|he pressed the timer , cause he wants to go bed -|c|★Crime♥|lol -|c| gutu170599|there is a youtube video -|c| drowzee518|tg rd mana 6-0s both of these teams -|c| SingingTacos|i mean seriously -|c| drowzee518|ez -|c|★CHEF BOY4RDEEZNUTS|so do you -|c| LasagnaIsRectangle|night -|c| LasagnaIsRectangle|tell me who is the winner -|c| CriclesAreRound|this needs to go on youtube -|c| sancnea|does florges have any more wishes? -|c| QuagGod|singingtacos -|c|★Crime♥|yes -|c|★CHEF BOY4RDEEZNUTS|and youve been complaining about wanting a smoke this whole time -|c| QuagGod|just run offense -|c|★Crime♥|florges has a wish! -|c| LasagnaIsRectangle|:D -|c|★Crime♥|<333333333333333333 -|c| sancnea|how many? -|c| PI EddyChomp|Magikarp: __**I SWEAR TO GOD, WHEN I EVOLVE, I WILL KILL YOU ALL!!!**__ -|c| QuagGod|*well-built offense -|c| ZzamanN|1 -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|868 -|c|★Crime♥|1 is enough for another hour -|c| QuagGod|and go from there -|c| Kuronachan|how long has the match been going on for; real time? -|c| SingingTacos|7 hours -|choice|move 3|move 1 -| -|move|p1a: I <3 Stall|Will-O-Wisp|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -|move|p2a: Heatran|Lava Plume|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|159/301 -| -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|869 -|c| CriclesAreRound|just count the pp left....oh nvm -|c| drowzee518|7 hrs -|c| PI EddyChomp|9 Hours -|c| Kuronachan|jesus christ -|c| SingingTacos|mfw -|c| QuagGod|>7 hours -|c| LasagnaIsRectangle|jesus -|c| lordkaelros|1 more lave plume bois -|c| QuagGod|who has the time -|c| SingingTacos|is this where -|c|★CHEF BOY4RDEEZNUTS|one more plume bro -|choice|switch 6|move 2 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|cant|p2a: Heatran|par -| -|-heal|p2a: Heatran|328/386 par|[from] item: Leftovers -|turn|870 -|c|★CHEF BOY4RDEEZNUTS|use it -|c| QuagGod|for that -|c|★CHEF BOY4RDEEZNUTS|i dare you -|c| QuagGod|jesus -|c|★Crime♥|you are lucky you had no burn -|c|★Crime♥|hey CHEF -|c|★Crime♥|are you over ur sleep? -|c|★Crime♥|lol -|c| charizard8888|/me gives an Everstone to PI EddyChomp -|c| SingingTacos|this is cancer af -|c| PI EddyChomp|Lol -|c| SingingTacos|im out -|c| anthonygmars|I'MA GO SLEEP -|c| Kuronachan|the players just have the cries of chansey switching in etched into their mind by now -|c| lordkaelros|wait, has clef been out yet? -|choice|move 3|move 2 -| -|move|p1a: Fatty|Wish|p1a: Fatty -|move|p2a: Heatran|Roar|p1a: Fatty -|drag|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-heal|p2a: Heatran|352/386 par|[from] item: Leftovers -|turn|871 -|c| Kuronachan|its all they'll hear from now on -|c| anthonygmars|I HOPE YOU ALL DIE -|c| LifeisDANK|WOOP -|c| Kuronachan|that shitty 8-bit roar -|c| LifeisDANK|ILY anthony -|c| hey i'm pikachu|spoiler: use healing wish chanse -|c| PI EddyChomp|/me throws Everstone and Replaces with 10 Rare Candy's -|c| anthonygmars|<3 -|c| LifeisDANK|;) -|c| QuagGod|whens the 1st blood -|c| QuagGod|:( -|c| CriclesAreRound|i went on a vaccation to france and this battle is still going on.... -|c| Gaussfield|we all die though -|choice|switch 5|switch 6 -| -|switch|p1a: Fatty|Chansey, F|562/642 -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Skarmory|Skarmory, F|264/334 -|-damage|p2a: Skarmory|223/334|[from] Stealth Rock -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Fatty -|turn|872 -|c| hey i'm pikachu|quaggod u staller -|c| PI EddyChomp|/me Evolves Magikarp -|c| hey i'm pikachu|u can't ignore others dancing -|c| lordkaelros|1 more defog -|c| anthonygmars|wait what move is this? -|choice|switch 3|move 4 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Skarmory|Whirlwind|p1a: Redbull -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|873 -|c| gutu170599|/me presses B button when it is evolving -|c| lordkaelros|go on, we know you want to -|c| QuagGod|k -|c| TheCanadianWifier|This game is stupid. Zarel, I hope you'll upload the replay by morning -|c| TheCanadianWifier|:P -|c| TheCanadianWifier|later guys -|c| LifeisDANK|il this game -|c| PI EddyChomp|/me spams A button -|c| LasagnaIsRectangle|just end it!! -|c| sancnea|man one of those days i wished ethers were allowed during competitive battling -|c| LifeisDANK|JUST DO IT -|c|★Crime♥|ok -|c|★Crime♥|im gonna smoke -|c| LifeisDANK|finish what you started -|c| Aluminion|lol -|c| hey i'm pikachu|w33d -|c|★Crime♥|i waited for 6 hours -|c| PI EddyChomp|/me 's Magikarp evolves -|c| LifeisDANK|smoke on your screen -|c| CriclesAreRound|1000 turns pls -|c| LifeisDANK|Dank it up -|c|★Crime♥|oke -|c| Funkytoucan|no pls -|c|★Crime♥|ill open a window -|c| BayFence|this battle is for chef -|c|★Crime♥|and play -|c| BayFence|crim cant win -|c| CoolSwag2015|lol -|choice|switch 2|move 4 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|move|p2a: Skarmory|Whirlwind|p1a: Redbull -|drag|p1a: I <3 Stall|Sableye-Mega, M|159/301 -| -|turn|874 -|c| QuagGod|breh -|c| gutu170599|/me takes the pokedex -|c| QuagGod|what strand u got -|c|★CHEF BOY4RDEEZNUTS|enjoy the lung cancer -|c| QuagGod|lol -|c|★Crime♥|why cant i win? :( -|c| LifeisDANK|toke n poke -|c| lordkaelros|Wait, so you had a smoke the whole time?? -|c| neXi|LOL -|c|★Crime♥|any guys who have hope for me? -|c| LifeisDANK|tokemon -|c|★Crime♥|<3 -|c| LasagnaIsRectangle|Just go a KO -|c| hey i'm pikachu|no -|c|★Crime♥|no one has hope for me -|c| LifeisDANK|I beleive in jew -|c| anthonygmars|i believe in you -|c|★Crime♥|im sad -|c| BayFence|because he is doing something u dont know and that will make u lose -|c| anthonygmars|<3 -|c| LifeisDANK|Crime you got this -|c| PI EddyChomp|This WILL be 900 and more turns -|c|★Crime♥|thank you LIfe <3 -|c|★Crime♥|lel -|c| CriclesAreRound|well i guess i'l return tommorow morning -|c| LifeisDANK|ayyy -|c|+SpaceBass|RIP timer incoming -|c| lordkaelros|tokemon -|c| lordkaelros|gotta smoke em all -|choice|move 4|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|875 -|c| Nortellaz|Convo time: Are y'all's favorite games strictly Pokemon? -|c| anthonygmars|Stallemon, the new game series -|c| LasagnaIsRectangle|no pkmn was fainted so peaceful -|c| gutu170599|Crime Chef please break the record -|c| sancnea|4 more recovers? -|c| CriclesAreRound|whats the record? -|c|★Crime♥|oke -|c|★Crime♥|lets get to 900 -|c| anthonygmars|911 -|c|★Crime♥|folks -|c| hater will hate|art thou scraty air balon -|c| Amber Torrey|Nah my favorite game is SUper mario world 2: Yoshi's Island -|c| gutu170599|6492 imo -|choice|switch 3|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|352/386 par -|-damage|p2a: Heatran|304/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|-heal|p2a: Heatran|328/386 par|[from] item: Leftovers -|turn|876 -|c| PI EddyChomp|Too bad Vegito isn't here -|c| Nortellaz|I love Yoshi's Island too <3 -|c| lordkaelros|1000 or gtfo -|c| anthonygmars|911 or gtfo -|c| CriclesAreRound|how do u even get to 6492? -|c| drowzee518|1025 -|c| The Suicoon|My favorite game franchise is Kingdom Hearts. -|c|★Crime♥|guys im gonna dc -|c| drowzee518|plz -|c| Rath111|alright -|c| LifeisDANK|I wanna be the very best -|c|★Crime♥|gg -|c| LasagnaIsRectangle|i believe in u guys -|c| Rath111|2 LoL matches and this match is still going -|c| sancnea|if i were to chose the winner now i would choose chef -|c| CriclesAreRound|noooooooooooooooo -|c| Amber Torrey|I love kingdom hearts to -|c| lordkaelros|My favourite game is Dark souls -|c| Asada Shino San|that was before endless battle clause -|c| Gaussfield|NOT LIKE THIS -|c| anthonygmars|like no one ever was -|c| gutu170599|this has taken how many hours? -|choice|switch 3|switch 6 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|877 -|c| hater will hate|the virgin loses this game -|c| drowzee518|turn timer off -|c| PI EddyChomp|NO DON'T FORFEIT -|c| lordkaelros|Followed by dishonored and witcher 3 -|c| Nortellaz|Favorite game's still Wind Waker though -|c| Amber Torrey|But dear god you need every system ever to play all of the kingdom hearts series -|c| Nortellaz|aka the only good Zelda -|c| Rath111|6 or 7 hours I believe -|choice|switch 5|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|328/386 par -|-damage|p2a: Heatran|280/386 par|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|878 -|c| Nortellaz|Unless you count Okami ;) -|c| LifeisDANK|Sleep is for the WEAK lets keep it goin -|c| lordkaelros|u w0t m8 -|c| lordkaelros|link to the past was 8/8 -|c| The Suicoon|Not with the HD remixes! -|c| charizard8888|TURN OFF THE TIMER -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Stealth Rock|p1a: I <3 Stall -|move|p1a: I <3 Stall|Stealth Rock|p2a: Heatran|[from]Magic Bounce -|-fail|p2a: Heatran -| -|-heal|p2a: Heatran|328/386 par|[from] item: Leftovers -|turn|879 -|c| anthonygmars|my grandma stalls better than you two. keep it going -|c| lordkaelros|minish cap was good too -|c|+SpaceBass|Nortellaz: aka the only good Zelda -|c| LifeisDANK|I thought majoras mask was interesting -|c|+SpaceBass|OoT says hi -|c| hey i'm pikachu|crap game -|c| i am having fun|oo 1 more rocks left -|c| Amber Torrey|Sorry but the HD remixes don't give you all the games -|choice|switch 2|switch 6 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|880 -|c| PI EddyChomp|I do not think it is on -|c| Nortellaz|Played it, didn't really like it :( -|c|+SpaceBass|Did you play the remake -|c| Amber Torrey|It gives you only the cutscenes from the handheld titles -|c|+SpaceBass|Or the original on n64 -|c| Nortellaz|I generally don't like the Zelda formula, which might explain why. -|c| Abgesang|lak sho -|choice|switch 4|switch 6 -| -|switch|p1a: TheMoreYouKnow|Jirachi|305/403 -|switch|p2a: Heatran|Heatran, F, shiny|328/386 par -|-damage|p2a: Heatran|280/386 par|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|330/403|[from] item: Leftovers -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|881 -|c|+SpaceBass|Because original = best -|c| sancnea|how many roossts does the skarm have -|c| LasagnaIsRectangle|i wanna be the very best, like noone ever was, to catch was my real test , to train them is my cost -|c| Crean|//user zarel -|c| Nortellaz|Wind Waker shook things up considerably though -|c| The Suicoon|oh I didnt even know that was true -|choice|switch 2|switch 6 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|882 -|c| Rath111|will we hit 1000? -|c| The Suicoon|I bought a 3ds just for DDS :? -|c| LifeisDANK|someBODY once told me the world was gonna roll me -|c| The Suicoon|;/* -|c| PI EddyChomp|Probaly -|choice|switch 4|switch 3 -| -|switch|p2a: Cobalion|Cobalion|171/386 -|-damage|p2a: Cobalion|159/386|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|883 -|c| LifeisDANK|I aint the sharpest tool in the shed -|c| lordkaelros|If you come this far and don't hit 1000 -|c| RoyHasABigDiglett|This is making my laptop laggy -|c| lordkaelros|sham -|c| Amber Torrey|All-stars by smash mouth huh -|c| LasagnaIsRectangle|DDS?? -|c| Aluminion|1 rocks and 24 spins -|c| lordkaelros|*shame -|choice|switch 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|884 -|c| LifeisDANK|she was lookin kinda sumb wit her finger and her thumb -|c|★Crime♥|1 rock is enough for 24 spins -|c| Lottyloop|nothing is loading D: -|c|★Crime♥|:) -|c| LifeisDANK|in the shape of an L on her forhead -|c| Amber Torrey|it's DDD -|choice|switch 3|switch 3 -| -|switch|p2a: Cobalion|Cobalion|159/386 -|-damage|p2a: Cobalion|147/386|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|turn|885 -|c| Amber Torrey|Dream drop distance -|c| LifeisDANK|well the years start coming and they wont stop coming -|c| xX_SupaAfroMan_Xx|omg how many turns? -|c| Amber Torrey|not DDS -|c| PI EddyChomp|886 turns -|choice|switch 5|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|886 -|c| gutu170599|close combat? -|c| LifeisDANK|back to the start gonna kit the ground running -|choice|move 3|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|223/334 -|-damage|p2a: Skarmory|182/334|[from] Stealth Rock -|move|p1a: Annoying AF|Substitute|p1a: Annoying AF -|-start|p1a: Annoying AF|Substitute -|-damage|p1a: Annoying AF|264/352 tox -| -|-heal|p1a: Annoying AF|308/352 tox|[from] ability: Poison Heal -|turn|887 -|c| LifeisDANK|so much to do so much to see so whats wrong with taking the backstreets -|c| Swytch|this is what happens when you dont ban sableye -|c| Swytch|fuckin niggrs -|c| RoyHasABigDiglett|any 1 want my mixtape??? it's fire!! -|c| lordkaelros|Are those song lyrics? -|c| gutu170599|are you only switching? -|choice|switch 3|switch 5 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|888 -|c| LifeisDANK|I want your hot mixtape -|c| lordkaelros|I don't know any of them -|c| Aluminion|challenge (you must name a pokemon every turn until this game ends) -|c| LasagnaIsRectangle|what will happen if all PP is 0, they can only use sharpen -|c| LasagnaIsRectangle|:D -|c| Aluminion|who shall undertake this challenge -|c| Amber Torrey|Yes horrible missed up lyrics but yes lyrics -|choice|switch 4|switch 3 -| -|switch|p2a: Cobalion|Cobalion|147/386 -|-damage|p2a: Cobalion|135/386|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|889 -|c| Amber Torrey|It's All-stars by smash mouth -|c| Amber Torrey|messed* -|choice|move 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|336/394 tox -| -|-damage|p2a: Slowbro|312/394 tox|[from] psn -|turn|890 -|c| LifeisDANK|Lets do this pokemon challenge -|c|@Former Hope|Just randomly post this link in the suspect thread "This sums up why we shouldn't have sableye" and then drop mic -|c|★CHEF BOY4RDEEZNUTS|cob <3s those rocks -|c| lordkaelros|lol -|c| Rath111|23 more rapid spins -|c| hey i'm pikachu|xD -|c| hey i'm pikachu|xD -|c| hey i'm pikachu|xD -|c| Rath111|and nothing else -|c| Rath111|lmao -|c| Gaussfield|dk rap wen? -|c| sancnea|one question how is sableye out of calm minds? -|c|★Crime♥|lol -|c| hey i'm pikachu|florges -|c| sancnea|shouldnt it have swept by now? -|c| lordkaelros|890 turns does that -|c| Rath111|he has anxiety, that's why -|c|@Former Hope|Probably because it's had to wait to long sancnea -|c|★CHEF BOY4RDEEZNUTS|tran bro -|c|@Former Hope|That would make anyone not calm -|choice|switch 5|switch 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|135/386 -|-damage|p2a: Cobalion|123/386|[from] Stealth Rock -| -|turn|891 -|c| hey i'm pikachu|forces it out -|c|★CHEF BOY4RDEEZNUTS|and florgs -|c| sancnea|i mean forced out 24 times? -|c| hey i'm pikachu|stall is such a good playstyle -|choice|switch 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|892 -|c| hey i'm pikachu|it promotes global peace -|c| Amber Torrey|because sableye would set up calm minds -|c| xX_SupaAfroMan_Xx|i cant see the battle it just says seeking... on my screen -|c| Amber Torrey|then crime would send out chansey -|c| sancnea|pretty balanced u knw what im sayin? -|c| Amber Torrey|who can't be hit -|c| Gaussfield|TURN 900 HYPE -|choice|switch 5|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|893 -|c| charizard8888|It's Loading xX_SupaAfroMan_Xx -|c| Kuronachan|TURN 900 HYPE -|c| hey i'm pikachu|only 7 more turns -|c| PI EddyChomp|IT WILL HIT 900!!!!! YAY -|c| charizard8888|It will eventually load -|c| gorry oak|use surf -|c| hey i'm pikachu|7777 -|c| LifeisDANK|HYPE -|c| PI EddyChomp|HIT 900 HYPE -|c| Amber Torrey|sableyes moveset is recover,calm mind, will-o-wisp, shadow ball -|c| xX_SupaAfroMan_Xx|ok thnx charizard8888 -|c| LifeisDANK|https://www.youtube.com/watch?v=u9ymUX1fJLw SET THE MOOD -|c| Amber Torrey|can't do jack to chansey -|c| PI EddyChomp|**MAKE IT 950 TURNS HYPE!!!** -|c| CoolSwag2015|**Turn 900 hype n.n** -|c| Swytch|both players in this game suck -|choice|move 4|switch 3 -| -|switch|p2a: Cobalion|Cobalion|123/386 -|-damage|p2a: Cobalion|111/386|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-crit|p2a: Cobalion -|-damage|p2a: Cobalion|106/386 -| -|turn|894 -|c| Kuronachan|ultimately I'm for turn 1024 hype -|c| Amber Torrey|I'm not a religious man -|c| Rath111|oh shit -|c| Rath111|crit for 0% -|c| Kuronachan|900 is a great milestone -|c|★Crime♥|0% crit -|c| Rath111|OP -|c| CoolSwag2015|looooooool -|c| CriclesAreRound|turn 900 hype! -|c| Gaussfield|**test** -|c|★Crime♥|op -|c| CoolSwag2015|0% -|c| i am having fun|damage -|c| Amber Torrey|But if hell exists can't imagine it's much different then this -|c| Gaussfield|oh -|c| lordkaelros|lmao -|c| PI EddyChomp|Lol -|c| LifeisDANK|AYYYYYYYYYY -|c| CoolSwag2015|tentacruel -|c| Gaussfield|Z E R O D A M A G E -|c| CoolSwag2015|is op -|c| PI EddyChomp|0% Crit -|c| Abgesang|sigh both teams are so bad and there still isn't an end -|choice|switch 6|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Redbull|Clefable, M|393/393 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|895 -|c|+Frizy|its already over lol -|c| PI EddyChomp|Look at how many turns -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|304/386 par -|-damage|p2a: Heatran|256/386 par|[from] Stealth Rock -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|896 -|c|+Frizy|crime cant win -|c|★Crime♥|=[ -|c| Amber Torrey|neither can win -|c|★Crime♥|im crying -|c| Amber Torrey|or lose -|c| LifeisDANK|Crime i bee leaf in u -|c| Kuronachan|crime never pays........ -|c| PI EddyChomp|;) -|c|@Former Hope|It's Frizy :o -|c| lordkaelros|The god comes out -|c|★Crime♥|thanks <3 -|c| jepler|this is your chance to sweep -|c| hey i'm pikachu|crime will not stand a chance -|c| RoyHasABigDiglett|this is 2 dank -|c| Amber Torrey|each team has endless stall -|c| hey i'm pikachu|against peace -|c| PI EddyChomp|P;) -|c| LifeisDANK|not DANK enough -|c| CoolSwag2015|Frizy -|c| CoolSwag2015|Crime can win! -|c| CoolSwag2015|~~the other one can forfeit~~ -|c| Gaussfield|don't give up on hoop -|c| Rath111|oh shit -|c| lordkaelros|the clefagod begins it's reign of blood -|c| Rath111|will this be it? -|c| LifeisDANK|,':) -|choice|switch 5|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Taunt|p1a: I <3 Stall -|move|p1a: I <3 Stall|Taunt|p2a: Heatran|[from]Magic Bounce -|-start|p2a: Heatran|move: Taunt -| -|-heal|p2a: Heatran|304/386 par|[from] item: Leftovers -|turn|897 -|c| lordkaelros|I guess not -|c| Kuronachan|IT'S KILL OR BE KILLED, JACK -|c| Gaussfield|WITHDREW -|c| gutu170599|more 5500 turns for record.... go..... -|c| lordkaelros|NO MORE TAUNT BOIS -|c| Aluminion|rekt -|c| Eon_Theory|what is this -|c| Rath111|NO MORE TAUNTS -|choice|switch 5|switch 6 -| -|switch|p1a: Redbull|Clefable, M|393/393 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|898 -|c| Aluminion|taunt is f*cking useless anyway -|c| Kuronachan|YOU CAN'T FIGHT NATURE -|c| gutu170599|:^) -|c| lordkaelros|All hail clefagod -|choice|switch 5|move 3 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Slowbro|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Slowbro|[from]Magic Bounce|[miss] -|-miss|p1a: I <3 Stall|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|899 -|c| hey i'm pikachu|**2 more turns** -|c| hey i'm pikachu|1 more -|c| LifeisDANK|HYPE -|c| LifeisDANK|AY -|c| LifeisDANK|YEE -|c| Gaussfield|**TURN 900 HYPE** -|c| BayFence|good predict -|choice|switch 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|304/386 par -|-damage|p2a: Heatran|256/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|900 -|c| LifeisDANK|CELEBRATE GUYS https://www.youtube.com/watch?v=u9ymUX1fJLw -|c| CoolSwag2015|**Turn 900 :D** -|c| Kuronachan|TURN 900 -|c| lordkaelros|WOOOHOOO -|c| PI EddyChomp|900 TURNS!!!!! THE GOAL IS REACHED!!!!!!! **YES THIS HYPE!!!** -|c| Gaussfield|ayyy -|c| charizard8888|**900** -|c|★Crime♥|900 -|c| No 1 Machop Fan|really... -|c| Kuronachan|ITS HERE -|c| lordkaelros|1024 hype bois -|c| Aluminion|go for dem lava plume burns -|c| RoyHasABigDiglett|(gets the popcorn) -|c| Dfmetal|is 1000 possible ? -|c| gutu170599|yay 900 -|c| Kuronachan|CEEEEEEEEEELEBRATE YOUR TIME COME ON -|c| CoolSwag2015|1000 now imo :^) -|c| No 1 Machop Fan|I came here expecting to see a 150-turn FINISHED battle! -|c| Rath111|yes -|c| CriclesAreRound|900! -|c| drowzee518|1025 -|c| Rath111|i'm calling the 1000 -|c| gutu170599|1000 hype -|c| drowzee518|lezgo -|c| LifeisDANK|AYyy -|c| LifeisDANK|yyy -|c| LifeisDANK|yy -|c| LifeisDANK|y -|c| CoolSwag2015|**1000 hype** -|c| PI EddyChomp|__** Is 950 possible??**__ -|c| Amber Torrey|you know with no more taunts clefable could setup and sweep i think -|c| sancnea|and capt. 'merica has been revived (againt) -|c| RoyHasABigDiglett|Popcorn Any1? -|c|★CHEF BOY4RDEEZNUTS|DEEZ NUTS FOR PRESIDENT EVERYBODY -|c| Rath111|heatran has roar though -|c|@Former Hope|Amber Torrey, there's also phasing -|c| lordkaelros|Unless it isn't magic guard -|c| charizard8888|NO ADVERTISING HERE -|c| CoolSwag2015|lol -|c| drowzee518|5 roars -|c|★CHEF BOY4RDEEZNUTS|DEEZ NUTS WILL MAKE AMERICA GREAT AGAIN -|choice|switch 4|switch 6 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|901 -|c| hey i'm pikachu|**over 90000000!!!!!!!!** -|c| Aluminion|youtube.com/channel/noadvertising -|c|+Frizy|clef doesnt need to sweep -|c| Eon_Theory|Istill cant see the game -|c| Eon_Theory|ayyy -|c| lordkaelros|And a fuckton of whirlwinds -|c|+Frizy|chef just keeps switching -|c| Eon_Theory|holy crap -|c| Gaussfield|7 asses -|c| Eon_Theory|901 turns -|c| Eon_Theory|6 mons -|choice|switch 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|280/386 par -|-damage|p2a: Heatran|232/386 par|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|902 -|c| gutu170599|how many users are here currently? -|c| Kuronachan|the state of the pokemon meta -|c| GROUDONNNN|too many -|c| Vicky★the✡Shitlord|a whole fuckin lot -|c| charizard8888|80 GGs for me -|c| CriclesAreRound|its over 900! -|c| Gaussfield|not enough -|c| sancnea|a very nice question gutu -|c| Kuronachan|does crime's skarm -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: Redbull|Clefable, M|393/393 -| -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|903 -|c| Kuronachan|not have defog -|c|★Crime♥|lol -|c| Wasim007|they are not even trying to win -|c| sancnea|yes!!! roar success -|c| Vicky★the✡Shitlord|there -|c| Wasim007|they are just stalling for moves -|c| hey i'm pikachu|spoiler: press x -|c| Vicky★the✡Shitlord|is no wincon -|c| Vicky★the✡Shitlord|of course theyre not trying to win -|c| sancnea|lol -|c| Gaussfield|[x] -|choice|switch 5|switch 6 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|904 -|c| Kuronachan|use defog to prolong game plz........ -|c| LasagnaIsRectangle|any pokemon fainted yet?? -|c| Gaussfield|dude what -|c| Gaussfield|[test] -|c| Kuronachan|no pokemon are dead -|c| Gaussfield|amazing -|c| RoyHasABigDiglett|DANK!!!!!!!!! -|c| LifeisDANK|YE -|choice|switch 6|switch 6 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Heatran|Heatran, F, shiny|280/386 par -|-damage|p2a: Heatran|232/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|905 -|c| LifeisDANK|BRUH -|c| gutu170599|ok 58 users currently here -|c| Vicky★the✡Shitlord|friendly reminder to brush ur teeth -|c| CoolSwag2015|lol -|c| charizard8888|how did you count that gutu170599 -|choice|switch 2|switch 6 -| -|switch|p1a: TheMoreYouKnow|Jirachi|330/403 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|355/403|[from] item: Leftovers -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|906 -|c|★Crime♥|lol -|c| LifeisDANK|Friendly reminder to TURN UP -|c| Apathos|this isnt even loading properly -|c| Kyorem|we need defog -|c| Apathos|i cant see the pokemon -|c| jepler|this is a once in a lifetime oppurtunity -|c| Vicky★the✡Shitlord|apathos give it a minute -|c| Vicky★the✡Shitlord|youre loading 906 turns -|c| lordkaelros|or 5 -|choice|switch 3|move 2 -| -|switch|p1a: Annoying AF|Gliscor, M|308/352 tox -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|907 -|c| Kuronachan|scald 2win -|choice|switch 2|switch 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Cobalion|Cobalion|106/386 -|-damage|p2a: Cobalion|94/386|[from] Stealth Rock -| -|turn|908 -|c| gutu170599|i did ctrl+f and checked the people joined - the people left charizard8888 -|c| Kuronachan|oh my god -|c|★Crime♥|910 -|c| Kuronachan|is cobalion -|c| lordkaelros|coba getting whittled -|c| Kuronachan|going to be THE FIRST SACRIFICE -|c|★Crime♥|no -|c| charizard8888|Thanks gutu170599 -|c|★Crime♥|i have a suprise for you guys later -|c| LifeisDANK|WOop -|choice|switch 5|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Redbull|Clefable, M|393/393 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|909 -|c| Nortellaz|He's gonna wish him -|c| lordkaelros|woah -|c| Kyorem|__I love surprises__ -|c| Rath111|lmao -|c|★CHEF BOY4RDEEZNUTS|dicksalt -|c| Gaussfield|a surprise this late into the game? -|c| Gaussfield|amazing -|c|★Crime♥|haha nOrtella'z -|c| BayFence|the surprise is the lose? -|c| LifeisDANK|I love all the surprises -|c| Daze-Senpai|Ayy -|c| Rath111|omg chansey -|c| Rath111|has wishes -|c|+Frizy|whats with some of these sets lol -|c| Rath111|left -|choice|move 4|move 3 -| -|move|p1a: Redbull|Calm Mind|p1a: Redbull -|-boost|p1a: Redbull|spa|1 -|-boost|p1a: Redbull|spd|1 -|move|p2a: Slowbro|Toxic|p1a: Redbull -|-status|p1a: Redbull|tox -| -|-damage|p1a: Redbull|369/393 tox|[from] psn -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|910 -|c| RoyHasABigDiglett|wait -|c| gutu170599|now 38 -|c| lordkaelros|kek -|c| LifeisDANK|AHhh -|c| Daze-Senpai|The window is still saying "Seeking" -|c|★Crime♥|rekt -|c| Amber Torrey|Randomly Heatran uses explosion while chef switches to sableye -|c| LifeisDANK|GG -|c|★Crime♥|go to bed CHEF -|c| lordkaelros|R E K T -|c| LifeisDANK|its ova -|c| Rath111|NO DON'T -|c| Rath111|KEEP PLAYING -|c|★Crime♥|is it -|c|★Crime♥|REKT or SHREKT -|c| PI EddyChomp|I have hardly seen Jirachi battle yet. -|c| Gaussfield|D E S T R O Y E D -|c| Gaussfield|is the word -|choice|move 1|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|256/386 par -|-damage|p2a: Heatran|208/386 par|[from] Stealth Rock -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|174/386 par -| -|-heal|p1a: Redbull|393/393 tox|[from] item: Leftovers -|-heal|p2a: Heatran|198/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|345/393 tox|[from] psn -|turn|911 -|c| lordkaelros|Y u no mguard :( -|c| lordkaelros|u fucked na0 -|c|★Crime♥|nice damage -|c|★Crime♥|XD -|c| Kuronachan|game of roar -|c| LifeisDANK|annihilated -|c| RoyHasABigDiglett|مدح الرب -|c| TheCanadianWifier|omg ITS HAPPENING -|c| TheCanadianWifier|pls win -|c| Rath111|omg -|c| No 1 Machop Fan|911 -|c| TheCanadianWifier|with this -|c| Rath111|911 -|c| No 1 Machop Fan|/me is not American -|c| LifeisDANK|lel -|c| Eon_Theory|911 -|c| Rath111|never forget -|c| RoyHasABigDiglett|911 -|choice|move 3|move 2 -| -|move|p1a: Redbull|Wish|p1a: Redbull -|cant|p2a: Heatran|par -| -|-heal|p1a: Redbull|369/393 tox|[from] item: Leftovers -|-heal|p2a: Heatran|222/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|turn|912 -|c| Eon_Theory|deez nuts will make this country great again -|c| Nortellaz|Holocaust -|c| gutu170599|911 -|c| Gaussfield|911 did bush -|c| LifeisDANK|911? you mean more like 420 -|c| PI EddyChomp|910!!!! -|c| Nortellaz|Never forget -|c|★Crime♥|all planned -|c| RoyHasABigDiglett|مدح الرب -|c| StAlRuth|loaded on 9/11 what is this -|c| gutu170599|912 -|choice|switch 4|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|913 -|c| TheCanadianWifier|finally loaded for me, lol -|c| Eon_Theory|is this a real battle? -|c| Kuronachan|is the american police telephone number 911 because of 9/11 -|c| JacobWorld|I can't see anything -|c| lordkaelros|lmao -|c| Amber Torrey|Wait why would your clefable not be magic guard on a stall team? -|c|★Crime♥|perfect -|c|★Crime♥|back to slowbro -|c| Eon_Theory|or is this just a challenge? -|c| Gaussfield|this is a surreal battle -|c| lordkaelros|I don't know -|c| LifeisDANK|Its ludacris -|c| i am having fun|ladder Eon_Theory -|c| lordkaelros|Why u no mguard bru -|c| LifeisDANK|its eminem -|c| Eon_Theory|oh my godi -|c| Kuronachan|because -|c| Kuronachan|cute charm -|c| Eon_Theory|is this a real ladder battle -|c|★Crime♥|yes -|c| Kuronachan|clefable just wants to be pretty :( -|c| Gaussfield|yep -|c|+Frizy|unaware clef is fine -|c| CriclesAreRound|this is has become bigger than many showdown rooms -|c| Eon_Theory|holy crap -|c|★Crime♥|this is a real OU game random.. -|c| LifeisDANK|gotta be a cutie in a battle -|c| i am having fun|it says rated battle at the very top -|c|★Crime♥|you guys can see it at the end -|c| i am having fun|that means its ladder -|c|+Frizy|that set is horrible tho.. -|c| Eon_Theory|oh true -|c| Eon_Theory|lmao -|c| Eon_Theory|your clef set is bad -|c| JacobWorld|spoiler: -|c| Eon_Theory|and you should feel bad -|c| RoyHasABigDiglett|Any1 here have Drakeitis? -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|914 -|c| Eon_Theory|:< -|c| hey i'm pikachu|____ -|c|★Crime♥|gosh 10 slack off left -|c| Eon_Theory|lmfao -|c| TheCanadianWifier|anyone here play mk8? :o -|c| Eon_Theory|only 10? -|c| hey i'm pikachu|____________________ -|c| Gaussfield|spoiler: -|c| CoolSwag2015|rip lol -|c| PI EddyChomp|You should call Tentacreul Jellybruu -|choice|move 4|switch 2 -| -|switch|p2a: Florges|Florges, F|207/360 -|-damage|p2a: Florges|162/360|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Florges -|-damage|p2a: Florges|147/360 -| -|turn|915 -|c| Kuronachan|back in my day if you had a psychic type against a poison type you won -|c| Nortellaz|chef, at this point I would go for turn 1024 so that neither of you wins -|c| QuagGod|so i come back from making hot cocoa after my internet gave in -|c| Kuronachan|this is fucking bullshit -|c| lordkaelros|110 turns left -|c|★CHEF BOY4RDEEZNUTS|HE COMES THE WISH -|c| QuagGod|and still this is going on -|c| sancnea|im so addicted right now -|c| lordkaelros|we can do it -|c|★CHEF BOY4RDEEZNUTS|FUCK ME -|c| LifeisDANK|IF YOU WISH UPON A STARrr. -|c| sancnea|cant move onto nother gamea -|c| QuagGod|im still loading too kek -|c|★Crime♥|i think its early for a wish ^^ -|c|+Frizy|does it actually end at 1024 lol -|c| QuagGod|o shit its finished -|choice|switch 4|switch 2 -| -|switch|p1a: Redbull|Clefable, M|297/393 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|916 -|c| Eon_Theory|this is like twitch plays pokemon -|c| Eon_Theory|all over again -|c| StAlRuth|it's the last wish -|c| StAlRuth|aww rip -|c| PI EddyChomp|Florges and Cobalion have too be sacrificed -_- -|c|★Crime♥|TOO EARLY FOR A WISH GUYS -|c|★Crime♥|the game didnt even start yet -|c| PI EddyChomp|Lol -|c|★Crime♥|lol -|c| StAlRuth|>turn 916 -|c| PI EddyChomp|LOL -|c| QuagGod|lol -|c| lordkaelros|lmao -|c| LifeisDANK|Lets see to the edge of this earth brethren, is this 1042 a legend or a fact -|c|★Crime♥|kil -|c|★Crime♥|lol -|c| StAlRuth|jfc lmao -|c| lordkaelros|Typical stall player -|c| Kuronachan|I wish this cancer never happened -|c| Amber Torrey|Nah Twitch plays pokemon had way more progress then this bs -|c| StAlRuth|bring it to 2015 -|c| TheCanadianWifier|Crime, CHEF... Enjoy this. Really. You'll never be this interesting or popular for a loong time, and possible never :P -|c|@Former Hope|I'm pretty sure when you run out of bullets marks the end of a battle. -|c| JacobWorld|this is going to be history -|c| Nortellaz|In other news: Last Smash direct coming guys! Fingers crossed for Geno (cries inside). -|c| StAlRuth|what are we banning after this bs? -|c| TheCanadianWifier|you have 60 + people watching your every move -|c|★Crime♥|yes im happy about it -|c| No 1 Machop Fan|this is why stall is bad in OU -|c|★Crime♥|i admit it -|c|★CHEF BOY4RDEEZNUTS|means nothing to me canada -|c| Kuronachan|fuck geno -|c| Rath111|you have 40 seconds left crime -|c| No 1 Machop Fan|if two OU stall teams meet, this happens -|c| LifeisDANK|When youre outta bullets ya use your fists -|c| Kuronachan|we need a weapon to surpass metal gear -|c| StAlRuth|this is why we play vgc no 1 machop fan -|c| Amber Torrey|Popular for the wrong reasons -|c| Nortellaz|Why fuck Geno? :( -|c| No 1 Machop Fan|exactly :p -|choice|move 3|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|222/386 par -|-damage|p2a: Heatran|174/386 par|[from] Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-heal|p2a: Heatran|198/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|273/393 tox|[from] psn -|turn|917 -|c| Nortellaz|That's kinda grodd -|c| Nortellaz|*gross -|c| gutu170599|bye guys make it 5000....... -|c|★Crime♥|lol -|c| LifeisDANK|fuck geno ,':) -|c| No 1 Machop Fan|at least VGC16 has the decency to use 4 Pokémon 2 at a time and to be hyper-offensive -|choice|move 1|move 3 -| -|move|p1a: Redbull|Moonblast|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|176/386 par -|move|p2a: Heatran|Stealth Rock|p1a: Redbull -|-sidestart|p1: CHEF BOY4RDEEZNUTS|move: Stealth Rock -| -|-heal|p1a: Redbull|393/393 tox|[from] move: Wish|[wisher] Redbull -|-heal|p2a: Heatran|200/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|321/393 tox|[from] psn -|turn|918 -|c| Amber Torrey|wait Geno from one-punch man? -|c|★Crime♥|rocks time -|c| lordkaelros|OOOO -|c| Gaussfield|dat timer -|c| LifeisDANK|THE ROCKS -|c| Eon_Theory|genos -|c| lordkaelros|No more rocks -|c|★Crime♥|DA ROCKS -|c|★Crime♥|lol -|c| gutu170599|Crime CHEF try 6493.... -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|-damage|p1a: I <3 Stall|264/301|[from] Stealth Rock -|move|p2a: Heatran|Roar|p1a: I <3 Stall -|move|p1a: I <3 Stall|Roar|p2a: Heatran|[from]Magic Bounce -|drag|p2a: Cobalion|Cobalion|94/386 -|-damage|p2a: Cobalion|82/386|[from] Stealth Rock -| -|turn|919 -|c| Eon_Theory|THE ROCKS ARE UP -|c| Eon_Theory|GG -|c| TheCanadianWifier|Don't time out ;) -|c| Kuronachan|at least any decent format has the decency to not have mega rayray -|c| Nortellaz|You idiots, Tenta has Spin. Doesn't matter. -|c| No 1 Machop Fan|8192? :p -|c| JacobWorld|lol -|c| sancnea|introducing the switch clause, inspired due to the unhealthy obesessive nature of the unreal number of turns in a single ladder battle -|c| Eon_Theory|damn it -|choice|switch 2|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|182/334 -|-damage|p2a: Skarmory|141/334|[from] Stealth Rock -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|-damage|p1a: Annoying AF|308/352 tox|[from] Stealth Rock -| -|-heal|p1a: Annoying AF|352/352 tox|[from] ability: Poison Heal -|turn|920 -|c| QuagGod|holy fuck -|c| QuagGod|why is timer still on -|c| QuagGod|turn it off zzz -|c|★CHEF BOY4RDEEZNUTS|Still itching for that smoke Crime? -|c|★Crime♥|yes lol -|c| PI EddyChomp|920!! -|c| StAlRuth|introducing a ban on pokemon with a bulk to attack ratio > some number -|c| TheCanadianWifier|8192 is the MC value for diamond -|c|★Crime♥|i still didnt smoke -|c| No 1 Machop Fan|hmm... -|c| LifeisDANK|this is amazing -|c| lordkaelros|Let the psychologicalwarfare begin -|c| Enzonana|Omg -|choice|switch 3|switch 6 -| -|switch|p1a: TheMoreYouKnow|Jirachi|355/403 -|-damage|p1a: TheMoreYouKnow|330/403|[from] Stealth Rock -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|355/403|[from] item: Leftovers -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|921 -|c| Nortellaz|Smoking is bad for you. I'm glad I never picked up the habit. -|c|★Crime♥|im gonna lose -|c| Gaussfield|this right here -|c|★CHEF BOY4RDEEZNUTS|agreed nort -|c|+SpaceBass|★CHEF BOY4RDEEZNUTS: Still itching for that smoke Crime? -|c| Gaussfield|is the next level -|c|+SpaceBass|Brutal stall tactics -|c| Eon_Theory|CHEF BOY4RDEEZNUTS is a dumb bumb -|c| Enzonana|920 turns -|c| LifeisDANK|crime i beeleeve in u -|c| Enzonana|6vs6 -|c| Enzonana|loool -|c| Eon_Theory|psychological warfare -|c| BayFence|enzo fuera de aqui -|choice|switch 4|switch 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|-damage|p1a: U Jelly Bruh?|318/363|[from] Stealth Rock -|switch|p2a: Chansey|Chansey, F|535/642 -|-damage|p2a: Chansey|455/642|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|340/363|[from] item: Black Sludge -|turn|922 -|c| lordkaelros|You guys should have taken a break at turn 420 -|c| TheCanadianWifier|just get'ter to 1000 please :] -|c|★CHEF BOY4RDEEZNUTS|paying $$$ for cancer -|c| lordkaelros|And hit a blunt -|c| Enzonana|no mamaes bay -|c| Rath111|NO WISHES -|c|★CHEF BOY4RDEEZNUTS|smoking is dumb -|c| StAlRuth|come on CHEF BOY4RDEEZNUTS, let crime have a smoke break lmao -|c| StAlRuth|:^) -|choice|move 4|move 1 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Chansey -|-damage|p2a: Chansey|440/642 -|-sideend|p1: CHEF BOY4RDEEZNUTS|Stealth Rock|[from] move: Rapid Spin|[of] p1a: U Jelly Bruh? -|move|p2a: Chansey|Seismic Toss|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|240/363 -| -|-heal|p1a: U Jelly Bruh?|262/363|[from] item: Black Sludge -|turn|923 -|c| Nortellaz|Not only that, non-smokers have to breathe in the shitty secondhand smoke -|c| No 1 Machop Fan|^ -|choice|switch 2|switch 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|924 -|c| Kuronachan|ONLY 100 TURNS TO GO BOYS -|c| No 1 Machop Fan|spare a thought for the children of smokers -|c| Nortellaz|Pretty fucking ridiculous. -|c| No 1 Machop Fan|when I was young I had to put up with it -|c| Kyorem|I sell cigarettes at my work -|c| Kuronachan|everyone is leaving -|c| No 1 Machop Fan|thankfully my mother grew up and quit -|c| Nortellaz|Same here, my dad was a chain smoker :( -|c| LifeisDANK|this shit is bananas -|choice|switch 5|switch 5 -| -|switch|p2a: Cobalion|Cobalion|82/386 -|-damage|p2a: Cobalion|70/386|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|turn|925 -|c| LifeisDANK|b a n a n a s -|choice|switch 5|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|926 -|c| lordkaelros|coba getting whittled -|c| Nortellaz|But he's Korean, so he has this super Asian genes that prevent him from getting lung cancer -|c| lordkaelros|time to bring out the wish -|c| Dfmetal|★Crime♥: im not good at stall yet ;3 -|c| Eon_Theory|coba -|c| Amber Torrey|My parents grandparents and aunts all smokes about 2 packs a day -|c| Dfmetal|Turn 3 -|c| Eon_Theory|pls dont die -|c| Amber Torrey|not a single one got cancer -|c|★Crime♥|lol -|c| StAlRuth|and I thought my 45 min game at the burwood PC was stally -|c| No 1 Machop Fan|smoking is still bad -|c| No 1 Machop Fan|it's gross -|c| gorry oak|dankthony mangtano -|c| QuagGod|tobacco is bad for u -|c| BaconChest|test -|c|★Crime♥|i prefer to smoke than eat a piece of pork meat -|c| LifeisDANK|dank -|c| Nortellaz|Genetics is probably as significant as a factor as to whether you'd get cancer -|c| RoyHasABigDiglett|dank -|c|★CHEF BOY4RDEEZNUTS|why spend money on cigs when you can buy tacos? -|c| QuagGod|smoke cannabis instead, its a lot cleaner -|c| LifeisDANK|AY -|c| GiraGoomy|timer bois -|c| Eon_Theory|are you guys even trying to win at this point? -|c| QuagGod|:^) -|c|@Former Hope|Mega evolve Slowbro on turn 1000 -|c| lordkaelros|Cannabis life -|c| Nortellaz|That's cool, I'm trying to be vegetarian too -|c| StAlRuth|they're really just trying to not lose -|choice|switch 5|switch 5 -| -|switch|p2a: Cobalion|Cobalion|70/386 -|-damage|p2a: Cobalion|58/386|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|642/642 -| -|turn|927 -|c| drowzee518|pot has like 5x the risk for cancer tho -|c| JacobWorld|how long has this battle gone on for -|c| QuagGod|not even truw -|c| QuagGod|*truw -|c| lordkaelros|uw0tm8 -|c|★Crime♥|5 hours and 50 mins -|c| QuagGod|*true -|choice|switch 5|switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|928 -|c| drowzee518|yeah look it up -|c| Enzonana|LOL -|c| JacobWorld|really -|c| LifeisDANK|pot only gives you cancer if you inject it in your eyeballs ;) -|c| QuagGod|idk who told u that false info lol -|c| lordkaelros|kek -|choice|switch 5|move 2 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|929 -|c| Gaussfield|i'm gonna be gone for a while and i bet by the time i get back coballion will have more than 50% health -|c| zebba|jesus fucking christ -|c| Eon_Theory|slowbro had better mega evo on turn 1000 -|c| zebba|>singles -|c| drowzee518|just look it up -|choice|switch 3|switch 5 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|switch|p2a: Cobalion|Cobalion|58/386 -|-damage|p2a: Cobalion|46/386|[from] Stealth Rock -| -|turn|930 -|c| lordkaelros|We have looked it up -|c| QuagGod|i did extensive research on the cannabis plant -|c| lordkaelros|That's more bs than the vaccination haters -|c| Nortellaz|I looked it up. No real info. -|c| Durr00|HAS THIS BATTLE BEEN GOING FOR ALMOST 6 HOURS??? -|choice|switch 5|switch 2 -| -|switch|p2a: Florges|Florges, F|147/360 -|-damage|p2a: Florges|102/360|[from] Stealth Rock -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -| -|turn|931 -|c| Dfmetal|don't forgeit to save the replay :eh: -|c| LifeisDANK|wish time -|c| Nortellaz|That's like saying masturbation makes you blind. -|c| QuagGod|lmao -|c| CriclesAreRound|wtf -|c|★Crime♥|is it time for the wish? -|c| CriclesAreRound|rofl -|c|★Crime♥|or yet too early? -|c| Kyorem|lol -|c| LifeisDANK|But my eyes are fine! -|c| lordkaelros|Well, my eyesight IS pretty bad :p -|c| LifeisDANK|kek -|c| Eon_Theory|he has 1 wish -|c| Durr00|GUYS WTH? -|c| CriclesAreRound|dont wish yet -|c| Eon_Theory|better make it count -|c| LifeisDANK|wish -|c| Kyorem|wish now -|c| Enzonana|Wish to cobalion owo -|c| LifeisDANK|wish upon a star -|c| Nortellaz|You should probably wish, your Florges is gonna die pretty soon. -|choice|switch 6|move 4 -| -|switch|p1a: Redbull|Clefable, M|321/393 tox -|move|p2a: Florges|Wish|p2a: Florges -| -|-heal|p1a: Redbull|345/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|321/393 tox|[from] psn -|turn|932 -|c| hey i'm pikachu|spoiler: you could have played 100 battles in this game -|c| Nortellaz|ACTIVATION -|c| Kyorem|HERE IT COMES -|c| gorry oak|you've got about 400 turns left in this florges -|c| LifeisDANK|THERE IT IS -|c| Gaussfield|IT HAPPENED -|c| hey i'm pikachu|*with the time -|c| LifeisDANK|ATYTTTTTTTTT -|c| LifeisDANK|HYPE -|c| Kuronachan|iGNITION -|c|@Former Hope|>Hype over a wish -|c| LifeisDANK|VROOM -|choice|move 2|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|200/386 par -|-damage|p2a: Heatran|152/386 par|[from] Stealth Rock -|move|p1a: Redbull|Flamethrower|p2a: Heatran -|-start|p2a: Heatran|ability: Flash Fire -| -|-heal|p2a: Heatran|332/386 par|[from] move: Wish|[wisher] Florges -|-heal|p1a: Redbull|345/393 tox|[from] item: Leftovers -|-heal|p2a: Heatran|356/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|turn|933 -|c|★Crime♥|ty -|c| lordkaelros|Wow -|c| Nortellaz|My wish is for world peace -|c| Kuronachan|OH -|c| Kuronachan|MY -|c| lordkaelros|The plays -|c| Kuronachan|GOD -|c| Gaussfield|dude -|c| lordkaelros|are so real -|c| Gaussfield|i -|c| QuagGod|wow -|c| charizard8888|Getting Weary -|c| LifeisDANK|THEM HARD READS -|c| Gaussfield|ohmygod -|c| QuagGod|what a lord -|c| QuagGod|lel -|choice|switch 3|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|-end|p2a: Heatran|ability: Flash Fire|[silent] -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|934 -|c| Eon_Theory|spoiler: saitama-sama is my waifu -|c| QuagGod|lol -|c| BayFence|cobalio die and florges too -|c| gorry oak|i need it -|c| LifeisDANK|ive been here almost an hour -|c| StAlRuth|plz -|c| PI EddyChomp|This will go on forever............ -|choice|switch 5|move 3 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Slowbro|Toxic|p1a: Annoying AF -|-fail|p1a: Annoying AF|tox -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|935 -|c| StAlRuth|PLZ -|c| StAlRuth|ayyy -|c| Gaussfield|even if they do go down -|c| Gaussfield|slowbro is livin -|c| PI EddyChomp|I have been here 45 Minutes -|choice|switch 5|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Heatran|Heatran, F, shiny|356/386 par -|-damage|p2a: Heatran|308/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|332/386 par|[from] item: Leftovers -|turn|936 -|c| Gaussfield|forever -|c| Pepeduce|Skarm die too -|c| StAlRuth|it continues -|choice|switch 2|switch 5 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|262/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|284/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|937 -|c| Nortellaz|Drinking game: Take a drink everytime someone switches! -|c| lordkaelros|This is the kind of game where you'd WANT to get paralyzed -|c| LifeisDANK|why not defog -|choice|switch 5|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|352/352 tox -|move|p2a: Slowbro|Scald|p1a: Annoying AF -|-supereffective|p1a: Annoying AF -|-crit|p1a: Annoying AF -|-damage|p1a: Annoying AF|8/352 tox -| -|-heal|p1a: Annoying AF|52/352 tox|[from] ability: Poison Heal -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|938 -|c| JacobWorld|yes nortellaz -|c|@Former Hope|Nortellaz and die of liver poisoning? -|c| LifeisDANK|AY -|c| QuagGod|good god i hope first blood is soon -|c| BayFence|he has just 1 defog -|c| hey i'm pikachu|he can just rocks -|c| lordkaelros|Lmao -|c| Gaussfield|HOOOOOOOOLY SHIT -|c| JacobWorld|hello -|c| hey i'm pikachu|again -|c| Kyorem|HOLY -|c| Rath111|LOL -|c| QuagGod|O FUCK -|c| GiraGoomy|SO CLOSE -|c| QuagGod|LOL -|c| CoolSwag2015|LOOOOOOOOL -|choice|move 4|switch 4 -| -|switch|p2a: Chansey|Chansey, F|440/642 -|-damage|p2a: Chansey|360/642|[from] Stealth Rock -|move|p1a: Annoying AF|Protect|p1a: Annoying AF -|-fail|p1a: Annoying AF -| -|-heal|p1a: Annoying AF|96/352 tox|[from] ability: Poison Heal -|turn|939 -|c| lordkaelros|SO CLOSE' -|c| Nortellaz|Mmm, good point. -|c| lordkaelros|SO FUCKING CLOSE -|c| Eon_Theory|OH MY -|c| No 1 Machop Fan|/me eats popcorn watching everyone react -|c| Eon_Theory|BIG PLAYS -|c| Eon_Theory|SO CLOSE -|c| Gaussfield|that wasn't even a crit -|choice|switch 6|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|940 -|c| Chaotic Midnight|.win Crime -|c| No 1 Machop Fan|*else -|c| Gaussfield|oh my god -|c| lordkaelros|21 tosses left -|choice|switch 2|move 1 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|move|p2a: Chansey|Seismic Toss|p1a: Fatty -|-damage|p1a: Fatty|542/642 -| -|turn|941 -|c| LifeisDANK|the plays -|c| lordkaelros|FATTY WARS -|c|★Crime♥|lol -|c| StAlRuth|and they say CHALK is an issue, we at least don't spend hours on a single game XD -|choice|switch 2|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|942 -|c| PI EddyChomp|...................................................................................................................................................................................... -|c| QuagGod|whar -|c| PI EddyChomp|............................................................. -|c| QuagGod|*what -|c|★Crime♥|time for a smoke -|c| JacobWorld|3 years later... -|c| QuagGod|a lord -|c| PI EddyChomp|........................................................................ -|c|★Crime♥|turn 1000 soon! -|c| StAlRuth|plz kill timer -|c| QuagGod|timer's still on tho -|c| LifeisDANK|100 more turns -|choice|switch 4|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|355/403 -|move|p2a: Chansey|Seismic Toss|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|255/403 -| -|-heal|p1a: TheMoreYouKnow|280/403|[from] item: Leftovers -|turn|943 -|c| QuagGod|turn that shit off fam -|c| CoolSwag2015|turn 950 hype -|c| QuagGod|:/ -|c| JacobWorld|turn 184730475 6-6 -|c| CoolSwag2015|!!! -|c| Kuronachan|chalk is an issue because it doesn't make you spend hours on a single game -|c| Kuronachan|this is art -|c| Kuronachan|this is legendary -|choice|move 2|move 1 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Chansey -|-status|p2a: Chansey|par -|move|p2a: Chansey|Seismic Toss|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|180/403 -| -|-heal|p1a: TheMoreYouKnow|205/403|[from] item: Leftovers -|turn|944 -|c| QuagGod|^ -|c|+Frizy|it really isnt -|c| lordkaelros|rachi can't do shit -|c| Nortellaz|I'm gonna have to leave. When I reach my gf's place and this battle still hasn't ended yet... -|c| BayFence|now cheef turn this battle i think u win -|c| Gaussfield|you went from "this is cancer" to "this is art" -|c| QuagGod|its got nothing on funbro tho *-* -|c|★Crime♥|lol -|choice|switch 6|move 1 -| -|switch|p1a: Annoying AF|Gliscor, M|96/352 tox -|move|p2a: Chansey|Seismic Toss|p1a: Annoying AF -|-damage|p1a: Annoying AF|0 fnt -|faint|p1a: Annoying AF -| -|c| LifeisDANK|This is a performance art, in the catergory or endurance -|c|+Frizy|chef trying hard to throw -|c| Nortellaz|BOOM! -|c| lordkaelros|GGGG -|c| qsns|are you -|c|★Crime♥|OMG -|c| CoolSwag2015|YES -|c| qsns|retarded -|c| Rath111|OMG -|c|★Crime♥|OMGGGGGGGGG -|c| JacobWorld|yay -|c| No 1 Machop Fan|YAY! SOMETHING! :p -|c| CoolSwag2015|YESSSSSSS -|c| lordkaelros|FIRST BLOOOD -|c| Rath111|OMG -|c| zebba|OH SHIT -|c| Gaussfield|FIRST BLOOD -|c| Rath111|OMG -|c| BaconChest|:D -|c| GiraGoomy|IT'S HAPPENED -|c|★Crime♥|WOHOOOOOOOOOOOo -|c| QuagGod|OMG -|c| lordkaelros|WOWOWOWOWOWOWOWOWW -|c|★Crime♥|FIRST BLOOD -|c| BaconChest|yessss -|c| JacobWorld|final -|c| LifeisDANK|HYPE -|c| CoolSwag2015|FINALLY LOL -|c|★Crime♥|LMAO -|c|★CHEF BOY4RDEEZNUTS|chat broken -|c| PI EddyChomp|OMG -|c| lordkaelros|IT HAPPENED -|c| QuagGod|FIRST BLOOD HYPE -|c| lordkaelros|GG -|c| LifeisDANK|AYYYY -|c| StAlRuth|AYYYYYYY -|choice|switch 2| -| -|switch|p1a: Fatty|Chansey, F|542/642 -|turn|945 -|c| JacobWorld|turn 944 -|c|★Crime♥|this chat tho xD -|c| QuagGod|LOOOOOOOOOOL -|c| Kyorem|KILZZ -|c| LifeisDANK|REKT -|c| lordkaelros|KEEPO -|c| lordkaelros|LMAO -|c| LifeisDANK|TEKY -|c|+Frizy|pretty sure he still wins but still -|c|★Crime♥|this chat is op -|c| LifeisDANK|GG -|c| Nortellaz|Alright, bae can wait. I'm staying for more murders. -|c| StAlRuth|G RIP -|c| PI EddyChomp|GLISCOR WAS KO'D -|c| ClassifiedArea|THE KO -|c|★Crime♥|this chat is seriously op -|c| CoolSwag2015|**FIRST BLOOD** -|c| LifeisDANK|GG -|c| goodguygastly|You called? -|c| Rath111|hit 1000 -|c| LifeisDANK|https://www.youtube.com/watch?v=u9ymUX1fJLw -|c| StAlRuth|ONE F = ONE RESPECT -|c| hey i'm pikachu|**NO PEACE** -|c| No 1 Machop Fan|what Crime♥ said :p -|c| Rath111|c'moooooooooon -|c| StAlRuth|FFFFFFFFF -|c| Rath111|hit that 1000 -|c| No 1 Machop Fan|oh no -|c| BaconChest|1 down, 11 to go....im on team draw -|c| No 1 Machop Fan|Chansey vs. Chansey -|c| hey i'm pikachu|*CRIME HAS COMMITTED A CRIME** -|c| Kyorem|300 years later... FIRST BLOOD -|c|★Crime♥|guys -|c|★Crime♥|will i win? -|c|★Crime♥|:o -|c| LifeisDANK|AYY -|c| Gaussfield|possibly -|c|★Crime♥|i soo want to win :( -|c| QuagGod|tfw first blood: -|c| LifeisDANK|YOU GO TTHIS Bau -|c| CoolSwag2015|dont think so tbh -|c| LifeisDANK|BAe -|c| Nortellaz|The game's gonna end in a draw. -|c|★Crime♥|<3 -|c| QuagGod|"NIGGA WE MADE IT" -|c| PI EddyChomp|Lol -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|946 -|c|★Crime♥|AYYY -|c| BaconChest|nah nah got too excited crime -|c|★Crime♥|im gonna switch -|c|★Crime♥|and lose'' -|c| Gaussfield|same place -|c| hey i'm pikachu|**4 more turns** -|c| Fryerstarter|WOAH -|c| Gaussfield|let's go -|c|★Crime♥|joke -|c| Fryerstarter|FINALLY LOADED -|choice|switch 4|move 1 -| -|switch|p1a: Fatty|Chansey, F|542/642 -|move|p2a: Chansey|Seismic Toss|p1a: Fatty -|-damage|p1a: Fatty|442/642 -| -|turn|947 -|c| QuagGod|950s **HYPE** -|c| lordkaelros|played -|c| Gaussfield|THE PLAYS THOUGH -|c| PI EddyChomp|And he goes for an OHKO!! -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|948 -|c| lordkaelros|13 tosses -|c| Gaussfield|oh -|choice|switch 4|switch 5 -| -|switch|p1a: Fatty|Chansey, F|442/642 -|switch|p2a: Heatran|Heatran, F, shiny|332/386 par -|-damage|p2a: Heatran|284/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|308/386 par|[from] item: Leftovers -|turn|949 -|c|★Crime♥|no ty -|c| PI EddyChomp|Dis Chansey tho:D -|c|★Crime♥|time for a other strategy -|c|★Crime♥|uhmmmmm -|c|★Crime♥|guys -|c| CriclesAreRound|what turn is this ? -|c|★Crime♥|lets make cobalion back to life -|c|★Crime♥|<3 -|c|+Frizy|oh hey good thing you sacced that gliscor -|c|★Crime♥|somehow -|c| hey i'm pikachu|949 -|c| hey i'm pikachu|**1 more** -|c| PI EddyChomp|950 -|c| Kuronachan|i cant believe i missed first blood -|c| Gaussfield|9 5 0 h y p e -|c| Kuronachan|im a disgrace -|c| QuagGod|rip -|c| PI EddyChomp|LOL -|c| lordkaelros|yes, you are -|c| LifeisDANK|AYyy -|choice|switch 5|switch 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|284/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|306/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|950 -|c| CoolSwag2015|**TURN 950!1!!!1!!** -|c| StAlRuth|banned from PS -|c|★Crime♥|oke -|c|★Crime♥|its time to burn this tenta! -|c| StAlRuth|for missing FIRST BLOOD -|c| Kuronachan|950 HYPE -|c| PI EddyChomp|**HE MAKES THE GOAL!!!** -|c| hey i'm pikachu|__95000000000000__ -|c| Kuronachan|74 more -|c| Kuronachan|74 more... -|choice|switch 5|switch 4 -| -|switch|p1a: Fatty|Chansey, F|442/642 -|switch|p2a: Heatran|Heatran, F, shiny|308/386 par -|-damage|p2a: Heatran|260/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|284/386 par|[from] item: Leftovers -|turn|951 -|c| QuagGod|950 TURNS :O -|c| Gaussfield|oh -|c| CoolSwag2015|951* -|c| Dual Screens Mamo|tfw i cant load -|c| Enzonana|no defog? -|c|★Crime♥|i have defog -|c| QuagGod|rip dual screens mamo -|c| Aluminion|74 turns left (this is 10 bit binary) -|c| Aluminion|and 2^10 = 1024 -|c| Rath111|oh fuck -|choice|switch 5|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|306/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: I <3 Stall|Sableye-Mega, M|264/301 -| -|-heal|p2a: Heatran|308/386 par|[from] item: Leftovers -|turn|952 -|c| lordkaelros|Or so you claim -|c| lordkaelros|We need to test the legend -|c| Rath111|they store the turns in 10 bits? -|c| Rath111|but a byte is 8 bits -|c| LifeisDANK|AYYYY whats good -|c|★CHEF BOY4RDEEZNUTS|use plume -|c| drowzee518|2^10=1024 -|choice|switch 4|switch 6 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|306/363 -|switch|p2a: Skarmory|Skarmory, F|141/334 -|-damage|p2a: Skarmory|100/334|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|328/363|[from] item: Black Sludge -|turn|953 -|c|★CHEF BOY4RDEEZNUTS|do it -|c| drowzee518|lets hit 1025 -|c| Aluminion|i don't know what im talking about -|c| Aluminion|i'm joking -|c| Gaussfield|here we go -|c|★CHEF BOY4RDEEZNUTS|that defog doe -|c|★Crime♥|defog or whirlwind -|c|★Crime♥|? -|c|+Frizy|yes waste the fogger -|c| Aluminion|i never studied a single minute of computer science -|c| Rath111|it's atleast 2 bytes -|c| StAlRuth|https://soundcloud.com/boxofkangaroos/littleroot-jam -|c| TheCanadianWifier|1 defog left -|c| TheCanadianWifier|LOL -|c| Nortellaz|Brave Bird -|c| drowzee518|im a comp sci major -|c| CoolSwag2015|1 defog left o.o -|c| QuagGod|StAlRuth that's fire -|c| Rath111|since 1 byte is a max of 255 if it's unsigned -|c| CriclesAreRound|what is going on the battle isnt loading... -|c| QuagGod|:o -|c| drowzee518|i shud prolly know this -|c| drowzee518|but w/e -|c| Aluminion|yeah true -|choice|switch 6|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|205/403 -|move|p2a: Skarmory|Brave Bird|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|145/403 -|-damage|p2a: Skarmory|80/334|[from] recoil|[of] p1a: TheMoreYouKnow -| -|-heal|p1a: TheMoreYouKnow|170/403|[from] item: Leftovers -|turn|954 -|c| drowzee518|its 6am -|c| drowzee518|i dont know anything rn -|c| lordkaelros|skarm sweep incoming bois -|c| LifeisDANK|6am too bro -|c| LifeisDANK|east coaster? -|c| drowzee518|y -|c| hey i'm pikachu|intense -|c| lordkaelros|430 pm O.o -|c| BaconChest|oooh the mind games here are too real -|c| ZzamanN|woah fuck -|c| Rath111|65535 is the max unsigned number for 2 bytes -|c| Gaussfield|it's 1am here -|c| ZzamanN|something got KOed -|choice|move 4|switch 5 -| -|switch|p2a: Chansey|Chansey, F|360/642 -|-damage|p2a: Chansey|280/642|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Chansey -|-fail|p2a: Chansey -| -|-heal|p1a: TheMoreYouKnow|195/403|[from] item: Leftovers -|turn|955 -|c| quay4|omg -|c| i am having fun|TheCanadianWifier you gonna narrate this replay? -|c| LifeisDANK|git good sleep is for never -|c| BaconChest|eyyyyy -|c| i am having fun|every turn -|choice|switch 4|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Chansey|[from]Magic Bounce -|-status|p2a: Chansey|tox -| -|-damage|p2a: Chansey|240/642 tox|[from] psn -|turn|956 -|c| TheCanadianWifier|nah LOL -|c| Enzonana|plays plays -|c| BaconChest|get played -|c| CriclesAreRound|1000 is incoming -|c| lordkaelros|rekt -|c| TheCanadianWifier|OOHHHHHH -|c| Cryolite|its almost certainly using the base int number type in whatever language PS is written in -|c|★Crime♥|all planned -|c| Cryolite|which is 32/64 bits -|c| StAlRuth|let's fill the `u16` LADIES AND GENTOOMEN -|c| Cryolite|ie several billion -|c| Rath111|if it's an int omg 4billion turns -|c| Kuronachan|its over -|c| Rath111|ahahahaa -|choice|switch 5|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: Fatty|Chansey, F|442/642 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|957 -|c| Kuronachan|chansey is over -|c| No 1 Machop Fan|good thing it doesn't have Minimise -|c| Dual Screens Mamo|I have no idea what happening. but i do know that its seeking -|c| CriclesAreRound|2000 years latter..... -|c| Eon_Theory|oh my god this is still happening -|choice|switch 3|move 3 -| -|switch|p1a: Redbull|Clefable, M|297/393 tox -|move|p2a: Slowbro|Toxic|p1a: Redbull -|-fail|p1a: Redbull|tox -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|958 -|c| ZzamanN|**3 M O R E T U R N S B O I S** -|c| PI EddyChomp|9999999999 Turns Later............... -|c| QuagGod|will chef and crime hit the 1000 milestone? -|c| CriclesAreRound|that redbullllllllllllll -|c| QuagGod|will another fat mon die? -|choice|switch 5|switch 6 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|switch|p2a: Heatran|Heatran, F, shiny|308/386 par -|-damage|p2a: Heatran|260/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|284/386 par|[from] item: Leftovers -|turn|959 -|c| Nortellaz|That Clefable is stacked with pp -|c| Nortellaz|Too bad it's poisoned -|c| QuagGod|will chef pull in with that clef sweep? -|c| Kuronachan|by the time this ends we'll get half life 3 -|c|★CHEF BOY4RDEEZNUTS|redbull sounds AMAZING right now -|c| QuagGod|find out next time on -|c| CriclesAreRound|this battle has more ppl than most showdown room lol -|c| QuagGod|dragon ball z -|c| LifeisDANK|rebull is gross -|c| LifeisDANK|I like Nos -|c| quay4|yep -|c| lordkaelros|I don't know what nos is -|c| LifeisDANK|energy drink -|c| lordkaelros|redbull is gross though -|c| Dual Screens Mamo|yo real talk fruit punch Nos is awesome -|c| QuagGod|i dont like energy drinks -|c| Rath111|redbull gives cancer -|c| LifeisDANK|that doesnt taste like gasoline -|c| QuagGod|esp not red bull that's nasty af -|choice|switch 6|switch 6 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|328/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|350/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|960 -|c| CriclesAreRound|bluebull is redbull's brother BOOM! -|c| QuagGod|e_e -|c| ZzamanN|Oh I missread -|c| LifeisDANK|dual screens knows what up -|c|★CHEF BOY4RDEEZNUTS|cancer gives you cancer -|c| lordkaelros|This battle also gives cancer -|c| ZzamanN|I thought it was 999 -|c| lordkaelros|we're stil watching -|c| ZzamanN|its only 959 -|c|★Crime♥|960 -|c| ZzamanN|rip -|c| Rath111|gives you cancer gives you cancer -|c| Help you ladder|^ -|c| BaconChest|why did i click swtichch sides....nuuuuuu -|c|★CHEF BOY4RDEEZNUTS|trump gives america cancer -|c| QuagGod|ZzamanN dw it'll be there in no time -|c| TheCanadianWifier|lol BaconChest -|c| QuagGod|lol chef -|c| Rath111|touche -|c| Nortellaz|Convo time: Favorite music artists people?!?! -|c| LifeisDANK|lets go faster -|c| Help you ladder|metal -|choice|move 4|move 2 -| -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-singleturn|p2a: Slowbro|Protect -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-activate|p2a: Slowbro|Protect -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|961 -|c| LifeisDANK|i wanna see the 1042 mark -|c| QuagGod|i bet -|c| memethany fantango|it actually loaded lmao -|c| CriclesAreRound|cant wait to share the replay after zarel uploads it -|c| QuagGod|the latinos love trump -|c| QuagGod|kappa -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|284/386 par -|-damage|p2a: Heatran|236/386 par|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Heatran -|-resisted|p2a: Heatran -|-damage|p2a: Heatran|232/386 par -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|turn|962 -|c|★Crime♥|1% wow -|c|★Crime♥|how -|c| Dual Screens Mamo|OMG WE IN THER NOW?!?! -|c| Dual Screens Mamo|IT LOADED -|c| No 1 Machop Fan|Yay! Something! :p -|c| waifu rosalina|im not loading :[ -|c| LifeisDANK|what loadin -|c| lordkaelros|King Crimson/ Iron Maiden/ Tool/ Snarky Puppy/ Animals as Leaders -|c| No 1 Machop Fan|give it time :p -|choice|move 4|switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|337/394 tox -| -|-damage|p2a: Slowbro|313/394 tox|[from] psn -|turn|963 -|c|★Crime♥|omg -|c| Nortellaz|I love King Crimson <3 -|c|★Crime♥|i have to pee -|c|★Crime♥|so badly -|c| Help you ladder|Crime♥ has 10 seconds left. Crime♥ lost. -|c| No 1 Machop Fan|we're at 963 turns at time of writing -|c|★Crime♥|and i wanna smoke -|c| hey i'm pikachu|just -|c| Aluminion|reveals 5th move: psychic -|c| hey i'm pikachu|do -|c| hey i'm pikachu|it -|c| waifu rosalina|this is more important crime -|choice|switch 3|move 3 -| -|switch|p1a: Fatty|Chansey, F|442/642 -|move|p2a: Slowbro|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|402/642 tox|[from] psn -|-damage|p2a: Slowbro|265/394 tox|[from] psn -|turn|964 -|c| waifu rosalina|:[ -|c| Nortellaz|Starless is one of the best songs of all time. -|c| LifeisDANK|JUST DO IT -|c| lordkaelros|Yep -|c|★CHEF BOY4RDEEZNUTS|break the habit smokings bad -|c| CriclesAreRound|the mega stone for eevee is eviolite BOOM! -|c| Kuronachan|for gods sake -|c| Kuronachan|turn off timer -|c| Help you ladder|smoking kills. -|c| lordkaelros|My favourite album is Lizard -|c| Kuronachan|let yourselves be human -|c|★Crime♥|SPARTAAAA :3 -|c| PI EddyChomp|Eeveeite -|c| Kuronachan|for just two minutes -|choice|switch 3|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-crit|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|319/363 -| -|-heal|p1a: U Jelly Bruh?|341/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|193/394 tox|[from] psn -|turn|965 -|c| lordkaelros|Cirkus gives me gossebumps every time -|c| QuagGod|so do you guys think i should go roll up another joint + make more hot cocoa since this wont be over by the time i'm back -|c|★Crime♥|burn please -|c| No 1 Machop Fan|wow, this Chansey is 3 PP away from Struggling! -|c| Cryolite|where was the burn -|c| Gaussfield|THE CRIT THO -|c| QuagGod|or should i just stay here -|c| Help you ladder|Crime♥ has 30 seconds left. -|c| StAlRuth|found this battle's theme -|c| Nortellaz|Starless gives me goosebumps everytime ;P -|c| StAlRuth|http://stalruthvgc.tumblr.com/post/135246181243/theme-of-this -|c| PI EddyChomp|Really -|c| Nortellaz|The song. Not the album. -|choice|switch 3|switch 6 -| -|switch|p1a: Fatty|Chansey, F|402/642 -|switch|p2a: Heatran|Heatran, F, shiny|256/386 par -|-damage|p2a: Heatran|208/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|232/386 par|[from] item: Leftovers -|turn|966 -|c| lordkaelros|I got it -|c| Kuronachan|quag we'll get the smash DLC tonight before this is over -|choice|switch 5|switch 6 -| -|switch|p1a: Redbull|Clefable, M|297/393 tox -|switch|p2a: Slowbro|Slowbro, F|324/394 tox -|-damage|p2a: Slowbro|275/394 tox|[from] Stealth Rock -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|-damage|p2a: Slowbro|251/394 tox|[from] psn -|turn|967 -|c|★Crime♥|970 omg -|c| lordkaelros|Starless and Bible black is one of my less liked albums -|c| Chamix|deez nutw <3 -|c| Nortellaz|Yeah, it has like, one good song? -|c| Help you ladder|Crime♥ has 20 seconds left. -|c| QuagGod|aight so more joint + hot cocoa then -|c| Cryolite|bible black happens to be the title of the greatest anime ever made -|c| LifeisDANK|oml -|c| Dual Screens Mamo|^ -|c| Rath111|pr0nz -|c| Kraytoast|is there an actual strategy here? -|c| LifeisDANK|yea -|c| QuagGod|cryolite cory in the house > bible black -|c| LifeisDANK|its called -|c| TheCanadianWifier|yes -|choice|switch 5|move 4 -| -|switch|p1a: Fatty|Chansey, F|402/642 -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-damage|p2a: Slowbro|346/394 tox|[from] psn -|turn|968 -|c| LifeisDANK|switch -|c| Rath111|stall -|c| lordkaelros|I'd rank them as : Lizard, Red, ITCOTK, Islands, ITWOP -|c| PI EddyChomp|Crime has 100000 seconds ledt. -|c| Gaussfield|HOOOOOOOOOOOOOO -|c| QuagGod|its called not winning cryolite -|c| Dual Screens Mamo|Bible Black has tons of..."plot" -|c|★CHEF BOY4RDEEZNUTS|bait and stealth rocks but regen is a botch -|c| lordkaelros|'plot' -|c| QuagGod|*not losing -|c| CriclesAreRound|the megastone for dragonite is...........dragonite BOOM! -|c| lordkaelros|kek -|c| Help you ladder|botch -|c| No 1 Machop Fan|wow, SLowbro stil has a lot of Slack Off -|c| lordkaelros|I've played the VN -|c| Cryolite|o shit ur right -|c| No 1 Machop Fan|*Slowbro -|c| Nortellaz|What about the later albums? -|c| lordkaelros|'played' -|c| QuagGod|i'd say its a pretty nice strat -|c| Nortellaz|Lol -|c| QuagGod|hue -|c| Cryolite|nothing can stop cory -|choice|move 3|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|232/386 par -|-damage|p2a: Heatran|184/386 par|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|-heal|p2a: Heatran|208/386 par|[from] item: Leftovers -|turn|969 -|c| lordkaelros|Discipline is awesome -|c|★Crime♥|when should we go for the defog guys? -|c| PI EddyChomp|CriclesAreRound no Dragoniteite -|c| Help you ladder|1 wish 1 toxic -|c| Nortellaz|Debut is my favorite, followed by Red, then Discipline -|c| bleycker|every pp has to be down no? -|c| Kuronachan|969 (lenny) -|c| Gaussfield|do they have rocks? -|c| Nortellaz|And then Lizard -|c| Dual Screens Mamo|Bible Black has Chicks that grow dicks on command. BEST. ANIME. EVER -|c| memethany fantango|turn 1011 -|c| QuagGod|lol kuro -|choice|switch 4|switch 6 -| -|switch|p1a: TheMoreYouKnow|Jirachi|195/403 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] move: Wish|[wisher] Fatty -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|970 -|c| CriclesAreRound|you know golduck is so OP ubers banned it XD -|c| PI EddyChomp|**One more turn** -|c| Help you ladder|100* -|c| lordkaelros|for whayt -|c| Kuronachan|golduck > primal groudon -|c|+Frizy|did that heatran have a lava plume -|c| LifeisDANK|golduck is baller -|c| PI EddyChomp|**30 more turns** -|c| BaconChest|finally freaking caught up...never switching sides again, Crime<3 all the way -|choice|switch 4|switch 4 -| -|switch|p1a: Fatty|Chansey, F|402/642 -|switch|p2a: Chansey|Chansey, F|240/642 -|-damage|p2a: Chansey|160/642|[from] Stealth Rock -| -|turn|971 -|c|@Former Hope|yes -|c|★CHEF BOY4RDEEZNUTS|he wont use it -|c|+Frizy|why the fuck -|c|+Frizy|did you go to jira then -|c| CriclesAreRound|chansey face of -|c|+Frizy|lol -|c|★CHEF BOY4RDEEZNUTS|hes a pussy -|c| lordkaelros|chansey gonna die -|c| lordkaelros|kek -|c|★Crime♥|shes* -|c| Nortellaz|King Crimson is probably only 10th in my favorite artists though. Sorry lordkaelros ;) -|c|★Crime♥|im not a HE -|c| LifeisDANK|My gurl AYYY -|c| lordkaelros|It's chill -|c| Help you ladder|we don't care about gender, just paly -|c| Help you ladder|play -|c| hey i'm pikachu|*pray -|c|★Crime♥|how rude -|c| CoolSwag2015|Crime -|choice|switch 6|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|972 -|c| Black Spindle|get ur tits out -|c| PI EddyChomp|OH SNAP -|c|★Crime♥|LOL -|c| CoolSwag2015|i dont think that you should say that youre a girl -|c| TheCanadianWifier|... -|c| TheCanadianWifier|LOL -|c| CoolSwag2015|where theres like 50 people -|c| PI EddyChomp|LOL -|c| lordkaelros|You should listen to Snarky Puppy -|c|★CHEF BOY4RDEEZNUTS|(entire chat unzips pants) -|c| Rath111|why should a girl not be allowed to say she's a girl? -|c| lordkaelros|and Animals as Leaders -|c| BaconChest|deeznuts trying that psychological warfare, not realizing that Crime is a superhero who is immune to trolling.... -|c| Nortellaz|Ween's my fave band, overall. Followed very closely by Beatles -|c| lordkaelros|Everyone should listen to them -|c| Help you ladder|unzip? but i have shorts -|c| lordkaelros|They are gods -|c|★CHEF BOY4RDEEZNUTS|SNARKY PUPPY IS THE SHIT OMG YOURE AMAZING -|c| Dual Screens Mamo|I can fap to this -|choice|switch 6|move 1 -| -|switch|p1a: Fatty|Chansey, F|402/642 -|move|p2a: Chansey|Seismic Toss|p1a: Fatty -|-damage|p1a: Fatty|302/642 -| -|turn|973 -|c| StAlRuth|everyone be brave birds -|c| CoolSwag2015|rath111 im just recommending her not to -|c| QuagGod|theres no girls on the internet rath111 -|c| Rath111|so? -|c| Nortellaz|First time I've heard of them... -|c| lordkaelros|Snarky Puppy is bae -|c| LifeisDANK|Tits are awesome, my favorite are the tufted tit mouse. so cute -|c| Nortellaz|Ween, anyone? :( -|c| lordkaelros|Hell-oween? -|c| Nortellaz|I'll put snark puppy on my youtube right now -|choice|move 3|switch 3 -| -|switch|p2a: Florges|Florges, F|102/360 -|-damage|p2a: Florges|57/360|[from] Stealth Rock -|move|p1a: Fatty|Wish|p1a: Fatty -| -|turn|974 -|c| TheCanadianWifier|g.i.r.l. = guy in real life -|c| No 1 Machop Fan|here we go... -_- -|c| Help you ladder|Turn 944: best turn in this match yet -|c| lordkaelros|Listen to the whole album: We like it here -|c| StAlRuth|it begins._. -|choice|move 2|move 1 -| -|move|p2a: Florges|Moonblast|p1a: Fatty -|-crit|p1a: Fatty -|-damage|p1a: Fatty|209/642 -|move|p1a: Fatty|Toxic|p2a: Florges -|-status|p2a: Florges|tox -| -|-heal|p1a: Fatty|530/642|[from] move: Wish|[wisher] Fatty -|-damage|p2a: Florges|35/360 tox|[from] psn -|turn|975 -|c| CoolSwag2015|**25 turns to 1000** -|c| LifeisDANK|AH\ -|c| CoolSwag2015|n.n -|c| QuagGod|o shit -|c| TheCanadianWifier|AAYE -|c| lordkaelros|Dead flower is dead -|c| Rath111|let the struggle begin -|c| Help you ladder|rip flower -|c| QuagGod|something's dying -|c|★CHEF BOY4RDEEZNUTS|floreg dies to rox -|c| Nortellaz|Lordkaelros, got a song to recommend? -|c| Dual Screens Mamo|OH -|c| TheCanadianWifier|florges is dead! -|c| LifeisDANK|gg -|c| QuagGod|ayyyy -|c| CriclesAreRound|rip flower -|c| Enzonana|rip chansey -|c| StAlRuth|F -|c| CoolSwag2015|when it gets to 1000 ill screenshot -|c| StAlRuth|F -|c| StAlRuth|F -|c| Nortellaz|By Snarkypuppy I mean -|choice|switch 4|switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|976 -|c| PI EddyChomp|25 turns left -|c|★Crime♥|my goal is turn 1000 -|c| PI EddyChomp|**24 TURNS LEFT** -|c| lordkaelros|We like it here -|c|★Crime♥|next time i will make it 2000 turns -|c| LifeisDANK|hype -|c| CriclesAreRound|defog on skarm? -|c| lordkaelros|*sorry song -|c| StAlRuth|out of pp -|c| lordkaelros|What about me -|c| bleycker|probably all gone -|c| StAlRuth|i think -|c| Kuronachan|50 turns to go -|c| StAlRuth|maybe one left -|c| lordkaelros|or outlier -|c|★CHEF BOY4RDEEZNUTS|cob and chansey are low too -|c| Nortellaz|The whole album? -|choice|switch 4|move 3 -| -|switch|p1a: Fatty|Chansey, F|530/642 -|move|p2a: Slowbro|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|490/642 tox|[from] psn -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|977 -|c| Help you ladder|RIP chansey -|c| lordkaelros|The entire album is amazing -|c|+Frizy|theres 1 fog left -|c| lordkaelros|Just start with the first song -|c| CriclesAreRound|slowbros got those slack offs tho -|c| Nortellaz|Dude I'm listening to Shofukan. -|c| Nortellaz|SO MESMERIZIG -|c| bleycker|rip chansey? natural cure man -|c| lordkaelros|Shofukan is also great -|c| lordkaelros|Listen to Sleeper -|c| Rath111|20 seconds -|c| lordkaelros|You will be mindfucked -|c| Help you ladder|Crime♥ forfeited. -|c| Nortellaz|If this is the first song then I'm already sold -|c| Rath111|until crime loses -|choice|switch 3|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|341/363 -|move|p2a: Slowbro|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|201/394 tox|[from] psn -|turn|978 -|c| Rath111|10 seconds -|c| TheCanadianWifier|crime ? ? ? ? ? -|c| Rath111|OMG -|c| Help you ladder|Crime♥ lost. -|c|★CHEF BOY4RDEEZNUTS|help you ladder lol -|c| TheCanadianWifier|10 seconds -|c| CriclesAreRound|phew -|c| TheCanadianWifier|dont time out now -|c| Rath111|GO -|c| Rath111|FAST -|choice|switch 3|move 4 -| -|switch|p1a: Fatty|Chansey, F|490/642 -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-damage|p2a: Slowbro|298/394 tox|[from] psn -|turn|979 -|c| Gaussfield|god these timers -|c|★Crime♥|kay -|c| BayFence|the person who gets this record will be cheef -|c|★Crime♥|i wanna smoke -|c| CriclesAreRound|u cant -|c| Help you ladder|this match can be summarised as: good shit, badly wiped. -|c| Dual Screens Mamo|NO -|c|★CHEF BOY4RDEEZNUTS|then smoke -|choice|switch 3|switch 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|switch|p2a: Chansey|Chansey, F|160/642 -|-damage|p2a: Chansey|80/642|[from] Stealth Rock -| -|turn|980 -|c| frailoldman|mitch is fat -|c| QuagGod|Crime♥ forfeited -|c| ClassifiedArea|YOU GOT DIS CRIME -|choice|switch 6|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|981 -|c| Nortellaz|lordkaelros, let me give you a recommendation: Try Transdermal Celebration by Ween -|choice|switch 6|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|move|p2a: Chansey|Seismic Toss|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|263/363 -| -|-heal|p1a: U Jelly Bruh?|285/363|[from] item: Black Sludge -|turn|982 -|c| quay4|the switch game -|c| Cryolite|will rapid spin kill? -|choice|move 4|move 1 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Chansey -|-damage|p2a: Chansey|65/642 -|move|p2a: Chansey|Seismic Toss|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|185/363 -| -|-heal|p1a: U Jelly Bruh?|207/363|[from] item: Black Sludge -|turn|983 -|c| Help you ladder|no -|c| lordkaelros|lmao -|c| QuagGod|rof -|c|★CHEF BOY4RDEEZNUTS|he dies to rocks -|c| TheCanadianWifier|go to sab now -|c| No 1 Machop Fan|this'll be interesting -|c|★Crime♥|rapid skin op -|choice|switch 6|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|984 -|c| Dual Screens Mamo|THE BATTLE OF TITANS -|c| ZzamanN|At least it wasnt 1% -|c| Help you ladder|dual mammography mamo -|c| TheCanadianWifier|Crime play this one out pls -|choice|switch 4|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Chansey|Seismic Toss|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|303/403 -| -|-heal|p1a: TheMoreYouKnow|328/403|[from] item: Leftovers -|turn|985 -|c| Kuronachan|COME ON CHANSEY -|c| StAlRuth|PLS -|c| Kuronachan|PULL THROUGH -|c| lordkaelros|What kind of band is ween? -|c| CriclesAreRound|imagine if magic gaurd prevented struggle recoil damage.... -|c| CoolSwag2015|chansey gonna go down -|c| TheCanadianWifier|it would be a travesty to see such a great game end with a forfeit at 6v5 -|c| QuagGod|CHANSEY GOT THIS -|c| lordkaelros|First time I've heard of them -|c| QuagGod|GO FOR THE W -|c| Nortellaz|Ween? -|c| Help you ladder|finish it on 1000 -|c| LifeisDANK|ayy -|c| CriclesAreRound|C H A N S E Y -|c| Ed✔️|gj CHEF -|c| Rath111|NO -|c| StAlRuth|LET'S HAVE THIS GO ON ALL NIGHT -|c| Rath111|GO PAST 1000 -|c| Rath111|KEEP GOING -|c| Kuronachan|#TEAMCHANSEY -|c| Help you ladder|no -|c| Help you ladder|1000 -|c| StAlRuth|IT'S ONLY 10:00PM -|c| Rath111|you must go forever -|c|★CHEF BOY4RDEEZNUTS|crime halve yo team is almost dead -|c| lordkaelros|second blood incoming -|c| BayFence|go cheef this record is 4 u -|c| QuagGod|# T E A M C H A N S E Y -|c| Gaussfield|which one is team chansey? -|c| Nortellaz|Loving Shofukan btw <3 -|c| StAlRuth|both of them :^) -|c| lordkaelros|See? -|c|★Crime♥|CHEF you were supposed to go bed 8 hours ago -|c| Rath111|crime, TURN SUPER SAIYAN -|c| QuagGod|crime Gaussfield -|c| Kuronachan|#11% -|c| lordkaelros|Snarky Puppy is insane -|choice|move 2|move 1 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Chansey -|-status|p2a: Chansey|par -|move|p2a: Chansey|Seismic Toss|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|228/403 -| -|-heal|p1a: TheMoreYouKnow|253/403|[from] item: Leftovers -|turn|986 -|c| CriclesAreRound|C H A N S E Y -|c| Kuronachan|OH SHIT LOOK AT THIS BITCH -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|987 -|c| CoolSwag2015|florges dies next switchin and chansey is almost down -|c| Kuronachan|11% AND SHAVING OFF THAT HELATH -|c| Help you ladder|;D -|c| Nortellaz|Doesn't his Skarm have Defog? -|c| Cryolite|chansey and florg both die to rock on the switch -|choice|switch 6|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|207/363 -|cant|p2a: Chansey|par -| -|-heal|p1a: U Jelly Bruh?|229/363|[from] item: Black Sludge -|turn|988 -|c| Cryolite|skarm cant roost -|c| QuagGod|hah -|c| QuagGod|gottem -|c| Chamix|OOOOOOOOOOOOOOOOOOOOO -|c| PI EddyChomp|idk -|c| Kuronachan|NO CHANSEY YOU CAN DO THIS -|c|★CHEF BOY4RDEEZNUTS|HERE WE GOOOOOO -|c| Dual Screens Mamo|E Z -|c|★Crime♥|oke im smoking this game is gettin on my nerves -|c| Rath111|OMG -|c| Help you ladder|this game is older than my dad -|c|★Crime♥|im literally crying -|c|★Crime♥|lol -|c| QuagGod|crime -|c| PI EddyChomp|CHANSEY NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO -|c| LifeisDANK|dony cry bby -|c| Kuronachan|dont worry crime -|c|+Frizy|bro i already told you that you lost -|c| No 1 Machop Fan|smoking is for losers -|c| Cryolite|na dood ur gonna play this -|c| QuagGod|is it a blunt/joint -|c|+Frizy|could've saved urself an hour -|c| Kuronachan|it ends at 1024 -|c| QuagGod|or tobacco -|c| No 1 Machop Fan|quit smoking or forfeit the match -|c|★Crime♥|lifeis, kuro thank you guys <3 -|c| Rath111|why would it end at 1024? -|c| CroppedPorn|wew -|c| LifeisDANK|AYyy -|c| Help you ladder|because 2^10 -|c| TheCanadianWifier|quit smoking today before you die tomorrow :( -|c| Kuronachan|<3 -|c| CriclesAreRound|dont forfeit -|c| bleycker|i just wanna see the 1000 -|c| Rath111|a byte is 8 bits -|c| Nortellaz|The only good that came from this match is I have an awesome new band to get myself into now. -|choice|move 4|move 1 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Chansey -|-damage|p2a: Chansey|52/642 par -|move|p2a: Chansey|Seismic Toss|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|129/363 -| -|-heal|p1a: U Jelly Bruh?|151/363|[from] item: Black Sludge -|turn|989 -|c| PI EddyChomp|14 Turns LEFT -|c| CriclesAreRound|1024 -|c| Kuronachan|THAT DAMAGE -|c| Cryolite|its not gonna end at 1024 -|c|@Former Hope|It won't end at 1024. -|c|★CHEF BOY4RDEEZNUTS|YESTERDAY YOU SAID TOMORROW -|c| Gaussfield|just do what you want crime -|c| Kyorem|CHANSEY NO -|c| QuagGod|that 14 TURN HYPE -|c|★CHEF BOY4RDEEZNUTS|JUST DO IT -|choice|switch 6|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|264/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|990 -|c| Cryolite|that limit was put in PO, but its not here -|c| Cryolite|we have endless battle which does the same thing -|c| Help you ladder|**cries manly tears** -|c|★Crime♥|im crying. -|c| hey i'm pikachu|**10 MORE TURNS** -|c| ZzamanN|**DONT LET YOUR DREAMS BE DREAMS** -|c| QuagGod|crime dw -|c| Kuronachan|chansey is putting in so much fucking work -|c| QuagGod|i'll comfort u -|c| LifeisDANK|HYPE -|c| Kuronachan|#TEAMCHANSEY -|c| Rath111|10 more turns -|c| waifu rosalina|how long has this battle been going on... -|c| QuagGod|w/ this dance -|c| Black Spindle|today history is made -|c| CriclesAreRound|34 more turns -|c| quay4|**yester day you say tommorrow** -|c| hey i'm pikachu|7 hour -|c| hey i'm pikachu|s -|c| QuagGod|(~'o')~ -|c|★Crime♥|/me falls sadly down on the ground -|c| Help you ladder|**Chansey used Rest** -|c| PI EddyChomp|**TURN 1000 HYPE COME ON!!!!!!!!!!!!!!!!** -|c| QuagGod|~('o'~) -|c| Black Spindle|but a women cannot be in good history so we need to edit crime out -|c| TheCanadianWifier|9 hours ish? -|c| CoolSwag2015|crime :( -|c| LifeisDANK|CRIME BBY NO -|c| waifu rosalina|7 fucking hours HELLO -|choice|move 4|move 1 -| -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -|cant|p2a: Chansey|par -| -|turn|991 -|c| waifu rosalina|8?!?!?! -|c| lordkaelros|10 ore turns boys -|c| Kuronachan|she isn't going down without a fight -|c|★CHEF BOY4RDEEZNUTS|damn -|c| PI EddyChomp|9 -|c| Kuronachan|I love her -|c| waifu rosalina|oml -|c| QuagGod|GO CRIME -|c| LifeisDANK|-3- -|choice|switch 6|move 1 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|151/363 -|move|p2a: Chansey|Seismic Toss|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|51/363 -| -|-heal|p1a: U Jelly Bruh?|73/363|[from] item: Black Sludge -|turn|992 -|c| bleycker|t wave is pretty bad rn isnt it? -|c| Rath111|OH SHIT -|c| QuagGod|# T E A M C R I M E -|c| Help you ladder|RIP tenta -|c| Kuronachan|OH MY GOD -|c| quay4|**8** -|c| Gaussfield|t wave is saving lives -|c| QuagGod|O SHI -|c| QuagGod|HYPE -|c| Kuronachan|IS SHE GOING TO DECIMATE EVERYTHING BUT SABLE -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Chansey|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Chansey|[from]Magic Bounce -|-fail|p2a: Chansey -| -|turn|993 -|c|★Crime♥|:) -|c| Help you ladder|LOL -|c| waifu rosalina|i need to see these teams tho -|c| waifu rosalina|also -|c| CoolSwag2015|lol -|c| LifeisDANK|ayyy -|c| Help you ladder|toxipoison -|c|★Crime♥|AYYYYYYYYYYY -|c| PI EddyChomp|U Jelly Bruh? -|c| QuagGod|CRIME ITS WORTH THE TIME -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|253/403 -|move|p2a: Chansey|Toxic|p1a: TheMoreYouKnow -|-immune|p1a: TheMoreYouKnow|[msg] -| -|-heal|p1a: TheMoreYouKnow|278/403|[from] item: Leftovers -|turn|994 -|c| ZzamanN|Get fucking played -|c| Gaussfield|oh -|c| QuagGod|DO THE CRIME, ITS WORTH THE TIME -|c| Gaussfield|mmmmmmmwelp -|c| QuagGod|everyone -|c| PI EddyChomp|6 TURNS LEFT -|c| QuagGod|hype her up -|c| Help you ladder|FFFFFFFFFFF I pressed F5 -|c| LifeisDANK|HYPE -|c| QuagGod|6 turns -|c| No 1 Machop Fan|hi ZzamanN -|c|★Crime♥|i love you all <3 -|c| LifeisDANK|HYPE BBY -|c| quay4|**waiting for turn 1000** -|c| Dual Screens Mamo|<3333 -|c| QuagGod|#HYPEITUP -|c| LifeisDANK|AYYY -|c|★Crime♥|im just very happy you guys are watching me -|c| Kuronachan|to not -|c| Kuronachan|twould be a crime -|c|★Crime♥|makes me feel popular -|c| Help you ladder|longest video on youtube -|c| bleycker|someone forfeit turn 999 -|c| CriclesAreRound|Crime you get all the weed in the world if this stretches to 1024 turns -|c| lordkaelros|HYPE -|c| lordkaelros|HYPE -|c| Gaussfield|**6 t u r n s** -|c| bleycker|that would be epic -|c| lordkaelros|HYPE -|choice|switch 4|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Chansey|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Chansey|[from]Magic Bounce -|-fail|p2a: Chansey -| -|turn|995 -|c| Nortellaz|Crime, get too turn 999. Then quit the game. -|c| Rath111|NO -|c|★Crime♥|oke -|c| Help you ladder|//chansey i fap so hard to you// -|c| LifeisDANK|NO -|c| Kuronachan|crime after this im going to best friend you -|c| The Mighty Ho|^ -|choice|switch 3|move 2 -| -|switch|p1a: Fatty|Chansey, F|490/642 -|cant|p2a: Chansey|par -| -|turn|996 -|c| Rath111|NOOOOOOO -|c| CriclesAreRound|dont do that -|c| LifeisDANK|HYPE -|c| TheCanadianWifier|I swear to god if I see a forfeit at turn 1000 I''m going to have a stern talk with your parents >:( -|c| Nortellaz|Leave us all high and dry in revenge of your loss -|c| QuagGod|you get my top 10 weed strands if u pull through this match -|c| CoolSwag2015|NO -|c| frailoldman|give up crime like the little girl you are -|c| Cryolite|chef why did you twave that chansey -|c| No 1 Machop Fan|please keep going and quit smoking instead -|c| ZzamanN|**FOUR TURNS LEFT** -|c| QuagGod|at 1000 turns -|c|★Crime♥|i want infinity pars -|c| Kuronachan|come on crime -|c| CriclesAreRound|1024 and u can smoke all u like -|c|★Crime♥|and ill win -|c|★Crime♥|:D -|c| waifu rosalina|tcw are u rec this -|c| Kuronachan|reach 1024 -|c| LifeisDANK|Ayy -|c|★CHEF BOY4RDEEZNUTS|tried to save tenta -|c| TheCanadianWifier|n -|c| QuagGod|CRIME YOU GOT THIS -|c| QuagGod|GETTEM -|c| Kuronachan|discover if the legend holds truth -|c| Help you ladder|CALL 999 -|c|★Crime♥|yes i got this <3 -|c|★CHEF BOY4RDEEZNUTS|wanted the rapid spin kill -|c| waifu rosalina|i cri -|c| BayFence|chef i think u will get this record bro just win -|c| CriclesAreRound|thats the spirit win this one -|c| QuagGod|#DOTHECRIMEITSWORTHTHETIME -|c|★Crime♥|omg guys please help me -|c| hey i'm pikachu|KILL NURSE JOY -|c|★Crime♥|i have to pee -|c| CoolSwag2015|OH SHIT -|c|★Crime♥|i cant go to the toilet -|c| CroppedPorn|nigga why dont he just switch out -|c| LifeisDANK|LETS GO CRIME AAYYYY -|c|★Crime♥|timer goes so fast -|c| CoolSwag2015|did anyone else notice -|c| Cryolite|piss in a cup -|c| QuagGod|O SHIT -|c| Kuronachan|I'll gladly do the crime hehehe -|c| Rath111|TAKE OFF THE FUCKING TIMER -|c| Nortellaz|Want me to log into your account? ;) -|c| Black Spindle|just plug your fanny -|c| waifu rosalina|just piss ur pants this is too important -|c| Help you ladder|**chansey i want to cum on your egg ♥** -|c| Gaussfield|ohmygod -|c| CoolSwag2015|**1 seismic toss PP left :/** -|choice|switch 3|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Chansey|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Chansey|[from]Magic Bounce -|-fail|p2a: Chansey -| -|turn|997 -|c| No 1 Machop Fan|XD -|c| QuagGod|CHEF -|c| CriclesAreRound|this battle has a more active chat than <> -|c| QuagGod|turn off -|c| QuagGod|the fkin -|c| ZzamanN|**THREE TURNS LEFT** -|c| QuagGod|timer -|c| QuagGod|pl -|c| hey i'm pikachu|xD -|c| QuagGod|pls -|c| hey i'm pikachu|xD -|c| hey i'm pikachu|xD -|choice|switch 3|move 2 -| -|switch|p1a: Fatty|Chansey, F|490/642 -|move|p2a: Chansey|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|450/642 tox|[from] psn -|turn|998 -|c| No 1 Machop Fan|I was gonna say to turn off the timer -|c| hey i'm pikachu|xD -|c| hey i'm pikachu|xD -|c| hey i'm pikachu|xD -|c| ZzamanN|**TWO TURNS LEFT** -|c| Kuronachan|27 turns to go -|c| lordkaelros|3 more turns boys -|c| Help you ladder|RIP chanseys -|choice|switch 3|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|cant|p2a: Chansey|par -| -|turn|999 -|c| QuagGod|2 MOR -Help you ladder was muted by Former Hope for 7 minutes. -|unlink|helpyouladder -|c| LifeisDANK|HYPE -|c| lordkaelros|2 more -|c| Dual Screens Mamo|OMG -|c| lordkaelros|HYPe -|c| ZzamanN|**ONE TURN LEFT** -|c| QuagGod|1 MORE -|c| StAlRuth|IT'S HAPPENING -|c| Dual Screens Mamo|THE PARA -|c| LifeisDANK|HYPE -|c| LifeisDANK|AYYYY -|c| Dual Screens Mamo|HYPE -|c| Gaussfield|**ONE MORE TURN HYPE** -|c| quay4|omg -|c| Nortellaz|FORFEIT -|c| waifu rosalina|rip comp out of wall then go to toilet y/n -|c| Rath111|NO -|c| LifeisDANK|WELCOME 1000! -|c| quay4|nooooo -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|278/403 -|move|p2a: Chansey|Toxic|p1a: TheMoreYouKnow -|-immune|p1a: TheMoreYouKnow|[msg] -| -|-heal|p1a: TheMoreYouKnow|303/403|[from] item: Leftovers -|turn|1000 -|c| Gaussfield|**THIS IS IT BOYS** -|c| Ed✔️|__**1000**__ -|c| Nortellaz|FORFEIT -|c| CoolSwag2015|**TURN 1000 WOO** -|c| The Mighty Ho|CLICK THE X -|c| charizard8888|**1000 TURNS CONGRATULATIONS EVERYONE FOR BEING A PART OF HISTORY 2015** -|c| ZzamanN|**1000 HYPE!!!!!!!!!** -|c| LifeisDANK|AYYY -|c| StAlRuth|http://www.myinstants.com/instant/mlg-airhorn/ -|c| Kuronachan|ITS HERE -|c| CriclesAreRound|1000 -|c| Dual Screens Mamo|WE MADE IT -|c| StAlRuth|http://www.myinstants.com/instant/mlg-airhorn/ -|c| Cryolite|gottem -|c|★Crime♥|omg 1000!!!!!!!! -|c| Rath111|1000000000000000000 -|c| lordkaelros|1000 -|c| QuagGod|HYPE -|c| quay4|hype -|c| lordkaelros|!!!!!!!!!!1 -|c| Kuronachan|OH MY GOFD -|c|@Former Hope|lol -|c| CriclesAreRound|1000 -|c| QuagGod|wait -|c| CriclesAreRound|1000 -|c| The Suicoon|lol -|c| quay4|al; the way -|c| lordkaelros|dingdingdingdingding -|c| CriclesAreRound|1000 -|c|★Crime♥|JEZUS -|c| Gaussfield|**AYYYYYY** -|c| QuagGod|o -|c| CriclesAreRound|1000 -|c| Rath111|KEEP GOING -|c| bleycker|1000!!!!! -|c|@Aurora|what the fuck -|c|★Crime♥|1000 -|c| lordkaelros|JACKPOT -|c|★CHEF BOY4RDEEZNUTS|holy shit the chat lol -|c| Maitre Miltank|HELLO MOTHER -|c| QuagGod|HYPE -|c| CriclesAreRound|100 -|c| Rath111|DO NOT STOP -|c| LifeisDANK|ITS here -|c| CoolSwag2015|TURN 1000 -|c| Cryolite|1000 turn get -|c| CoolSwag2015|WOOOOOOOOOOO -|c|★Crime♥|WHAT THE FUCK -|c| QuagGod|AAAAAAAY -|c| CriclesAreRound|1000 -|c| TheCanadianWifier|hype ! Kappa PogChamp -|c| CriclesAreRound|100 -|c| Kuronachan|MILESTONE OF RTHE YEAR -|c| Rath111|lmao -|c| CriclesAreRound|1000 -|c| ZzamanN|**HAPPY NEW YEARS** -|c| bleycker|turn up chat XD -|c| ZzamanN|**HAPPY NEW YEARS** -|c| BaconChest|kappa -|c| ZzamanN|**HAPPY NEW YEARS** -|c| CriclesAreRound|1000 -|c| ZzamanN|**HAPPY NEW YEARS** -|c| CoolSwag2015|and wow this chat is cancer rn -|c| CriclesAreRound|1000 -|c| CoolSwag2015|lol -|c| travisty1|keep going until someone wins -|c| CriclesAreRound|1000 -|c| LifeisDANK|AYy -|c| The Suicoon|wait a pokemon died? whe did that happen? -|c| quay4|yes this a amizing record of world -|c| charizard8888|**THE CHAT IS CRAZY** -|c| PI EddyChomp|YES EVRYONE CONGRATS FOR COMING HERE TO CELEBRATE 1000 TURNS FOR 2015!!!!!!! YES!!!! -|c| CroppedPorn|**HAPPY NEW YEARS** -|c| watfor|**MOM 10 MORE MINUTES** -|c| QuagGod|GETTEM -|c| QuagGod|HYPE -|c| watfor|**MOM 10 MORE MINUTES** -|c| watfor|**MOM 10 MORE MINUTES** -|c| QuagGod|WE GOT THIS -|c| LifeisDANK|c: -|c| Zenadark|shed up -|c| QuagGod|bro -|c| Eon_Theory|TURN 1000 -|c| Black Spindle|thats one more thing off the bucket list -|c| Eon_Theory|:DDDD -|c| derivations|**it's not new year** -|c| TheCanadianWifier|^^^ mom 10 more minutes -|c|★Crime♥|omg im so happy -|c| Nortellaz|Dear Lord -|c|★Crime♥|1k turns! -|c| charizard8888|**EVERYONE LEARN TO BOLD** -|c| hey i'm pikachu|GG -|c| watfor|hi richard -|c| CoolSwag2015|looooooool -|c| watfor|n_n -|c| QuagGod|# T E A M C R I M E -|c| Kuronachan|*1000* -|c| Gaussfield|people are showing up like crazy -|c| Gaussfield|goodness -|c| mitchisgaye|mitch is gay -|c| quay4|**okay i will learn** -|c| lordkaelros|I posted on ou :p -|c| CriclesAreRound|C H A N S E Y -|c| LifeisDANK|GUYS ITS 620am here -|c| Rath111|1001 -|c| waifu rosalina|my computer literally just froze for about 30 seconds -|c| Rath111|do eet -|c|★CHEF BOY4RDEEZNUTS|HOLY DICK THIS CHAT -|choice|switch 3|move 2 -| -|switch|p1a: Fatty|Chansey, F|450/642 -|move|p2a: Chansey|Toxic|p1a: Fatty -|-status|p1a: Fatty|tox -| -|-damage|p1a: Fatty|410/642 tox|[from] psn -|turn|1001 -|c| BayFence|crime but the record is not for u :s the record is for the player who wins :s -|c| ClassifiedArea|#1000 -|c| CoolSwag2015|looooool -|c|★Crime♥|no -|c| lordkaelros|don't be mean to him -|c|★Crime♥|thats not true! -|c| No 1 Machop Fan|STRUGGLE! -|c| derivations|the record is 2013 -|c| CoolSwag2015|1001 -|c| BayFence|yes its that true -|c| bleycker|ok enough for me gg wp enjoy the rest XD -|c| Rath111|the record is for both players -|c| QuagGod|bay fence -|c| CriclesAreRound|C H A N S E Y -|c| QuagGod|stfu -|c| derivations|go up to 2015 -|c| The Mighty Ho|STRUGGLE TO DEATH -|c| PI EddyChomp|Cyas all!!!!! -|c| CriclesAreRound|C H A N S E Y -|c| LifeisDANK|HYPE -|c| frailoldman|@mitchisgaye i love the name, it speaks to me -|c| QuagGod|dont be mean to crime -|c|★Crime♥|guys im gonna smoke quick oke? -|c| CriclesAreRound|C H A N S E Y -|c| charizard8888|**THANKS CHEF BOY4RDEEZNUTS and Crime FOR NOT LOSING PATIENCE ** -|c| Rath111|fast -|c| StAlRuth|STRUGGLE HYPE -|c|★Crime♥|im soo tired -|c| Rath111|fast -|c| derivations|NO -|c| Joshisgayasfuck|fuck you josh and sean loves primate dick -|c| CoolSwag2015|i wonder when this will end -|c| charizard8888|**THANKS CHEF BOY4RDEEZNUTS and Crime FOR NOT LOSING PATIENCE** -|choice|switch 4|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Chansey|Toxic|p1a: I <3 Stall -|move|p1a: I <3 Stall|Toxic|p2a: Chansey|[from]Magic Bounce -|-fail|p2a: Chansey -| -|turn|1002 -|c| PI EddyChomp|See all of you soon!! -|c| Maitre Miltank|C H A N S E Y -|c| QuagGod|GETTEM CRIME -|c| lordkaelros|So now where does this end lol -|c| QuagGod|CHANS HYPE -|c| LifeisDANK|SMOKE AFTER OU WIN -|c| waifu rosalina|I LOADED IT -|c| waifu rosalina|YES -|c| CriclesAreRound|C H A N S E Y -|c| Fryerstarter|Crime♥ forfeited. -|c| Fryerstarter|Crime♥ forfeited. -|c|★CHEF BOY4RDEEZNUTS|CHARIZARD YOU THE REAL MVP -|c| Fryerstarter|y/n -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|73/363 -|cant|p2a: Chansey|par -| -|-heal|p1a: U Jelly Bruh?|95/363|[from] item: Black Sludge -|turn|1003 -|c| CriclesAreRound|C H A N S E Y -|c| Kyorem|para hax -|c| Joshisgayasfuck|frailoldman just needs penis in his mouth -|c| PI EddyChomp|CONGRATS ON HITTING 1003 TURNS ON POKEMON SHOWDOWN!!! -|c| Gaussfield|charizard knows what's up -|c| waifu rosalina|HOW DO THESE TEAMS DEAL FUCKING DAMAGE HELLO -|choice|switch 6|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Chansey|Seismic Toss|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|1004 -|c| lordkaelros|They don't lol -|c| CriclesAreRound|chansey is my hero(second hero aster lando-t) -|c| PI EddyChomp|Lol -|c| LifeisDANK|!! -|c| TheCanadianWifier|HEEEEY -|c| Nortellaz|Alright! -|c| lordkaelros|Why do you think we're at 1004 -|c| waifu rosalina|how do either of these teams -|c| GiraGoomy|! -|c| QuagGod|waifu rosalina they would if they had enuff pp -|c| QuagGod|after -|c| waifu rosalina|break thru -|c|★CHEF BOY4RDEEZNUTS|AYYYYYY LMAO -|c| quay4|**2000 hype?** -|c| Nortellaz|Rapid Spin kill! -|c| CoolSwag2015|rip seismic toss -|c| TheCanadianWifier|back to tenta and a kill is had -|c| CriclesAreRound|C H A N S E Y -|c| waifu rosalina|a substitute -|c| No 1 Machop Fan|what's the record for longest match? -|c| QuagGod|ONE THOUSAND TURNS HYPE -|c|★Crime♥|omg guys stop -|c| LifeisDANK|this is the record -|c| Kuronachan|20 to go -|c| Maitre Miltank|How long does this match last ? -|c| Zenadark|when you begin this match ? -|c| Joshisgayasfuck|you stop -|c| Kuronachan|20 to go -|c|★Crime♥|thats not funny! -|c| Zenadark|Crime -|c| LifeisDANK|CRIME iLY -|c| PI EddyChomp|CHANSEY SWEEP, CHANSEY SWEEP, CHANSEY SWEEP -|c| QuagGod|GO CRIME -|c| QuagGod|ILY -|c| ZzamanN|**NICE B8 M8** -|c| Gaussfield|wow -|c| Nortellaz|Crime, if you don't wanna see, just ignore spectators -|c| PI EddyChomp|GO CRIME -|c| charizard8888|Record Wreckers -|c|★Crime♥|why so much pressure for a girl? how sad -|c| ZzamanN|**8/8** -|c| Gaussfield|stall can literally do nothing -|c| Gaussfield|just recover -|c| CriclesAreRound|7000 approx is the longest match -|c| Kuronachan|crime -|c| quay4|**this is more livly than any room** -|c| PI EddyChomp|WIN IT FOR US -|c| Kuronachan|is my waifu -|c| Maitre Miltank|**How long does this match last ?** -|c| gorry oak|i'm a girl too -|c| Maitre Miltank|**How long does this match last ?** -|c| Maitre Miltank|**How long does this match last ?** -|c| Maitre Miltank|**How long does this match last ?** -|c| Maitre Miltank|**How long does this match last ?** -|c| Zenadark|crime when do you begin this match ? -|c| CoolSwag2015|~~Did anyone else notice that crime for so much support after she said that she was a girl?~~ -|c|★Crime♥|7 hours game -|c| Joshisgayasfuck|1024 turns fuck man chill -|c|★CHEF BOY4RDEEZNUTS|DEEEEEEEEEEEEEZ NUTSSSSSSSSSS -|c| quay4|**100000000000000000 year** -|c|★Crime♥|6 hours and 24 mins -|c| PyoroLoli|goteem -|c| LifeisDANK|LETS GET THIS GOIN -|c|★CHEF BOY4RDEEZNUTS|HAH GOTTEM -|c| X-Pertti|how long does it take to load up this match :D -|c| lordkaelros|Wait, Crime's a gril? -|c| Maitre Miltank|ahhh nice -|c| travisty1|Can you guys actually try and win? -|c| Nortellaz|Crime's not a girl. No one ever says she's a girl on PS. -|c| CriclesAreRound|C H A N S E Y -|c| icyee|well done guys -|c| TheCanadianWifier|WAIT, girls exist? -|c|★Crime♥|half PS knows me from skype lol -|c| CoolSwag2015|loooooool -|c| CroppedPorn|someone explain to me why that chasey won't just switch out -|c| mitchisgaye|crime has been losing for a while, and people tend to back the underdog -|c| StAlRuth|they're trying to not lose, if that counts -|c| Rath111|-.- -|c| CriclesAreRound|1024 incoming -|c| Kuronachan|crime is true gorge forman grill -|c| waifu rosalina|i think so -|c| CriclesAreRound|C H A N S E Y -|c| CroppedPorn|someone explain to me why that chasey won't just switch out -|c| waifu rosalina|tcw -|c| Delibird=Santa|what is a girl -|choice|switch 6|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|95/363 -|move|p2a: Chansey|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|117/363|[from] item: Black Sludge -|turn|1005 -|c| charizard8888|30 Secs left -|c| LifeisDANK|I'm a girl but ppl usually assume ima dude. prolly cause of name ;0 -|c| CroppedPorn|someone explain to me why that chasey won't just switch out -|c| QuagGod|grils are nice -|choice|move 4|move 2 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Chansey -|-damage|p2a: Chansey|37/642 par -|move|p2a: Chansey|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|139/363|[from] item: Black Sludge -|turn|1006 -|c| CroppedPorn|someone explain to me why that chasey won't just switch out -|c| Maitre Miltank|OMG -|c| LifeisDANK|I like grills too -|c| charizard8888|**WE WON** -|c| Kuronachan|she makes a mean toastie -|c| Daze-Senpai|wtf -|choice|move 4|switch 5 -| -|switch|p2a: Skarmory|Skarmory, F|80/334 -|-damage|p2a: Skarmory|39/334|[from] Stealth Rock -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|36/334 -| -|-heal|p1a: U Jelly Bruh?|161/363|[from] item: Black Sludge -|turn|1007 -|c| Cryolite|stealth rocks -|c| charizard8888|YAY -|c| charizard8888|YAY -|c| charizard8888|YAY -|c| charizard8888|YAY -|c| charizard8888|YAY -|c| charizard8888|YAY -|c| charizard8888|YAY -|c| QuagGod|AYY -|c|★Crime♥|skarmory in action! -|c| Cryolite|thats gg -|c| No 1 Machop Fan|that's the end of Chansey -|c| Cryolite|3 mons die on switch -|c| TheCanadianWifier|BUM BUM BUM, ANOTHER ONE BITES THE DUST -|choice|switch 3|move 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|303/403 -|move|p2a: Skarmory|Defog|p1a: TheMoreYouKnow -|-unboost|p1a: TheMoreYouKnow|evasion|1 -|-sideend|p2: Crime♥|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: TheMoreYouKnow|328/403|[from] item: Leftovers -|turn|1008 -|c| waifu rosalina|LOL -|c| lordkaelros|chancey, you will be missed -|c| No 1 Machop Fan|nvm -|c| CriclesAreRound|S K A R M OR Y -|c| PI EddyChomp|YES -|c| Kyorem|no its not -|c| Rath111|lmao -|c|★Crime♥|its not the end of chansey -|c| Kuronachan|THE STEALTH COCKS ARE GONE -|c|★CHEF BOY4RDEEZNUTS|ROCKS ARE HERE TO STAY BITCHES -|c| TheCanadianWifier|anything below 12% is dead -|c| Kyorem|CHANSEY WE LIVIN -|c|★Crime♥|!! -|c| GiraGoomy|rocks jirachi -|c| TheCanadianWifier|yaaaaay -|c| Kuronachan|END OF AN ERA -|c| QuagGod|S K A R M O R Y -|c|★Crime♥|BACK TO CHANSEY!!! -|c| CriclesAreRound|S K A R M O R Y -|c| LifeisDANK|AYy -|c| trolleeee troll|8================D -|c| CoolSwag2015|rocks are coming back now rip -|c| PI EddyChomp|HO CHANSEY -|c| hey i'm pikachu|REVIVE FLORGES -|c|★CHEF BOY4RDEEZNUTS|NO MOAR DEFOGGGGG -|c| QuagGod|**what if gliscor wasn't kill??** -|c| hey i'm pikachu|INSTEAD -|c| PI EddyChomp|GO CHANSEY -|c| Kuronachan|and so we enjoyed peace for two more turns -|c| trolleeee troll|spoiler: 8==================D -|c| BayFence|now this battle is 5-3 -|c| Nortellaz|OK, I change my mind: Snarky Puppy's getting a bit boring now. -|c|★Crime♥|chansey or heatran -|c| No 1 Machop Fan|now I see why we have mods in this battle -|c|★CHEF BOY4RDEEZNUTS|SNARKY PUPPY IS NEVER BORING -|c| CoolSwag2015|this battle is <3 -|c| Cryolite|tran -|c| CriclesAreRound|S K A R M O R Y -|c| Rath111|tran -|c| Kuronachan|heatran -|c| lordkaelros|Sacrilege -|c| CriclesAreRound|S K A R M O R Y -|c| Onecronomicon|Mother of god -|c| Kuronachan|it's suffered from rocks -|c| CriclesAreRound|S K A R M O R Y -|c| waifu rosalina|i wish this was like a tour battle -|c| Kuronachan|for too long -|c| PI EddyChomp|LOOK -|c| The Suicoon|Snarky Puppy is amazing music the hell -|c| waifu rosalina|a roomtour -|c| CoolSwag2015|lol -|c| Kuronachan|let it have this moment -|choice|move 4|switch 6 -| -|switch|p2a: Heatran|Heatran, F, shiny|208/386 par -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Heatran -|-sidestart|p2: Crime♥|move: Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|353/403|[from] item: Leftovers -|-heal|p2a: Heatran|232/386 par|[from] item: Leftovers -|turn|1009 -|c| lordkaelros|Either way, it's your mind -|c| TheCanadianWifier|lol a room tour -|c| PI EddyChomp|CRAZINESS -|c| Nortellaz|Sorry guys :'( -|c| CriclesAreRound|lol if this was a tour battle... -|c| CoolSwag2015|if this was r1 of a roomtour -|c| Kuronachan|GO HEATRAN -|c| QuagGod|H E A T R A N -|c| No 1 Machop Fan|as I was saying... -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| Rath111|lol -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| lordkaelros|I'm not a fan of ween eithe -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -|c| Onecronomicon|lol -|c| charizard8888|**THAT's WHAT I AM TALKIN' ABOUT** -charizard8888 was muted by Former Hope for 7 minutes. -|unlink|charizard8888 -|c| No 1 Machop Fan|end of Chansey -|c|★Crime♥|lol -|c| CoolSwag2015|now 3 mons are RIP to rocks -|c| lordkaelros|kek -|c| CoolSwag2015|llol -|c| QuagGod|gottem -|c| lordkaelros|RIP -|c| CriclesAreRound|H E A T R A N -|c|★Crime♥|end of chansey -|c|★Crime♥|;( -|c| QuagGod|lmfao -|c| CriclesAreRound|H E A T R A N -|c| Dual Screens Mamo|RIP -|c| CriclesAreRound|H E A T R A N -|c|★CHEF BOY4RDEEZNUTS|HAH GOTTEM -|c| fwehaw5UH5AWETHA|VI KA -|choice|switch 4|move 1 -| -|switch|p1a: Fatty|Chansey, F|410/642 -|move|p2a: Heatran|Lava Plume|p1a: Fatty -|-damage|p1a: Fatty|352/642 -|-status|p1a: Fatty|brn -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|-damage|p1a: Fatty|272/642 brn|[from] brn -|turn|1010 -|c| LifeisDANK|its ok bby -|c|@Former Hope|Go wild, but don't spam please -|c| CriclesAreRound|H E A T R A N -|c| Cryolite|l0l -|c| QuagGod|rip chansey :( -|c| QuagGod|but its ok -|c| fwehaw5UH5AWETHA|BURN -|c| StAlRuth|THE BURRRNNN -|c| lordkaelros|Out of plums -|c| PI EddyChomp|**HEATRAN SWEEP HEATRAN SWEEP** -|c| Gaussfield|SICK BURN -|choice|switch 3|move 2 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|161/363 -|move|p2a: Heatran|Roar|p1a: U Jelly Bruh? -|drag|p1a: TheMoreYouKnow|Jirachi|353/403 -| -|-heal|p1a: TheMoreYouKnow|378/403|[from] item: Leftovers -|-heal|p2a: Heatran|280/386 par|[from] item: Leftovers -|turn|1011 -|c| QuagGod|bcoz we gon be alllllright -|c| Nortellaz|Time to turn on guys I actually like instead <3 -|c| Cryolite|4 mons outta pp or die on switch now -|c| PI EddyChomp|BURN BABY BURN -|c| No 1 Machop Fan|AND IT GETS THE BUUUUURRRRRNNN! :p -|c| TheCanadianWifier|WTF THIS STILL HAD A LAVA PLUME LEFT? -|c| CoolSwag2015|**RIP Florges Chansey and Skarmory** -|c| CriclesAreRound|H E A T R A N -|c| CriclesAreRound|H E A T R A N -|c| Kyorem|STRUGGLE -|c| lordkaelros|Struggle time bois -|c| Cryolite|just coba and slowbro left -|c| StAlRuth|tran's OUTTA PP NOW BOIZ -|c| CriclesAreRound|H E A T R A N -|c| hey i'm pikachu|END THIS ZAREL -|c| CriclesAreRound|H E A T R A N -|c| Honoka Kurai|best battle ever -|c| Kuronachan|anyone here remember when there was a transformers manga where little girls kissed transformers to give them power? it was weird -|c| Honoka Kurai|by far -|c|★Crime♥|guyss -|c|★Crime♥|i still have 6 pokemons left! -|c| CriclesAreRound|H E A T R A N -|c| QuagGod|kurona thats wierd -|c| Rath111|30 seconds -|c| BayFence|now u have to use slowbro pp y/y -|c| Rath111|left -|c| CoolSwag2015|chef wins now tbh -|c| TheCanadianWifier|indeed crime ! -|choice|switch 4|switch 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|161/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|183/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1012 -|c|★CHEF BOY4RDEEZNUTS|CRIME HALF OF YOUR TEAM DIES TO ROCKS -|c| CoolSwag2015|Crime, technically its 3 -|c| TheCanadianWifier|but you still lose :( -|c| The Mighty Ho|&s& -|c| QuagGod|**holy fuck turn off timer** -|c| Kuronachan|12 turns -|c| waifu rosalina|welp -|c| Kuronachan|it's gonna happen -|choice|switch 3|move 2 -| -|switch|p1a: Fatty|Chansey, F|272/642 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|1013 -|c| CoolSwag2015|Kuronachan -|c|+Frizy|CoolSwag2015: chef wins now tbh -|c| CoolSwag2015|it doesnt end at 1024 -|c|+Frizy|he won 300 turns ago bro -|c| CoolSwag2015|ik -|c| TheCanadianWifier|lol Frizy -|c| The Mighty Ho|*s* -|c| PI EddyChomp|SEE YOU ALL TOMORROW -|choice|switch 5|move 2 -| -|switch|p1a: Redbull|Clefable, M|297/393 tox -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|-damage|p2a: Slowbro|201/394 tox|[from] psn -|turn|1014 -|c| Kuronachan|heresy -|c| PI EddyChomp|BYE!!! -|c| TheCanadianWifier|you are correct tho -|c| TheCanadianWifier|:] -|c| PI EddyChomp|CONGRATS -|c| Kuronachan|non-believer -|c| lordkaelros|I will see this through to the end -|c| Kuronachan|satanist -|c| hey i'm pikachu|finally -|c| hey i'm pikachu|the wincon -|c| No 1 Machop Fan|Slowbro knows how to be conservative -|c| CoolSwag2015|its over -|c| The Mighty Ho|**O** -|c| breloomiswaifu|wow i gotta go get some lottery -|c| Cryolite|how much pp does cobalion have left -|c| hey i'm pikachu|has arrived -|c| Ed✔️|gg -|c| TheCanadianWifier|Frizy, aren't you super veteran on here? Voice from like 2012? -|c| kyogre518|most my matches r under 20 turns -|c| No 1 Machop Fan|it's probably the only Pokémon with at least 1 PP in all of its moves! -|c| kyogre518|rofl -|c| Kuronachan|10 turns -|c| TheCanadianWifier|i remember seeing your name before -|choice|move 3|move 4 -| -|move|p1a: Redbull|Wish|p1a: Redbull -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|273/393 tox|[from] psn -|-damage|p2a: Slowbro|298/394 tox|[from] psn -|turn|1015 -|c|★CHEF BOY4RDEEZNUTS|COB ONLY HAS 1 SWITCH IN -|c| breloomiswaifu|i predicted 400 turns ago this would end at 1100 -|c| lordkaelros|Clef has tons of pp -|c| QuagGod|dont worry we'll make it to turn 1024 -|c| Enzonana|LOL -|c|+Frizy|i used to be a global mod -|c| No 1 Machop Fan|"probably" -|c|+Frizy|ive been on smogon since 09 -|choice|switch 5|move 2 -| -|switch|p1a: Fatty|Chansey, F|272/642 -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-heal|p1a: Fatty|468/642|[from] move: Wish|[wisher] Redbull -|-damage|p2a: Slowbro|178/394 tox|[from] psn -|turn|1016 -|c| QuagGod|vibe to this and hope we make it for 9 more turns https://www.youtube.com/watch?v=Z938ya2fbPo -|c| CoolSwag2015|when this ends ill be sure to screenshot and save to favorites -|c| waifu rosalina|same xd -|c| Kuronachan|8 -|choice|switch 5|move 4 -| -|switch|p1a: Redbull|Clefable, M|273/393 tox -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|375/394 tox -| -|-heal|p1a: Redbull|297/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|273/393 tox|[from] psn -|-damage|p2a: Slowbro|231/394 tox|[from] psn -|turn|1017 -|c| QuagGod|7 more hnnnn -|c| Kuronachan|7 -|c| sancnea|redbull lol -|c| waifu rosalina|I really really dont understand -|c| sancnea|never saw that name -|c| waifu rosalina|how either of these teams -|c| waifu rosalina|break the move called substitute -|choice|switch 5|switch 3 -| -|switch|p1a: Fatty|Chansey, F|468/642 -|switch|p2a: Heatran|Heatran, F, shiny|280/386 par -|-damage|p2a: Heatran|232/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|256/386 par|[from] item: Leftovers -|html|
Fatty is in an endless loop: it isn't losing HP from Struggle.
If all active Pokémon go in an endless loop, Endless Battle Clause will activate.
-|turn|1018 -|c| Kuronachan|6 -|c| sancnea|seismic toss -|c| waifu rosalina|LOL -|c| QuagGod|LOL -|c| Kuronachan|OH MY GOD NO -|c| Cryolite|o shit tho -|c| TheCanadianWifier|wtf? -|c| TheCanadianWifier|LOL -|c| CoolSwag2015|loooooooooooool -|c| StAlRuth|wait wat -|c|★Crime♥|lol -|c|+SpaceBass|LOL -|c| waifu rosalina|ITS BACK -|c| Rath111|LMAO -|c| Kuronachan|FATTY IS THE FALSE HERALD -|c| Kyorem|NOOO -|c| QuagGod|LOOOOOOOOOOOOOOOL -|c| Rath111|ROFL -|c| Rath111|CRIME GO -|c| Enzonana|NOOOOOOOOOO -|c| Rath111|YOU CAN DO THIS -|c|★CHEF BOY4RDEEZNUTS|FATTY DA REAL MVP -|c| hey i'm pikachu|RIP FATTY -|c| QuagGod|GO CRIME -|c| The Mighty Ho|**R I P** -|c| QuagGod|YOU GOT THIS -|c| Kudasaii AFK|wtf -|c| Kyorem|CHEF JUST ATTACK -|c| Kudasaii AFK|crime no -|c| CoolSwag2015|LOOOOOOOOOOOOOOOOOOOL RIP FATTY -|c| QuagGod|RIP FATTY -|c| TheCanadianWifier|CRIME WTF -|choice|move 1|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|362/394 tox -|-damage|p2a: Slowbro|313/394 tox|[from] Stealth Rock -|-activate|p1a: Fatty|move: Struggle -|move|p1a: Fatty|Struggle|p2a: Slowbro -|-damage|p2a: Slowbro|311/394 tox -|-damage|p1a: Fatty|308/642|[from] recoil -| -|-damage|p2a: Slowbro|287/394 tox|[from] psn -|turn|1019 -|c| TheCanadianWifier|TIMER -|c| Cryolite|exploiting corner cases is the only draw -|c|★Crime♥|sry -|c| hey i'm pikachu|2016-2015 -|c| Kudasaii AFK|move -|c|★Crime♥|i wanna smoke -|c| Kudasaii AFK|move -|c| Kudasaii AFK|please -|c|+Frizy|dude -|c| hey i'm pikachu|rip fatty -|c|+Frizy|you dont need to attack -|c| Kuronachan|5 -|c| QuagGod|https://www.youtube.com/watch?v=Z938ya2fbPo WE GON BE AAAALRIGHT -|c|+Frizy|dont throw...... -|c| QuagGod|pull through crime -|choice|switch 3|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|183/363 -|move|p2a: Slowbro|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|205/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|239/394 tox|[from] psn -|turn|1020 -|c| QuagGod|:( -|c| Kudasaii AFK|nooo crime -|c| The Mighty Ho|**THE RECOIL* -|c| Kuronachan|4 -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|230/394 tox -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-heal|p1a: U Jelly Bruh?|227/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|322/394 tox|[from] psn -|turn|1021 -|c| lordkaelros|kek -|c| Kudasaii AFK|frizy is here rof -|c| Gaussfield|dat rapid spin -|c| Kudasaii AFK|hi frizy -|c| Kuronachan|3 -|c|+Frizy|hi -|c| BayFence|now scald burn -|choice|move 4|move 2 -| -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-singleturn|p2a: Slowbro|Protect -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-activate|p2a: Slowbro|Protect -| -|-heal|p1a: U Jelly Bruh?|249/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|226/394 tox|[from] psn -|turn|1022 -|c| Kuronachan|2 -|c|★Crime♥|WB frizy '' yes the battle still going on '' -|c| StAlRuth|HOW WASN'T FATTY LOSING hp FROM STRUGGLE? -|c| Kudasaii AFK|i just joined the match and the game is still seeking -|c| waifu rosalina|fatty why u break rules :[ -|c| StAlRuth|oops caps -|c| QuagGod|if you gotta smoke but ur 1000+ turn match isnt over yet then we gon be https://www.youtube.com/watch?v=Z938ya2fbPo -|c| SCHEFF|>chef boyo4rdeeznuts -|c| QuagGod|remember that crime c: -|c| Enzonana|Reveal lunar dance chansey -|c| Rath111|crime 60 seconds! -|c| Rath111|D: -|c| The Mighty Ho|**1024* -|c|★CHEF BOY4RDEEZNUTS|HAH GOTTEM -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|218/394 tox -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-heal|p1a: U Jelly Bruh?|271/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|274/394 tox|[from] psn -|turn|1023 -|c| SCHEFF|ed ur names -|c| SCHEFF|xDDD -|c|~Zarel|CHEF, feel free to just ignore the message, it'll be a tie if Endless Battle Clause activates, anyway -|c| Kuronachan|1 -|c| sancnea|loooooooooo -|c| QuagGod|O SHIT -|c| QuagGod|GETTEM -|c| Rath111|yes, if the endless battle clause enables its a tie -|c|★CHEF BOY4RDEEZNUTS|im down for a tie lol -|c| StAlRuth|how? VGC player here, unfamiliar with how this procs endless battle -|c|~Zarel|and either way, unless your opponent activates Endless Battle Clause, it'll be fine -|c|★Crime♥|lol -|c| sancnea|crime succeeds -|c| Kudasaii AFK|zarel when does endless clause activate -|choice|switch 4|switch 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|378/403 -|switch|p2a: Heatran|Heatran, F, shiny|256/386 par -|-damage|p2a: Heatran|208/386 par|[from] Stealth Rock -| -|-heal|p1a: TheMoreYouKnow|403/403|[from] item: Leftovers -|-heal|p2a: Heatran|232/386 par|[from] item: Leftovers -|turn|1024 -|c| Kuronachan|THUNDERBIRDS ARE GO -|choice|move 4|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: TheMoreYouKnow|Stealth Rock|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1025 -|c|~Zarel|when both pokemon active are in an endless loop -|c| Joshisgayasfuck|do it son -|c| waifu rosalina|hi zarel -|c| StAlRuth|chansey is losing HP from struggle tho -|c| lordkaelros|slowbro, why won't you die man -|choice|switch 4|move 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|271/363 -|move|p2a: Slowbro|Toxic|p1a: U Jelly Bruh? -|-immune|p1a: U Jelly Bruh?|[msg] -| -|-heal|p1a: U Jelly Bruh?|293/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|1026 -|c| Kuronachan|nothing happened -|c| Joshisgayasfuck|what the shit is the turn cap -|c| Kuronachan|everything is a lie -|c| No 1 Machop Fan|I don't see any Endless Battle Clause... -|c| Months Behind|smogon battles are so exciting -|c| Rath111|scroll up to find it -|c| lordkaelros|1024 -|c| Kudasaii AFK|my game is still seeking -|c| StAlRuth|I don't see it going off here tbh -|choice|switch 3|switch 3 -| -|switch|p1a: Fatty|Chansey, F|308/642 -|switch|p2a: Heatran|Heatran, F, shiny|232/386 par -|-damage|p2a: Heatran|184/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|208/386 par|[from] item: Leftovers -|turn|1027 -|c|~Zarel|no, it's switching rather than losing HP from Struggle -|c| lordkaelros|reached -|c| No 1 Machop Fan|XD -|c| lolbro|I still cant see -|c|~Zarel|that's an Endless Battle Clause activation condition -|c| Kudasaii AFK|my game is still seeking -|c| Kudasaii AFK|how many turns so far -|c| StAlRuth|ah -|c| Cryolite|1027 -|c| waifu rosalina|1027 -|c| StAlRuth|ty zarel -|c| Kraytoast|1027 -|c| Zenadark|Can I be global @? -|c| hey i'm pikachu|join pokemon showdown for battles 8 hours long! -|c| zebba|oH MY GOD IT'S STILL GOING -|c| SCHEFF|but he said CHEF -|c| SCHEFF|smh -|choice|switch 3|switch 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|293/363 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|315/363|[from] item: Black Sludge -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1028 -|c| TheCanadianWifier|lmao asking for mods -|c|@Former Hope|You don't merely ask -|c| waifu rosalina|.same -|c| SITUM|mdr zena abrutyi -|c| lolbro|richard :D -|c| sancnea|zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz -|c| CoolSwag2015|this battle is awesome -|c| Zenadark|ok sorry -|c| CoolSwag2015|:^) -|c| SCHEFF|oh wait he noticed ed -|c|@Former Hope|You must offer your soul as well as your neighbors -|c| SCHEFF|:c -|c|+Frizy|zarel can i get mods back -|c| CoolSwag2015|lol -|c| Zenadark|That was a joke. -|c| sancnea|z z z z z z z z z z z z z z z z z -|c| SITUM|abruti* -|c|+Frizy|haunter isnt around anymore so its ok -|choice|switch 6|move 4 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-damage|p2a: Slowbro|346/394 tox|[from] psn -|turn|1029 -|c| waifu rosalina|tcw i moved to saskatchewan -|choice|switch 6|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|208/386 par -|-damage|p2a: Heatran|160/386 par|[from] Stealth Rock -|switch|p1a: U Jelly Bruh?|Tentacruel, M|315/363 -| -|-heal|p1a: U Jelly Bruh?|337/363|[from] item: Black Sludge -|-heal|p2a: Heatran|184/386 par|[from] item: Leftovers -|turn|1030 -|c| waifu rosalina|in canada -|c| waifu rosalina|xd -|c| Ed✔️|Crime♥ forfeited. -|c| sancnea|z z z z z z z z z z z z -|c| TheCanadianWifier|oh shit nice -|c| Bob the Bro|wtf -|c| charizard8888|Sorry Everyone I am back -|c| waifu rosalina|moved sunday -|choice|switch 3|switch 3 -| -|switch|p1a: Fatty|Chansey, F|308/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1031 -|c| QuagGod|Ed stfu -|c|@Former Hope|You might want to PM him, I doubt he'll see messages in this -|c| waifu rosalina|and all my neighbors get wasted at like 2 am -|c| sancnea|z z z z z z z z z z -|c| TheCanadianWifier|how you liking it so far? -|c| waifu rosalina|like screaming -|c| TheCanadianWifier|oh LOL -|c| charizard8888|1031 -|c| CriclesAreRound|i accidnrlty exited this battleand now waiting for it to reload -|c| CoolSwag2015|lol -|c| charizard8888|and counting -|c| sancnea|z z z z z z z -|c| TheCanadianWifier|i mean what else is there to do in Sask? :P -|c| StAlRuth|gg circlesareround -|c| waifu rosalina|is there any tim hortons -|c| waifu rosalina|around -|c| waifu rosalina|:o -|c|★Crime♥|im smoking -|c| TheCanadianWifier|probably! -|choice|switch 5|move 2 -| -|switch|p1a: Redbull|Clefable, M|273/393 tox -|move|p2a: Slowbro|Protect|p2a: Slowbro -|-fail|p2a: Slowbro -| -|-heal|p1a: Redbull|297/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|273/393 tox|[from] psn -|-damage|p2a: Slowbro|273/394 tox|[from] psn -|turn|1032 -|c| waifu rosalina|haha -|c| RoyHasABigDiglett|is life is dank still here -|c| charizard8888|Stop that right now -|c| SCHEFF|i mean i was here so im pumped about that -|c|★CHEF BOY4RDEEZNUTS|mmm delicious lung cancer -|c| Dual Screens Mamo|last protect :o -|c| No 1 Machop Fan|CriclesAreRound: i accidnrlty exited this battleand now waiting for it to reload -|c| PyoroLoli|adiass hi -|c| sancnea|z -|c| sancnea|z -|c| CriclesAreRound|smoke all day -|c| No 1 Machop Fan|LOL! -|c| sancnea|z -|c|★CHEF BOY4RDEEZNUTS|smokers are jokers kids -|c| sancnea|z -|c| BayFence|clefa sweep -|c| sancnea|z -|choice|switch 4|switch 3 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|switch|p2a: Heatran|Heatran, F, shiny|184/386 par -|-damage|p2a: Heatran|136/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|160/386 par|[from] item: Leftovers -|turn|1033 -|c| SCHEFF|but this battle is too damn long -|c| sancnea|im bored typing zs -|c| charizard8888|zzzz -|c| waifu rosalina|★CHEF BOY4RDEEZNUTS: smokers are jokers kids -|c| waifu rosalina|same -|c| CriclesAreRound|H E A T R A N -|c| lordkaelros|Still no second blood :p -|c| charizard8888|^ -|c| CriclesAreRound|H E A T R A N -|c| CriclesAreRound|H E A T R A N -|c|★Crime♥|guys -|c| CriclesAreRound|H E A T R A N -|c| QuagGod|H E A T R A N -|c| CriclesAreRound|H E A T R A N -|c|★CHEF BOY4RDEEZNUTS|chicks who smoke are nasty -|c| charizard8888|It's lagging vigorously -|c|★Crime♥|i will make a team with blastoise or kingler and get to 2000 turns i promise -|c|★Crime♥|<3 -|choice|switch 4|switch 3 -| -|switch|p1a: Redbull|Clefable, M|273/393 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Redbull|297/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|273/393 tox|[from] psn -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1034 -|c| CoolSwag2015|rof -|c| TheCanadianWifier|LOL chef -|c|★CHEF BOY4RDEEZNUTS|its true -|c| QuagGod|C R I M E ♥ -|c| CriclesAreRound|S L O W B R O -|c| charizard8888|Rest Talk Suicune -|c| waifu rosalina|what if taylor swift -|c| CriclesAreRound|S L O W B R O -|c| CriclesAreRound|S L O W B R O -|c| waifu rosalina|secretly smokes -|c| CriclesAreRound|S L O W B R O -|c| CriclesAreRound|S L O W B R O -|c| CriclesAreRound|S L O W B R O -|c| CriclesAreRound|S L O W B R O -|c| TheCanadianWifier|yea TS smokes and has the voice she does -|c| QuagGod|if its tobacco i wouldnt hit -|c| TheCanadianWifier|nice joke -|c| charizard8888|Hit with FLING -|c| SCHEFF|ugh how is the battle going its still loading :c -|choice|move 3|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|160/386 par -|-damage|p2a: Heatran|112/386 par|[from] Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p1a: Redbull|297/393 tox|[from] item: Leftovers -|-heal|p2a: Heatran|136/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|249/393 tox|[from] psn -|turn|1035 -|c| StAlRuth|even then -|c| waifu rosalina|maybe she has a thing in her throat -|c| charizard8888|FLING THE ITEM -|c| StAlRuth|she'd surely shake it off -|c| waifu rosalina|beautiful voice box -|choice|switch 5|switch 3 -| -|switch|p1a: Fatty|Chansey, F|308/642 -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Fatty|504/642|[from] move: Wish|[wisher] Redbull -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1036 -|c| PyoroLoli|adiass hi -|c| Kudasaii AFK|im back on turn 1035 -|c| Kudasaii AFK|nice -|c| TheCanadianWifier|nice ! -|c| waifu rosalina|xd -|c| CoolSwag2015|turn 1036 -|c| hey i'm pikachu|gj -|c| CoolSwag2015|kek -|c| No 1 Machop Fan|nice -|c| Kudasaii AFK|1036 -|c| Kudasaii AFK|now the game has loaded -|c| breloomiswaifu|its almost over -|c| Kudasaii AFK|still 5 mons -|c| breloomiswaifu|not -|c| Kudasaii AFK|turn 1036 -|c| hey i'm pikachu|how do people have time -|c| Kudasaii AFK|nice -|c| Kudasaii AFK|nice -|c| hey i'm pikachu|for this -|c| memethany fantango|ez for stall -|c| QuagGod|rof -|c| hey i'm pikachu|lmao -|c| waifu rosalina|gratz sacri' -|c| CriclesAreRound|https://www.youtube.com/watch?v=wWSAI9d3Vxk -|c| hey i'm pikachu|sacri -|choice|switch 3|switch 3 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|337/363 -|switch|p2a: Heatran|Heatran, F, shiny|136/386 par -|-damage|p2a: Heatran|88/386 par|[from] Stealth Rock -| -|-heal|p1a: U Jelly Bruh?|359/363|[from] item: Black Sludge -|-heal|p2a: Heatran|112/386 par|[from] item: Leftovers -|turn|1037 -|c| CoolSwag2015|this ends soon tbh -|c| Kudasaii AFK|can we give crime and chef boy4deez nuts -|c| StAlRuth|I'm on uni break, so I can watch this while thing -|c| Kudasaii AFK|custom avatar -|c| hey i'm pikachu|why is sacri a banned phrase -|c| Kudasaii AFK|for having 1036 turns -|c| waifu rosalina|bc sam -|c| Kudasaii AFK|longest turns -|c| waifu rosalina|banned it -|c| CriclesAreRound|they diserve a custom avatar -|c| StAlRuth|did they beat 4chan? -|choice|switch 5|switch 3 -| -|switch|p1a: Redbull|Clefable, M|249/393 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Redbull|273/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|249/393 tox|[from] psn -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1038 -|c| waifu rosalina|pif vs Crime -|c|★CHEF BOY4RDEEZNUTS|I WANT THE CHEF BOYARDEE GUY -|c| waifu rosalina|imo -|c|★CHEF BOY4RDEEZNUTS|PLS -|c| QuagGod|lol -|c| Cryolite|fav song ever: https://www.youtube.com/watch?v=okqEVeNqBhc -|choice|move 3|move 4 -| -|move|p1a: Redbull|Wish|p1a: Redbull -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-heal|p1a: Redbull|273/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|225/393 tox|[from] psn -|-damage|p2a: Slowbro|346/394 tox|[from] psn -|turn|1039 -|c| sancnea|stall is love, stall is life -|c| StAlRuth|no I don't think they've beaten 4chan -|c| QuagGod|remember kids -|c| QuagGod|vote ban manaphy -|c| memethany fantango|is the chef boyardee guy not chef boyardee?| -|c| CriclesAreRound|https://www.youtube.com/watch?v=wWSAI9d3Vxk -|c| QuagGod|kappa -|c| Ed✔️|http://niceme.me/ -|c| No 1 Machop Fan|Decided to switch sides. Now all the turns are loading all over again. GEEZ I'm stupid. -|c|★Crime♥|oke guys -|c|★Crime♥|i smoked -|c| Mentagrill|stop timer omg -|c| Aluminion|why am i lagging -|c|★Crime♥|lets start -|c| charizard8888|See ya -|c| TheCanadianWifier|LOL gj No 1 Machop Fan -|c| Gaussfield|ayyy -|c| waifu rosalina|lol -|c| charizard8888|BYE !! -|choice|switch 3|switch 3 -| -|switch|p1a: Fatty|Chansey, F|504/642 -|switch|p2a: Heatran|Heatran, F, shiny|112/386 par -|-damage|p2a: Heatran|64/386 par|[from] Stealth Rock -| -|-heal|p1a: Fatty|642/642|[from] move: Wish|[wisher] Redbull -|-heal|p2a: Heatran|88/386 par|[from] item: Leftovers -|turn|1040 -|c| Gaussfield|let's go -|c| QuagGod|Crime was it tobacco or cannabis -|c|★CHEF BOY4RDEEZNUTS|ravioli ravioli give me the formuoli -|c|★Crime♥|i already smoked weed this night -|c|★Crime♥|tobacco now -|c|@Former Hope|Crime, what is Slowbro's item? -|c| waifu rosalina|SUBSCRIBE TO THECANADIANWIFIER -|c| CriclesAreRound|C H A N S E Y -|c| TheCanadianWifier|.. -|c| QuagGod|kk :( -|c| CriclesAreRound|C H A N S E Y -|c| CriclesAreRound|C H A N S E Y -|c| CriclesAreRound|C H A N S E Y -|c|★Crime♥|former hope @@ we still have a mega slowbro!!!! -|c| lordkaelros|so there's a one toke limit now -|choice|switch 3|switch 3 -| -|switch|p1a: Redbull|Clefable, M|225/393 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Redbull|249/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|225/393 tox|[from] psn -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1041 -|c| lordkaelros|what sacrilege -|c| CriclesAreRound|turn of the timer -|c| charizard8888|**366 USERS ARE WATCHING THIS THING** -|c| Amber Torrey|People don't deserve avatars for turn stalling.... -|c|★Crime♥|CHEF wants to go sleep -|c|★CHEF BOY4RDEEZNUTS|OMG GUYS I TELL PPL ON THE INTERNET THAT I SMOKE WEED IM SO COOL -|c|★Crime♥|366? wow -|c| CoolSwag2015|this battle is about to end soon -|c| Rath111|20 seconds -|choice|move 3|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|88/386 par -|-damage|p2a: Heatran|40/386 par|[from] Stealth Rock -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p1a: Redbull|249/393 tox|[from] item: Leftovers -|-heal|p2a: Heatran|64/386 par|[from] item: Leftovers -|-damage|p1a: Redbull|201/393 tox|[from] psn -|turn|1042 -|c| TheCanadianWifier|xd chef -|c| TheCanadianWifier|chill -|c| QuagGod|CHEF BOY4RDEEZNUTS dont be a lame -|c| lordkaelros|We so cool, bois -|c| Kuronachan|poor babies -|c| Medicham's World|It's not even done loading yet for me -|c| QuagGod|jesus -|c| Kuronachan|go to sleep -|c| CriclesAreRound|this is the biggest room on showdown currently -|c| CoolSwag2015|charizard8888 -|c| CoolSwag2015|did you subtract the users who left from that number? -|choice|move 2|switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|move|p1a: Redbull|Flamethrower|p2a: Slowbro -|-resisted|p2a: Slowbro -|-damage|p2a: Slowbro|308/394 tox -| -|-heal|p1a: Redbull|393/393 tox|[from] move: Wish|[wisher] Redbull -|-damage|p1a: Redbull|321/393 tox|[from] psn -|-damage|p2a: Slowbro|284/394 tox|[from] psn -|turn|1043 -|c| Dual Screens Mamo|AN ATTACK?!?! -|c|★Crime♥|i wanna be the most famous staller to be honest -|c|★Crime♥|;( -|c| CoolSwag2015|lol -|c| QuagGod|lo -|c| QuagGod|*lol -|c| waifu rosalina|i bet mom is looking over the shoulder saying "you can do this honey" -|c| TheCanadianWifier|you're the second most famous -|c| TheCanadianWifier|at this time -|c| CriclesAreRound|flame thrower has 16 pp my god -|c| lordkaelros|lmao -|c| StAlRuth|only 4chan is more popular -|choice|switch 5|switch 4 -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|359/363 -|switch|p2a: Florges|Florges, F|35/360 tox -|-damage|p2a: Florges|0 fnt|[from] Stealth Rock -|faint|p2a: Florges -| -|-heal|p1a: U Jelly Bruh?|363/363|[from] item: Black Sludge -|c|@Former Hope|Are you going to go for 5 pokemon KO in one turn? -|c| Kuronachan|I'm always gonna remember this -|c|★Crime♥|oke guys im really sad -|c| Kuronachan|tbh -|c| TheCanadianWifier|OMG -|c|★Crime♥|omg -|c| TheCanadianWifier|A DEATH -|c| ZzamanN|**AN ENEMY HAS BEEN SLAIN** -|c|★CHEF BOY4RDEEZNUTS|HAH GOTTEM -|c|★Crime♥|florges is dead! -|c| CriclesAreRound|RIP -|c| StAlRuth|http://www.myinstants.com/instant/sad-airhorn-_/ -|c| CoolSwag2015|rip -|c| breloomiswaifu|omg -|c| Shinji Kagawa|dont time out -|choice||switch 4 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|turn|1044 -|c| lordkaelros|SECOND BLOOOD -|c| QuagGod|RIP -|c| TheCanadianWifier|5 - 5 -|c| Kuronachan|SECOND BLOOD -|c| gorry oak|RIP -|c| QuagGod|SECOND BLOOD -|c| QuagGod|;_; -|c| Dual Screens Mamo|SECOND BLOOD -|c|★Crime♥|its 5-5 yet! -|c| No 1 Machop Fan|there we go, I'm back :) -|c|★Crime♥|yay timer off -|c| CriclesAreRound|S L O W B R O -|c| Dual Screens Mamo|BATTLE TIMER IS OFF -|c|★Crime♥|can i pee? -|c| CriclesAreRound|S L O W B R O -|c| CoolSwag2015|chansey dies next switchin -|c| waifu rosalina|8 more kills -|c| CriclesAreRound|S L O W B R O -|c| 1+8=th|oh -|c| waifu rosalina|8 more hours :) -|c| CriclesAreRound|S L O W B R O -|c| 1+8=th|wow -|c| CoolSwag2015|skarm dies next switchin -|c| lordkaelros|Lol he turned it off after you had your smoke -|c| Kuronachan|come on crime this is a psychic type vs a poison type you can win this!!! -|c| lordkaelros|r00d -|c| CoolSwag2015|tran dies after 2 switchins -|c|★Crime♥|im almost peeing in my bed lol battling for 6 hours and 43 mins -|c| TheCanadianWifier|3 -|c|★Crime♥|i cant even get up -|c| CoolSwag2015|coba dies after 2 switchins -|c| waifu rosalina|no 2 -|c| charizard8888|I did Ctrl + F joined CoolSwag2015 -|c| Aluminion|and endless battle cluase activates who wins -|c| CriclesAreRound|rofl -|c| Aluminion|plz answer -|c| QuagGod|bro -|c| waifu rosalina|rocks does 12 to tra -|c| Rath111|it's a tie -|c| waifu rosalina|tran -|c| Aluminion|ok -|c| QuagGod|turn off the FUCKing timer -|c| BayFence|coba die in 4 swithces -|c| No 1 Machop Fan|this is the good part -|c| Kudasaii|dont tie it -|c| QuagGod|pls ;_; -|c| CoolSwag2015|charizard8888 did you subtract the users who left from that number -|c| QuagGod|o nvm -|c| QuagGod|im late -|c| Aluminion|scald burn m8 -|c| TheCanadianWifier|oh yea true 11% -|c| Aluminion|go for it -|c|★CHEF BOY4RDEEZNUTS|CRIME YOU STILL HERE? -|c| CriclesAreRound|i guess both of u forfeit toghether -|c| SolarDestruction|I've had 200+ battles -|c| Aluminion|zarel is here -|c| Amber Torrey|367 joined over 700 left -|c| JacobWorld|hey -|c| Kudasaii|why did zarel turn on timer -|c| Aluminion|wow i didn't know -|c| Rath111|probably peeing -|c| QuagGod|zarel noooo -|c|★Crime♥|yes -|c| charizard8888|why would you subtract -|c| QuagGod|:( -|c| waifu rosalina|requested by zarel -|c| waifu rosalina|damn -|c|★Crime♥|im trying to relax.. -|c|★Crime♥|my eyes are exploding -|c| Kudasaii|poor crime -|c| lordkaelros|'relax' -|c|★CHEF BOY4RDEEZNUTS|30 secs -|c| Kudasaii|this isnt even a serious game -|c| Dual Screens Mamo|OH -|c|~Zarel|okay, fine, have like five minutes to pee -|c| CoolSwag2015|kek timer off now -|c| Enzonana|Zarel aburrido :c -|c|★Crime♥|thanks you zarel! <3 -|c| Rath111|zarel ggave you 5 minute sto pee -|c| Dual Screens Mamo|BASED STAFF -|c| Rath111|go peeeeeeeeeeeeeeeee -|c| Cryolite|zarel the real mvp -|c|★Crime♥|ill be back in 5 ! <3 -|c| Nass-T|Where is chaos -|c| waifu rosalina|LOL -|c| Kudasaii|Zarel the real mvp -|c| Amber Torrey|Wow turning off the timer in a stall war -|c| waifu rosalina|SAME -|c| Enzonana|LOL -|c| TheCanadianWifier|LOOOL 5 more minutes -|c| QuagGod|meloetta king zarel has spoken -|c| waifu rosalina|THATS NOT LONG ENOUGH -|c| laxs|This is like a slave show, who will you bet money on? The mods control them. -|c| Amber Torrey|what kind of bs is that... -|c| waifu rosalina|WHAT IF SHES CONSTIPATED -|c| waifu rosalina|:[ -|c| lordkaelros|gg -|c| Kudasaii|lol laxs thats so deep -|c| Nass-T|I can't even see the battle lmao -|c|★CHEF BOY4RDEEZNUTS|SO WHATS EVERYONES FAV BRAND OF RAVIOLI? -|c| TheCanadianWifier|**turn 1044** - the longest turn in history -|c| Corridor|LAG -|c| CriclesAreRound|S L O W B R O -|c| CoolSwag2015|so chansey dies next switch, skarm dies next switch, tran dies after 2 switchins, coba dies after 2 switchins -|c| Kuronachan|so gracious of you zarel -|c| CoolSwag2015|once all those are gone, slowbro dies eventually to toxic -|c| CoolSwag2015|its gg -|c| lordkaelros|Ravioli has brands? -|c| ZzamanN|Ravioli -|c| ZzamanN|Ravioli -|c| Kudasaii|**turn 2093** -|c| ZzamanN|What's in the pocketoli -|c| Gaussfield|ravioli brand ravioli -|c| Amber Torrey|can't believe they turned off timer -|c| No 1 Machop Fan|commercial break! :p -|c| charizard8888|zzzzzzzzzz -|c| waifu rosalina|why tf are we talking about raviolis -|c| CriclesAreRound|2000 years latter............. -|c| Nass-T|its chef bouardi -|c| waifu rosalina|i could have reqs by now -|c| Amber Torrey|in these kind of fights world events are what break people -|c| waifu rosalina|but instead -|c| No 1 Machop Fan|suddenly I'm tempted to advertise my rail project/campaign -|c| waifu rosalina|im watching this -|c| waifu rosalina|... -|c| Kuronachan|fuck reqs -|c| CoolSwag2015|why did i waste an hour of my life watching this -|c| CoolSwag2015|tbh -|c| charizard8888|**Please Do NOT type /clear** -|c| Kudasaii|LOL COOL SWAG -|c| QuagGod|LOL -|c| charizard8888|or reload it again lol -|c| Rath111|you wasted an hour -|c| Kudasaii|CHARIZARD PLEASE DO NOT USE REVERSE PSYCHOLOGY -|c| Nass-T|It still says Seaking damn I cant see the battle -|c| Rath111|to watch history unfold -|c| Kuronachan|your vote is only one in a sea of many that in the end will not matter -|c| Rath111|this match will be remembers for eons -|c| CriclesAreRound|i dare u reload the page -|c| charizard8888|lol Kudasaii -|c| Aluminion|what about the original troll slowbro -|c| CoolSwag2015|well at least i can screenshot this when it ends. -|c|★CHEF BOY4RDEEZNUTS|TYPES OF NUTS: BOILED, SALTED, ROASTED, ASSORTED, DEEZ!!!! -|c| Aluminion|that game was pretty long -|c| Amber Torrey|never would imagine this battle could get anymore boring -|c| Kudasaii|DEEZ -|c| Gaussfield|deez? -|c| AxeBane|I will remember each and every move that was made in this battle. -|c| Amber Torrey|welp i was wrong -|c| Pyoro(AFK)|deez nutz -|c| Pyoro(AFK)|goteem -|c| JacobWorld|ravioli ravioli give me the formuoli -|c|★CHEF BOY4RDEEZNUTS|HAH GOTTEM -|c| 1+8=th|LOL -|c| Medicham's World|Holy crap what a battle -|c|★Crime♥|im back :3 -|c| CoolSwag2015|instantcena.com -|c| CoolSwag2015|wb -|c| Aluminion|nah chef you don't have nuts -|c|★Crime♥|thank you mod! -|c| Kuronachan|wb -|c|★Crime♥|thanks coolswag! -|c|★CHEF BOY4RDEEZNUTS|LETS DO THIS -|c| CriclesAreRound|DEEEEEEZ NU...C H A N S E Y -|c| lordkaelros|How old are you chef? -|c| QuagGod|AYYYY -|c| QuagGod|GETTEM CRIME -|c|★CHEF BOY4RDEEZNUTS|22 -|c| 1+8=th|this match -|c| 1+8=th|making me lag -|c| 1+8=th|so hard -|c| kyogre518|free lando-i -|c| Aluminion|lol rekt -|c| CoolSwag2015|lol -|c| charizard8888|nice name ^ 1+8 -|c|★Crime♥|are you guys ready to watch again? -|c|★Crime♥|:D -|c| CriclesAreRound|i might as well complete my home work -|c| Rath111|yeaaaaaaaaaah :D -|c| Kudasaii|Nice name 1+8 -|c| Kuronachan|yes -|c|★Crime♥|thanks zarel <3 -|c| Kuronachan|zarel why -|c|★Crime♥|for making me pee -|choice|switch 3|switch 5 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Chansey|Chansey, F|37/642 -|-damage|p2a: Chansey|0 fnt|[from] Stealth Rock -|faint|p2a: Chansey -| -|c| ZzamanN|Zarel, you da real mvp -|c| Kuronachan|JESUS GO -|c| AxeBane|Zarel has had enough of your shit. xD -|c|★CHEF BOY4RDEEZNUTS|RIP -|c| TheCanadianWifier|Guys when the game finally finishes, can we get an official timer? -|c| Pyoro(AFK)|ded -|c| Gaussfield|ih -|c| 1+8=th|Thanks Kuda -|c| Cryolite|5-4 -|c| CoolSwag2015|3rd blood -|c| JacobWorld|bye -|c| CoolSwag2015|!!!! -|c| charizard8888|BYE -|c| Gaussfield|oh. -|c| GiraGoomy|5-4 -|c| Dual Screens Mamo|THIRD DEATH -|c| Gaussfield|R I P -|c| lordkaelros|3rd blood -|c| The Master Bait|He didn't MAKE you pee, he LET you pee. Word usage, young man. -|c| ZzamanN|**AN ENEMY HAS BEEN SLAIN** -|c| lordkaelros|People be a dying na0 -|c| Kudasaii|2 pokemons = 1000 turns -|c| CoolSwag2015|**Third blood** -|c| QuagGod|OMG -|c| Medicham's World|//forcetie y/y -|c| Kudasaii|6 pokemons = 3000 -|c| Kuronachan|NOOOOOOOO -|choice||switch 2 -| -|switch|p2a: Cobalion|Cobalion|46/386 -|-damage|p2a: Cobalion|34/386|[from] Stealth Rock -|turn|1045 -|c| QuagGod|THIRD BLOOD HYPE -|c| Kudasaii|2 pokemons = 1000 -|c| QuagGod|R I P -|c|★Crime♥|coba time -|c|★Crime♥|;o -|c| Kudasaii|6 = 3000 -|c| Kuronachan|MY #TEAMCHANSEY -|c| No 1 Machop Fan|wait, what happened? -|c| Kudasaii|2000 more turns -|c| Gaussfield|AYYY COBA'S LIVIN -|c| No 1 Machop Fan|what's this about peeing? -|c| Kudasaii|this is part 1 of the trilogy -|c| Cryolite|that mons gonna sweep -|c| 1+8=th|OH MAN -|c| TheCanadianWifier|Dude, Coba could sweep -|c| CriclesAreRound|how much does cc do? -|choice|switch 6|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Iron Head|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|247/301 -| -|turn|1046 -|c| Kudasaii|guys i came back from turn 1 what happened -|c| Dual Screens Mamo|this thing still has PP -|c| Kudasaii|i was away -|c| TheCanadianWifier|wth some iron head flinches -|c| MonochromeCloud|What the fuck -|c| Kuronachan|the plays -|c| lordkaelros|Coba Sweep incoming? -|c| Honoka Kurai|best match ever. -|c| laxs|Longest battle= Switch pokemon -|c| CoolSwag2015|7 iron head flinches to win -|c| travisty1|GO FOR REST -|c| CoolSwag2015|ez -|c| laxs|Have fun -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|403/403 -|move|p2a: Cobalion|Iron Head|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|359/403 -| -|-heal|p1a: TheMoreYouKnow|384/403|[from] item: Leftovers -|turn|1047 -|c| Cryolite|its not gonna happen -|c| Cryolite|rach can twave -|c| CoolSwag2015|gg -|c| TheCanadianWifier|rip -|c| 1+8=th|i wonder how long will it take it to complete seeking -|choice|switch 4|move 2 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|247/301 -|move|p2a: Cobalion|Iron Head|p1a: I <3 Stall -|-damage|p1a: I <3 Stall|190/301 -| -|turn|1048 -|c| BayFence|battle for +30 points :3 -|c|★Crime♥|1100 turns ;'( -|c| Kuronachan|this is so fucking tense rn -|c| CriclesAreRound|1050 hype!!!!!!!!! -|c| QuagGod|^ -|c| Kudasaii|BayFence u r wrong -|c| Kudasaii|whoever wins gets -|c| Gaussfield|swap into redbull :V -|c| TheCanadianWifier|1069 y/n -|choice|move 4|move 1 -| -|move|p2a: Cobalion|Close Combat|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -|move|p1a: I <3 Stall|Recover|p1a: I <3 Stall -|-heal|p1a: I <3 Stall|301/301 -| -|turn|1049 -|c| Kudasaii|this same elo as the amount of turns -|c| The ✔️erlisify|Click the x already -|c| Kuronachan|NGHNGIOWP -|c| CriclesAreRound|battle for +7 points -|c| Aluminion|cobalion can switch out, switch in, switch out again, switch in again then it has to battle to death -|c| Kudasaii|reach 1069 -|c| Kuronachan|NO -|c| waifu rosalina|fuck i left now i gotta seek again fuck -|c| Kudasaii|reach 1068 -|choice|switch 4|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|384/403 -|move|p2a: Cobalion|Close Combat|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|249/403 -|-unboost|p2a: Cobalion|def|1 -|-unboost|p2a: Cobalion|spd|1 -| -|-heal|p1a: TheMoreYouKnow|274/403|[from] item: Leftovers -|turn|1050 -|c| Kudasaii|**1069 please** -|c| Gaussfield|ohboy -|c| QuagGod|^ -|c|★Crime♥|lol -|c| StAlRuth|http://www.myinstants.com/instant/sad-airhorn-_/ -|c| Myahri|yep -|c| CriclesAreRound|69! -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Close Combat|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|1051 -|c| Rath111|oh -|c| Cryolite|yeah this is over -|c| lordkaelros|4 more atks left -|c|★Crime♥|im soooo sad. -|c| CriclesAreRound|6 roars -|c|★Crime♥|lmao -|c| Gaussfield|ppbooooooooys -|c| megaslowbro1|hi -|c| Fryerstarter|HEY CHEF -|c| Aluminion|i have a stall team with slowbro, amoonguss and tornadus -|c| Fryerstarter|i heard he 6-0'd you. -|c| Dual Screens Mamo|oml -|c| TheCanadianWifier|so sad? http://www.myinstants.com/instant/sad-airhorn-_/ -|c| Aluminion|all with regen -|c| CriclesAreRound|crime and chef need custom avatars -|c| Dual Screens Mamo|roar will get bounced and somethign will die to rocks -|c| Aluminion|#get rekt -|choice|switch 4|move 1 -| -|switch|p1a: TheMoreYouKnow|Jirachi|274/403 -|move|p2a: Cobalion|Close Combat|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|135/403 -|-unboost|p2a: Cobalion|def|1 -|-unboost|p2a: Cobalion|spd|1 -| -|-heal|p1a: TheMoreYouKnow|160/403|[from] item: Leftovers -|turn|1052 -|c| Kudasaii|Give crime and chef custom avatars -|c| Dual Screens Mamo|OH -|c| lordkaelros|played -|c|★CHEF BOY4RDEEZNUTS|Mono regen team anyone? -|c| Gaussfield|geezus -|c| Kudasaii|why do u have a custom -|c| Gaussfield|the damage -|c| Kudasaii|i* -|c| No 1 Machop Fan|nup -|choice|move 2|move 2 -| -|move|p2a: Cobalion|Iron Head|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|115/403 -|cant|p1a: TheMoreYouKnow|flinch -| -|-heal|p1a: TheMoreYouKnow|140/403|[from] item: Leftovers -|turn|1053 -|c| No 1 Machop Fan|only one CC left -|c| Dual Screens Mamo|OH -|c| Rath111|OH SHIT -|c| The Mighty Ho|OH -|choice|switch 4|move 1 -| -|switch|p1a: I <3 Stall|Sableye-Mega, M|301/301 -|move|p2a: Cobalion|Close Combat|p1a: I <3 Stall -|-immune|p1a: I <3 Stall|[msg] -| -|turn|1054 -|c| Aluminion|omg -|c| The Master Bait|To be fair, Crime deserved it after dicking around with switches so long ;) -|c| Amber Torrey|playing a stall match is not custom avatar worthy... -|c| Gaussfield|JIRACHI WAS FLINCHED -|c| Gaussfield|HOOOOOOOOOOOO -|c| lordkaelros|played -|choice|switch 4|move 2 -| -|switch|p1a: TheMoreYouKnow|Jirachi|140/403 -|move|p2a: Cobalion|Iron Head|p1a: TheMoreYouKnow -|-resisted|p1a: TheMoreYouKnow -|-damage|p1a: TheMoreYouKnow|94/403 -| -|-heal|p1a: TheMoreYouKnow|119/403|[from] item: Leftovers -|turn|1055 -|c| CriclesAreRound|iron 1069 pls chef -|c| Kuronachan|i cant do this -|c| Dual Screens Mamo|RIP -|c| The Master Bait|You reap what you sow ;) -|c| Aluminion|lol -|c| Kuronachan|reveal -|c| Kudasaii|1111 -|c| StAlRuth|rip -|c| Kuronachan|the hidden power ground -|c| Kudasaii|if god is real -|c| Kudasaii|1111 -|c| 1+8=th|Finally -|c| Kudasaii|turns imo -|c| 1+8=th|loaded -|c| Kudasaii|make it 1111 -|c| quay4|still going -|c| Kudasaii|lol -|c| lordkaelros|It's gg for crime -|c| waifu rosalina|mu fucking computer crashed 4 times now -|c| Medicham's World|Just a question of time, crime is gonna lose -|c| TheCanadianWifier|1100 is i guess possible -|c| waifu rosalina|.... -|c|★Crime♥|=( -|c| TheCanadianWifier|if played perfectly -|c| Kudasaii|1111 is a good number -|c| QuagGod|1069 turns HYPE -|c| breloomiswaifu|1100 -|c| Kudasaii|1111 -|c| Kudasaii|1111 -|c| Kudasaii|all 1's -|c| lordkaelros|I like 1111 -|c| Aluminion|crime is gonna lose to the rocks in the end -|c| Kudasaii|to celberate 20111 -|c| 1+8=th|Yes -|c| Kudasaii|2011* -|c| CriclesAreRound|1069 lets go -|c|@Former Hope|Those stealthy rocks -|c| Kudasaii|this game is so long its history -|c|★Crime♥|Kudasaii i gave you a free win in cc 1 vs 1 when you were in top 3 <3 -|c| StAlRuth|sneaky pebbles -|c| waifu rosalina|stealth rockies -|c| Rath111|try to let coba live -|c| Gaussfield|B E L I E V E -|c| Rath111|switch to slowbro -|c|★CHEF BOY4RDEEZNUTS|why are they stealthy -|c| AxeBane|The stealthiest of rocks. -|c| Rath111|imo -|c|★CHEF BOY4RDEEZNUTS|i can see them -|c| Kudasaii|Really Crime? -|c| Kudasaii|<3 -|choice|move 2|move 4 -| -|move|p1a: TheMoreYouKnow|Thunder Wave|p2a: Cobalion -|-status|p2a: Cobalion|par -|cant|p2a: Cobalion|par -| -|-heal|p1a: TheMoreYouKnow|144/403|[from] item: Leftovers -|turn|1056 -|c| Kudasaii|i forgot -|c| Kudasaii|on an alt? -|c|★Crime♥|yuh ;3 -|c| Kudasaii|:3 -|c| CriclesAreRound|S L O W B R O -|c| AxeBane|Do not question the rocks! -|c| Kuronachan|well -|c| CriclesAreRound|S L O W B R O -|c| Kuronachan|thats just insult to injury -|c| Kudasaii|ty crime <3 -|c| AxeBane|They know more than you ever will! >:/ -|c| waifu rosalina|who cares about cc :[ -|c| StAlRuth|this just delays the pp stallfest -|c| The Master Bait|Better pray for perennial paralysis -|c| CriclesAreRound|C O B A L I O N -|c|★Crime♥|my names were I AM NOT STALLING, and Staller Jess and half PS saw me on skype or so xD -|c| TheCanadianWifier|Once again proving, Stealth Rocks truly _are_ the best move in the game! Thanks, Smogon! -|c| CriclesAreRound|next suspect stall -|c| Kudasaii|Kek -|choice|switch 5|move 4 -| -|switch|p1a: Redbull|Clefable, M|321/393 tox -|move|p2a: Cobalion|Roar|p1a: Redbull -|drag|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -| -|turn|1057 -|c| CriclesAreRound|C O B A L I O N -|c| lordkaelros|Matte Kudasai? -|c| CriclesAreRound|C O B A L I O N -|c| lordkaelros|Or plain Kudasai? -|c| Kudasaii|Mate. -|c|★CHEF BOY4RDEEZNUTS|RAPID SPIN LETS GO -|c| CriclesAreRound|C O B A L I O N -|c|@Former Hope|Chef, here's the rather sad thing. I think those rocks have done more damage than your entire team combined -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Cobalion -|-resisted|p2a: Cobalion -|-damage|p2a: Cobalion|28/386 par -|move|p2a: Cobalion|Roar|p1a: U Jelly Bruh? -|drag|p1a: Redbull|Clefable, M|321/393 tox -| -|-heal|p1a: Redbull|345/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|321/393 tox|[from] psn -|turn|1058 -|c| CriclesAreRound|C O B A L I O N -|c| lordkaelros|That is the question -|c| Gaussfield|1 % -|c| Rath111|oh shit -|c| Kuronachan|yeah that's right -|c| Rath111|1% -|c| Kuronachan|chip away -|c| The Master Bait|Matte Kudasai - the worst song on Discipline. -|c| CoolSwag2015|former hope, so true -|c| Gaussfield|O N E P E R C E N T -|c| PluieDeLeftiez|endure -|c| Kudasaii|no 1069? -|choice|move 1|move 4 -| -|move|p1a: Redbull|Moonblast|p2a: Cobalion -|-damage|p2a: Cobalion|0 fnt -|faint|p2a: Cobalion -| -|-heal|p1a: Redbull|345/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|c| JacobWorld|my laptop can't take this anymore -|c| Kudasaii|no 1079? -|c| Pyoro(AFK)|ded -|c| Gaussfield|oh -|c| Kudasaii|no 1111? -|c| JacobWorld|bang -|c| lordkaelros|I agree -|c| CoolSwag2015|its over now -|c| CoolSwag2015|!!! -|c| Honoka Kurai|1069 -|c| Kuronachan|it's all ogre -|c| Honoka Kurai|(y) -|c| Dual Screens Mamo|OH -|c| PluieDeLeftiez|reveal hp ground -|c| QuagGod|4th blood -|c| ZzamanN|**TRIPLE KILL** -|c| Gaussfield|it's not over -|c| waifu rosalina|why does gyarados just beat both of these teams -|c| CriclesAreRound|RIP -|c|★Crime♥|its not over yet! -|c| QuagGod|its all ogre *-* -|c| Gaussfield|until it's over -|c|★Crime♥|we still have mega slowbro -|c| StAlRuth|http://www.myinstants.com/instant/mlg-airhorn/ for chef -|c| QuagGod|o -|c| CriclesAreRound|1 0 6 9 -|c| TheCanadianWifier|Former Hope, Oh for sure. The rocks have probably done upwards of 10,000% -|c| CriclesAreRound|1 0 6 9 -|c| QuagGod|C R I M E -|c| TheCanadianWifier|all combined -|c| CriclesAreRound|1 0 6 9 -|c| Frozen Despair|>thousand turns -|c| CriclesAreRound|1 0 6 9 -|c| CoolSwag2015|bro is toxiced -|c| CriclesAreRound|1 0 6 9 -|c| QuagGod|<3 -|c| CoolSwag2015|so rip -|c| CriclesAreRound|1 0 6 9 -|choice||switch 5 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|turn|1059 -|c| CriclesAreRound|1 0 6 9 -|c| CriclesAreRound|1 0 6 9 -|c| CriclesAreRound|1 0 6 9 -|c| CriclesAreRound|1 0 6 9 -CriclesAreRound was muted by Former Hope for 7 minutes. -|unlink|criclesareround -|c| Myahri|how long have you guys been going -|choice|switch 6|switch 3 -| -|switch|p1a: Fatty|Chansey, F|642/642 -|switch|p2a: Heatran|Heatran, F, shiny|64/386 par -|-damage|p2a: Heatran|16/386 par|[from] Stealth Rock -| -|-heal|p2a: Heatran|40/386 par|[from] item: Leftovers -|turn|1060 -|c| StAlRuth|6 hrs + -|c| Medicham's World|lol -|c|★Crime♥|7 hours over 6 mins -|c|@Former Hope|Again, go crazy. Don't spam -|c| CoolSwag2015|go crazy -|c| CoolSwag2015|kek -|c| Kudasaii|we've been playing for 4 hours -|c| CoolSwag2015|kk -|choice|switch 6|switch 3 -| -|switch|p1a: Redbull|Clefable, M|297/393 tox -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|297/393 tox|[from] psn -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1061 -|c| CoolSwag2015|**VISIT** instantcena.com -|c| Dual Screens Mamo|TRAN IS DED -|c| CoolSwag2015|:^) -|c| AxeBane|Former throwing out the oxymorons like he just doesn't care. .3. -|c| Sweanger|http://strawpoll.me/6185409/ -|c|★CHEF BOY4RDEEZNUTS|Crime apologies for getting angry earlier lol -|c| Cryolite|now two mons die to switching in -|c| TheCanadianWifier|What would be cool is: if someone could make a script to add up all the damage that Stealth Rock did to Crimes team over the course of 1100 turns -|c| waifu rosalina|coulda gotte pu reqs, uureqs by now -|c| waifu rosalina|:[ -|c|★Crime♥|its okay chef.. -|c| TheCanadianWifier|I'd bet it's close to 10,000% -|c| No 1 Machop Fan|nup, Heatran's done -|choice|move 3|switch 3 -| -|switch|p2a: Heatran|Heatran, F, shiny|40/386 par -|-damage|p2a: Heatran|0 fnt|[from] Stealth Rock -|faint|p2a: Heatran -|move|p1a: Redbull|Wish|p1a: Redbull -| -|-heal|p1a: Redbull|321/393 tox|[from] item: Leftovers -|-damage|p1a: Redbull|273/393 tox|[from] psn -|c| CoolSwag2015|GG -|c| Dual Screens Mamo|OH -|c| Honoka Kurai|damn -|c| ZzamanN|**QUADRA KILL** -|c| lordkaelros|And so the team falls like dominoes -|c|★Crime♥|guys im so badddddddd -|c| Kuronachan|goodbye lava turtle friend :( -|c| Gaussfield|i see where this is going -|c| Breaking 2 Chainz|one more -|c| CoolSwag2015|smh crime -|choice||switch 3 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|turn|1062 -|c| Honoka Kurai|gg ma' boy -|c| Dual Screens Mamo|8 more turns -|c| Kuronachan|fifth blood -|c| Dual Screens Mamo|pls -|c| Pyoro(AFK)|ded -|c| The Master Bait|Imagine if Pokemon didn't have pp. -|c| QuagGod|o shit -|c| lordkaelros|Forfeit just before your last pokemon dies please -|c| The Master Bait|Where would we be now? -|c| QuagGod|7 more turns -|choice|switch 5|switch 6 -| -|switch|p1a: TheMoreYouKnow|Jirachi|144/403 -|switch|p2a: Skarmory|Skarmory, F|36/334 -|-damage|p2a: Skarmory|0 fnt|[from] Stealth Rock -|faint|p2a: Skarmory -| -|-heal|p1a: TheMoreYouKnow|340/403|[from] move: Wish|[wisher] Redbull -|-heal|p1a: TheMoreYouKnow|365/403|[from] item: Leftovers -|c| Honoka Kurai|mother of god -|c| breloomiswaifu|go mega -|c| CoolSwag2015|GG -|c| PyoroLoli|ded -|c| No 1 Machop Fan|now Clefable's the conservative one! :o -|c| CoolSwag2015|its over -|c| Kuronachan|sixth blood -|c| Honoka Kurai|G fucking G. -|c| ZzamanN|**PENTAKILL!** -|c|★Crime♥|T_T -|c| lordkaelros|Don't let him end it Crime -|c| laxs|godhatesfags.com -|c| laxs|:) -|c| AxeBane|Finish Him. :o -|c| lordkaelros|Do it on your own terms -|c| Kudasaii|wtf happened to 1069 -|c| lordkaelros|Don't Fear the Reaper -|c| 1+8=th|GG. -|choice||switch 6 -| -|switch|p2a: Slowbro|Slowbro, F|394/394 tox -|-damage|p2a: Slowbro|345/394 tox|[from] Stealth Rock -|turn|1063 -|c| Aluminion|lesson of the day: rapid spin>defog -|c| Kuronachan|1069 is still possible -|c| The Master Bait|Forfeit just before the Toxic kills you. -|c| waifu rosalina|i dont have the mental capacity to play over 100 turns -|c| waifu rosalina|in pokemon -|c| Kudasaii|chef if u /forfeit -|c| StAlRuth|GG -|c| JacobWorld|c'mon 1069 -|c| Kuronachan|it can happen -|c| StAlRuth|F -|c| JacobWorld|c'mon 1069 -|c| StAlRuth|F -|c| TheCanadianWifier|we still love you, Crime. -|c| The Master Bait|Don't Fear the Reaper, baby take my hand -|c| Kuronachan|anything can change! -|c| TheCanadianWifier|Just try and quit smoking ~ -|c| Kudasaii|you're a good man -|c| CoolSwag2015|mfw -|c| Myahri|do 1068 just to troll with everyone -|c| lordkaelros|commit sudoku -|c| Dual Screens Mamo|F to pay respects -|c| The Master Bait|...Sudoku? -|c| Honoka Kurai|go, burn him -|c| Kudasaii|R -|c| Aluminion|scald burn -|c| Kudasaii|F -|c| Dual Screens Mamo|F -|c|★Crime♥|here we go MEGA... -|c| Kudasaii|f -|c| AxeBane|>Sudoku -|c| Honoka Kurai|that will matter. -|c| waifu rosalina|agreed just quit ^^ -|c| 1+8=th|F -|choice|switch 3|move 1 mega -| -|switch|p1a: U Jelly Bruh?|Tentacruel, M|363/363 -|detailschange|p2a: Slowbro|Slowbro-Mega, F -|-mega|p2a: Slowbro|Slowbro|Slowbronite -|move|p2a: Slowbro|Scald|p1a: U Jelly Bruh? -|-resisted|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|323/363 -|-status|p1a: U Jelly Bruh?|brn -| -|-heal|p1a: U Jelly Bruh?|345/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|300/363 brn|[from] brn -|-damage|p2a: Slowbro|321/394 tox|[from] psn -|turn|1064 -|c| Kudasaii|F -|c| Gaussfield|AYYYYYYYYYYYYYY -|c| Kyorem|F -|c| frailoldman|see, girls never win anything -|c| AxeBane|Yes. We must all commit to the puzzle game. -|c| Gaussfield|THE BURN -|c| Kudasaii|F to pay respects -|c| Kuronachan|sudoku is my favourite e-sport -|c| ZzamanN|ayy lmao -|c| Amber Torrey|Yeah i don't respect this... -|c| Rath111|LOL burnt -|c| TheCanadianWifier|LOOOOOOOOOOOOOOOOOOOOOL -|c| The Master Bait|The thing had a Mega Evolution> -|c| CoolSwag2015|burn kek -|c| Honoka Kurai|Ya' see -|c| ZzamanN|nice mega -|c| QuagGod|BURN -|c| Kuronachan|IS THAT A FUCKING MEGA -|c| TheCanadianWifier|after all that -|c| Kudasaii|I like Crime she is cute af -|c| The Master Bait|??? -|c| QuagGod|HYPE IT UP -|c| TheCanadianWifier|the burn -|c| lordkaelros|lol -|c| Kuronachan|IM DED -|c| breloomiswaifu|Oooooh the burn -|c| lordkaelros|ofc it's a mega -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|318/394 tox -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-heal|p1a: U Jelly Bruh?|322/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|277/363 brn|[from] brn -|-damage|p2a: Slowbro|346/394 tox|[from] psn -|turn|1065 -|c| ZzamanN|That late game mega evolution -|c| Honoka Kurai|1069 -|c| Honoka Kurai|pls -|c| Kyorem|Crime is my fave now -|c| 1+8=th|kuda got a crush -|c| waifu rosalina|f -|c| 1+8=th|:) -|c|★Crime♥|Kyorem <3 -|c|★Crime♥|lel -|c|@Former Hope|One more move -|c| lordkaelros|Crime please forfeiterino :p -|c|@Former Hope|gg wp -|c|★Crime♥|yes Former Hope -|c| Kuronachan|crime is stall waif -|c| Kuronachan|tbh -|c| Gaussfield|crime got the burn in the end -|c| TheCanadianWifier|GG Guys! -|c| JacobWorld|**c'mon 1069** -|c| weird random|ugh -|choice|move 4|move 4 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|343/394 tox -|move|p2a: Slowbro|Slack Off|p2a: Slowbro -|-heal|p2a: Slowbro|394/394 tox -| -|-heal|p1a: U Jelly Bruh?|299/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|254/363 brn|[from] brn -|-damage|p2a: Slowbro|322/394 tox|[from] psn -|turn|1066 -|c| QuagGod|breh -|c| CoolSwag2015|**GG** -|c| StAlRuth|wrap it up, dont forfeit! -|c| QuagGod|4 more turns -|c| QuagGod|hype -|c| AxeBane|0%. xD -|c| No 1 Machop Fan|lol "0" -|c|★Crime♥|anyone wanna battle me after this game? -|c| AxeBane|GG. -|c| The ✔️erlisify|CHEF BOY4RDEEZNUTS for SPL -|c| The Master Bait|Struggle <3 -|c| lordkaelros|God no -|c| CoolSwag2015|nice 0% -|c| Kyorem|I will crime -|c| CoolSwag2015|Crime go to sleep imo -|c| Rath111|struggle -|c| TheCanadianWifier|LOL Crime -|c| Kyorem|:]] -|c| QuagGod|dw guys -|c| weird random|**zero** -|c| QuagGod|just bring hoopa-u -|c| CoolSwag2015|its been 7 hours hasnt it lol -|c| QuagGod|ez -|c| Aluminion|the struggle is real -|c| Aluminion|lol -|c| memethany fantango|ez for stall -|c|★Crime♥|im crying i lost -|c| weird random|**gg kids** -|c| Asada Shino San|I finished my dinner this is still not done? -|choice|move 4|move 1 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|319/394 tox -|-activate|p2a: Slowbro|move: Struggle -|move|p2a: Slowbro|Struggle|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|214/363 brn -|-damage|p2a: Slowbro|221/394 tox|[from] recoil -| -|-heal|p1a: U Jelly Bruh?|236/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|191/363 brn|[from] brn -|-damage|p2a: Slowbro|125/394 tox|[from] psn -|turn|1067 -|c| Kuronachan|ah yes, that 0 hp damage -|c| Amber Torrey|pretty sure this is the opposite of a good game -|c| lordkaelros|I'll just bring Mmedi and hoopa U -|c| The Master Bait|Forfeit now! -|c| Kuronachan|mega slowbro is a spinblocker -|c| Neith Cass|It's still loading -|c| Honoka Kurai|bay bay ma' boy -|c| Aluminion|2 more turns -|c| CoolSwag2015|1067 -|c| Kudasaii|its gonna be 1069 -|c| Aluminion|actually 1 more -|c| StAlRuth|GGGGG -|c| Kudasaii|1068 -|c| CoolSwag2015|everyone just got trolled -|c| CoolSwag2015|:^) -|c| Cryolite|it ends on 1068 -|c| Rath111|its gonna be 1069 -|c| laxs|One more -|c| AxeBane|Toxic's gonna wipe out Slowbro. -|c| The Master Bait|1068. -|c| Dual Screens Mamo|ITS GONNA END AT 1068 ;-; -|c| QuagGod|o fuck -|c| Cambuur Zygarden|lose by timer -|c| laxs|1068 -|c| memethany fantango|recover -|c| StAlRuth|it ends now -|c| Rath111|nooo -|choice|move 4|move 1 -| -|move|p1a: U Jelly Bruh?|Rapid Spin|p2a: Slowbro -|-damage|p2a: Slowbro|122/394 tox -|-activate|p2a: Slowbro|move: Struggle -|move|p2a: Slowbro|Struggle|p1a: U Jelly Bruh? -|-damage|p1a: U Jelly Bruh?|149/363 brn -|-damage|p2a: Slowbro|24/394 tox|[from] recoil -| -|-heal|p1a: U Jelly Bruh?|171/363 brn|[from] item: Black Sludge -|-damage|p1a: U Jelly Bruh?|126/363 brn|[from] brn -|-damage|p2a: Slowbro|0 fnt|[from] psn -|faint|p2a: Slowbro -| -|win|CHEF BOY4RDEEZNUTS -|c| Rath111|1068 -|c| Enzonana|TENTACRUEL HEAL PULSE -|raw|CHEF BOY4RDEEZNUTS's rating: 1420 → 1436
(+16 for winning) -|raw|Crime♥'s rating: 1339 → 1323
(-16 for losing) -|c| Enzonana|GO -|c| Kyorem|1068 is the end -|c| AxeBane|It's not gonna make it to 1069. xD -|c| memethany fantango|for 1069 -|c| Kudasaii|WHERES RECOVER -|c| Cryolite|end battle get -|c| lordkaelros|SO CLOSE -|c| Kyorem|GG -|c| weird random|**it ends at 1068** -|c| icyee|it done -|c| AxeBane|Omai. -|c| weird random|LOL -|c| ZzamanN|**IT'S OVER!** -|c| Asada Shino San|gg -|c| TheCanadianWifier|**GG!** -|c| CoolSwag2015|RIP turn number lol -|c| ZzamanN|**IT'S OVER!** -|c| Kuronachan|I CANT BELIEVE THIS -|c| PyoroLoli|ded at 1068 -|c|★Crime♥|GG WP -|c| AxeBane|GG. -|c|★CHEF BOY4RDEEZNUTS|CRIME GG I'M GLAD I STUCK THIS THROUGH -|c| StAlRuth|GG -|c| StAlRuth|G -|c| StAlRuth|G -|c| ZzamanN|**IT'S OVER!** -|c| breloomiswaifu|gg -|c| 1+8=th|GG -|c| Dual Screens Mamo|GG -|c| Enzonana|1300 ladder -|c| GiraGoomy|GG -|c|★Crime♥|IM SO BAD -|c| Cryolite|g -|c| TheCanadianWifier|G -|c| Cryolite|g -|c| Chasper|+16 -|c| 1+8=th|GGGGG -|c| TheCanadianWifier|G -|c| Cryolite|g -|c| Cryolite|g -|c|★Crime♥|what a game -|c| Enzonana|JAJAJAJAJAJ -|c| Chasper|+16 -|c| Daze-Senpai|gg -|c| megaslowbro1|g -|c| CoolSwag2015|**GG im screenshotting this** -|c| megaslowbro1|g -|c| sancnea|ggggggggggg -|c| Chasper|+16 -|c| Kudasaii|gg -|c| Kudasaii|gg -|c| Honoka Kurai|G FUCKING G. -|c| Gaussfield|EVERYBODY WINS -|c| Kudasaii|gg -|c| Sweanger|http://strawpoll.me/6185409/ -|c| icyee|gg -|c| sancnea|omg -|c| GiraGoomy|+16 POINTS -|c| Kudasaii|everyone type gg -|c| The Master Bait|All that for +16... -|c| Gaussfield|EVERYBODY LOSES -|c| Kudasaii|everyone type gg -|c| ZzamanN|**G MOTHER FUCKING G** -|c| Amber Torrey|god finally what an annoying battle -|c| JacobWorld|gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg -|c| Kudasaii|type gg to win -|c| sancnea|lol -|c| Kudasaii|gg -|c| The Master Bait|Well, whatever, I'm off. -|c| lordkaelros|+16 points -|c| weird random|**everybody won** -|raw|
Moderated chat was set to +!
Only users of rank + and higher can talk.
-|c|★Crime♥|that was a stall battle -|c|★Crime♥|hope i have followers <3 -|c|★Crime♥|lol -|c|★Crime♥|even tho i lost -|c|★Crime♥|T.T -|c|★CHEF BOY4RDEEZNUTS|its was a good game -|c|★Crime♥|thank you all for watching -|c|★Crime♥|yes -|c|★Crime♥|it was my best game ever -|c|★Crime♥|im so exhausted.. -|c|★CHEF BOY4RDEEZNUTS|its 6 am here -|c|★Crime♥|1 in the afternoon here -|c|★Crime♥|i started to play against you around 5 in the morning -|c|★Crime♥|im not sure though -|c|★Crime♥|arounds that -|c|★CHEF BOY4RDEEZNUTS|welp on that note i think im going to bed -|c|@Former Hope|Chef, honor those 16 points with your life. -|c|★Crime♥|lol -|c|★CHEF BOY4RDEEZNUTS|totes worth it -|c|★CHEF BOY4RDEEZNUTS|lol -|c|★CHEF BOY4RDEEZNUTS|night -|c|★Crime♥|night -|c|★Crime♥|:D -|player|p1 diff --git a/old-replays/js/smogtours-ou-509.log b/old-replays/js/smogtours-ou-509.log deleted file mode 100644 index ffecb69c5..000000000 --- a/old-replays/js/smogtours-ou-509.log +++ /dev/null @@ -1,5064 +0,0 @@ -|join|Lord Elyis -|join|Lady bug -|player|p1|Lord Elyis|1 -|player|p2|Lady bug|66 -|gametype|singles -|gen|6 -|tier|OU -|clearpoke -|poke|p1|Chansey, F -|poke|p1|Gliscor, M -|poke|p1|Skarmory, F -|poke|p1|Venusaur, M -|poke|p1|Quagsire, M -|poke|p1|Heatran, M -|poke|p2|Abomasnow, M -|poke|p2|Skarmory, M -|poke|p2|Nidoqueen, F -|poke|p2|Blissey, F -|poke|p2|Clefable, M -|poke|p2|Gyarados, F -|rule|Sleep Clause Mod: Limit one foe put to sleep -|rule|Species Clause: Limit one of each Pokemon -|rule|OHKO Clause: OHKO moves are banned -|rule|Moody Clause: Moody is banned -|rule|Evasion Moves Clause: Evasion moves are banned -|rule|Endless Battle Clause: Forcing endless battles is banned. -|rule|HP Percentage Mod: HP is reported as percentages -|teampreview -|chat|Colchonero|hail pls -|chat|Pwnemon|lady bugs teams -|chat|zdrup|lol boss -|chat|Pwnemon|are always amazing -|chat|Pwnemon|how does he do it -| -|start -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Nidoqueen|Nidoqueen, F|384/384 -|turn|1 -|chat|macle|goooooooo lb -| -|switch|p1a: Chansey|Chansey, F|660/660 -|switch|p2a: Blissey|Blissey, F|688/688 -| -|turn|2 -|chat|Pwnemon|lol -|chat|Valentine|:] -|chat|Arcticblast|Mirror mirror on the wall, who is the fattest of them all? -|chat|Hugendugen|mmm this is arousing -| -|switch|p2a: Nidoqueen|Nidoqueen, F|384/384 -|move|p1a: Chansey|Toxic|p2a: Nidoqueen -|-fail|p2a: Nidoqueen -| -|turn|3 -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|284/384 -| -|-heal|p2a: Nidoqueen|308/384|[from] item: Leftovers -|turn|4 -|chat|M Dragon|LOL -|chat|M Dragon|the DP team! -| -|switch|p2a: Skarmory|Skarmory, M|334/334 -|move|p1a: Chansey|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|234/334 -|-damage|p1a: Chansey|550/660|[from] item: Rocky Helmet|[of] p2a: Skarmory -| -|turn|5 -|chat|Pwnemon|but he has a venusaur -|chat|Blue Eon|v. xy -|chat|Pwnemon|?_? -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|move|p2a: Skarmory|Whirlwind|p1a: Skarmory -|drag|p1a: Gliscor|Gliscor, M|353/353 -| -|-activate|p1a: Gliscor|item: Toxic Orb -|-status|p1a: Gliscor|tox -|turn|6 -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Skarmory -|-unboost|p1a: Skarmory|atk|1 -| -|turn|7 -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Skarmory|Skarmory, M|234/334 -| -|turn|8 -| -|switch|p2a: Nidoqueen|Nidoqueen, F|308/384 -|move|p1a: Skarmory|Defog|p2a: Nidoqueen -|-unboost|p2a: Nidoqueen|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|-heal|p2a: Nidoqueen|332/384|[from] item: Leftovers -|turn|9 -| -|switch|p1a: Venusaur|Venusaur, M|364/364 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|356/384|[from] item: Leftovers -|turn|10 -|chat|Pwnemon|lb gives no fucks -|chat|Pwnemon|tspikes down? set more tspikes -|chat|THE_IRON_KENYAN|is thizs the hype match u were talkinga but -|chat|M Dragon|darkrai -|chat|THE_IRON_KENYAN|pwenemon -| -|switch|p2a: Skarmory|Skarmory, M|234/334 -|-formechange|p1a: Venusaur|Venusaur-Mega -|message|Venusaur has Mega Evolved into Mega Venusaur! -|move|p1a: Venusaur|Giga Drain|p2a: Skarmory -|-resisted|p2a: Skarmory -|-damage|p2a: Skarmory|204/334 -| -|turn|11 -|chat|THE_IRON_KENYAN|man i suck at typing today -|chat|Valentine|delicious stall v stall -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|334/334 -| -|turn|12 -|chat|Pwnemon|yea tik -| -|switch|p2a: Nidoqueen|Nidoqueen, F|356/384 -|move|p1a: Skarmory|Defog|p2a: Nidoqueen -|-unboost|p2a: Nidoqueen|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|-heal|p2a: Nidoqueen|380/384|[from] item: Leftovers -|turn|13 -|chat|THE_IRON_KENYAN|is this uu -|chat|THE_IRON_KENYAN|nah ou -|chat|THE_IRON_KENYAN|hey its lady bug the king frog -| -|switch|p1a: Chansey|Chansey, F|550/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|384/384|[from] item: Leftovers -|turn|14 -|chat|Pwnemon|u always ask if its uu when ladybug plays -|chat|Pwnemon|tbh -| -|switch|p2a: Skarmory|Skarmory, M|334/334 -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 -| -|turn|15 -|chat|Pwnemon|hard to tell -|chat|THE_IRON_KENYAN|wow -| -|switch|p2a: Abomasnow|Abomasnow, M|384/384 -|-weather|Hail -|switch|p1a: Skarmory|Skarmory, F|334/334 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|16 -|chat|THE_IRON_KENYAN|how did joim win -|chat|THE_IRON_KENYAN|a battle -|chat|THE_IRON_KENYAN|amazing -|chat|THE_IRON_KENYAN|mvpmvp -| -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|message|Abomasnow has Mega Evolved into Mega Abomasnow! -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-fail|p1a: Skarmory -|move|p2a: Abomasnow|Blizzard|p1a: Skarmory -|-damage|p1a: Skarmory|67/334 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|47/334|[from] Hail -|-heal|p1a: Skarmory|67/334|[from] item: Leftovers -|turn|17 -|chat|Colchonero|oh -| -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|234/334 -|move|p2a: Abomasnow|Leech Seed|p1a: Skarmory -|-start|p1a: Skarmory|move: Leech Seed -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|214/334|[from] Hail -|-heal|p1a: Skarmory|234/334|[from] item: Leftovers -|-damage|p1a: Skarmory|193/334|[from] Leech Seed|[of] p2a: Abomasnow -|turn|18 -|chat|Blue Eon|THE CHOKE -|chat|Laga|big plays? -|chat|macle|how dare u insult joim -|chat|blarajan|didn't you read -|chat|blarajan|youngjake's explanation? -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|19 -|chat|blarajan|he gave four good reasons as to why he lost -|chat|blarajan|none of them involving "joim playing well" -|chat|Philip7086|goddamn, strong af -| -|switch|p1a: Skarmory|Skarmory, F|193/334 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-weather|none -|-heal|p1a: Skarmory|213/334|[from] item: Leftovers -|turn|20 -|chat|Philip7086|lady thug da bez -|chat|Pwnemon|lol -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-crit|p1a: Skarmory -|-damage|p1a: Skarmory|69/334 -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|236/334 -| -|-heal|p1a: Skarmory|256/334|[from] item: Leftovers -|turn|21 -| -|switch|p2a: Abomasnow|Abomasnow, M|384/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-weather|Hail -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|334/334 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|22 -|chat|Pwnemon|blara my fave was -|chat|Pwnemon|'surprisingly smart plays' -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Skarmory|Skarmory, M|334/334 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|361/385|[from] Hail -|-damage|p2a: Skarmory|314/334|[from] Hail -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|23 -|chat|blarajan|lol -|chat|Pwnemon|like 'i expected joim to be retarded' -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Skarmory -|-unboost|p1a: Skarmory|atk|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|24 -|chat|macle|oh shit -|chat|Soulgazer|pwnemon why are you always mad @ yung -|chat|Soulgazer|:'( -| -|switch|p2a: Skarmory|Skarmory, M|314/334 -|move|p1a: Skarmory|Defog|p2a: Skarmory -|-unboost|p2a: Skarmory|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|-weather|Hail|[upkeep] -|-damage|p2a: Skarmory|294/334|[from] Hail -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|25 -|chat|Laga|it's because he secretcly envy he yuth -| -|switch|p2a: Nidoqueen|Nidoqueen, F|384/384 -|switch|p1a: Heatran|Heatran, M|385/385 -| -|-weather|none -|turn|26 -|chat|Soulgazer|so yung.. -|chat|Pwnemon|wish i could b yung again -|chat|Laga|2 yung 4 pwne to bear -| -|switch|p1a: Chansey|Chansey, F|660/660 -|move|p2a: Nidoqueen|Earth Power|p1a: Chansey -|-damage|p1a: Chansey|602/660 -| -|turn|27 -|chat|Arcticblast|Pwnemon you're like 16 -|chat|Pwnemon|shut up -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|284/384 -| -|-heal|p2a: Nidoqueen|308/384|[from] item: Leftovers -|turn|28 -| -|switch|p1a: Venusaur|Venusaur, M|364/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Nidoqueen|Flamethrower|p1a: Venusaur -|-supereffective|p1a: Venusaur -|-damage|p1a: Venusaur|316/364 -| -|-heal|p2a: Nidoqueen|332/384|[from] item: Leftovers -|turn|29 -|chat|dekzeh|bs no burn -|chat|macle|the damage -|chat|OU Mew|stronk -|chat|chieliee|no burn bs -| -|switch|p2a: Skarmory|Skarmory, M|294/334 -|switch|p1a: Chansey|Chansey, F|602/660 -| -|turn|30 -|chat|Pwnemon|lol that fuckin bulk -|chat|Pwnemon|my god -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|move|p2a: Skarmory|Brave Bird|p1a: Skarmory -|-crit|p1a: Skarmory -|-resisted|p1a: Skarmory -|-damage|p1a: Skarmory|282/334 -|-damage|p2a: Skarmory|277/334|[from] recoil|[of] p1a: Skarmory -| -|-heal|p1a: Skarmory|302/334|[from] item: Leftovers -|turn|31 -|chat|macle|THE DAMAGE -|chat|Pwnemon|bs crit no gg -|chat|Hot N Cold|500 turns battle -| -|switch|p2a: Nidoqueen|Nidoqueen, F|332/384 -|move|p1a: Skarmory|Whirlwind|p2a: Nidoqueen -|drag|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Skarmory -|-unboost|p1a: Skarmory|atk|1 -| -|-heal|p1a: Skarmory|322/334|[from] item: Leftovers -|turn|32 -|chat|Hot N Cold|please -|chat|chieliee|yeah this could take a long while -|chat|Laga|so is anything going to happen or -|chat|Pwnemon|pp stall battle -| -|switch|p2a: Abomasnow|Abomasnow, M|384/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-weather|Hail -|switch|p1a: Quagsire|Quagsire, M|393/393 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Quagsire|369/393|[from] Hail -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|33 -|chat|Pwnemon|its like playing gsc -|chat|Pwnemon|lelele -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Abomasnow|Leech Seed|p1a: Heatran|[miss] -|-miss|p2a: Abomasnow|p1a: Heatran -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|34 -|chat|Pwnemon|wow -|chat|Arcticblast|hax -|chat|Laga|show us the EQ -|chat|chieliee|where's the earthquake -|chat|Pwnemon|that just extended this match -|chat|Pwnemon|by 200 turns -|chat|OU Mew|imagine this battle with 5 minutes thinking each turn -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Stealth Rock|p2a: Gyarados -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|35 -|chat|SoulWind|you niggers should both tie -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Earthquake|p1a: Quagsire -|-damage|p1a: Quagsire|323/393 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Quagsire|299/393|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Quagsire|323/393|[from] item: Leftovers -|turn|36 -|chat|Pwnemon|oh shit the rocks -| -|switch|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -|move|p1a: Quagsire|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-weather|none -|-heal|p2a: Blissey|645/688 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|347/393|[from] item: Leftovers -|-damage|p2a: Blissey|602/688 tox|[from] psn -|turn|37 -|chat|gr8astard|lady bug's stall got buffed :[l] -| -|switch|p2a: Skarmory|Skarmory, M|277/334 -|-damage|p2a: Skarmory|236/334|[from] Stealth Rock -|switch|p1a: Chansey|Chansey, F|602/660 -| -|turn|38 -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Skarmory|Defog|p1a: Heatran -|-unboost|p1a: Heatran|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|39 -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Stealth Rock|p2a: Gyarados -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|turn|40 -| -|switch|p1a: Skarmory|Skarmory, F|322/334 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|41 -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|234/334 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Abomasnow|Abomasnow, M|384/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-damage|p2a: Abomasnow|288/384|[from] Stealth Rock -|-weather|Hail -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|214/334|[from] Hail -|-heal|p1a: Skarmory|234/334|[from] item: Leftovers -|turn|42 -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Abomasnow|Blizzard|p1a: Heatran -|-resisted|p1a: Heatran -|-damage|p1a: Heatran|345/385 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|321/385|[from] Hail -|-heal|p1a: Heatran|345/385|[from] item: Leftovers -|turn|43 -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-damage|p2a: Gyarados|296/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|237/394 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|213/394|[from] Hail -|-damage|p1a: Heatran|321/385|[from] Hail -|-heal|p2a: Gyarados|237/394|[from] item: Leftovers -|-heal|p1a: Heatran|345/385|[from] item: Leftovers -|turn|44 -| -|switch|p1a: Quagsire|Quagsire, M|347/393 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|213/394|[from] Hail -|-damage|p1a: Quagsire|323/393|[from] Hail -|-heal|p2a: Gyarados|237/394|[from] item: Leftovers -|-heal|p1a: Quagsire|347/393|[from] item: Leftovers -|turn|45 -|chat|Valentine|Blizzard / Leech Seed ? -|chat|Pwnemon|bs no burn no gg -|chat|Valentine|Whats teh rest of his set, have we seen it -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|254/393 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -| -|-weather|none -|-heal|p2a: Gyarados|261/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|278/393|[from] item: Leftovers -|-damage|p2a: Gyarados|237/394 tox|[from] psn -|turn|46 -|chat|chieliee|im guessing protect -|chat|Valentine|jw -|chat|chieliee|oh wait we're not supposed to talk -|chat|chieliee|about this -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 -| -|turn|47 -|chat|chieliee|oups -|chat|Pwnemon|LOL -|chat|Arcticblast|LB hasn't revealed anything else -|chat|Pwnemon|rekt -|chat|Valentine|i was asking what has been releaved -|chat|zdrup|yeah, I'm banning you chieliee -|chat|Valentine|kk -|chat|Valentine|ty -|chat|Hot N Cold|ban chieliee imo :P -| -|switch|p1a: Skarmory|Skarmory, F|234/334 -|cant|p2a: Gyarados|slp -| -|-heal|p1a: Skarmory|254/334|[from] item: Leftovers -|turn|48 -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|602/688 -|-damage|p2a: Blissey|516/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|274/334|[from] item: Leftovers -|-heal|p2a: Blissey|559/688|[from] item: Leftovers -|turn|49 -| -|switch|p1a: Chansey|Chansey, F|602/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|502/660 -| -|-heal|p2a: Blissey|602/688|[from] item: Leftovers -|turn|50 -|chat|Pwnemon|reveal the two sr setters -| -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|402/660 -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|502/688 -| -|-heal|p2a: Blissey|545/688|[from] item: Leftovers -|turn|51 -| -|switch|p2a: Skarmory|Skarmory, M|236/334 -|-damage|p2a: Skarmory|195/334|[from] Stealth Rock -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 -| -|turn|52 -| -|switch|p1a: Heatran|Heatran, M|345/385 -|move|p2a: Skarmory|Defog|p1a: Heatran -|-unboost|p1a: Heatran|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: Heatran|369/385|[from] item: Leftovers -|turn|53 -|chat|Laga|if only s-toss could crit -| -|switch|p2a: Nidoqueen|Nidoqueen, F|332/384 -|move|p1a: Heatran|Stealth Rock|p2a: Nidoqueen -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-heal|p2a: Nidoqueen|356/384|[from] item: Leftovers -|turn|54 -| -|switch|p1a: Chansey|Chansey, F|660/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|380/384|[from] item: Leftovers -|turn|55 -|chat|Arcticblast|crit Seismic Toss is the new best strategy -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|280/384 -| -|-heal|p2a: Nidoqueen|304/384|[from] item: Leftovers -|turn|56 -|chat|Pwnemon|dragon tail y/y -| -|switch|p1a: Venusaur|Venusaur, M|316/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|328/384|[from] item: Leftovers -|turn|57 -|chat|Pwnemon|aw -|chat|Laga|lol -|chat|Imanalt|plays -|chat|chieliee|plays -| -|switch|p2a: Blissey|Blissey, F|545/688 -|-damage|p2a: Blissey|459/688|[from] Stealth Rock -|switch|p1a: Chansey|Chansey, F|660/660 -|-status|p1a: Chansey|psn -| -|-heal|p2a: Blissey|502/688|[from] item: Leftovers -|-damage|p1a: Chansey|578/660 psn|[from] psn -|turn|58 -|chat|davidness|lol -|chat|davidness|stalll shit -| -|switch|p1a: Venusaur|Venusaur, M|316/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Blissey|Seismic Toss|p1a: Venusaur -|-damage|p1a: Venusaur|216/364 -| -|-heal|p2a: Blissey|545/688|[from] item: Leftovers -|turn|59 -| -|move|p1a: Venusaur|Synthesis|p1a: Venusaur -|-heal|p1a: Venusaur|364/364 -|move|p2a: Blissey|Seismic Toss|p1a: Venusaur -|-damage|p1a: Venusaur|264/364 -| -|-heal|p2a: Blissey|588/688|[from] item: Leftovers -|turn|60 -|chat|OU Mew|amazing damage against megavenu -| -|switch|p1a: Chansey|Chansey, F|578/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|478/660 -| -|-heal|p2a: Blissey|631/688|[from] item: Leftovers -|turn|61 -|chat|Imanalt|i feel like defog makes stall vs stall so much worse than it used to be... -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 tox -| -|-heal|p2a: Blissey|674/688|[from] item: Leftovers -|-damage|p1a: Chansey|619/660 tox|[from] psn -|turn|62 -| -|switch|p2a: Nidoqueen|Nidoqueen, F|328/384 -|-damage|p2a: Nidoqueen|304/384|[from] Stealth Rock -|move|p1a: Chansey|Toxic|p2a: Nidoqueen -|-fail|p2a: Nidoqueen -| -|-heal|p2a: Nidoqueen|328/384|[from] item: Leftovers -|-damage|p1a: Chansey|537/660 tox|[from] psn -|turn|63 -|chat|Arcticblast|we're 63 turns in and it hasn't even been 10 minutes -| -|switch|p1a: Venusaur|Venusaur, M|264/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|352/384|[from] item: Leftovers -|turn|64 -|chat|Pwnemon|lol -|chat|Pwnemon|blara match is like -| -|switch|p2a: Blissey|Blissey, F|674/688 -|-damage|p2a: Blissey|588/688|[from] Stealth Rock -|move|p1a: Venusaur|Synthesis|p1a: Venusaur -|-heal|p1a: Venusaur|364/364 -| -|-heal|p2a: Blissey|631/688|[from] item: Leftovers -|turn|65 -|chat|Pwnemon|on turn 3 -|chat|Pwnemon|at this point -|chat|blarajan|wasn't my fault :)) -| -|switch|p1a: Chansey|Chansey, F|537/660 -|-status|p1a: Chansey|psn -|switch|p2a: Skarmory|Skarmory, M|195/334 -|-damage|p2a: Skarmory|154/334|[from] Stealth Rock -| -|-damage|p1a: Chansey|455/660 psn|[from] psn -|turn|66 -|chat|Soulgazer|cased vs jayde was worse.. -| -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|321/334 -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 psn -| -|-damage|p1a: Chansey|578/660 psn|[from] psn -|turn|67 -| -|switch|p1a: Venusaur|Venusaur, M|364/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Skarmory|Brave Bird|p1a: Venusaur -|-supereffective|p1a: Venusaur -|-damage|p1a: Venusaur|160/364 -|-damage|p2a: Skarmory|254/334|[from] recoil|[of] p1a: Venusaur -| -|turn|68 -|chat|Pwnemon|the whirlwind to quags is real here -|chat|Hot N Cold|lady bug at least has a win condition -|chat|Arcticblast|THE PLAYS -|chat|Laga|oooooh -|chat|dekzeh|plays -|chat|chieliee|plays -|chat|Colchonero|oops -| -|switch|p1a: Skarmory|Skarmory, F|274/334 -|move|p2a: Skarmory|Defog|p1a: Skarmory -|-unboost|p1a: Skarmory|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: Skarmory|294/334|[from] item: Leftovers -|turn|69 -|chat|Pwnemon|such plays -| -|switch|p2a: Nidoqueen|Nidoqueen, F|352/384 -|move|p1a: Skarmory|Whirlwind|p2a: Nidoqueen -|drag|p2a: Clefable|Clefable, M|394/394 -| -|-heal|p1a: Skarmory|314/334|[from] item: Leftovers -|turn|70 -|chat|Pwnemon|have never been seen -|chat|Pwnemon|by mortals -|chat|dekzeh|the clefable is here -| -|switch|p1a: Chansey|Chansey, F|578/660 -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -| -|turn|71 -|chat|Colchonero|MANfable -|chat|dekzeh|n_n -|chat|Joim|70 turns, no kills -|chat|Joim|gg -| -|switch|p1a: Skarmory|Skarmory, F|314/334 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|72 -|chat|Imanalt|70 turns not even much damage or progress setting hazards -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|631/688 -| -|-heal|p2a: Blissey|674/688|[from] item: Leftovers -|turn|73 -|chat|Pwnemon|but pp stall -|chat|Imanalt|fucking defog -|chat|macle|the damage -|chat|Pwnemon|venus half out of synhs -| -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -|switch|p2a: Nidoqueen|Nidoqueen, F|352/384 -| -|-heal|p2a: Nidoqueen|376/384|[from] item: Leftovers -|turn|74 -| -|switch|p1a: Venusaur|Venusaur, M|160/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|384/384|[from] item: Leftovers -|turn|75 -|chat|Imanalt|yeah its really sad though when thats the most important thing -|chat|Pwnemon|lol -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Venusaur|Synthesis|p1a: Venusaur -|-heal|p1a: Venusaur|342/364 -| -|turn|76 -|chat|Joim|wow the plays -| -|switch|p2a: Skarmory|Skarmory, M|254/334 -|switch|p1a: Chansey|Chansey, F|578/660 -|-status|p1a: Chansey|tox -| -|-damage|p1a: Chansey|537/660 tox|[from] psn -|turn|77 -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|move|p2a: Skarmory|Whirlwind|p1a: Skarmory -|drag|p1a: Heatran|Heatran, M|385/385 -| -|turn|78 -|chat|blarajan|joim you're embarrassing yourself :(( -|chat|Pwnemon|aw -|chat|LonelyNess|awwwww -|chat|myzozoa|lol -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Skarmory -|-unboost|p1a: Skarmory|atk|1 -| -|turn|79 -|chat|Imanalt|bb if real -|chat|Arcticblast|I think I'll pass on using stall in OST after this -|chat|Pwnemon|buzz kill -|chat|Imanalt|dam -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Skarmory|Defog|p2a: Gyarados -|-unboost|p2a: Gyarados|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|turn|80 -|chat|Pwnemon|lol ablast -|chat|Joim|I will copy this stall team -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|243/334 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Clefable|Clefable, M|394/394 -| -|-heal|p1a: Skarmory|263/334|[from] item: Leftovers -|turn|81 -|chat|macle|its ok blara always embarrasses himself -|chat|Annoyer|which one -|chat|Imanalt|lol -|chat|Joim|both -|chat|Pwnemon|one for game 1 -|chat|Pwnemon|one for game 2 -| -|switch|p1a: Chansey|Chansey, F|537/660 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -| -|turn|82 -|chat|Pwnemon|if the opponent lives to game 2 -|chat|Pwnemon|without an heroing -| -|switch|p2a: Nidoqueen|Nidoqueen, F|384/384 -|switch|p1a: Skarmory|Skarmory, F|263/334 -| -|-heal|p1a: Skarmory|283/334|[from] item: Leftovers -|turn|83 -|chat|Joim|if there's third match then a full choice team ofc -| -|switch|p1a: Chansey|Chansey, F|537/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|turn|84 -| -|switch|p2a: Blissey|Blissey, F|674/688 -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|574/688 -| -|-heal|p2a: Blissey|617/688|[from] item: Leftovers -|turn|85 -|chat|OU Mew|suicide by stall -| -|switch|p1a: Skarmory|Skarmory, F|283/334 -|move|p2a: Blissey|Seismic Toss|p1a: Skarmory -|-damage|p1a: Skarmory|183/334 -| -|-heal|p1a: Skarmory|203/334|[from] item: Leftovers -|-heal|p2a: Blissey|660/688|[from] item: Leftovers -|turn|86 -| -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|334/334 -|move|p2a: Blissey|Seismic Toss|p1a: Skarmory -|-damage|p1a: Skarmory|234/334 -| -|-heal|p1a: Skarmory|254/334|[from] item: Leftovers -|-heal|p2a: Blissey|688/688|[from] item: Leftovers -|turn|87 -|chat|chieliee|both players should just be constantly switching to not use pp -|chat|chieliee|imo -|chat|Pwnemon|yeah -| -|switch|p2a: Abomasnow|Abomasnow, M|288/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-weather|Hail -|move|p1a: Skarmory|Defog|p2a: Abomasnow -|-unboost|p2a: Abomasnow|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|234/334|[from] Hail -|-heal|p1a: Skarmory|254/334|[from] item: Leftovers -|turn|88 -|chat|macle|winner will be decided by time out to shitting y/n -|chat|Pwnemon|it is prob gonna come to -|chat|Pwnemon|siesmic pp vs synth pp -|chat|Pwnemon|lol -|chat|whistle|this is fucked up -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Abomasnow|Leech Seed|p1a: Heatran -|-start|p1a: Heatran|move: Leech Seed -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-damage|p1a: Heatran|337/385|[from] Leech Seed|[of] p2a: Abomasnow -|-heal|p2a: Abomasnow|336/384|[silent] -|turn|89 -|chat|jumpluff|what the fuck -|chat|dekzeh|ure fucked up whistle -|chat|jumpluff|i join turn 88 and it's 6-0 -|chat|dekzeh|o_o -|chat|jdarden|lol -|chat|Pwnemon|lol -|chat|chieliee|stall vs stall -|chat|whistle|im going to go kill myself -|chat|Annoyer|6-6 -|chat|THE_IRON_KENYAN|how is anyone gonna win this game -|chat|jumpluff|would you look at that abomasnow tho. -|chat|THE_IRON_KENYAN|lol -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Stealth Rock|p2a: Gyarados -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Heatran|313/385|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Heatran|337/385|[from] item: Leftovers -|-damage|p1a: Heatran|289/385|[from] Leech Seed|[of] p2a: Gyarados -|turn|90 -|chat|Laga|TIK -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Quagsire|369/393|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|91 -|chat|Laga|I am having a struggle seeing how -|chat|Pwnemon|laga that was forced -| -|switch|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -|move|p1a: Quagsire|Scald|p2a: Blissey -|-damage|p2a: Blissey|553/688 -| -|-weather|none -|-heal|p2a: Blissey|596/688|[from] item: Leftovers -|turn|92 -|chat|Laga|shut up. -| -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|253/353 tox -| -|-heal|p2a: Blissey|639/688|[from] item: Leftovers -|-heal|p1a: Gliscor|297/353 tox|[from] ability: Poison Heal -|turn|93 -| -|switch|p1a: Heatran|Heatran, M|289/385 -|switch|p2a: Skarmory|Skarmory, M|254/334 -|-damage|p2a: Skarmory|213/334|[from] Stealth Rock -| -|-heal|p1a: Heatran|313/385|[from] item: Leftovers -|turn|94 -|chat|Pwnemon|plays -|chat|Treecko|cripple fiiiight -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-damage|p2a: Gyarados|296/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Quagsire -|-unboost|p1a: Quagsire|atk|1 -| -|-heal|p2a: Gyarados|320/394|[from] item: Leftovers -|turn|95 -|chat|THE_IRON_KENYAN|leche seed -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|287/394 -|-status|p2a: Gyarados|brn -| -|-heal|p2a: Gyarados|311/394 brn|[from] item: Leftovers -|-damage|p2a: Gyarados|262/394 brn|[from] brn -|turn|96 -|chat|Soulgazer|nb -|chat|Joim|wow -|chat|macle|NOooooooo -|chat|Biosci|yessssss -|chat|LonelyNess|he has rest -|chat|chieliee|it has rest -|chat|Pwnemon|its ok rest lelele -|chat|Joim|fuck man -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-crit|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|208/394 brn -| -|-heal|p2a: Gyarados|232/394 brn|[from] item: Leftovers -|-damage|p2a: Gyarados|183/394 brn|[from] brn -|turn|97 -|chat|Biosci|progress -|chat|THE_IRON_KENYAN|is this an spl match -|chat|LonelyNess|calm your tits lol -|chat|THE_IRON_KENYAN|? -|chat|Pwnemon|y -|chat|Soulgazer|it has rest so 'lol' -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|358/394 slp -| -|-heal|p2a: Gyarados|382/394 slp|[from] item: Leftovers -|turn|98 -|chat|THE_IRON_KENYAN|PH SHIT -|chat|OU Mew|HP Electric -|chat|THE_IRON_KENYAN|SHEIIT -|chat|THE_IRON_KENYAN|SHEEIT -|chat|Hot N Cold|soulhaxer -|chat|Joim|I went here later on -|chat|Joim|don't hate -|chat|Hot N Cold| :{|} -| -|switch|p1a: Skarmory|Skarmory, F|254/334 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|394/394 slp|[from] item: Leftovers -|-heal|p1a: Skarmory|274/334|[from] item: Leftovers -|turn|99 -|chat|THE_IRON_KENYAN|its got rest -|chat|Pwnemon|lets predict final turn # -|chat|Soulgazer|i can see why tho -|chat|THE_IRON_KENYAN|i know it in my heart -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|639/688 -|-damage|p2a: Blissey|553/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|294/334|[from] item: Leftovers -|-heal|p2a: Blissey|596/688|[from] item: Leftovers -|turn|100 -|chat|Pwnemon|i bet 100 -|chat|chieliee|has gyara revealed it's last move yet -|chat|Pwnemon|er -|chat|Pwnemon|1000 -|chat|Pwnemon|lol -|chat|Soulgazer|chielee -| -|switch|p1a: Chansey|Chansey, F|537/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|437/660 -| -|-heal|p2a: Blissey|639/688|[from] item: Leftovers -|turn|101 -|chat|Treecko|it's resttalk -|chat|Pwnemon|no chie -|chat|Texas Cloverleaf|it has -|chat|Soulgazer|its rest dd wfall eq -|chat|Laga|nice prediction pwne -|chat|Joim|Stall games start breaking after 200 -|chat|Treecko|oh -|chat|Laga|this is where one of em times out -|chat|Treecko|or not -|chat|Arcticblast|yeah chieliee, it has -|chat|Treecko|:) -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Toxic|p2a: Blissey|[miss] -|-miss|p1a: Chansey|p2a: Blissey -| -|-heal|p2a: Blissey|682/688|[from] item: Leftovers -|-damage|p1a: Chansey|396/660 tox|[from] psn -|turn|102 -|chat|chieliee|did he show eq -|chat|Soulgazer|y -|chat|Pwnemon|y -|chat|Soulgazer|lol -| -|switch|p2a: Nidoqueen|Nidoqueen, F|384/384 -|-damage|p2a: Nidoqueen|360/384|[from] Stealth Rock -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 tox -| -|-heal|p2a: Nidoqueen|384/384|[from] item: Leftovers -|-damage|p1a: Chansey|578/660 tox|[from] psn -|turn|103 -|chat|Hot N Cold|which waste PP loses this game lol -|chat|THE_IRON_KENYAN|is this what gsc is like -|chat|jumpluff|it's like gsc -|chat|Pwnemon|i think blisseys seismic toss -|chat|jumpluff|.. -|chat|THE_IRON_KENYAN|lel -|chat|Pwnemon|will decide the game -|chat|Pwnemon|funnily -| -|switch|p1a: Venusaur|Venusaur, M|342/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|turn|104 -|chat|myzozoa|xy sux y/n -|chat|Pwnemon|all the gsc games this spl -|chat|Pwnemon|have been pretty quick -|chat|jumpluff|sub in myzo -|chat|THE_IRON_KENYAN|i wonder if i have time to brush my teeth before this battle is over -|chat|jumpluff|bring the fire -| -|move|p2a: Nidoqueen|Flamethrower|p1a: Venusaur -|-supereffective|p1a: Venusaur -|-damage|p1a: Venusaur|294/364 -|move|p1a: Venusaur|Earthquake|p2a: Nidoqueen -|-supereffective|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|250/384 -| -|-heal|p2a: Nidoqueen|274/384|[from] item: Leftovers -|turn|105 -|chat|Pwnemon|you have time to cook a four course meal -|chat|Stone_Cold22|lol -|chat|Joim|"it's super effective" -|chat|Pwnemon|before this shit ends -|chat|BAIKA|thick fat ^_____^ -| -|switch|p1a: Chansey|Chansey, F|578/660 -|-status|p1a: Chansey|psn -|move|p2a: Nidoqueen|Flamethrower|p1a: Chansey -|-damage|p1a: Chansey|542/660 psn -| -|-heal|p2a: Nidoqueen|298/384|[from] item: Leftovers -|-damage|p1a: Chansey|460/660 psn|[from] psn -|turn|106 -|chat|Soulgazer|pwnemon, atleast they play quickly -|chat|jumpluff|yeah jesus -|chat|Treecko|yea lol -|chat|Pwnemon|lol tru -|chat|Soulgazer|took 1hour+ for cased and jayde to play -|chat|Soulgazer|20 turns -| -|switch|p2a: Skarmory|Skarmory, M|213/334 -|-damage|p2a: Skarmory|172/334|[from] Stealth Rock -|switch|p1a: Venusaur|Venusaur, M|294/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -| -|turn|107 -|chat|Joim|yeah I know -|chat|Joim|it's just funny -|chat|jumpluff|cased vs. problems was the worst -| -|switch|p1a: Heatran|Heatran, M|313/385 -|move|p2a: Skarmory|Defog|p1a: Heatran -|-unboost|p1a: Heatran|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: Heatran|337/385|[from] item: Leftovers -|turn|108 -|chat|jumpluff|i nearly killed myself staying awake through that cos i was sick -|chat|Annoyer|when did this match start btw -|chat|Pwnemon|they dont play the same tier -|chat|blarajan|cased definitely fought problems -|chat|Pwnemon|lol -|chat|myzozoa|how many defogs do they each ahve -|chat|Treecko|lol -|chat|Soulgazer|annoyer -|chat|Soulgazer|like -| -|switch|p2a: Nidoqueen|Nidoqueen, F|298/384 -|move|p1a: Heatran|Stealth Rock|p2a: Nidoqueen -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-heal|p1a: Heatran|361/385|[from] item: Leftovers -|-heal|p2a: Nidoqueen|322/384|[from] item: Leftovers -|turn|109 -|chat|Soulgazer|10min ago? -|chat|Soulgazer|idk -|chat|Annoyer|lol damn -|chat|Laga|started just before you got on irc annoyer -|chat|Pwnemon|20 i think -|chat|Arcticblast|15 minutes ago -|chat|chieliee|20 -| -|switch|p1a: Chansey|Chansey, F|460/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|346/384|[from] item: Leftovers -|turn|110 -|chat|blarajan|i love how over entitled spectators are o.O -|chat|Pwnemon|uh wow -|chat|Pwnemon|six -|chat|Pwnemon|rofl -| -|switch|p2a: Blissey|Blissey, F|682/688 -|-damage|p2a: Blissey|596/688|[from] Stealth Rock -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 -| -|-heal|p2a: Blissey|639/688|[from] item: Leftovers -|turn|111 -|chat|Pwnemon|six mins ago -|chat|Arcticblast|oh 20 w/e -|chat|Pwnemon|and on turn 110 -|chat|Hugendugen|what turn are we up to? -| -|switch|p1a: Venusaur|Venusaur, M|294/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Blissey|Seismic Toss|p1a: Venusaur -|-damage|p1a: Venusaur|194/364 -| -|-heal|p2a: Blissey|682/688|[from] item: Leftovers -|turn|112 -|chat|Annoyer|111 -|chat|Treecko|111 -|chat|jumpluff|that's impressive -|chat|Pwnemon|wait no -|chat|Hugendugen|I just got back and I'm still catching up -|chat|Pwnemon|it got posted twice -|chat|Pwnemon|on irc -| -|switch|p1a: Gliscor|Gliscor, M|297/353 tox -|move|p2a: Blissey|Toxic|p1a: Gliscor -|-fail|p1a: Gliscor|tox -| -|-heal|p2a: Blissey|688/688|[from] item: Leftovers -|-heal|p1a: Gliscor|341/353 tox|[from] ability: Poison Heal -|turn|113 -|chat|Hugendugen|105 atm -|chat|Pwnemon|i foudn the later -|chat|Hugendugen|almost there -|chat|Pwnemon|it was >20 mins -|chat|Treecko|lol -|chat|blarajan|pwnemon -|chat|blarajan|it started 23 minutes ago -| -|switch|p1a: Heatran|Heatran, M|361/385 -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -| -|-heal|p2a: Gyarados|320/394 slp|[from] item: Leftovers -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|114 -|chat|Pwnemon|y -|chat|jumpluff|even still 5 turns a minute approx. -|chat|Pwnemon|i got it -|chat|jumpluff|is very solid for this spl -|chat|jumpluff|very good in general -|chat|Treecko|yeah it is -|chat|Stone_Cold22|jumpluff -|chat|Stone_Cold22|first penta in ranked about 30 mins ago -|chat|Stone_Cold22|lfgi? -|chat|jumpluff|grats! what champ -| -|switch|p1a: Skarmory|Skarmory, F|294/334 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|344/394|[from] item: Leftovers -|-heal|p1a: Skarmory|314/334|[from] item: Leftovers -|turn|115 -|chat|Stone_Cold22|fizz -|chat|jumpluff|nice -|chat|Stone_Cold22|the ew boss -|chat|myzozoa|flinchas -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|224/334 -|cant|p1a: Skarmory|flinch -| -|-heal|p2a: Gyarados|368/394|[from] item: Leftovers -|-heal|p1a: Skarmory|244/334|[from] item: Leftovers -|turn|116 -|chat|Arcticblast|triple crit flinch right here -|chat|myzozoa|weak af -|chat|Hot N Cold|lol quagsire -|chat|Pwnemon|yes flinch -|chat|blarajan|FLINCH 1 FOR THE BUG -|chat|Soulgazer|myzo,, -|chat|chieliee|3 more -|chat|jumpluff|thanks myzo -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Skarmory|Skarmory, M|172/334 -|-damage|p2a: Skarmory|131/334|[from] Stealth Rock -| -|-heal|p1a: Skarmory|264/334|[from] item: Leftovers -|turn|117 -|chat|Soulgazer|dont flinch -|chat|Annoyer|dag. -|chat|Pwnemon|lol the dance -|chat|Hugendugen|ok sweet, finally caught up -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|298/334 -| -|turn|118 -|chat|Pwnemon|where is the defog -| -|switch|p2a: Gyarados|Gyarados, F|368/394 -|-damage|p2a: Gyarados|270/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Roar|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -| -|-heal|p2a: Blissey|645/688|[from] item: Leftovers -|turn|119 -|chat|the pdc show|you both just had to bring stall -|chat|Soulgazer|ah not bad -|chat|Valentine|oml -|chat|Stone_Cold22|tbh -|chat|chieliee|ah -| -|switch|p1a: Chansey|Chansey, F|660/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|560/660 -| -|-heal|p2a: Blissey|688/688|[from] item: Leftovers -|turn|120 -|chat|Stone_Cold22|elyis should talked to me before hand -|chat|Stone_Cold22|i woulda told him what lady bug would use -|chat|Stone_Cold22|lol -|chat|Arcticblast|man imagine if that was a Taunt Gyara -|chat|Stone_Cold22|smfh -| -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|460/660 -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|588/688 -| -|-heal|p2a: Blissey|631/688|[from] item: Leftovers -|turn|121 -|chat|jumpluff|dude lb told everyone he was gonna use hail stall -|chat|jumpluff|he was warned. -| -|switch|p2a: Skarmory|Skarmory, M|298/334 -|-damage|p2a: Skarmory|257/334|[from] Stealth Rock -|move|p1a: Chansey|Toxic|p2a: Skarmory -|-fail|p2a: Skarmory -| -|turn|122 -|chat|Arcticblast|this game would have been over sixty turns ago -|chat|myzozoa|i like how he still uses nidoqueen on his hail stall -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Skarmory|Defog|p1a: Heatran -|-unboost|p1a: Heatran|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|turn|123 -|chat|myzozoa|nothing changes -|chat|chieliee|cant these guys just restart with new teams pls -|chat|jumpluff|:') -| -|switch|p2a: Nidoqueen|Nidoqueen, F|346/384 -|move|p1a: Heatran|Stealth Rock|p2a: Nidoqueen -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-heal|p2a: Nidoqueen|370/384|[from] item: Leftovers -|turn|124 -|chat|Dice|the mcmeghan tactics -|chat|Dice|scouting playstyle and then restarting -| -|switch|p1a: Chansey|Chansey, F|460/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|384/384|[from] item: Leftovers -|turn|125 -|chat|Pwnemon|lol -| -|switch|p2a: Skarmory|Skarmory, M|257/334 -|-damage|p2a: Skarmory|216/334|[from] Stealth Rock -|move|p1a: Chansey|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|116/334 -|-damage|p1a: Chansey|350/660|[from] item: Rocky Helmet|[of] p2a: Skarmory -| -|turn|126 -|chat|McMeghan|oO -|chat|Stone_Cold22|the plays -| -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|283/334 -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 -| -|turn|127 -| -|switch|p1a: Skarmory|Skarmory, F|264/334 -|move|p2a: Skarmory|Whirlwind|p1a: Skarmory -|drag|p1a: Quagsire|Quagsire, M|393/393 -|-status|p1a: Quagsire|psn -| -|-damage|p1a: Quagsire|344/393 psn|[from] psn -|turn|128 -|chat|Pwnemon|YES -|chat|blarajan|GOT IT -|chat|LonelyNess|boom -|chat|myzozoa|nice -|chat|Pwnemon|THE REAL -|chat|Colchonero|yeah -|chat|Imanalt|boom -| -|switch|p1a: Skarmory|Skarmory, F|264/334 -|move|p2a: Skarmory|Defog|p1a: Skarmory -|-unboost|p1a: Skarmory|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -| -|-heal|p1a: Skarmory|284/334|[from] item: Leftovers -|turn|129 -|chat|blarajan|heal bell on chansey tho -|chat|myzozoa|seriously? -|chat|blarajan|probably? -|chat|Pwnemon|if there is a god -|chat|chieliee|everything has a 'though' in this battle -| -|switch|p2a: Gyarados|Gyarados, F|270/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Skarmory -|-unboost|p1a: Skarmory|atk|1 -|switch|p1a: Chansey|Chansey, F|660/660 -| -|-heal|p2a: Gyarados|294/394|[from] item: Leftovers -|turn|130 -|chat|Treecko|if it is, that's still one less PP of it :O -| -|switch|p1a: Skarmory|Skarmory, F|284/334 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|318/394|[from] item: Leftovers -|-heal|p1a: Skarmory|304/334|[from] item: Leftovers -|turn|131 -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|213/334 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Nidoqueen|Nidoqueen, F|384/384 -| -|-heal|p1a: Skarmory|233/334|[from] item: Leftovers -|turn|132 -|chat|jumpluff|y'all should start putting spite on ur mons imo -|chat|Laga|man you know you are using some srs stall on stall -|chat|Laga|when spectators are talking about -| -|switch|p1a: Chansey|Chansey, F|660/660 -|move|p2a: Nidoqueen|Flamethrower|p1a: Chansey -|-damage|p1a: Chansey|624/660 -| -|turn|133 -|chat|Laga|stalling out heal bell pp -|chat|Treecko|yea lol -|chat|Imanalt|when are the waterfall flicnhes going to start -|chat|jumpluff|ipl stalled ot rapid spin once -|chat|jumpluff|out* -| -|move|p2a: Nidoqueen|Sludge Wave|p1a: Chansey -|-damage|p1a: Chansey|561/660 -|move|p1a: Chansey|Aromatherapy|p1a: Chansey -|-cureteam|p1a: Chansey|[from] move: Aromatherapy -| -|turn|134 -|chat|Annoyer|mushy stall -|chat|edgrr|:] -|chat|Imanalt|wow amazingly strong -|chat|blarajan|there it is -|chat|macle|there is it -|chat|jdarden|damage -|chat|Soulgazer|ah -|chat|Soulgazer|the wave -|chat|jumpluff|which has 64 PP -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|284/384 -| -|-heal|p2a: Nidoqueen|308/384|[from] item: Leftovers -|turn|135 -|chat|Pwnemon|no it has 8 -|chat|Pwnemon|fasten ur fucking seatbelts folks -| -|move|p2a: Nidoqueen|Flamethrower|p1a: Chansey -|-damage|p1a: Chansey|526/660 -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|208/384 -| -|-heal|p2a: Nidoqueen|232/384|[from] item: Leftovers -|turn|136 -|chat|jumpluff|rapid spin >.> -|chat|Pwnemon|this is gonna take a while -|chat|Treecko|she was talking about spin -|chat|Pwnemon|oh -|chat|Treecko|not aromatherapy -|chat|Arcticblast|dear god pluff that sounds awful -|chat|Stone_Cold22|pluff -|chat|THE_IRON_KENYAN|ok i got done brushing my teeth did anything happen -|chat|Stone_Cold22|someone on ladder on shoddy ran -|chat|Treecko|nop -| -|switch|p2a: Gyarados|Gyarados, F|318/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -|switch|p1a: Venusaur|Venusaur, M|194/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -| -|-heal|p2a: Gyarados|342/394|[from] item: Leftovers -|turn|137 -|chat|Annoyer|revealed aroma -|chat|Laga|wow pluff -|chat|Stone_Cold22|cosmic power rest sleep talk rapid spin claydol -|chat|Stone_Cold22|just to pp stall -|chat|blarajan|i'm genuinely worried lady bug will run out of toxic spike pp -|chat|LonelyNess|THE_IRON_KENYAN: exactly 1 aromatherapy pp was stalled -|chat|Treecko|lol -|chat|jumpluff|rofl stone -|chat|Pwnemon|can i get a -|chat|Stone_Cold22|i was like -| -|switch|p1a: Quagsire|Quagsire, M|344/393 -|move|p2a: Gyarados|Earthquake|p1a: Quagsire -|-damage|p1a: Quagsire|263/393 -| -|-heal|p2a: Gyarados|366/394|[from] item: Leftovers -|-heal|p1a: Quagsire|287/393|[from] item: Leftovers -|turn|138 -|chat|Pwnemon|gothitelle -|chat|Stone_Cold22|RELLY DUDE -|chat|Laga|did the dude have like 3 spikers and 2 rock setters -|chat|Laga|or something -|chat|Stone_Cold22|the 09 days -|chat|Imanalt|ive seen bh games revolve around stalling out spin pps -|chat|LonelyNess|that is the net gain of what has happened thus far -|chat|Raichy|Is this GSC? -| -|switch|p2a: Blissey|Blissey, F|631/688 -|move|p1a: Quagsire|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-heal|p2a: Blissey|674/688 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|311/393|[from] item: Leftovers -|-damage|p2a: Blissey|631/688 tox|[from] psn -|turn|139 -|chat|Imanalt|only to have the second spinner get revealed in turn 300 -|chat|zfs|nah, gsc is more exciting ;o -|chat|Treecko|aha -|chat|Texas Cloverleaf|gsc would be faster than this -| -|switch|p2a: Abomasnow|Abomasnow, M|336/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-weather|Hail -|switch|p1a: Gliscor|Gliscor, M|341/353 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Gliscor|319/353|[from] Hail -|-activate|p1a: Gliscor|item: Toxic Orb -|-status|p1a: Gliscor|tox -|turn|140 -|chat|jumpluff|omg Imanalt lol -|chat|Raichy|:c -|chat|jdarden|at least they COULD pp stall -|chat|Treecko|plaaaaays -|chat|THE_IRON_KENYAN|he has the advantage -| -|move|p1a: Gliscor|Protect|p1a: Gliscor -|-singleturn|p1a: Gliscor|Protect -|move|p2a: Abomasnow|Leech Seed|p1a: Gliscor -|-activate|p1a: Gliscor|Protect -| -|-weather|Hail|[upkeep] -|-damage|p1a: Gliscor|297/353 tox|[from] Hail -|-heal|p1a: Gliscor|341/353 tox|[from] ability: Poison Heal -|turn|141 -|chat|Pwnemon|real -|chat|jdarden|and didn't fall victim to shuckie -|chat|THE_IRON_KENYAN|THE PALYS -|chat|Imanalt|fucking shuckle -|chat|jumpluff|jdarden :) -|chat|Annoyer|frz -|chat|myzozoa|blizzard try to freeze -|chat|Imanalt|fucking greatsage -| -|move|p1a: Gliscor|Substitute|p1a: Gliscor -|-start|p1a: Gliscor|Substitute -|-damage|p1a: Gliscor|253/353 tox -|move|p2a: Abomasnow|Leech Seed|p1a: Gliscor -| -|-weather|Hail|[upkeep] -|-damage|p1a: Gliscor|231/353 tox|[from] Hail -|-heal|p1a: Gliscor|275/353 tox|[from] ability: Poison Heal -|turn|142 -|chat|Pwnemon|damn -|chat|jdarden|jumpluff :) -|chat|THE_IRON_KENYAN|the plays -|chat|Treecko|:OOOOOOOO -|chat|Stone_Cold22|PLAYS -|chat|Annoyer|ono -|chat|Imanalt|fucking destroyed -|chat|Soulgazer|ah not bad -|chat|Stone_Cold22|MADE -|chat|Valentine|fuckin gg -|chat|Pwnemon|toxic is coming -|chat|Nachos|Ah! -|chat|Soulgazer|NOT BAD -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Skarmory|Skarmory, M|283/334 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|361/385|[from] Hail -|-damage|p2a: Skarmory|263/334|[from] Hail -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|143 -|chat|Pwnemon|get out -|chat|Soulgazer|LOL -|chat|Pwnemon|oh shit -|chat|Stone_Cold22|DAM -|chat|Treecko|oml -|chat|Stone_Cold22|THE PREDICS -|chat|THE_IRON_KENYAN|fucking destroyed -|chat|Imanalt|PLAYS -|chat|Imanalt|fuck -| -|switch|p2a: Nidoqueen|Nidoqueen, F|232/384 -|move|p1a: Heatran|Stealth Rock|p2a: Nidoqueen -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-weather|none -|-heal|p2a: Nidoqueen|256/384|[from] item: Leftovers -|turn|144 -|chat|Imanalt|i have to go to class -|chat|Imanalt|this will probably still be going when i get back tho -|chat|Laga|too bad -|chat|Soulgazer|dw -|chat|Imanalt|:/ -|chat|Treecko|lol -|chat|Treecko|it's ok -|chat|Treecko|yea -|chat|Laga|still nothing happened -|chat|Treecko|exactly -|chat|Soulgazer|it will still be going -| -|switch|p1a: Chansey|Chansey, F|526/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|280/384|[from] item: Leftovers -|turn|145 -|chat|Soulgazer|when you come back -|chat|blarajan|are you lot genuinely saying nothing has happened -|chat|Imanalt|if this is still going by then, at the rate theyre palying itll probably be turn 400 or something -|chat|macle|ww in quag :( -|chat|THE_IRON_KENYAN|i wonder if i should rap the whole time this is going on -|chat|SoulWind|you shouldn't -THE_IRON_KENYAN was warned by Arcticblast. (no) -|chat|Laga|blarajan nothing has happened besides pp stall -|chat|Imanalt|blarajan pps have been stalled -| -|switch|p2a: Skarmory|Skarmory, M|263/334 -|-damage|p2a: Skarmory|222/334|[from] Stealth Rock -|move|p1a: Chansey|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|122/334 -|-damage|p1a: Chansey|416/660|[from] item: Rocky Helmet|[of] p2a: Skarmory -| -|turn|146 -|chat|blarajan|yeah that's a lot of things happening -|chat|Imanalt|go for bb supercrit -|chat|blarajan|that's what this game is about lol -|chat|Stinson|has anything lost pp yet? -| -|switch|p1a: Skarmory|Skarmory, F|233/334 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|289/334 -| -|-heal|p1a: Skarmory|253/334|[from] item: Leftovers -|turn|147 -|chat|Stinson|and also is this an SPL game>? -|chat|Pwnemon|y -| -|move|p1a: Skarmory|Defog|p2a: Skarmory -|-unboost|p2a: Skarmory|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -|move|p2a: Skarmory|Whirlwind|p1a: Skarmory -|drag|p1a: Heatran|Heatran, M|385/385 -| -|turn|148 -|chat|blarajan|yes -|chat|OU Mew|y -|chat|Laga|it is -|chat|Stinson|ah cool -|chat|THE_IRON_KENYAN|this is a team friendly -|chat|Imanalt|fucking destroyed -|chat|chieliee|i feel sorry for the teammates counting every pp on every move -|chat|Soulgazer|nb -|chat|Pwnemon|lol tik -|chat|blarajan|cntl f -|chat|Imanalt|not like its hard chieliee, ctrl+f -| -|switch|p2a: Gyarados|Gyarados, F|366/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|309/394 -| -|-heal|p2a: Gyarados|333/394|[from] item: Leftovers -|turn|149 -|chat|jumpluff|ah chieliee gets it -|chat|THE_IRON_KENYAN|how does anyone win this -|chat|chieliee|yeah but if roost, you have to fliter out which is ur roost and which is the others -|chat|THE_IRON_KENYAN|first guy to run out of aroma therapies -| -|switch|p2a: Nidoqueen|Nidoqueen, F|280/384 -|switch|p1a: Quagsire|Quagsire, M|311/393 -| -|-heal|p2a: Nidoqueen|304/384|[from] item: Leftovers -|-heal|p1a: Quagsire|335/393|[from] item: Leftovers -|turn|150 -|chat|chieliee|and spectator talk -|chat|Valentine|stone -|chat|myzozoa|they should double switch more -|chat|myzozoa|conserve that pp -|chat|Stone_Cold22|val -|chat|jdarden|even ctrl _f is irritating when so many moves are shared -|chat|Valentine|im on shoddy -|chat|Valentine|leggo -|chat|Stone_Cold22|shoddy is for fegs -|chat|Valentine|halo -|chat|Imanalt|nah tik lb probably willl eventually win when venu runs out of synths -|chat|Stone_Cold22|do ppl still use it -|chat|Stone_Cold22|? -| -|switch|p2a: Blissey|Blissey, F|631/688 -|move|p1a: Quagsire|Earthquake|p2a: Blissey -|-damage|p2a: Blissey|450/688 -| -|-heal|p2a: Blissey|493/688|[from] item: Leftovers -|-heal|p1a: Quagsire|359/393|[from] item: Leftovers -|turn|151 -|chat|Stone_Cold22|lol -|chat|Valentine|nah -|chat|Valentine|http://i.imgur.com/MBLvpS5.png -|chat|Stone_Cold22|o -|chat|Imanalt|running out of aromatherapies woudl take fucking forever -| -|switch|p2a: Clefable|Clefable, M|394/394 -|switch|p1a: Chansey|Chansey, F|416/660 -| -|turn|152 -|chat|blarajan|what does big clefable do -| -|switch|p2a: Nidoqueen|Nidoqueen, F|304/384 -|move|p1a: Chansey|Toxic|p2a: Nidoqueen -|-fail|p2a: Nidoqueen -| -|-heal|p2a: Nidoqueen|328/384|[from] item: Leftovers -|turn|153 -|chat|blarajan|let us see -|chat|blarajan|nothing -|chat|myzozoa|it takes 2 pp just to get rid of 1 aromatherapy -|chat|blarajan|it does nothing -|chat|Imanalt|rofl 4 switches last 3 turns -|chat|myzozoa|so it isnt efficient -|chat|LonelyNess|lol -|chat|THE_IRON_KENYAN|this is worst than vertical videos -| -|switch|p2a: Gyarados|Gyarados, F|333/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 -| -|-heal|p2a: Gyarados|357/394|[from] item: Leftovers -|turn|154 -|chat|THE_IRON_KENYAN|worse -|chat|Annoyer|clefable hasnt made a move yet -| -|switch|p1a: Quagsire|Quagsire, M|359/393 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|381/394|[from] item: Leftovers -|-heal|p1a: Quagsire|383/393|[from] item: Leftovers -|turn|155 -| -|switch|p2a: Blissey|Blissey, F|493/688 -|move|p1a: Quagsire|Scald|p2a: Blissey -|-damage|p2a: Blissey|445/688 -| -|-heal|p2a: Blissey|488/688|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|156 -|chat|george182|whats the spl record, for turns? -|chat|jumpluff|700+ -|chat|jumpluff|in gsc -|chat|LonelyNess|714 -|chat|jumpluff|several times -|chat|Imanalt|well george182, theres gsc -|chat|LonelyNess|Colchonero vs. Floppy -|chat|LonelyNess|and -|chat|chieliee|this might very well break that -| -|move|p2a: Blissey|Seismic Toss|p1a: Quagsire -|-damage|p1a: Quagsire|293/393 -|move|p1a: Quagsire|Toxic|p2a: Blissey|[miss] -|-miss|p1a: Quagsire|p2a: Blissey -| -|-heal|p2a: Blissey|531/688|[from] item: Leftovers -|-heal|p1a: Quagsire|317/393|[from] item: Leftovers -|turn|157 -|chat|Stinson|gsc is brutal -|chat|LonelyNess|Colchonero vs. Earthworm -|chat|LonelyNess|both were 714 -|chat|Imanalt|nah i dont see this going more than about 450 -| -|move|p2a: Blissey|Toxic|p1a: Quagsire -|-status|p1a: Quagsire|tox -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 tox -| -|-heal|p2a: Blissey|574/688|[from] item: Leftovers -|-damage|p1a: Quagsire|369/393 tox|[from] psn -|turn|158 -|chat|jumpluff|floppy vs. conflict was quite high as well -|chat|Hugendugen|714? -|chat|jumpluff|also gsc -| -|switch|p2a: Abomasnow|Abomasnow, M|336/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-weather|Hail -|switch|p1a: Chansey|Chansey, F|660/660 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Chansey|619/660|[from] Hail -|turn|159 -|chat|Hugendugen|didnt that get beat -|chat|LonelyNess|no Hugendugen -|chat|LonelyNess|it got tied -| -|move|p1a: Chansey|Aromatherapy|p1a: Chansey -|-cureteam|p1a: Chansey|[from] move: Aromatherapy -|move|p2a: Abomasnow|Wood Hammer|p1a: Chansey -|-damage|p1a: Chansey|339/660 -|-damage|p2a: Abomasnow|244/384|[from] recoil|[of] p1a: Chansey -| -|-weather|Hail|[upkeep] -|-damage|p1a: Chansey|298/660|[from] Hail -|turn|160 -|chat|THE_IRON_KENYAN|leech seed that moverfucker -|chat|Hugendugen|ah -|chat|LonelyNess|literally the same number of turns -|chat|blarajan|ABOMASNOW -|chat|myzozoa|damage -|chat|LonelyNess|it was pretty funny -|chat|THE_IRON_KENYAN|weeed hammer -|chat|Imanalt|PLAYS -|chat|Laga|ah the wood hammer -|chat|Hugendugen|lol -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Abomasnow|Leech Seed|p1a: Heatran -|-start|p1a: Heatran|move: Leech Seed -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-damage|p1a: Heatran|337/385|[from] Leech Seed|[of] p2a: Abomasnow -|-heal|p2a: Abomasnow|292/384|[silent] -|turn|161 -|chat|dekzeh|big damage -|chat|THE_IRON_KENYAN|another play -| -|switch|p2a: Nidoqueen|Nidoqueen, F|328/384 -|move|p1a: Heatran|Stealth Rock|p2a: Nidoqueen -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|313/385|[from] Hail -|-damage|p2a: Nidoqueen|304/384|[from] Hail -|-heal|p1a: Heatran|337/385|[from] item: Leftovers -|-heal|p2a: Nidoqueen|328/384|[from] item: Leftovers -|-damage|p1a: Heatran|289/385|[from] Leech Seed|[of] p2a: Nidoqueen -|-heal|p2a: Nidoqueen|376/384|[silent] -|turn|162 -|chat|OU Mew|play time -|chat|jumpluff|does nobody else find the intricateness of hard stall games entrancing -| -|switch|p1a: Chansey|Chansey, F|298/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-weather|none -|-heal|p2a: Nidoqueen|384/384|[from] item: Leftovers -|turn|163 -|chat|Imanalt|lol -|chat|Pwnemon|the switch to skarm is real -|chat|Pwnemon|nope -|chat|jumpluff|its like theyre actually battling on top of an icy mountain -|chat|blarajan|NO -|chat|Pwnemon|weak -|chat|jumpluff|enduring the elements -|chat|jdarden|lol -|chat|jumpluff|he who focuses less loses -|chat|THE_IRON_KENYAN|plays like this, is what makes stall able to stand -| -|switch|p2a: Skarmory|Skarmory, M|289/334 -|-damage|p2a: Skarmory|248/334|[from] Stealth Rock -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|628/660 -| -|turn|164 -|chat|THE_IRON_KENYAN|so nobody hands themself with their own waistband -|chat|Hugendugen|whoever reads more of the battle chat -|chat|Hugendugen|loses -|chat|jumpluff|lol -| -|switch|p1a: Skarmory|Skarmory, F|253/334 -|move|p2a: Skarmory|Whirlwind|p1a: Skarmory -|drag|p1a: Heatran|Heatran, M|289/385 -| -|-heal|p1a: Heatran|313/385|[from] item: Leftovers -|turn|165 -|chat|myzozoa|lol -|chat|Soulgazer|nb -|chat|Imanalt|bh games are so mcuh more interesting because despite being the same length one turn can swing the game a lot more, so meh -| -|switch|p2a: Gyarados|Gyarados, F|381/394 -|-damage|p2a: Gyarados|283/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|221/394 -| -|-heal|p2a: Gyarados|245/394|[from] item: Leftovers -|-heal|p1a: Heatran|337/385|[from] item: Leftovers -|turn|166 -| -|switch|p1a: Skarmory|Skarmory, F|253/334 -|move|p2a: Gyarados|Earthquake|p1a: Skarmory -|-immune|p1a: Skarmory|[msg] -| -|-heal|p2a: Gyarados|269/394|[from] item: Leftovers -|-heal|p1a: Skarmory|273/334|[from] item: Leftovers -|turn|167 -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|574/688 -|-damage|p2a: Blissey|488/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|293/334|[from] item: Leftovers -|-heal|p2a: Blissey|531/688|[from] item: Leftovers -|turn|168 -|chat|the pdc show|lol -| -|move|p1a: Skarmory|Defog|p2a: Blissey -|-unboost|p2a: Blissey|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Blissey -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -|move|p2a: Blissey|Seismic Toss|p1a: Skarmory -|-damage|p1a: Skarmory|193/334 -| -|-heal|p1a: Skarmory|213/334|[from] item: Leftovers -|-heal|p2a: Blissey|574/688|[from] item: Leftovers -|turn|169 -| -|switch|p1a: Chansey|Chansey, F|628/660 -|switch|p2a: Nidoqueen|Nidoqueen, F|384/384 -| -|turn|170 -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|284/384 -| -|-heal|p2a: Nidoqueen|308/384|[from] item: Leftovers -|turn|171 -| -|switch|p1a: Venusaur|Venusaur, M|194/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Nidoqueen|Flamethrower|p1a: Venusaur -|-supereffective|p1a: Venusaur -|-damage|p1a: Venusaur|144/364 -| -|-heal|p2a: Nidoqueen|332/384|[from] item: Leftovers -|turn|172 -| -|move|p2a: Nidoqueen|Flamethrower|p1a: Venusaur -|-crit|p1a: Venusaur -|-supereffective|p1a: Venusaur -|-damage|p1a: Venusaur|78/364 -|move|p1a: Venusaur|Synthesis|p1a: Venusaur -|-heal|p1a: Venusaur|260/364 -| -|-heal|p2a: Nidoqueen|356/384|[from] item: Leftovers -|turn|173 -|chat|chieliee|no burn smh -|chat|THE_IRON_KENYAN|i thought that flamethrower was gonna KO -|chat|Annoyer|the crit -|chat|Laga|some day the brn will hapen -|chat|Pwnemon|bs crit -|chat|Soulgazer|crit mattered -| -|switch|p1a: Chansey|Chansey, F|628/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|380/384|[from] item: Leftovers -|turn|174 -|chat|Soulgazer|jk -|chat|Arcticblast|>crit -|chat|Arcticblast|>18% -| -|move|p2a: Nidoqueen|Flamethrower|p1a: Chansey -|-damage|p1a: Chansey|590/660 -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|280/384 -| -|-heal|p2a: Nidoqueen|304/384|[from] item: Leftovers -|turn|175 -|chat|Pwnemon|>super effective -|chat|Treecko|Laga: some day the brn will hapen -|chat|Hot N Cold|> using moves in this battle -| -|move|p2a: Nidoqueen|Flamethrower|p1a: Chansey -|-damage|p1a: Chansey|552/660 -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|204/384 -| -|-heal|p2a: Nidoqueen|228/384|[from] item: Leftovers -|turn|176 -|chat|Treecko|it's sheer force isn't it? -|chat|Arcticblast|but Pwnemon, Thick Fat -|chat|Joim|dat thick fat -|chat|Laga|wait -|chat|jdarden|yes -|chat|Laga|fuck -|chat|jdarden|lol -|chat|Treecko|lol -|chat|Pwnemon|hes jk treevko -|chat|chieliee|oh -|chat|THE_IRON_KENYAN|this is how all pokemon matches should be -|chat|Pwnemon|lol -|chat|chieliee|right -| -|switch|p2a: Skarmory|Skarmory, M|248/334 -|move|p1a: Chansey|Seismic Toss|p2a: Skarmory -|-damage|p2a: Skarmory|148/334 -|-damage|p1a: Chansey|442/660|[from] item: Rocky Helmet|[of] p2a: Skarmory -| -|turn|177 -|chat|Pwnemon|or was he -|chat|Laga|damn that is lame -|chat|Pwnemon|thought he was -|chat|Joim|this is a true competition amongst minds -| -|switch|p1a: Skarmory|Skarmory, F|213/334 -|move|p2a: Skarmory|Roost|p2a: Skarmory -|-heal|p2a: Skarmory|315/334 -| -|-heal|p1a: Skarmory|233/334|[from] item: Leftovers -|turn|178 -|chat|Stone_Cold22|lady bug -| -|switch|p2a: Nidoqueen|Nidoqueen, F|228/384 -|move|p1a: Skarmory|Defog|p2a: Nidoqueen -|-unboost|p2a: Nidoqueen|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|-heal|p2a: Nidoqueen|252/384|[from] item: Leftovers -|-heal|p1a: Skarmory|253/334|[from] item: Leftovers -|turn|179 -|chat|Treecko|this actually is really fun to watch ngl -|chat|Arcticblast|and bladders, Joim -|chat|Stone_Cold22|r u arab? -|chat|Arcticblast|he who pisses first loses -|chat|Pwnemon|and caffiene supplements -| -|switch|p1a: Chansey|Chansey, F|442/660 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|276/384|[from] item: Leftovers -|turn|180 -|chat|Laga|yeah the activity -|chat|Laga|is sexy -|chat|PttP|who shall choke on the dick of shame first -| -|switch|p2a: Clefable|Clefable, M|394/394 -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 -| -|turn|181 -|chat|Laga|way better than 6 mins per turn -|chat|dekzeh|THE CLEFABLE IS HERE -|chat|Joim|ablast didn't you learn anything from south park -| -|switch|p2a: Skarmory|Skarmory, M|315/334 -|switch|p1a: Heatran|Heatran, M|337/385 -| -|-heal|p1a: Heatran|361/385|[from] item: Leftovers -|turn|182 -|chat|THE_IRON_KENYAN|has clefable used 1 move yet -|chat|Pwnemon|way less than 6% per turn -|chat|blarajan|pttp i thought you kept the dick of shame in your room so no one else could choke on it -|chat|Soulgazer|ah -|chat|Laga|the clefable has left -|chat|Soulgazer|not bad -| -|switch|p2a: Gyarados|Gyarados, F|269/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|212/394 -|-status|p2a: Gyarados|brn -| -|-heal|p2a: Gyarados|236/394 brn|[from] item: Leftovers -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-damage|p2a: Gyarados|187/394 brn|[from] brn -|turn|183 -|chat|Joim|you can pee on your place -|chat|Pwnemon|lol blara -|chat|THE_IRON_KENYAN|the plays -| -|switch|p1a: Skarmory|Skarmory, F|253/334 -|move|p2a: Gyarados|Earthquake|p1a: Skarmory -|-immune|p1a: Skarmory|[msg] -| -|-heal|p2a: Gyarados|211/394 brn|[from] item: Leftovers -|-heal|p1a: Skarmory|273/334|[from] item: Leftovers -|-damage|p2a: Gyarados|162/394 brn|[from] brn -|turn|184 -|chat|Pwnemon|crit bb callin now -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Skarmory|Defog|p2a: Gyarados -|-unboost|p2a: Gyarados|evasion|1 -|-sideend|p1: Lord Elyis|Toxic Spikes|[from] move: Defog|[of] p1a: Skarmory -| -|-heal|p1a: Skarmory|293/334|[from] item: Leftovers -|turn|185 -|chat|Stone_Cold22|scarf bb -|chat|Joim|defog is op -| -|switch|p2a: Nidoqueen|Nidoqueen, F|276/384 -|switch|p1a: Quagsire|Quagsire, M|369/393 -| -|-heal|p2a: Nidoqueen|300/384|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|186 -|chat|Pwnemon|that was not a bb -|chat|Pwnemon|:| -|chat|jumpluff|cowardly bird -| -|move|p2a: Nidoqueen|Sludge Wave|p1a: Quagsire -|-resisted|p1a: Quagsire -|-damage|p1a: Quagsire|318/393 -|move|p1a: Quagsire|Scald|p2a: Nidoqueen -|-supereffective|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|138/384 -|-status|p2a: Nidoqueen|brn -| -|-heal|p2a: Nidoqueen|162/384 brn|[from] item: Leftovers -|-heal|p1a: Quagsire|342/393|[from] item: Leftovers -|-damage|p2a: Nidoqueen|114/384 brn|[from] brn -|turn|187 -|chat|Soulgazer|ah -|chat|Hot N Cold|. -|chat|Laga|:O -|chat|blarajan|shit -|chat|THE_IRON_KENYAN|the plays -|chat|Soulgazer|not bad -|chat|jdarden|shiiit -|chat|Pwnemon|uh oh -|chat|Nachos|a turn of events. -|chat|Annoyer|first ko?? -|chat|Pwnemon|no -| -|switch|p2a: Blissey|Blissey, F|574/688 -|switch|p1a: Gliscor|Gliscor, M|275/353 -| -|-heal|p2a: Blissey|617/688|[from] item: Leftovers -|-activate|p1a: Gliscor|item: Toxic Orb -|-status|p1a: Gliscor|tox -|turn|188 -|chat|Pwnemon|lol -|chat|Joim|damn -|chat|Joim|poor nidoqueen -|chat|THE_IRON_KENYAN|ill bet you a hundred dollars clefairy has wish -|chat|Soulgazer|ah -|chat|Soulgazer|not bad -|chat|Soulgazer|Oo -|chat|Pwnemon|gyara can take gliscor all day -|chat|THE_IRON_KENYAN|wish protect ice pinch aroma -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -| -|turn|189 -| -|switch|p1a: Quagsire|Quagsire, M|342/393 -|cant|p2a: Gyarados|slp -| -|-heal|p1a: Quagsire|366/393|[from] item: Leftovers -|turn|190 -| -|switch|p2a: Blissey|Blissey, F|617/688 -|move|p1a: Quagsire|Scald|p2a: Blissey -|-damage|p2a: Blissey|566/688 -| -|-heal|p2a: Blissey|609/688|[from] item: Leftovers -|-heal|p1a: Quagsire|390/393|[from] item: Leftovers -|turn|191 -|chat|Laga|man this is going to get to 250 turns -|chat|Laga|without a single death isn't it -|chat|Pwnemon|y -|chat|blarajan|why are you still watching -|chat|blarajan|genuinely -|chat|blarajan|shut up -| -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -|move|p1a: Quagsire|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-heal|p2a: Blissey|652/688 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|-damage|p2a: Blissey|609/688 tox|[from] psn -|turn|192 -|chat|PttP|still faster than the NU / RU / Doubles games -|chat|Laga|blarajan why so mad -|chat|THE_IRON_KENYAN|still isnt as bad as LC right guys -|chat|THE_IRON_KENYAN|huehue -|chat|Pwnemon|doubles games are fast -|chat|Pwnemon|with jake -|chat|Biosci|because you guys -| -|switch|p1a: Gliscor|Gliscor, M|275/353 tox -|move|p2a: Blissey|Toxic|p1a: Gliscor|[miss] -|-miss|p2a: Blissey|p1a: Gliscor -| -|-heal|p2a: Blissey|652/688 tox|[from] item: Leftovers -|-heal|p1a: Gliscor|319/353 tox|[from] ability: Poison Heal -|-damage|p2a: Blissey|566/688 tox|[from] psn -|turn|193 -|chat|Laga|did I ever say that I didn't enjoy watching -|chat|bro fist|still better than lc -|chat|Biosci|keep bitching -|chat|blarajan|huehue -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Skarmory|Skarmory, M|315/334 -| -|turn|194 -|chat|Stone_Cold22|elyis -|chat|Stone_Cold22|it's 12:48 in lady bugs time zone -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Stealth Rock|p2a: Gyarados -|-sidestart|p2: Lady bug|move: Stealth Rock -| -|turn|195 -|chat|Stone_Cold22|stall this out till the nigga has to go to bed -| -|switch|p1a: Skarmory|Skarmory, F|293/334 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p1a: Skarmory|313/334|[from] item: Leftovers -|turn|196 -|chat|Annoyer|lol -|chat|gr8astard|rofl -|chat|Stone_Cold22|it's like 1am there -|chat|Pwnemon|lol -|chat|gr8astard|what a veteran -|chat|jumpluff|does anyone remember what setrack did to rey -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|223/334 -|cant|p1a: Skarmory|flinch -| -|-heal|p1a: Skarmory|243/334|[from] item: Leftovers -|turn|197 -|chat|Stone_Cold22|mommy gonna be coming soon -|chat|Pwnemon|hes still playin better -|chat|Annoyer|strategy/ -|chat|Pwnemon|sad -|chat|chimpact|uh oh -|chat|blarajan|LGIIIIIIIII -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|149/334 -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|316/334 -| -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|198 -|chat|reyscarface|go for gold -|chat|THE_IRON_KENYAN|that gyarados is playing angry -|chat|Joim|outplayed -|chat|reyscarface|no gold -|chat|Soulgazer|blara -|chat|Soulgazer|im here -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|240/334 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Nidoqueen|Nidoqueen, F|114/384 -|-damage|p2a: Nidoqueen|90/384|[from] Stealth Rock -| -|-heal|p2a: Nidoqueen|114/384|[from] item: Leftovers -|-heal|p1a: Skarmory|260/334|[from] item: Leftovers -|turn|199 -|chat|Soulgazer|he wont flinch to death -|chat|jumpluff|rey do you remembre -|chat|Soulgazer|*-* -|chat|jumpluff|the setrack incident -|chat|Aqualouis|o -|chat|reyscarface|yes what a cunt -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Nidoqueen|Flamethrower|p1a: Quagsire -|-resisted|p1a: Quagsire -|-damage|p1a: Quagsire|346/393 -| -|-heal|p2a: Nidoqueen|138/384|[from] item: Leftovers -|-heal|p1a: Quagsire|370/393|[from] item: Leftovers -|turn|200 -|chat|Aqualouis|we can play gsc on PO -|chat|jumpluff|indeed -|chat|Aqualouis|i didnt know -|chat|OU Mew|no burn hax -| -|switch|p2a: Skarmory|Skarmory, M|315/334 -|-damage|p2a: Skarmory|274/334|[from] Stealth Rock -|move|p1a: Quagsire|Scald|p2a: Skarmory -|-damage|p2a: Skarmory|187/334 -| -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|201 -|chat|Soulgazer|mew,, -|chat|Soulgazer|sheer force -|chat|LonelyNess|it's sheer force you morans there is no burn / poison hax -| -|move|p2a: Skarmory|Defog|p1a: Quagsire -|-unboost|p1a: Quagsire|evasion|1 -|-sideend|p2: Lady bug|Stealth Rock|[from] move: Defog|[of] p2a: Skarmory -|move|p1a: Quagsire|Scald|p2a: Skarmory -|-damage|p2a: Skarmory|112/334 -|-status|p2a: Skarmory|brn -| -|-damage|p2a: Skarmory|71/334 brn|[from] brn -|turn|202 -|chat|OU Mew|hax -|chat|chieliee|who is setrack -|chat|Soulgazer|,, -|chat|Soulgazer|ah -|chat|Soulgazer|nb -|chat|Soulgazer|n_n -|chat|Stone_Cold22|the legend -|chat|chimpact|ouch -| -|switch|p2a: Abomasnow|Abomasnow, M|292/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-weather|Hail -|move|p1a: Quagsire|Earthquake|p2a: Abomasnow -|-resisted|p2a: Abomasnow -|-damage|p2a: Abomasnow|247/384 -| -|-weather|Hail|[upkeep] -|-damage|p1a: Quagsire|369/393|[from] Hail -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|203 -|chat|jumpluff|the ultimate proponent of playing to win -|chat|blarajan|no burn hax huh lonelyness -|chat|THE_IRON_KENYAN|i remember setrack -|chat|jumpluff|the cacturne boss -|chat|LonelyNess|YOU KNOW WHAT I MEANT BLARA -|chat|jumpluff|once he deliberately exploited shoddy to timer stall rey out because rey had to go to bed -|chat|Pwnemon|show the eq -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|370/394|[from] Hail -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p2a: Gyarados|394/394|[from] item: Leftovers -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|turn|204 -|chat|jumpluff|i forget what the TDs ruled on that one -|chat|jumpluff|i think they ruled in rey's favour -|chat|reyscarface|they gave me win and banned setrack -| -|switch|p2a: Blissey|Blissey, F|566/688 -|switch|p1a: Quagsire|Quagsire, M|393/393 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Blissey|523/688|[from] Hail -|-damage|p1a: Quagsire|369/393|[from] Hail -|-heal|p2a: Blissey|566/688|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|205 -|chat|Pwnemon|lol -|chat|jumpluff|ah lol -|chat|THE_IRON_KENYAN|what is reys bed time 8 -|chat|OU Mew|no byrn -|chat|jumpluff|everyone was like yo go to bed the TDs will give you the win -| -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -|move|p1a: Quagsire|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-weather|Hail|[upkeep] -|-damage|p2a: Blissey|523/688 tox|[from] Hail -|-damage|p1a: Quagsire|369/393|[from] Hail -|-heal|p2a: Blissey|566/688 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|-damage|p2a: Blissey|523/688 tox|[from] psn -|turn|206 -|chat|blarajan|[15:50] <@Aqualouis> is it xy ? -|chat|jumpluff|but rey was refusing to give in for awhile -|chat|blarajan|lol -|chat|blarajan|aqualouis couldn't tell this was xy -|chat|jumpluff|man it feels weird to talk about timer glitches nowadays -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Quagsire -|-unboost|p1a: Quagsire|atk|1 -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-weather|none -|turn|207 -|chat|reyscarface|well kenyan i was 14 back then -|chat|blarajan|until he saw mega aboma -|chat|reyscarface|and it was 2 am or something -|chat|Pwnemon|lol -|chat|jumpluff|you could just stall people infinitely then -| -|switch|p2a: Clefable|Clefable, M|394/394 -|move|p1a: Quagsire|Scald|p2a: Clefable -|-damage|p2a: Clefable|327/394 -| -|-heal|p2a: Clefable|351/394|[from] item: Leftovers -|turn|208 -|chat|jumpluff|due to shoddy being bugged -|chat|Annoyer|clef -|chat|Soulgazer|fable -|chat|Pwnemon|CLEFABLE -|chat|THE_IRON_KENYAN|shoddy battle was a great place -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Clefable|Wish|p2a: Clefable -| -|-heal|p2a: Clefable|375/394|[from] item: Leftovers -|turn|209 -|chat|Pwnemon|time for wish -|chat|jumpluff|that was like the main thing mods had to deal with -|chat|THE_IRON_KENYAN|I KNEW IT -|chat|Annoyer|nooo -|chat|OU Mew|YES -|chat|Pwnemon|lol -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Roar|p2a: Gyarados -|drag|p2a: Clefable|Clefable, M|375/394 -| -|-heal|p2a: Clefable|394/394|[from] move: Wish|[wisher] Clefable -|turn|210 -|chat|blarajan|DANG -|chat|Pwnemon|aw -|chat|Soulgazer|ah not bad -|chat|Nachos|lol -|chat|reyscarface|damn BS -|chat|jumpluff|ouchhhh -|chat|THE_IRON_KENYAN|BACK TO CLEFABE -| -|move|p1a: Heatran|Stealth Rock|p2a: Clefable -|-sidestart|p2: Lady bug|move: Stealth Rock -|move|p2a: Clefable|Wish|p2a: Clefable -| -|turn|211 -|chat|Soulgazer|2ez -|chat|Pwnemon|we had a 1/3 -| -|move|p1a: Heatran|Lava Plume|p2a: Clefable -|-damage|p2a: Clefable|276/394 -|move|p2a: Clefable|Calm Mind|p2a: Clefable -|-boost|p2a: Clefable|spa|1 -|-boost|p2a: Clefable|spd|1 -| -|-heal|p2a: Clefable|394/394|[from] move: Wish|[wisher] Clefable -|turn|212 -|chat|Annoyer|getting it -|chat|Laga|:O -|chat|Pwnemon|yes -| -|move|p2a: Clefable|Wish|p2a: Clefable -|move|p1a: Heatran|Roar|p2a: Clefable -|drag|p2a: Skarmory|Skarmory, M|71/334 -|-damage|p2a: Skarmory|30/334|[from] Stealth Rock -| -|turn|213 -|chat|LonelyNess|HE'S GOING FOR IT -|chat|Soulgazer|ah the set -|chat|OU Mew|no burn hax -|chat|SoulWind|LOL -|chat|Pwnemon|oh god -|chat|chieliee|uh oh -|chat|Soulgazer|hello skarm -|chat|PttP|went for it -|chat|SoulWind|there it is -|chat|SoulWind|first kill -|chat|reyscarface|das some bs -|chat|Soulgazer|LOL -|chat|Annoyer|protect -|chat|Sapientia|protect if real -|chat|Pwnemon|game over -|chat|Pwnemon|shit -|chat|Joim|wow -|chat|Afro Smash|:] -|chat|reyscarface|ya this shits gonna be gay -|chat|Nachos|:] -|chat|Soulgazer|:] -|chat|reyscarface|#notworth -|chat|Stone_Cold22|the legend -|chat|Stone_Cold22|#worth -|chat|Joim|that roar -|chat|Arcticblast|even if he had Protect it wouldn't work, Roar bypasses it -|chat|Soulgazer|amazing play -|chat|Arcticblast|in gen 6 -|chat|Nachos|that was a yung roar -|chat|Joim|but wish -|chat|blarajan|yes because he's going to roar now -|chat|Laga|ablast if he roosts on a roar -|chat|chieliee|if he keeps it alive he can force the oppo to not defog yn -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-damage|p2a: Gyarados|296/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|237/394 -|-status|p2a: Gyarados|brn -| -|-heal|p2a: Gyarados|394/394 brn|[from] move: Wish|[wisher] Clefable -|-damage|p2a: Gyarados|345/394 brn|[from] brn -|turn|214 -|chat|Arcticblast|true -|chat|Soulgazer|chielee stop ghosting in chat -|chat|PttP|should have roared -|chat|Pwnemon|oo chielee is geniius -|chat|Afro Smash|based elyis -|chat|Soulgazer|and nice hburn -|chat|Laga|but that would be dumb -|chat|PttP|1/5th cahnce -|chat|Soulgazer|:D -|chat|PttP|of getting skarm -|chat|PttP|take. -| -|switch|p2a: Nidoqueen|Nidoqueen, F|138/384 -|-damage|p2a: Nidoqueen|114/384|[from] Stealth Rock -|switch|p1a: Quagsire|Quagsire, M|393/393 -| -|-heal|p2a: Nidoqueen|138/384|[from] item: Leftovers -|turn|215 -|chat|Soulgazer|nice switch -|chat|Arcticblast|well Skarm is dead no questions asked -|chat|Soulgazer|Oo -|chat|Soulgazer|oO -| -|switch|p2a: Blissey|Blissey, F|523/688 -|-damage|p2a: Blissey|437/688|[from] Stealth Rock -|move|p1a: Quagsire|Scald|p2a: Blissey -|-damage|p2a: Blissey|394/688 -| -|-heal|p2a: Blissey|437/688|[from] item: Leftovers -|turn|216 -|chat|THE_IRON_KENYAN|im gonna guess the nidoqueen has rapid spin tbh -|chat|Afro Smash|not is he forces elyis to defog -|chat|Arcticblast|true -| -|switch|p1a: Gliscor|Gliscor, M|319/353 tox -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 -| -|-heal|p1a: Gliscor|353/353 tox|[from] ability: Poison Heal -|turn|217 -|chat|Arcticblast|yes TIK -|chat|chieliee|yeah but idk how that is gonna happen -|chat|Arcticblast|Rapid Spin Nidoqueen -|chat|Pwnemon|lol -|chat|Arcticblast|new -|chat|chieliee|he has no sr weak mons -|chat|Arcticblast|meta -| -|move|p1a: Gliscor|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -| -|turn|218 -|chat|Pwnemon|lol -|chat|chieliee|and can get rid of tspikes with venu -| -|move|p1a: Gliscor|Earthquake|p2a: Blissey -|-damage|p2a: Blissey|475/688 -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|253/353 tox -| -|-heal|p2a: Blissey|518/688|[from] item: Leftovers -|-heal|p1a: Gliscor|297/353 tox|[from] ability: Poison Heal -|turn|219 -|chat|Stone_Cold22|NICE PREDIC -|chat|Soulgazer|was it worth -| -|move|p1a: Gliscor|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|197/353 tox -| -|-heal|p2a: Blissey|561/688 tox|[from] item: Leftovers -|-heal|p1a: Gliscor|241/353 tox|[from] ability: Poison Heal -|-damage|p2a: Blissey|518/688 tox|[from] psn -|turn|220 -| -|switch|p2a: Gyarados|Gyarados, F|345/394 -|-damage|p2a: Gyarados|247/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|271/394|[from] item: Leftovers -|-heal|p1a: Gliscor|285/353 tox|[from] ability: Poison Heal -|turn|221 -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|295/394|[from] item: Leftovers -|turn|222 -|chat|OU Mew|222 -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|361/394 slp -| -|-heal|p2a: Gyarados|385/394 slp|[from] item: Leftovers -|turn|223 -|chat|Soulgazer|gratz for informing us mew -| -|switch|p1a: Skarmory|Skarmory, F|260/334 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|394/394 slp|[from] item: Leftovers -|-heal|p1a: Skarmory|280/334|[from] item: Leftovers -|turn|224 -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|518/688 -|-damage|p2a: Blissey|432/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|300/334|[from] item: Leftovers -|-heal|p2a: Blissey|475/688|[from] item: Leftovers -|turn|225 -|chat|chieliee|no skarm! -| -|move|p1a: Skarmory|Brave Bird|p2a: Blissey -|-damage|p2a: Blissey|253/688 -|-damage|p1a: Skarmory|227/334|[from] recoil|[of] p2a: Blissey -|move|p2a: Blissey|Seismic Toss|p1a: Skarmory -|-damage|p1a: Skarmory|127/334 -| -|-heal|p1a: Skarmory|147/334|[from] item: Leftovers -|-heal|p2a: Blissey|296/688|[from] item: Leftovers -|turn|226 -| -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|314/334 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|640/688 -| -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|-heal|p2a: Blissey|683/688|[from] item: Leftovers -|turn|227 -|chat|THE_IRON_KENYAN|id have used flamethrower tbh -|chat|Pwnemon|never skarm .trl -|chat|jumpluff|i hate the spelling change -| -|switch|p1a: Chansey|Chansey, F|660/660 -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -| -|-heal|p2a: Gyarados|320/394 slp|[from] item: Leftovers -|turn|228 -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|344/394|[from] item: Leftovers -|turn|229 -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|313/394 -|-status|p2a: Gyarados|brn -| -|-heal|p2a: Gyarados|337/394 brn|[from] item: Leftovers -|-damage|p2a: Gyarados|288/394 brn|[from] brn -|turn|230 -|chat|Soulgazer|nb -|chat|Arcticblast|turn 230 -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|342/393 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-fail|p2a: Gyarados -| -|-heal|p2a: Gyarados|312/394 brn|[from] item: Leftovers -|-heal|p1a: Quagsire|366/393|[from] item: Leftovers -|-damage|p2a: Gyarados|263/394 brn|[from] brn -|turn|231 -|chat|blarajan|solid dommage -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|359/394 slp -| -|-heal|p2a: Gyarados|383/394 slp|[from] item: Leftovers -|-heal|p1a: Quagsire|390/393|[from] item: Leftovers -|turn|232 -|chat|Pwnemon|lol -|chat|Afro Smash|wheres the water absorb -|chat|Soulgazer|amazing domage -| -|switch|p2a: Clefable|Clefable, M|394/394 -|-damage|p2a: Clefable|345/394|[from] Stealth Rock -|switch|p1a: Skarmory|Skarmory, F|334/334 -| -|-heal|p2a: Clefable|369/394|[from] item: Leftovers -|turn|233 -| -|move|p2a: Clefable|Wish|p2a: Clefable -|move|p1a: Skarmory|Whirlwind|p2a: Clefable -|drag|p2a: Abomasnow|Abomasnow, M|247/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-damage|p2a: Abomasnow|151/384|[from] Stealth Rock -|-weather|Hail -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|234 -| -|move|p2a: Abomasnow|Protect|p2a: Abomasnow -|-singleturn|p2a: Abomasnow|Protect -|move|p1a: Skarmory|Brave Bird|p2a: Abomasnow -|-activate|p2a: Abomasnow|Protect -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p2a: Abomasnow|348/384|[from] move: Wish|[wisher] Clefable -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|235 -|chat|THE_IRON_KENYAN|blizzard? -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Abomasnow|Leech Seed|p1a: Heatran -|-start|p1a: Heatran|move: Leech Seed -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|361/385|[from] Hail -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-damage|p1a: Heatran|337/385|[from] Leech Seed|[of] p2a: Abomasnow -|-heal|p2a: Abomasnow|384/384|[silent] -|turn|236 -|chat|Stone_Cold22|nice predic lady bug! -|chat|Pwnemon|place -|chat|THE_IRON_KENYAN|seed -| -|move|p2a: Abomasnow|Protect|p2a: Abomasnow -|-singleturn|p2a: Abomasnow|Protect -|move|p1a: Heatran|Roar|p2a: Abomasnow -|drag|p2a: Gyarados|Gyarados, F|383/394 slp -|-damage|p2a: Gyarados|285/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|261/394 slp|[from] Hail -|-damage|p1a: Heatran|313/385|[from] Hail -|-heal|p2a: Gyarados|285/394 slp|[from] item: Leftovers -|-heal|p1a: Heatran|337/385|[from] item: Leftovers -|-damage|p1a: Heatran|289/385|[from] Leech Seed|[of] p2a: Gyarados -|-heal|p2a: Gyarados|333/394 slp|[silent] -|turn|237 -|chat|Lady bug|huh -|chat|PttP|those damn 6th gen mechanics -|chat|Texas Cloverleaf|new mech -|chat|Treecko|goes through protect now lol -|chat|blarajan|protect doesn't block roar -|chat|Soulgazer|lovely mechs -|chat|Lady bug|i see -| -|switch|p2a: Clefable|Clefable, M|369/394 -|-damage|p2a: Clefable|320/394|[from] Stealth Rock -|switch|p1a: Quagsire|Quagsire, M|390/393 -| -|-weather|none -|-heal|p2a: Clefable|344/394|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|238 -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Quagsire|Toxic|p2a: Clefable -|-activate|p2a: Clefable|Protect -| -|-heal|p2a: Clefable|368/394|[from] item: Leftovers -|turn|239 -| -|move|p2a: Clefable|Wish|p2a: Clefable -|move|p1a: Quagsire|Toxic|p2a: Clefable -|-status|p2a: Clefable|tox -| -|-heal|p2a: Clefable|392/394 tox|[from] item: Leftovers -|-damage|p2a: Clefable|368/394 tox|[from] psn -|turn|240 -|chat|Pwnemon|where is the eq -|chat|Pwnemon|on aboma -|chat|Pwnemon|:| -| -|switch|p2a: Abomasnow|Abomasnow, M|384/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-damage|p2a: Abomasnow|288/384|[from] Stealth Rock -|-weather|Hail -|move|p1a: Quagsire|Scald|p2a: Abomasnow -|-resisted|p2a: Abomasnow -|-damage|p2a: Abomasnow|258/384 -|-status|p2a: Abomasnow|brn -| -|-weather|Hail|[upkeep] -|-damage|p1a: Quagsire|369/393|[from] Hail -|-heal|p2a: Abomasnow|384/384 brn|[from] move: Wish|[wisher] Clefable -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|-damage|p2a: Abomasnow|336/384 brn|[from] brn -|turn|241 -|chat|Arcticblast|it's revealed every move -|chat|Arcticblast|so nowhere -|chat|Soulgazer|ah -|chat|Soulgazer|not bad -|chat|Soulgazer|*-* -|chat|Pwnemon|9.9 -| -|switch|p1a: Heatran|Heatran, M|289/385 -|move|p2a: Abomasnow|Leech Seed|p1a: Heatran -|-start|p1a: Heatran|move: Leech Seed -| -|-weather|Hail|[upkeep] -|-damage|p1a: Heatran|265/385|[from] Hail -|-heal|p1a: Heatran|289/385|[from] item: Leftovers -|-damage|p1a: Heatran|241/385|[from] Leech Seed|[of] p2a: Abomasnow -|-heal|p2a: Abomasnow|384/384 brn|[silent] -|-damage|p2a: Abomasnow|336/384 brn|[from] brn -|turn|242 -| -|switch|p1a: Chansey|Chansey, F|660/660 -|switch|p2a: Blissey|Blissey, F|683/688 -|-damage|p2a: Blissey|597/688|[from] Stealth Rock -| -|-weather|Hail|[upkeep] -|-damage|p2a: Blissey|554/688|[from] Hail -|-damage|p1a: Chansey|619/660|[from] Hail -|-heal|p2a: Blissey|597/688|[from] item: Leftovers -|turn|243 -| -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -|move|p1a: Chansey|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-weather|Hail|[upkeep] -|-damage|p2a: Blissey|554/688 tox|[from] Hail -|-damage|p1a: Chansey|578/660|[from] Hail -|-heal|p2a: Blissey|597/688 tox|[from] item: Leftovers -|-damage|p2a: Blissey|554/688 tox|[from] psn -|turn|244 -|chat|THE_IRON_KENYAN|arcticblast why arent i allowed to rap -|chat|Afro Smash|:] -| -|switch|p2a: Gyarados|Gyarados, F|333/394 -|-damage|p2a: Gyarados|235/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -|move|p1a: Chansey|Seismic Toss|p2a: Gyarados -|-damage|p2a: Gyarados|135/394 -| -|-weather|none -|-heal|p2a: Gyarados|159/394|[from] item: Leftovers -|turn|245 -|chat|Arcticblast|this battle is a jazz piece -|chat|Arcticblast|no rapping -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -| -|turn|246 -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|cant|p2a: Gyarados|slp -| -|turn|247 -|chat|THE_IRON_KENYAN|http://www.youtube.com/watch?v=M4sEcIHG0Yc -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Clefable|Clefable, M|368/394 -|-damage|p2a: Clefable|319/394|[from] Stealth Rock -| -|-heal|p2a: Clefable|343/394|[from] item: Leftovers -|turn|248 -| -|switch|p1a: Heatran|Heatran, M|241/385 -|move|p2a: Clefable|Calm Mind|p2a: Clefable -|-boost|p2a: Clefable|spa|1 -|-boost|p2a: Clefable|spd|1 -| -|-heal|p1a: Heatran|265/385|[from] item: Leftovers -|-heal|p2a: Clefable|367/394|[from] item: Leftovers -|turn|249 -|chat|Treecko|oOOO)o0o0oo -| -|move|p2a: Clefable|Wish|p2a: Clefable -|move|p1a: Heatran|Roar|p2a: Clefable -|drag|p2a: Blissey|Blissey, F|554/688 -|-damage|p2a: Blissey|468/688|[from] Stealth Rock -| -|-heal|p1a: Heatran|289/385|[from] item: Leftovers -|-heal|p2a: Blissey|511/688|[from] item: Leftovers -|turn|250 -| -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|236/394 slp -| -|-heal|p2a: Gyarados|394/394 slp|[from] move: Wish|[wisher] Clefable -|-heal|p1a: Heatran|313/385|[from] item: Leftovers -|turn|251 -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|turn|252 -|chat|MarceloDK|... -| -|move|p2a: Gyarados|Earthquake|p1a: Quagsire -|-damage|p1a: Quagsire|323/393 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -| -|-heal|p1a: Quagsire|347/393|[from] item: Leftovers -|-damage|p2a: Gyarados|370/394 tox|[from] psn -|turn|253 -|chat|chieliee|250 without death, technically speaking -|chat|chieliee|whoever predicted that was right -|chat|MarceloDK|how is this turn 251 -|chat|jumpluff|laga -|chat|MarceloDK|with 12 pokemons -| -|move|p2a: Gyarados|Earthquake|p1a: Quagsire -|-crit|p1a: Quagsire -|-damage|p1a: Quagsire|241/393 -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|394/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|265/393|[from] item: Leftovers -|-damage|p2a: Gyarados|346/394 tox|[from] psn -|turn|254 -|chat|Pwnemon|crit -|chat|Pwnemon|bs -|chat|MarceloDK|?_______________? -|chat|Soulgazer|quag eating it up -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 -| -|-heal|p2a: Gyarados|370/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|298/394 tox|[from] psn -|turn|255 -|chat|Hugendugen|http://youtubedoubler.com/?video1=AYw7eJYadco&start1=10&video2=HMnrl0tmd3k&start2=0&authorName=rainy+mood -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|300/393 -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|266/394 tox -| -|-heal|p2a: Gyarados|290/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|324/393|[from] item: Leftovers -|-damage|p2a: Gyarados|194/394 tox|[from] psn -|turn|256 -|chat|Hot N Cold|preserve 6-6 imo -|chat|Pwnemon|lol -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p1a: Quagsire|348/393|[from] item: Leftovers -|turn|257 -|chat|THE_IRON_KENYAN|why isnt gyara eating its chesto berry -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|cant|p2a: Gyarados|slp -| -|turn|258 -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Abomasnow|Abomasnow, M|336/384 -|-formechange|p2a: Abomasnow|Abomasnow-Mega -|-damage|p2a: Abomasnow|240/384|[from] Stealth Rock -|-weather|Hail -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|314/334|[from] Hail -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|259 -|chat|Arcticblast|it only has the leftovers TIK -|chat|Biosci|it doesn't have any leftover -|chat|Stone_Cold22|TIK, don't reveal items plz. It's disrespectful -| -|move|p1a: Skarmory|Brave Bird|p2a: Abomasnow -|-supereffective|p2a: Abomasnow -|-damage|p2a: Abomasnow|0 fnt -|-damage|p1a: Skarmory|255/334|[from] recoil|[of] p2a: Abomasnow -|faint|p2a: Abomasnow -| -|-weather|Hail|[upkeep] -|-damage|p1a: Skarmory|235/334|[from] Hail -|-heal|p1a: Skarmory|255/334|[from] item: Leftovers -|chat|Arcticblast|FIRST BLOOD -|chat|jumpluff|nooo -|chat|Biosci|oooooo -|chat|Pwnemon|oh -|chat|jumpluff|the aboma -|chat|Annoyer|first ko. -|chat|chieliee|KILL -|chat|Nachos|Damn. -|chat|Pwnemon|shit -|chat|MarceloDK|ah -|chat|Soulgazer|THE BLOOD -| -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Skarmory -|-unboost|p1a: Skarmory|atk|1 -|turn|260 -|chat|Hot N Cold|No. -|chat|Hot N Cold|:( -| -|switch|p1a: Quagsire|Quagsire, M|348/393 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|272/394|[from] Hail -|-damage|p1a: Quagsire|324/393|[from] Hail -|-heal|p2a: Gyarados|296/394|[from] item: Leftovers -|-heal|p1a: Quagsire|348/393|[from] item: Leftovers -|turn|261 -|chat|MarceloDK|lady bug bring a lot of skarm counters -|chat|MarceloDK|I see -|chat|Joim|damn... -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|363/394 slp -| -|-weather|Hail|[upkeep] -|-damage|p2a: Gyarados|339/394 slp|[from] Hail -|-damage|p1a: Quagsire|324/393|[from] Hail -|-heal|p2a: Gyarados|363/394 slp|[from] item: Leftovers -|-heal|p1a: Quagsire|348/393|[from] item: Leftovers -|turn|262 -|chat|Pwnemon|4-6 -|chat|Pwnemon|can he pull out?? -|chat|PKLaurel|Elyis is @lovely? -| -|switch|p1a: Skarmory|Skarmory, F|255/334 -|cant|p2a: Gyarados|slp -| -|-weather|none -|-heal|p2a: Gyarados|387/394 slp|[from] item: Leftovers -|-heal|p1a: Skarmory|275/334|[from] item: Leftovers -|turn|263 -|chat|chieliee|its technically still 5-6! -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Skarmory|Skarmory, M|30/334 -|-damage|p2a: Skarmory|0 fnt|[from] Stealth Rock -|faint|p2a: Skarmory -| -|-heal|p1a: Skarmory|295/334|[from] item: Leftovers -|chat|Annoyer|nto aynmore -|chat|chieliee|ok -|chat|Stone_Cold22|ded -|chat|Pwnemon|not anymore -|chat|Laga|nice timing -|chat|chieliee|not anymore -|chat|IFM|ded -|chat|Treecko|o0o00000ooo -|chat|Joim|whirlwind and roar -| -|switch|p2a: Clefable|Clefable, M|367/394 -|-damage|p2a: Clefable|318/394|[from] Stealth Rock -|turn|264 -|chat|Joim|are cheating -|chat|Soulgazer|SECOND BLOOD -| -|switch|p1a: Chansey|Chansey, F|578/660 -|move|p2a: Clefable|Wish|p2a: Clefable -| -|-heal|p2a: Clefable|342/394|[from] item: Leftovers -|turn|265 -|chat|chieliee|shits going down -|chat|THE_IRON_KENYAN|ez -|chat|Pwnemon|does nido live stoss????? -|chat|Biosci|now you must kill the queen used by the king -|c|+PttP|!data nidoqueen -|c|~|/data-pokemon Nidoqueen - -|chat|MarceloDK|n -|chat|PttP|n; -| -|switch|p2a: Nidoqueen|Nidoqueen, F|138/384 -|-damage|p2a: Nidoqueen|114/384|[from] Stealth Rock -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|14/384 -| -|-heal|p2a: Nidoqueen|211/384|[from] move: Wish|[wisher] Clefable -|-heal|p2a: Nidoqueen|235/384|[from] item: Leftovers -|turn|266 -|chat|chieliee|y -|chat|Pwnemon|liars -|chat|PttP|i was right -| -|switch|p2a: Blissey|Blissey, F|511/688 -|-damage|p2a: Blissey|425/688|[from] Stealth Rock -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|325/688 -| -|-heal|p2a: Blissey|368/688|[from] item: Leftovers -|turn|267 -|chat|MarceloDK|.trl -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-heal|p2a: Blissey|411/688 tox|[from] item: Leftovers -|-damage|p2a: Blissey|368/688 tox|[from] psn -|-damage|p1a: Chansey|537/660 tox|[from] psn -|turn|268 -|chat|Hugendugen|what a toxic family relationship -| -|switch|p1a: Gliscor|Gliscor, M|285/353 tox -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 tox -| -|-heal|p1a: Gliscor|329/353 tox|[from] ability: Poison Heal -|-damage|p2a: Blissey|602/688 tox|[from] psn -|turn|269 -|chat|PKLaurel|i see you hugen -| -|switch|p2a: Gyarados|Gyarados, F|387/394 slp -|-damage|p2a: Gyarados|289/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|313/394 slp|[from] item: Leftovers -|-heal|p1a: Gliscor|353/353 tox|[from] ability: Poison Heal -|turn|270 -|chat|Pwnemon|wow hugenwoody -| -|switch|p1a: Quagsire|Quagsire, M|348/393 -|switch|p2a: Clefable|Clefable, M|342/394 -|-damage|p2a: Clefable|293/394|[from] Stealth Rock -| -|-heal|p2a: Clefable|317/394|[from] item: Leftovers -|-heal|p1a: Quagsire|372/393|[from] item: Leftovers -|turn|271 -| -|switch|p2a: Gyarados|Gyarados, F|313/394 slp -|-damage|p2a: Gyarados|215/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Quagsire -|-unboost|p1a: Quagsire|atk|1 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-fail|p2a: Gyarados -| -|-heal|p2a: Gyarados|239/394 slp|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|272 -| -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|364/394 slp -| -|-heal|p2a: Gyarados|388/394 slp|[from] item: Leftovers -|turn|273 -| -|switch|p1a: Skarmory|Skarmory, F|295/334 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|394/394 slp|[from] item: Leftovers -|-heal|p1a: Skarmory|315/334|[from] item: Leftovers -|turn|274 -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|602/688 -|-damage|p2a: Blissey|516/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|-heal|p2a: Blissey|559/688|[from] item: Leftovers -|turn|275 -|chat|THE_IRON_KENYAN|skarm is gonna run out of whirlwinds soon -| -|move|p1a: Skarmory|Brave Bird|p2a: Blissey -|-damage|p2a: Blissey|333/688 -|-damage|p1a: Skarmory|259/334|[from] recoil|[of] p2a: Blissey -|move|p2a: Blissey|Seismic Toss|p1a: Skarmory -|-damage|p1a: Skarmory|159/334 -| -|-heal|p1a: Skarmory|179/334|[from] item: Leftovers -|-heal|p2a: Blissey|376/688|[from] item: Leftovers -|turn|276 -|chat|Pwnemon|now that you cant bring in lb's skarm -| -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|334/334 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 -| -|turn|277 -|chat|Pwnemon|i dont see much point in giving that move a whiel -| -|switch|p1a: Chansey|Chansey, F|537/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|437/660 -| -|turn|278 -|chat|Pwnemon|whirl* dammit -|chat|Pwnemon|ruined -| -|switch|p2a: Clefable|Clefable, M|317/394 -|-damage|p2a: Clefable|268/394|[from] Stealth Rock -|move|p1a: Chansey|Toxic|p2a: Clefable -|-status|p2a: Clefable|tox -| -|-heal|p2a: Clefable|292/394 tox|[from] item: Leftovers -|-damage|p2a: Clefable|268/394 tox|[from] psn -|turn|279 -Pwnemon was muted by Arcticblast for 7 minutes. (ruined) -|unlink|pwnemon -| -|switch|p1a: Heatran|Heatran, M|313/385 -|move|p2a: Clefable|Wish|p2a: Clefable -| -|-heal|p1a: Heatran|337/385|[from] item: Leftovers -|-heal|p2a: Clefable|292/394 tox|[from] item: Leftovers -|-damage|p2a: Clefable|244/394 tox|[from] psn -|turn|280 -|chat|MarceloDK|lol -Pwnemon was unmuted by Arcticblast. -|chat|Soulgazer|thanks ablast -| -|switch|p2a: Nidoqueen|Nidoqueen, F|235/384 -|-damage|p2a: Nidoqueen|211/384|[from] Stealth Rock -|move|p1a: Heatran|Roar|p2a: Nidoqueen -|drag|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -| -|-heal|p2a: Blissey|688/688|[from] move: Wish|[wisher] Clefable -|-heal|p1a: Heatran|361/385|[from] item: Leftovers -|turn|281 -|chat|Treecko|nooo -|chat|Soulgazer|mute him back -|chat|Soulgazer|what are you doing -| -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -| -|turn|282 -|chat|chieliee|7 minutes that's nothing -| -|switch|p2a: Gyarados|Gyarados, F|394/394 -|-damage|p2a: Gyarados|296/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -| -|-heal|p2a: Gyarados|320/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|296/394 tox|[from] psn -|turn|283 -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|switch|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -| -|-heal|p2a: Blissey|645/688|[from] item: Leftovers -|turn|284 -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -| -|-heal|p2a: Blissey|688/688|[from] item: Leftovers -|-damage|p1a: Chansey|396/660 tox|[from] psn -|turn|285 -| -|switch|p2a: Nidoqueen|Nidoqueen, F|211/384 -|-damage|p2a: Nidoqueen|187/384|[from] Stealth Rock -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 tox -| -|-heal|p2a: Nidoqueen|211/384|[from] item: Leftovers -|-damage|p1a: Chansey|578/660 tox|[from] psn -|turn|286 -|chat|THE_IRON_KENYAN|focus punch -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Quagsire -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|235/384|[from] item: Leftovers -|turn|287 -| -|switch|p2a: Gyarados|Gyarados, F|296/394 tox -|-damage|p2a: Gyarados|198/394 tox|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Quagsire -|-unboost|p1a: Quagsire|atk|1 -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|222/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|198/394 tox|[from] psn -|turn|288 -| -|switch|p1a: Venusaur|Venusaur, M|260/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -| -|turn|289 -| -|switch|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -|move|p1a: Venusaur|Giga Drain|p2a: Blissey -|-damage|p2a: Blissey|533/688 -|-heal|p1a: Venusaur|295/364|[from] drain|[of] p2a: Blissey -| -|-heal|p2a: Blissey|576/688|[from] item: Leftovers -|turn|290 -| -|move|p1a: Venusaur|Earthquake|p2a: Blissey -|-damage|p2a: Blissey|444/688 -|move|p2a: Blissey|Seismic Toss|p1a: Venusaur -|-damage|p1a: Venusaur|195/364 -| -|-heal|p2a: Blissey|487/688|[from] item: Leftovers -|turn|291 -|chat|Stone_Cold22|lady_bug, your mom callin u -|chat|Stone_Cold22|wondering why ur up -|chat|Stone_Cold22|shoud prob forfeit -| -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|253/353 tox -| -|-heal|p2a: Blissey|530/688|[from] item: Leftovers -|-heal|p1a: Gliscor|297/353 tox|[from] ability: Poison Heal -|turn|292 -| -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|320/394 slp|[from] item: Leftovers -|-heal|p1a: Gliscor|341/353 tox|[from] ability: Poison Heal -|turn|293 -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|344/394 slp|[from] item: Leftovers -|turn|294 -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Brave Bird|p2a: Gyarados -|-damage|p2a: Gyarados|251/394 slp -|-damage|p1a: Skarmory|303/334|[from] recoil|[of] p2a: Gyarados -| -|-heal|p2a: Gyarados|275/394 slp|[from] item: Leftovers -|-heal|p1a: Skarmory|323/334|[from] item: Leftovers -|turn|295 -| -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-crit|p1a: Skarmory -|-damage|p1a: Skarmory|220/334 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|530/688 -|-damage|p2a: Blissey|444/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|240/334|[from] item: Leftovers -|-heal|p2a: Blissey|487/688|[from] item: Leftovers -|turn|296 -|chat|Pwnemon|mattered -|chat|Pwnemon|:| -| -|switch|p1a: Chansey|Chansey, F|578/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|478/660 -| -|-heal|p2a: Blissey|530/688|[from] item: Leftovers -|turn|297 -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-heal|p2a: Blissey|573/688 tox|[from] item: Leftovers -|-damage|p2a: Blissey|530/688 tox|[from] psn -|-damage|p1a: Chansey|437/660 tox|[from] psn -|turn|298 -| -|switch|p2a: Clefable|Clefable, M|244/394 -|-damage|p2a: Clefable|195/394|[from] Stealth Rock -|switch|p1a: Venusaur|Venusaur, M|195/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -| -|-heal|p2a: Clefable|219/394|[from] item: Leftovers -|turn|299 -|chat|Hugendugen|what a toxic family relationship -|chat|THE_IRON_KENYAN|lol -|chat|Heist|i think PO should be recommended for battles over 300 turns -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Venusaur|Sludge Bomb|p2a: Clefable -|-activate|p2a: Clefable|Protect -| -|-heal|p2a: Clefable|243/394|[from] item: Leftovers -|turn|300 -|chat|Pwnemon|u already did that joke -|chat|PKLaurel|god dammit hugen -|chat|Soulgazer|venusaur *-* -|chat|Heist|took like 2 mins for this battle to load -| -|switch|p2a: Blissey|Blissey, F|530/688 -|-damage|p2a: Blissey|444/688|[from] Stealth Rock -|move|p1a: Venusaur|Sludge Bomb|p2a: Blissey -|-damage|p2a: Blissey|350/688 -| -|-heal|p2a: Blissey|393/688|[from] item: Leftovers -|turn|301 -|chat|Soulgazer|lo heist -|chat|Soulgazer|lo* -|chat|Afro Smash|po should be reccomended for everything -| -|move|p1a: Venusaur|Synthesis|p1a: Venusaur -|-heal|p1a: Venusaur|364/364 -|move|p2a: Blissey|Seismic Toss|p1a: Venusaur -|-damage|p1a: Venusaur|264/364 -| -|-heal|p2a: Blissey|436/688|[from] item: Leftovers -|turn|302 -|chat|Soulgazer|lol -|chat|Soulgazer|oml -| -|switch|p1a: Gliscor|Gliscor, M|341/353 tox -|switch|p2a: Nidoqueen|Nidoqueen, F|235/384 -|-damage|p2a: Nidoqueen|211/384|[from] Stealth Rock -| -|-heal|p2a: Nidoqueen|235/384|[from] item: Leftovers -|-heal|p1a: Gliscor|353/353 tox|[from] ability: Poison Heal -|turn|303 -|chat|Pwnemon|afro smash ur a fuckin noob -|chat|Arcticblast|>PO for BW and XY -|chat|Pwnemon|imo -|chat|PKLaurel|plays -|chat|Afro Smash|:] -| -|switch|p2a: Gyarados|Gyarados, F|275/394 -|-damage|p2a: Gyarados|177/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|201/394|[from] item: Leftovers -|turn|304 -|chat|Laga|wow pwnemon don't talk about RU master afro smash like that -| -|switch|p1a: Skarmory|Skarmory, F|240/334 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|225/394|[from] item: Leftovers -|-heal|p1a: Skarmory|260/334|[from] item: Leftovers -|turn|305 -|chat|Hugendugen|if Afro Smash says so, then we're off to PO -|chat|Pwnemon|im sorry -|chat|Pwnemon|i still believe -|chat|Laga|his name is a billion times more epic than you -|chat|Pwnemon|:]]]] -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|299/393 -| -|-heal|p2a: Gyarados|249/394|[from] item: Leftovers -|-heal|p1a: Quagsire|323/393|[from] item: Leftovers -|turn|306 -|chat|Soulgazer|LAGA. -|chat|Afro Smash|:]]]] -| -|move|p2a: Gyarados|Earthquake|p1a: Quagsire -|-damage|p1a: Quagsire|248/393 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -| -|-heal|p2a: Gyarados|273/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|272/393|[from] item: Leftovers -|-damage|p2a: Gyarados|249/394 tox|[from] psn -|turn|307 -|chat|Soulgazer|:]] -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 -| -|turn|308 -| -|switch|p1a: Skarmory|Skarmory, F|260/334 -|cant|p2a: Gyarados|slp -| -|-heal|p1a: Skarmory|280/334|[from] item: Leftovers -|turn|309 -|chat|PttP|16:02 lol i seriously cant see a way 16:02 that lady bug loses -|chat|PttP|-,- -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Blissey|Blissey, F|436/688 -|-damage|p2a: Blissey|350/688|[from] Stealth Rock -| -|-heal|p1a: Skarmory|300/334|[from] item: Leftovers -|-heal|p2a: Blissey|393/688|[from] item: Leftovers -|turn|310 -|chat|Soulgazer|?_? -|chat|PKLaurel|I can't see a way that lady bug wins... -| -|move|p1a: Skarmory|Brave Bird|p2a: Blissey -|-damage|p2a: Blissey|170/688 -|-damage|p1a: Skarmory|226/334|[from] recoil|[of] p2a: Blissey -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|514/688 -| -|-heal|p1a: Skarmory|246/334|[from] item: Leftovers -|-heal|p2a: Blissey|557/688|[from] item: Leftovers -|turn|311 -|chat|Pwnemon|that was before aboma died -|chat|PKLaurel|Elyis has rocks -|chat|chieliee|i cant se a way that either of these win -|chat|Pwnemon|but uh -|chat|Soulgazer|elyis wrecks -|chat|Pwnemon|pklaurel with the advice -|chat|Pwnemon|as always -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|337/660 -| -|-heal|p2a: Blissey|600/688|[from] item: Leftovers -|turn|312 -|chat|MikeDecIsHere|311 turns -|chat|Pwnemon|n__n -|chat|MikeDecIsHere|damn -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-heal|p2a: Blissey|643/688 tox|[from] item: Leftovers -|-damage|p2a: Blissey|600/688 tox|[from] psn -|-damage|p1a: Chansey|296/660 tox|[from] psn -|turn|313 -|chat|Soulgazer|mike is here -|chat|Soulgazer|:o -| -|switch|p2a: Nidoqueen|Nidoqueen, F|235/384 -|-damage|p2a: Nidoqueen|211/384|[from] Stealth Rock -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -| -|-heal|p2a: Nidoqueen|235/384|[from] item: Leftovers -|turn|314 -|chat|MikeDecIsHere|Soulgazer, we need to play for randbats -|chat|MikeDecIsHere|! -|chat|Soulgazer|ooo -|chat|Soulgazer|after this -| -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p2a: Gyarados|320/394 slp|[from] item: Leftovers -|turn|315 -|chat|MikeDecIsHere|ya -|chat|Pwnemon|what about our dubs battle soulgazer -|chat|Pwnemon|i am hurt -| -|switch|p1a: Skarmory|Skarmory, F|246/334 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|344/394|[from] item: Leftovers -|-heal|p1a: Skarmory|266/334|[from] item: Leftovers -|turn|316 -|chat|Soulgazer|fight me now -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|305/393 -| -|-heal|p2a: Gyarados|368/394|[from] item: Leftovers -|-heal|p1a: Quagsire|329/393|[from] item: Leftovers -|turn|317 -|chat|Soulgazer|._. -|chat|Pwnemon|disrespectful -|chat|Laga|I want to see soulgazer win vs pwnemon in dubs -|chat|Pwnemon|to the gentlemen battling -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|361/394 slp -| -|-heal|p2a: Gyarados|385/394 slp|[from] item: Leftovers -|-heal|p1a: Quagsire|353/393|[from] item: Leftovers -|turn|318 -|chat|Hugendugen|what a chump, not running water absorb quagsire -|chat|jdarden|pwnejohn -| -|switch|p2a: Nidoqueen|Nidoqueen, F|235/384 -|-damage|p2a: Nidoqueen|211/384|[from] Stealth Rock -|switch|p1a: Skarmory|Skarmory, F|266/334 -| -|-heal|p2a: Nidoqueen|235/384|[from] item: Leftovers -|-heal|p1a: Skarmory|286/334|[from] item: Leftovers -|turn|319 -|chat|Soulgazer|lol -|chat|Pwnemon|plays -|chat|Soulgazer|i can have both of them on the same screen -|chat|Pwnemon|the flamethrower is real -| -|switch|p1a: Quagsire|Quagsire, M|353/393 -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Quagsire -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -| -|-heal|p2a: Nidoqueen|259/384|[from] item: Leftovers -|-heal|p1a: Quagsire|377/393|[from] item: Leftovers -|turn|320 -|chat|Laga|preferably hrough ridiculous hax -|chat|Soulgazer|dw -| -|switch|p2a: Blissey|Blissey, F|600/688 -|-damage|p2a: Blissey|514/688|[from] Stealth Rock -|switch|p1a: Venusaur|Venusaur, M|264/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -| -|-heal|p2a: Blissey|557/688|[from] item: Leftovers -|turn|321 -|chat|Sir|i think that Po is better than PS -| -|switch|p1a: Chansey|Chansey, F|296/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|196/660 -| -|-heal|p2a: Blissey|600/688|[from] item: Leftovers -|turn|322 -|chat|PKLaurel|i didn't know that we were playing GSC -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|526/660 tox -| -|-heal|p2a: Blissey|643/688|[from] item: Leftovers -|-damage|p1a: Chansey|485/660 tox|[from] psn -|turn|323 -|chat|Arcticblast|idk Sir I think they could go either way -|chat|Pwnemon|we arent, gsc doesnt have SR -|chat|Pwnemon|:| -|chat|Sir|yea u got me -|chat|Texas Cloverleaf|gsc is faster -| -|switch|p2a: Gyarados|Gyarados, F|385/394 slp -|-damage|p2a: Gyarados|287/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -| -|-heal|p2a: Gyarados|311/394 slp|[from] item: Leftovers -|turn|324 -|chat|dekzeh|Sir who do you think is winning this -|chat|Texas Cloverleaf|also laurel you're 240 turns laste -|chat|Sir|idk -|chat|Texas Cloverleaf|with that joke -|chat|Sir|could go either way -|chat|Joim|gsc has based spikes, one stack -| -|switch|p1a: Skarmory|Skarmory, F|286/334 -|switch|p2a: Nidoqueen|Nidoqueen, F|259/384 -|-damage|p2a: Nidoqueen|235/384|[from] Stealth Rock -| -|-heal|p2a: Nidoqueen|259/384|[from] item: Leftovers -|-heal|p1a: Skarmory|306/334|[from] item: Leftovers -|turn|325 -|chat|PKLaurel|i joined at turn 250 :( -| -|switch|p1a: Quagsire|Quagsire, M|377/393 -|move|p2a: Nidoqueen|Flamethrower|p1a: Quagsire -|-resisted|p1a: Quagsire -|-damage|p1a: Quagsire|324/393 -| -|-heal|p2a: Nidoqueen|283/384|[from] item: Leftovers -|-heal|p1a: Quagsire|348/393|[from] item: Leftovers -|turn|326 -|chat|Sir|this is worse than LC -| -|switch|p1a: Venusaur|Venusaur, M|264/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Nidoqueen|Flamethrower|p1a: Venusaur -|-supereffective|p1a: Venusaur -|-damage|p1a: Venusaur|220/364 -| -|-heal|p2a: Nidoqueen|307/384|[from] item: Leftovers -|turn|327 -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Venusaur -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Venusaur|Giga Drain|p2a: Nidoqueen -|-crit|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|132/384 -|-heal|p1a: Venusaur|308/364|[from] drain|[of] p2a: Nidoqueen -| -|-heal|p2a: Nidoqueen|156/384|[from] item: Leftovers -|turn|328 -|chat|Pwnemon|no burn??? -|chat|Afro Smash|shluuurp -| -|switch|p2a: Blissey|Blissey, F|643/688 -|-damage|p2a: Blissey|557/688|[from] Stealth Rock -|move|p1a: Venusaur|Giga Drain|p2a: Blissey -|-damage|p2a: Blissey|485/688 -|-heal|p1a: Venusaur|344/364|[from] drain|[of] p2a: Blissey -| -|-heal|p2a: Blissey|528/688|[from] item: Leftovers -|turn|329 -|chat|Texas Cloverleaf|da crits -|chat|Sir|the game is advancing -|chat|Pwnemon|o wow im late -|chat|Pwnemon|by multiple turns -| -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|253/353 tox -| -|-heal|p2a: Blissey|571/688|[from] item: Leftovers -|-heal|p1a: Gliscor|297/353 tox|[from] ability: Poison Heal -|turn|330 -|chat|Pwnemon|:X -| -|switch|p1a: Venusaur|Venusaur, M|344/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|switch|p2a: Gyarados|Gyarados, F|311/394 slp -|-damage|p2a: Gyarados|213/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Venusaur -|-unboost|p1a: Venusaur|atk|1 -| -|-heal|p2a: Gyarados|237/394 slp|[from] item: Leftovers -|turn|331 -| -|cant|p2a: Gyarados|slp -|move|p1a: Venusaur|Giga Drain|p2a: Gyarados -|-damage|p2a: Gyarados|125/394 slp -|-heal|p1a: Venusaur|364/364|[from] drain|[of] p2a: Gyarados -| -|-heal|p2a: Gyarados|149/394 slp|[from] item: Leftovers -|turn|332 -| -|cant|p2a: Gyarados|slp -|move|p1a: Venusaur|Giga Drain|p2a: Gyarados -|-damage|p2a: Gyarados|50/394 slp -| -|-heal|p2a: Gyarados|74/394 slp|[from] item: Leftovers -|turn|333 -|chat|PKLaurel|crit -|chat|Arcticblast|Has Venusaur revealed its last move? -| -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Venusaur|Giga Drain|p2a: Gyarados -|-damage|p2a: Gyarados|289/394 slp -| -|-heal|p2a: Gyarados|313/394 slp|[from] item: Leftovers -|turn|334 -|chat|chieliee|synth giga eq -|chat|Sir|could it be curse venu -| -|switch|p2a: Blissey|Blissey, F|571/688 -|-damage|p2a: Blissey|485/688|[from] Stealth Rock -|switch|p1a: Skarmory|Skarmory, F|306/334 -| -|-heal|p1a: Skarmory|326/334|[from] item: Leftovers -|-heal|p2a: Blissey|528/688|[from] item: Leftovers -|turn|335 -|chat|Texas Cloverleaf|it revealed sludge -| -|move|p1a: Skarmory|Brave Bird|p2a: Blissey -|-damage|p2a: Blissey|311/688 -|-damage|p1a: Skarmory|254/334|[from] recoil|[of] p2a: Blissey -|move|p2a: Blissey|Seismic Toss|p1a: Skarmory -|-damage|p1a: Skarmory|154/334 -| -|-heal|p1a: Skarmory|174/334|[from] item: Leftovers -|-heal|p2a: Blissey|354/688|[from] item: Leftovers -|turn|336 -|chat|Arcticblast|Oh it did? -|chat|OU Mew|yeah 200 turns ago -| -|move|p1a: Skarmory|Roost|p1a: Skarmory -|-heal|p1a: Skarmory|334/334 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 -| -|turn|337 -| -|switch|p1a: Chansey|Chansey, F|485/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|385/660 -| -|turn|338 -|chat|chieliee|yeh -|chat|chieliee|it did -|chat|Soulgazer|I WON -|chat|Soulgazer|go eleyis -|chat|Soulgazer|*-* -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Soft-Boiled|p1a: Chansey -|-heal|p1a: Chansey|660/660 tox -| -|-damage|p1a: Chansey|619/660 tox|[from] psn -|turn|339 -|chat|OU Mew|ou already finished? -|chat|Pwnemon|lol i quit on like turn 3 -|chat|Pwnemon|wasnt really playin ykno -| -|switch|p2a: Gyarados|Gyarados, F|313/394 slp -|-damage|p2a: Gyarados|215/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -|switch|p1a: Gliscor|Gliscor, M|297/353 tox -| -|-heal|p2a: Gyarados|239/394 slp|[from] item: Leftovers -|-heal|p1a: Gliscor|341/353 tox|[from] ability: Poison Heal -|turn|340 -|chat|chieliee|excuses -|chat|Soulgazer|you just got wreck -|chat|Pwnemon|ya -|chat|Soulgazer|start me in doubles nachos -|chat|Pwnemon|ok -|chat|Soulgazer|im rdy -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|263/394 slp|[from] item: Leftovers -|turn|341 -|chat|Pwnemon|eh ud do better than yung -|chat|Stone_Cold22|yung is fine -|chat|Delta 2777|doesn't XY have a 1-hour time limit -|chat|Stone_Cold22|hop off faggot -| -|switch|p1a: Quagsire|Quagsire, M|348/393 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|287/394 slp|[from] item: Leftovers -|-heal|p1a: Quagsire|372/393|[from] item: Leftovers -|turn|342 -|chat|Pwnemon|only in battle spot delta -|chat|Soulgazer|ya yung is great -| -|switch|p1a: Skarmory|Skarmory, F|334/334 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|311/394|[from] item: Leftovers -|turn|343 -|chat|chieliee|fuck this shit im out -|chat|Nachos|so many people mad at yungjake :( -|chat|Stone_Cold22|ur jsut not based enought o keep up w/ yung -| -|move|p2a: Gyarados|Waterfall|p1a: Skarmory -|-damage|p1a: Skarmory|240/334 -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Clefable|Clefable, M|243/394 -|-damage|p2a: Clefable|194/394|[from] Stealth Rock -| -|-heal|p1a: Skarmory|260/334|[from] item: Leftovers -|-heal|p2a: Clefable|218/394|[from] item: Leftovers -|turn|344 -|chat|Ginku|why would anyone be mad at yungjake -|chat|Nachos|idk -|chat|OU Mew|in-game battles of 400+ turns unlock Volcanion -| -|switch|p1a: Heatran|Heatran, M|361/385 -|move|p2a: Clefable|Wish|p2a: Clefable -| -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-heal|p2a: Clefable|242/394|[from] item: Leftovers -|turn|345 -|chat|Pwnemon|lol -|chat|Afro Smash|cuz theyre not as good as him -|chat|Pwnemon|ya thats it -|chat|MikeDecIsHere|ye -|chat|Pwnemon|lol -|chat|Soulgazer|so yung,, -|chat|Sapientia|why are there 2 mons dead if lb can stall for 100+ turns with the other 4 :hm: -|chat|Stone_Cold22|pwnemon -|chat|Laga|he disagreed with pwnemon on a subject yesterday -|chat|Stone_Cold22|when have you ever been relevent? -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Heatran|Roar|p2a: Clefable -|drag|p2a: Gyarados|Gyarados, F|311/394 -|-damage|p2a: Gyarados|213/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -| -|-heal|p2a: Gyarados|394/394|[from] move: Wish|[wisher] Clefable -|turn|346 -|chat|Stone_Cold22|im trying to recall -|chat|Stone_Cold22|:/ -|chat|Laga|that is why he hates him -|chat|MarceloDK|wtf -|chat|MikeDecIsHere|Stone -|chat|Soulgazer|lol -|chat|MikeDecIsHere|only for worst forum poster -|chat|Stone_Cold22|going hard -|chat|McMeghan|can you even legitimatly play 1 hour+ game on catridge? :O -|chat|MikeDecIsHere|that's about it -|chat|PKLaurel|Shots fired -|chat|Stone_Cold22|oh -| -|switch|p1a: Quagsire|Quagsire, M|372/393 -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|turn|347 -|chat|MarceloDK|did this roar just go through protect -|chat|PKLaurel|No you cant McMeghan -|chat|Stone_Cold22|mike thats where i recognized da name -|chat|Pwnemon|ow my heart -|chat|MarceloDK|?___? -|chat|Eo|yes marcy... -|chat|Soulgazer|marcy -|chat|PKLaurel|It ties -|chat|Pwnemon|dam -|chat|Afro Smash|wepwnpokemon > pwnemon -|chat|Soulgazer|new mechanics -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-crit|p1a: Quagsire -|-damage|p1a: Quagsire|255/393 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -| -|-heal|p1a: Quagsire|279/393|[from] item: Leftovers -|-damage|p2a: Gyarados|370/394 tox|[from] psn -|turn|348 -|chat|Eo|this is why you are playing adv -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|195/393 -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|392/393 -| -|-heal|p2a: Gyarados|394/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|393/393|[from] item: Leftovers -|-damage|p2a: Gyarados|346/394 tox|[from] psn -|turn|349 -|chat|Stone_Cold22|eo ut mortus -|chat|Stone_Cold22|big fan -| -|switch|p1a: Venusaur|Venusaur, M|364/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Gyarados|Earthquake|p1a: Venusaur -|-damage|p1a: Venusaur|237/364 -| -|-heal|p2a: Gyarados|370/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|298/394 tox|[from] psn -|turn|350 -|chat|PttP|0-2 duo of mareclo and eo -|chat|PttP|carry team -|chat|Soulgazer|now that hurts -| -|switch|p1a: Skarmory|Skarmory, F|260/334 -|move|p2a: Gyarados|Earthquake|p1a: Skarmory -|-immune|p1a: Skarmory|[msg] -| -|-heal|p2a: Gyarados|322/394 tox|[from] item: Leftovers -|-heal|p1a: Skarmory|280/334|[from] item: Leftovers -|-damage|p2a: Gyarados|226/394 tox|[from] psn -|turn|351 -|chat|dekzeh|:] -|chat|PKLaurel|is blisseys last aroma? -|chat|Eo|:] -|chat|Annoyer|y -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -| -|turn|352 -|chat|Pwnemon|no aroma here -|chat|MarceloDK|I'm 0-2 to support Eo -|chat|Pwnemon|lol -| -|switch|p1a: Skarmory|Skarmory, F|280/334 -|cant|p2a: Gyarados|slp -| -|-heal|p1a: Skarmory|300/334|[from] item: Leftovers -|turn|353 -|chat|Sapientia|marcelo just wins in play offs -|chat|Sapientia|fuck the rest -|chat|MarceloDK|otherwise we would be the only one that sucks -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Clefable|Clefable, M|242/394 -|-damage|p2a: Clefable|193/394|[from] Stealth Rock -| -|-heal|p1a: Skarmory|320/334|[from] item: Leftovers -|-heal|p2a: Clefable|217/394|[from] item: Leftovers -|turn|354 -|chat|MarceloDK|on the team -|chat|Sapientia|just like he starts playing tour in play offs -|chat|MarceloDK|o_o -|chat|Afro Smash|reveal the taunt -| -|move|p1a: Skarmory|Brave Bird|p2a: Clefable -|-damage|p2a: Clefable|123/394 -|-damage|p1a: Skarmory|289/334|[from] recoil|[of] p2a: Clefable -|move|p2a: Clefable|Wish|p2a: Clefable -| -|-heal|p1a: Skarmory|309/334|[from] item: Leftovers -|-heal|p2a: Clefable|147/394|[from] item: Leftovers -|turn|355 -|chat|Pwnemon|lol -| -|switch|p1a: Heatran|Heatran, M|385/385 -|move|p2a: Clefable|Moonblast|p1a: Heatran -|-resisted|p1a: Heatran -|-damage|p1a: Heatran|367/385 -| -|-heal|p2a: Clefable|344/394|[from] move: Wish|[wisher] Clefable -|-heal|p1a: Heatran|385/385|[from] item: Leftovers -|-heal|p2a: Clefable|368/394|[from] item: Leftovers -|turn|356 -|chat|Pwnemon|aw cm if real -|chat|Soulgazer|nice damage -|chat|OU Mew|normal gem hyper beam pls -|chat|Pwnemon|lol -|chat|Stone_Cold22|not real -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Heatran|Lava Plume|p2a: Clefable -|-activate|p2a: Clefable|Protect -| -|-heal|p2a: Clefable|392/394|[from] item: Leftovers -|turn|357 -| -|switch|p2a: Gyarados|Gyarados, F|394/394 slp -|-damage|p2a: Gyarados|296/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Heatran -|-unboost|p1a: Heatran|atk|1 -|move|p1a: Heatran|Lava Plume|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|242/394 slp -| -|-heal|p2a: Gyarados|266/394 slp|[from] item: Leftovers -|turn|358 -| -|switch|p1a: Quagsire|Quagsire, M|393/393 -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Earthquake|p1a: Quagsire -|-damage|p1a: Quagsire|314/393 -| -|-heal|p2a: Gyarados|290/394|[from] item: Leftovers -|-heal|p1a: Quagsire|338/393|[from] item: Leftovers -|turn|359 -|chat|Mr.E|WHY IS THIS GAME SO LONG -|chat|Pwnemon|lol -|chat|Pwnemon|when a gscer says it -|chat|MikeDecIsHere|don't you play GSC? -|chat|Pwnemon|u know its ridiculous -| -|switch|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -|move|p1a: Quagsire|Scald|p2a: Blissey -|-damage|p2a: Blissey|556/688 -| -|-heal|p2a: Blissey|599/688|[from] item: Leftovers -|-heal|p1a: Quagsire|362/393|[from] item: Leftovers -|turn|360 -|chat|Soulgazer|where's the burn -|chat|Soulgazer|:( -| -|switch|p1a: Gliscor|Gliscor, M|341/353 tox -|move|p2a: Blissey|Toxic|p1a: Gliscor -|-fail|p1a: Gliscor|tox -| -|-heal|p2a: Blissey|642/688|[from] item: Leftovers -|-heal|p1a: Gliscor|353/353 tox|[from] ability: Poison Heal -|turn|361 -|chat|Aqualouis|o -|chat|Aqualouis|this is not over -|chat|Mr.E|chansey v blissey -| -|move|p1a: Gliscor|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|253/353 tox -| -|-heal|p2a: Blissey|685/688 tox|[from] item: Leftovers -|-heal|p1a: Gliscor|297/353 tox|[from] ability: Poison Heal -|-damage|p2a: Blissey|642/688 tox|[from] psn -|turn|362 -|chat|Sir|last mon gyarados wins -|chat|Sir|i reckon -|chat|Sir|could go either way -| -|switch|p2a: Clefable|Clefable, M|392/394 -|-damage|p2a: Clefable|343/394|[from] Stealth Rock -|move|p1a: Gliscor|Earthquake|p2a: Clefable -|-damage|p2a: Clefable|238/394 -| -|-heal|p2a: Clefable|262/394|[from] item: Leftovers -|-heal|p1a: Gliscor|341/353 tox|[from] ability: Poison Heal -|turn|363 -|chat|PKLaurel|it depends -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Gliscor|Toxic|p2a: Clefable -|-activate|p2a: Clefable|Protect -| -|-heal|p2a: Clefable|286/394|[from] item: Leftovers -|-heal|p1a: Gliscor|353/353 tox|[from] ability: Poison Heal -|turn|364 -| -|move|p1a: Gliscor|Toxic|p2a: Clefable -|-status|p2a: Clefable|tox -|move|p2a: Clefable|Calm Mind|p2a: Clefable -|-boost|p2a: Clefable|spa|1 -|-boost|p2a: Clefable|spd|1 -| -|-heal|p2a: Clefable|310/394 tox|[from] item: Leftovers -|-damage|p2a: Clefable|286/394 tox|[from] psn -|turn|365 -|chat|PKLaurel|i think quag beats it if it has more recovers than gyara rests -| -|switch|p1a: Heatran|Heatran, M|385/385 -|switch|p2a: Blissey|Blissey, F|642/688 -|-damage|p2a: Blissey|556/688|[from] Stealth Rock -| -|-heal|p2a: Blissey|599/688|[from] item: Leftovers -|turn|366 -| -|move|p2a: Blissey|Seismic Toss|p1a: Heatran -|-damage|p1a: Heatran|285/385 -|move|p1a: Heatran|Roar|p2a: Blissey -|drag|p2a: Clefable|Clefable, M|286/394 tox -|-damage|p2a: Clefable|237/394 tox|[from] Stealth Rock -| -|-heal|p1a: Heatran|309/385|[from] item: Leftovers -|-heal|p2a: Clefable|261/394 tox|[from] item: Leftovers -|-damage|p2a: Clefable|237/394 tox|[from] psn -|turn|367 -|chat|Mr.E|if this was GSC -|chat|Mr.E|this heatran would have explosion -|chat|Pwnemon|lol -| -|move|p1a: Heatran|Lava Plume|p2a: Clefable -|-damage|p2a: Clefable|113/394 tox -|move|p2a: Clefable|Wish|p2a: Clefable -| -|-heal|p1a: Heatran|333/385|[from] item: Leftovers -|-heal|p2a: Clefable|137/394 tox|[from] item: Leftovers -|-damage|p2a: Clefable|89/394 tox|[from] psn -|turn|368 -|chat|Pwnemon|or dpp -|chat|Sir|n -|chat|george182|if this was gac -|chat|MarceloDK|ugh -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Heatran|Roar|p2a: Clefable -|drag|p2a: Blissey|Blissey, F|599/688 -|-damage|p2a: Blissey|513/688|[from] Stealth Rock -| -|-heal|p2a: Blissey|688/688|[from] move: Wish|[wisher] Clefable -|-heal|p1a: Heatran|357/385|[from] item: Leftovers -|turn|369 -|chat|george182|thered be no heatran -|chat|MarceloDK|death -|chat|Pwnemon|oh shit -|chat|MarceloDK|nice shitass new mecanics -|chat|MarceloDK|:( -| -|switch|p1a: Chansey|Chansey, F|619/660 -|move|p2a: Blissey|Seismic Toss|p1a: Chansey -|-damage|p1a: Chansey|519/660 -| -|turn|370 -|chat|Mr.E|awesome new mechanics* -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|588/688 -| -|-heal|p2a: Blissey|631/688|[from] item: Leftovers -|-damage|p1a: Chansey|478/660 tox|[from] psn -|turn|371 -| -|switch|p2a: Gyarados|Gyarados, F|290/394 -|-damage|p2a: Gyarados|192/394|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Chansey -|-unboost|p1a: Chansey|atk|1 -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -| -|-heal|p2a: Gyarados|216/394|[from] item: Leftovers -|turn|372 -|chat|Mr.E|literally chansey and blissey -|chat|Afro Smash|the damage -|chat|Mr.E|fucking seismic tossing each other -|chat|MarceloDK|mr.e always uses machamp -|chat|MarceloDK|yn -|chat|Pwnemon|lol -| -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -|move|p1a: Venusaur|Sludge Bomb|p2a: Gyarados -|-damage|p2a: Gyarados|98/394 -|-status|p2a: Gyarados|psn -| -|-heal|p2a: Gyarados|122/394 psn|[from] item: Leftovers -|-damage|p2a: Gyarados|73/394 psn|[from] psn -|turn|373 -|chat|Pwnemon|rest time -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Venusaur|Sludge Bomb|p2a: Gyarados -|-damage|p2a: Gyarados|265/394 slp -| -|-heal|p2a: Gyarados|289/394 slp|[from] item: Leftovers -|turn|374 -|chat|PKLaurel|crit once -|chat|Soulgazer|can i see -|chat|Soulgazer|a crit sludge -| -|switch|p2a: Blissey|Blissey, F|631/688 -|-damage|p2a: Blissey|545/688|[from] Stealth Rock -|switch|p1a: Skarmory|Skarmory, F|309/334 -| -|-heal|p1a: Skarmory|329/334|[from] item: Leftovers -|-heal|p2a: Blissey|588/688|[from] item: Leftovers -|turn|375 -|chat|Soulgazer|:] -|chat|Mr.E|needs more leech seed -|chat|Mr.E|both these teams even have skarmory -|chat|Mr.E|fuck -|chat|Pwnemon|stall whitout skarm -| -|switch|p1a: Gliscor|Gliscor, M|353/353 tox -|move|p2a: Blissey|Seismic Toss|p1a: Gliscor -|-damage|p1a: Gliscor|253/353 tox -| -|-heal|p2a: Blissey|631/688|[from] item: Leftovers -|-heal|p1a: Gliscor|297/353 tox|[from] ability: Poison Heal -|turn|376 -|chat|Pwnemon|isnt a thing -|chat|Pwnemon|ever -|chat|PKLaurel|yes it is -|chat|Pwnemon|lol -|chat|PKLaurel|theres a bird called mandibuzz -| -|switch|p2a: Gyarados|Gyarados, F|289/394 slp -|-damage|p2a: Gyarados|191/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Gliscor -|-unboost|p1a: Gliscor|atk|1 -|move|p1a: Gliscor|Protect|p1a: Gliscor -|-fail|p1a: Gliscor -| -|-heal|p2a: Gyarados|215/394 slp|[from] item: Leftovers -|-heal|p1a: Gliscor|341/353 tox|[from] ability: Poison Heal -|turn|377 -|chat|Pwnemon|right -| -|switch|p1a: Skarmory|Skarmory, F|329/334 -|cant|p2a: Gyarados|slp -| -|-heal|p2a: Gyarados|239/394 slp|[from] item: Leftovers -|-heal|p1a: Skarmory|334/334|[from] item: Leftovers -|turn|378 -|chat|PKLaurel|eq -|chat|OU Mew|Gourgeist would have rekt here -| -|cant|p2a: Gyarados|slp -|move|p1a: Skarmory|Whirlwind|p2a: Gyarados -|drag|p2a: Nidoqueen|Nidoqueen, F|156/384 -|-damage|p2a: Nidoqueen|132/384|[from] Stealth Rock -| -|-heal|p2a: Nidoqueen|156/384|[from] item: Leftovers -|turn|379 -|chat|Mr.E|gourgeist is unstoppable -|chat|Arcticblast|Taunt DD Gyarados would have ended this turn 60 -| -|switch|p1a: Gliscor|Gliscor, M|341/353 tox -|move|p2a: Nidoqueen|Flamethrower|p1a: Gliscor -|-damage|p1a: Gliscor|243/353 tox -| -|-heal|p2a: Nidoqueen|180/384|[from] item: Leftovers -|-heal|p1a: Gliscor|287/353 tox|[from] ability: Poison Heal -|turn|380 -|chat|boudouche|ROFL -|chat|boudouche|WTF -|chat|Stone_Cold22|articblast -|chat|Stone_Cold22|quagsire scald? -|chat|boudouche|379 turns ? x.x -|chat|MikeDecIsHere|Quag -|chat|MikeDecIsHere|moron -|chat|MikeDecIsHere|:| -|chat|Pwnemon|lol -|chat|Stone_Cold22|fucking idiot -|chat|Soulgazer|oui boud -|chat|Snunch|basically anything with taunt would have ended the game a long time ago -|chat|Soulgazer|Oo -|chat|PttP|moron -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|switch|p2a: Gyarados|Gyarados, F|239/394 slp -|-damage|p2a: Gyarados|141/394 slp|[from] Stealth Rock -|-ability|p2a: Gyarados|Intimidate|[of] p1a: Venusaur -|-unboost|p1a: Venusaur|atk|1 -| -|-heal|p2a: Gyarados|165/394 slp|[from] item: Leftovers -|turn|381 -|chat|Stone_Cold22|oui oui -|chat|MikeDecIsHere|ily still though -|chat|MarceloDK|its taunt dd subs -|chat|Annoyer|mega gyara would have -|chat|MarceloDK|you FOOLS -|chat|Mr.E|anything with explosion would've ended the game a long time ago -| -|switch|p2a: Blissey|Blissey, F|631/688 -|-damage|p2a: Blissey|545/688|[from] Stealth Rock -|move|p1a: Venusaur|Sludge Bomb|p2a: Blissey -|-damage|p2a: Blissey|448/688 -|-status|p2a: Blissey|psn -| -|-heal|p2a: Blissey|491/688 psn|[from] item: Leftovers -|-damage|p2a: Blissey|405/688 psn|[from] psn -|turn|382 -|chat|Soulgazer|marcy,, -|chat|Afro Smash|the crit -|chat|DTC|oh shit -|chat|THE_IRON_KENYAN|hon hon hon -|chat|Pwnemon|the psn -| -|switch|p1a: Chansey|Chansey, F|478/660 -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -| -|-heal|p2a: Blissey|448/688|[from] item: Leftovers -|turn|383 -|chat|Afro Smash|got him on the ropes!! -|chat|PttP|intense -|chat|Soulgazer|omelette du fromage -|chat|Pwnemon|last aroma? -| -|move|p2a: Blissey|Toxic|p1a: Chansey|[miss] -|-miss|p2a: Blissey|p1a: Chansey -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|348/688 -| -|-heal|p2a: Blissey|391/688|[from] item: Leftovers -|turn|384 -|chat|Stone_Cold22|could this be -|chat|Stone_Cold22|the longest 6-0 ever? -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Blissey|Toxic|p1a: Venusaur -|-fail|p1a: Venusaur -| -|-heal|p2a: Blissey|434/688|[from] item: Leftovers -|turn|385 -|chat|Pwnemon|lol -| -|switch|p1a: Chansey|Chansey, F|478/660 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 -| -|turn|386 -| -|move|p2a: Blissey|Toxic|p1a: Chansey -|-status|p1a: Chansey|tox -|move|p1a: Chansey|Toxic|p2a: Blissey -|-status|p2a: Blissey|tox -| -|-damage|p2a: Blissey|645/688 tox|[from] psn -|-damage|p1a: Chansey|437/660 tox|[from] psn -|turn|387 -|chat|Heist|lord elyis would have won 150 turns ago if he wasn't playing for the 6-0 #shameful -| -|switch|p2a: Clefable|Clefable, M|89/394 -|-damage|p2a: Clefable|40/394|[from] Stealth Rock -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -| -|-heal|p2a: Clefable|64/394|[from] item: Leftovers -|turn|388 -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-singleturn|p2a: Clefable|Protect -|move|p1a: Venusaur|Giga Drain|p2a: Clefable -|-activate|p2a: Clefable|Protect -| -|-heal|p2a: Clefable|88/394|[from] item: Leftovers -|turn|389 -|chat|Afro Smash|:] -|chat|Soulgazer|nicee -|chat|Pwnemon|lol -|chat|Soulgazer|:] -|chat|MarceloDK|how, kev? -|chat|MarceloDK|o.o -| -|move|p2a: Clefable|Protect|p2a: Clefable -|-fail|p2a: Clefable -|move|p1a: Venusaur|Sludge Bomb|p2a: Clefable -|-supereffective|p2a: Clefable -|-damage|p2a: Clefable|0 fnt -|faint|p2a: Clefable -| -|chat|Pwnemon|ooooooooo -|chat|Annoyer|6-3. -|chat|Stone_Cold22|xDDD -|chat|jumpluff|rip -|chat|Arcticblast|THIRD KILL -| -|switch|p2a: Blissey|Blissey, F|645/688 -|-damage|p2a: Blissey|559/688|[from] Stealth Rock -|turn|390 -|chat|Soulgazer|THIRD BLOOD -|chat|Afro Smash|king fuckin elyis -|chat|Pwnemon|game -| -|switch|p1a: Chansey|Chansey, F|437/660 -|switch|p2a: Nidoqueen|Nidoqueen, F|180/384 -|-damage|p2a: Nidoqueen|156/384|[from] Stealth Rock -| -|-heal|p2a: Nidoqueen|180/384|[from] item: Leftovers -|turn|391 -|chat|Pwnemon|over -|chat|the pdc show|300 is for 3 -| -|move|p2a: Nidoqueen|Toxic Spikes|p1a: Chansey -|-sidestart|p1: Lord Elyis|move: Toxic Spikes -|move|p1a: Chansey|Seismic Toss|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|80/384 -| -|-heal|p2a: Nidoqueen|104/384|[from] item: Leftovers -|turn|392 -|chat|Annoyer|n 389 for 3 -|chat|Texas Cloverleaf|elyis doesnt win without some very fortunate roar/ww rolls tho -|chat|Soulgazer|pdc -|chat|Soulgazer|do u mean -|chat|Annoyer|778 for 6 -| -|switch|p2a: Blissey|Blissey, F|559/688 -|-damage|p2a: Blissey|473/688|[from] Stealth Rock -|move|p1a: Chansey|Seismic Toss|p2a: Blissey -|-damage|p2a: Blissey|373/688 -| -|-heal|p2a: Blissey|416/688|[from] item: Leftovers -|turn|393 -|chat|Soulgazer|turn 400 is for 4th kill -|chat|Soulgazer|?! -|chat|the pdc show|yes -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-sideend|p1: Lord Elyis|move: Toxic Spikes|[of] p1a: Venusaur -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 -| -|turn|394 -|chat|the pdc show|it is prophesised -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|395 -|chat|OU Mew|2 kills within 100 turns insaaannee -|chat|the pdc show|prophesied -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|396 -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|397 -|chat|MarceloDK|._. -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|398 -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|399 -|chat|Stone_Cold22|xD -|chat|Mr.E|lady bug you should press the (x) at the top of the page -|chat|MarceloDK|why lady bug just doesn't forfeit -|chat|Mr.E|and save us all a whole lot of trouble -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|400 -|chat|Afro Smash|i cant think of anything id rather be doing with my time tbh -|chat|OU Mew|ctrl + Q -|chat|Annoyer|and himself -|chat|Mr.E|fucking picollo 2.0 right here -|chat|MarceloDK|which kind of sick person finds this funny -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-fail|p2a: Blissey -| -|turn|401 -|chat|MarceloDK|o.o -|chat|Pwnemon|le thug -|chat|LonelyNess|last mon gyara has the opportunity to crit flinch to victory -|chat|LonelyNess|so might as well take the chance -| -|switch|p2a: Nidoqueen|Nidoqueen, F|104/384 -|-damage|p2a: Nidoqueen|80/384|[from] Stealth Rock -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -| -|-heal|p2a: Nidoqueen|104/384|[from] item: Leftovers -|turn|402 -|chat|PttP|7 fnliches in a row -|chat|Hot N Cold|venusaur sludge bomb?? -|chat|MarceloDK|its needs 3 crit flinches -|chat|Annoyer|he only has like 7 waterfalls left -|chat|MarceloDK|LN -| -|switch|p2a: Blissey|Blissey, F|688/688 -|-damage|p2a: Blissey|602/688|[from] Stealth Rock -|move|p1a: Venusaur|Earthquake|p2a: Blissey -|-damage|p2a: Blissey|465/688 -| -|-heal|p2a: Blissey|508/688|[from] item: Leftovers -|turn|403 -|chat|Mr.E|if gyarados can even kill everything before running out of PP I'd be impressed -|chat|Annoyer|or some small number like that -|chat|MarceloDK|crit is only 1.5 now -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Soft-Boiled|p2a: Blissey -|-heal|p2a: Blissey|688/688 -| -|turn|404 -|chat|LonelyNess|MarceloDK, that is a non-zero chance to win -|chat|Mr.E|RIP -|chat|Hot N Cold|venusaur sludge bomb + no PP's lol -|chat|LonelyNess|might as well take it -|chat|Mr.E|Turn 404 -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -| -|turn|405 -| -|switch|p1a: Chansey|Chansey, F|437/660 -|move|p2a: Blissey|Aromatherapy|p2a: Blissey -|-cureteam|p2a: Blissey|[from] move: Aromatherapy -| -|turn|406 -|chat|Mr.E|pokemon battle not found -| -|switch|p1a: Venusaur|Venusaur, M|237/364 -|-formechange|p1a: Venusaur|Venusaur-Mega -|-activate|p2a: Blissey|move: Struggle -|move|p2a: Blissey|Struggle|p1a: Venusaur -|-damage|p1a: Venusaur|229/364 -|-damage|p2a: Blissey|516/688 -| -|-heal|p2a: Blissey|559/688|[from] item: Leftovers -|turn|407 -|chat|jumpluff|! -|chat|Afro Smash|the struggle is real -| -|switch|p1a: Gliscor|Gliscor, M|287/353 tox -|-activate|p2a: Blissey|move: Struggle -|move|p2a: Blissey|Struggle|p1a: Gliscor -|-damage|p1a: Gliscor|282/353 tox -|-damage|p2a: Blissey|387/688 -| -|-heal|p2a: Blissey|430/688|[from] item: Leftovers -|-heal|p1a: Gliscor|326/353 tox|[from] ability: Poison Heal -|turn|408 -|chat|PttP|ooh kill em -|chat|jumpluff|lmao -|chat|Annoyer|damn -|chat|OU Mew|most damage on blissey whole game -|chat|Soulgazer|:] -| -|move|p1a: Gliscor|Substitute|p1a: Gliscor -|-start|p1a: Gliscor|Substitute -|-damage|p1a: Gliscor|238/353 tox -|-activate|p2a: Blissey|move: Struggle -|move|p2a: Blissey|Struggle|p1a: Gliscor -|-activate|p1a: Gliscor|Substitute|[damage] -|-damage|p2a: Blissey|258/688 -| -|-heal|p2a: Blissey|301/688|[from] item: Leftovers -|-heal|p1a: Gliscor|282/353 tox|[from] ability: Poison Heal -|turn|409 -| -|move|p1a: Gliscor|Earthquake|p2a: Blissey -|-damage|p2a: Blissey|93/688 -|-activate|p2a: Blissey|move: Struggle -|move|p2a: Blissey|Struggle|p1a: Gliscor -|-activate|p1a: Gliscor|Substitute|[damage] -|-damage|p2a: Blissey|0 fnt -|faint|p2a: Blissey -| -|-heal|p1a: Gliscor|326/353 tox|[from] ability: Poison Heal -|chat|Sir|imagine ladybug wins -|chat|Pwnemon|lol -|chat|Afro Smash|no -|chat|Mr.E|spoilers: lady bug loses -| -|switch|p2a: Nidoqueen|Nidoqueen, F|104/384 -|-damage|p2a: Nidoqueen|80/384|[from] Stealth Rock -|turn|410 -|chat|Ginku|yea -|chat|Ginku|imagine. -|chat|Mr.E|hey that's a real tag wtf -|chat|Annoyer|woah how do you do that -| -|move|p1a: Gliscor|Earthquake|p2a: Nidoqueen -|-supereffective|p2a: Nidoqueen -|-damage|p2a: Nidoqueen|0 fnt -|faint|p2a: Nidoqueen -| -|-heal|p1a: Gliscor|353/353 tox|[from] ability: Poison Heal -|chat|Treecko|lol -|chat|jdarden|lol yeah -|chat|Annoyer|spoilers: =) -|chat|Soulgazer|ah not bad -| -|switch|p2a: Gyarados|Gyarados, F|165/394 -|-damage|p2a: Gyarados|67/394|[from] Stealth Rock -|-activate|p1a: Gliscor|Substitute|ability: Intimidate|[of] p2a: Gyarados -|turn|411 -|chat|MikeDecIsHere|Spoilers: spoilers does that -|chat|Treecko|it's just "spoilers: text" -|chat|Treecko|oh -|chat|Treecko|oops -|chat|Soulgazer|spoilers: paco -| -|move|p1a: Gliscor|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -|move|p2a: Gyarados|Dragon Dance|p2a: Gyarados -|-boost|p2a: Gyarados|atk|1 -|-boost|p2a: Gyarados|spe|1 -| -|-heal|p2a: Gyarados|91/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|67/394 tox|[from] psn -|turn|412 -|chat|PttP|spoilers: eo is a faggot -|chat|Mr.E|spoilers: spoilers: spoilers: -|chat|Blue Eon|:a: -|chat|PttP|well i guess it wasnt that secret -|chat|Blue Eon|fuck tha -|chat|Blue Eon|t -|chat|Annoyer|new spectator secret. -|chat|Pwnemon|lol -|chat|Texas Cloverleaf|spoilers: test -| -|switch|p1a: Quagsire|Quagsire, M|362/393 -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|263/393 -| -|-heal|p2a: Gyarados|91/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|287/393|[from] item: Leftovers -|-damage|p2a: Gyarados|43/394 tox|[from] psn -|turn|413 -|chat|MikeDecIsHere|Texas -|chat|MikeDecIsHere|youre a PS mod -|chat|Pwnemon|spoiler: game over -|chat|Arcticblast|test in lobby :| -|chat|MikeDecIsHere|and you didn't know that? -|chat|MikeDecIsHere|lol -|chat|jdarden|see this is why we took it away from ps -|chat|Soulgazer|Mr. Quag -|chat|Texas Cloverleaf|i knew it -| -|move|p2a: Gyarados|Rest|p2a: Gyarados -|-status|p2a: Gyarados|slp -|-heal|p2a: Gyarados|394/394 slp|[silent] -|-status|p2a: Gyarados|slp|[from] move: Rest -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p1a: Quagsire|311/393|[from] item: Leftovers -|turn|414 -|chat|Texas Cloverleaf|i just never remembered the syntax -|chat|Arcticblast|LAST REST OF THE GAME -|chat|OU Mew|spoiler: d'oh -| -|cant|p2a: Gyarados|slp -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p1a: Quagsire|335/393|[from] item: Leftovers -|turn|415 -|chat|Afro Smash|spoiler: free sinclair -|chat|Sir|articblast -|chat|Sir|did u account for pp max -| -|cant|p2a: Gyarados|slp -|move|p1a: Quagsire|Earthquake|p2a: Gyarados -|-immune|p2a: Gyarados|[msg] -| -|-heal|p1a: Quagsire|359/393|[from] item: Leftovers -|turn|416 -|chat|Arcticblast|yes -| -|-curestatus|p2a: Gyarados|slp -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|274/393 -|move|p1a: Quagsire|Toxic|p2a: Gyarados -|-status|p2a: Gyarados|tox -| -|-heal|p1a: Quagsire|298/393|[from] item: Leftovers -|-damage|p2a: Gyarados|370/394 tox|[from] psn -|turn|417 -|chat|Pwnemon|damn -|chat|Pwnemon|thats big -|chat|Sir|nice -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|210/393 -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 -| -|-heal|p2a: Gyarados|394/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|346/394 tox|[from] psn -|turn|418 -|chat|Mr.E|FREE SINCLAIR -|chat|Soulgazer|amazing 6-0 -|chat|Stone_Cold22|lady_bro playing it out anywy -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|306/393 -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|313/394 tox -| -|-heal|p2a: Gyarados|337/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|330/393|[from] item: Leftovers -|-damage|p2a: Gyarados|265/394 tox|[from] psn -|turn|419 -|chat|Nachos|Free Sinclair. -|chat|Arcticblast|well I think it's the last rest -|chat|Blue Eon|spoiler: gay -|chat|Soulgazer|agreeing with mre -|chat|Arcticblast|idk -|chat|Mr.E|more like lady_bitch -|chat|Soulgazer|free my boy sinclair -|chat|Hot N Cold|spoilers: lmao -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|240/393 -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 -| -|-heal|p2a: Gyarados|289/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|193/394 tox|[from] psn -|turn|420 -|chat|Mr.E|wasting time -|chat|Mr.E|like a bitch -|chat|Nachos|give sinclair his spl experience :[ -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|293/393 -|move|p1a: Quagsire|Scald|p2a: Gyarados -|-resisted|p2a: Gyarados -|-damage|p2a: Gyarados|163/394 tox -| -|-heal|p2a: Gyarados|187/394 tox|[from] item: Leftovers -|-heal|p1a: Quagsire|317/393|[from] item: Leftovers -|-damage|p2a: Gyarados|67/394 tox|[from] psn -|turn|421 -|chat|Stone_Cold22|spoilers: ggwp -|chat|Lady bug|gg -|chat|Lord Elyis|gg -| -|move|p2a: Gyarados|Waterfall|p1a: Quagsire -|-damage|p1a: Quagsire|221/393 -|move|p1a: Quagsire|Recover|p1a: Quagsire -|-heal|p1a: Quagsire|393/393 -| -|-heal|p2a: Gyarados|91/394 tox|[from] item: Leftovers -|-damage|p2a: Gyarados|0 fnt|[from] psn -|faint|p2a: Gyarados -| -|win|Lord Elyis -|chat|Nachos|gg -|chat|Sir|gg -|chat|Annoyer|almost 420 -|chat|Aqualouis|it's not 6/0 -|chat|Soulgazer|! -|player|p2 -|chat|Aqualouis|it's 6 awww diff --git a/old-replays/search.json.php b/old-replays/search.json.php deleted file mode 100644 index 38124a0a2..000000000 --- a/old-replays/search.json.php +++ /dev/null @@ -1,51 +0,0 @@ -userid($username); -$isPrivateAllowed = ($username === $curuser['userid'] || $curuser['userid'] === 'zarel'); -if ($isPrivate && !$isPrivateAllowed) { - die('"ERROR: access denied"'); -} - -$page = intval($_REQUEST['page'] ?? 0); - -$replays = null; -if ($page > 25) { - die('"ERROR: page limit is 25"'); -} else if ($username || $format) { - $replays = $Replays->search([ - "username" => $username, - "username2" => $username2, - "format" => $format, - "byRating" => $byRating, - "isPrivate" => $isPrivate, - "page" => $page - ]); -} else if ($contains) { - $replays = $Replays->fullSearch($contains, $page); -} else { - $replays = $Replays->recent(); -} - -if ($replays) { - foreach ($replays as &$replay) { - if ($replay['password'] ?? null) { - $replay['id'] .= '-' . $replay['password']; - } - unset($replay['password']); - } -} - -echo json_encode($replays); diff --git a/old-replays/search.php b/old-replays/search.php deleted file mode 100644 index ef191053b..000000000 --- a/old-replays/search.php +++ /dev/null @@ -1,277 +0,0 @@ -setPageTitle($username."'s replays"); -} else if ($format) { - $panels->setPageTitle($username." replays"); -} else { - $panels->setPageTitle("Search replays"); -} -$panels->setTab('replay'); -$panels->start(); - -$page = 0; -if (@$_REQUEST['page']) $page = intval($_REQUEST['page']); - -if (!$page) { -?> -
- -

Search replays

-
-

- - -

-
-
-

- - -

-
- -

Experimental full-text search

-
-

- - -

-
-userid($username); - $isPrivateAllowed = ($username === $curuser['userid'] || $curuser['userid'] === 'zarel'); - - if (!$page) { -?> -

Search results for ""

-toID($format); -?> - - - - - - -

-'; - if ($count === 51) { - echo ''; - } - } -} - -if (!$page) { -?> -
- -end(); - -?>