CINXE.COM

The Stinger - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "a1fdc3097a55e179219cd1bf535ab41b48dc60da", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; // Check to see if this page is isolated, if so, run BCLighthouseTag.disableGoogleAdManager(); if(window.site_htl_settings.adx == "no"){ console.log("disabling google"); BCLighthouseTag.cmd.push(() => { BCLighthouseTag.disableGoogleAdManager(); }); } </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>The Stinger - TV Tropes</title> <meta name="description" content="The Stinger trope as used in popular culture. A name for any post-credits scene. It's often used as a type of Easter Egg for people who stick around for the &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/TheStinger" /> <link rel="shortcut icon" href="https://assets.tvtropes.org/img/icons/favicon.ico" type="image/x-icon" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@tvtropes" /> <meta name="twitter:owner" content="@tvtropes" /> <meta name="twitter:title" content="The Stinger - TV Tropes" /> <meta name="twitter:description" content="The Stinger trope as used in popular culture. A name for any post-credits scene. It's often used as a type of Easter Egg for people who stick around for the &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/avengers_credits.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="The Stinger - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/TheStinger" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/avengers_credits.png" /> <meta property="og:description" content="A name for any post-credits scene. It's often used as a type of Easter Egg for people who stick around for the credits when most people had left the theater/changed the channel. Sometimes a comedy will include outtakes. Sometimes the outtakes can &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/MilitaryMage" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Series/Pandora" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, oauth_finalize, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (oauth_finalize ? '&oauth_finalize=' + encodeURIComponent(oauth_finalize) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]:not(#signup-form-toggles a)'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTargetId = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); const isExclusive = targetWithToggleTarget.getAttribute('data-click-toggle-exclusive') === 'true'; if (isExclusive) { // Exclusive mode: toggle target and clear siblings const toggleTarget = document.getElementById(toggleTargetId); if (toggleTarget) { // Remove the toggle class from all siblings const siblings = Array.from(toggleTarget.parentNode.children); for (let sibling of siblings) { if (sibling !== toggleTarget) { sibling.classList.remove(toggleClass); } } // Add the toggle class to the target element toggleTarget.classList.add(toggleClass); } } else { // Non-exclusive mode: toggle targets normally if (toggleTargetId.indexOf(',') > -1) { const targets = toggleTargetId.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTargetId).forEach(el => { el.classList.toggle(toggleClass); }); } } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/TheStinger?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/TheStinger"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.TheStinger" data-modal-target="login" rel="nofollow"> <i class="fa fa-history"></i> History</a></li><li class="link-discussion"><a href="/pmwiki/remarks.php?trope=Main.TheStinger" data-modal-target="login" rel="nofollow"> <i class="fa fa-comment"></i> Discussion</a></li><li class="link-todo tuck-always"><a href="#todo" data-modal-target="login" rel="nofollow"><i class="fa fa-check-circle"></i> To Do</a></li> </ul> <button id="top_more_button" onclick="toggle_more_menu('top');" type="button" class="nav__dropdown-toggle">More</button> <ul id="top_more_list" class="more_menu hidden_more_list"> <li class="link-pageSource tuck-always more_list_item"><a href="/pmwiki/pmwiki.php/Main/TheStinger?action=source" target="_blank" rel="nofollow"data-modal-target= "login"><i class="fa fa-code"></i> Page Source</a></li> </ul> </nav> <div class="WikiWordModalStub"></div> <div class="ImgUploadModalStub" data-page-type="Article"></div> <div class="login-alert" style="display: none;"> You need to <a href="/pmwiki/login.php" style="color:#21A0E8">login</a> to do this. <a href="/pmwiki/login.php?tab=register_account" style="color:#21A0E8">Get Known</a> if you don't have an account </div> </div> <div id="main-content" class="page-Article "> <article id="main-entry" class="with-sidebar"> <!-- HIDDEN INPUTS FOR JS --> <input type="hidden" id="groupname-hidden" value="Main"/> <input type="hidden" id="title-hidden" value="TheStinger"/> <input type="hidden" id="article_id" value="7030" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/TheStinger</p> <meta itemprop="datePublished" content=""/> <meta itemprop="articleSection" content="" /> <meta itemprop="image" content=""> <div class="watch_rank_wrap"> <a href="#watch" class="watch-button " data-modal-target="login" >Follow<span>ing</span></a> </div> <h1 itemprop="headline" class="entry-title"> The Stinger </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Tropes" },{ "@type": "ListItem", "position": 3, "name": "The Stinger", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/TheStinger" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "The Stinger", "headline": "The Stinger", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/TheStinger", "image": "https://static.tvtropes.org/pmwiki/pub/images/avengers_credits.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2007-10-07T00:00:00-07:00", "dateModified": "2025-01-23T21:23:32-08:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/TheStinger" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Laconic/TheStinger" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/TheStinger" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/PlayingWith/TheStinger" class="subpage-link " title="The PlayingWith page"> <span class="wrapper">PlayingWith</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/TheStinger" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/TheStinger?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/TheStinger?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/TheStinger?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/TheStinger?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/TheStinger?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/TheStinger?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/TheStinger?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/TheStinger?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/TheStinger?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/TheStinger?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/TheStinger?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/TheStinger?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/TheStinger?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/TheStinger?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/TheStinger?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/TheStinger?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/TheStinger?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/TheStinger?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/TheStinger?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/TheStinger?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/TheStinger?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/TheStinger?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/TheStinger?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/TheStinger?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/TheStinger?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/TheStinger?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!-- Image selected via crowner in the Image Suggestion thread: https://tvtropes.org/pmwiki/crowner.php/ImagePickin/ImageSuggestions81--> <!-- Previous thread: https://tvtropes.org/pmwiki/posts.php?discussion=1305301041050037400--> <!-- Please do not change or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheAvengers2012' title='/pmwiki/pmwiki.php/Film/TheAvengers2012' data-format='W1tGaWxtL1RoZUF2ZW5nZXJzMjAxMiBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvYXZlbmdlcnNfY3JlZGl0cy5wbmddXQ=='><div class="lazy_load_img_box" style="padding-top:118%"><img src='https://static.tvtropes.org/pmwiki/pub/images/avengers_credits.png' class='embeddedimage' border='0' alt='The Stinger (trope)' width=350 height=413></div></a></div> <div class="acaptionright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SavingTheWorld' title='/pmwiki/pmwiki.php/Main/SavingTheWorld' data-format='U2F2aW5nVGhlV29ybGQ='>Saving the World</a> is tiresome, now it's time for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoodEnd' title='/pmwiki/pmwiki.php/Main/FoodEnd' data-format='W1tGb29kRW5kIHNoYXdhcm1hIV1d'>shawarma!</a></div> <!--&#010;--> <!-- Caption selected per IP thread above. Please do not remove or replace without discussion here: https://tvtropes.org/pmwiki/posts.php?discussion=1404492079030138900--> <!--&#010;--> <div class='indent'><strong>Scott Meyer:</strong> Some movies have an extra scene after the credits.<br data-format="\\" /><strong>Friend:</strong> Mainly superhero movies and dumb comedies.<br data-format="\\" /><strong>Scott Meyer:</strong> You're right, <em><strong>most</strong></em> movies have an extra scene. <div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/BasicInstructions' title='/pmwiki/pmwiki.php/Webcomic/BasicInstructions' data-format='V2ViY29taWMvQmFzaWNJbnN0cnVjdGlvbnM='>Basic Instructions</a></em>, <a class='urllink' href='http://basicinstructions.net/basic-instructions/2011/3/6/how-to-synergize.html'>"How to Synergize"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </div></div></p><p>A name for any post-credits scene. It's often used as a type of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EasterEgg' title='/pmwiki/pmwiki.php/Main/EasterEgg' data-format='RWFzdGVyRWdn'>Easter Egg</a> for people who stick around for the credits when most people had left the theater/changed the channel. Sometimes a comedy will include outtakes. Sometimes the outtakes can be better than the movie. </p><p>This is often used to provide some kind of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook' data-format='U2VxdWVsSG9vaw=='>Sequel Hook</a>, but may also be there just as a final gift to the audience, such as a comedy giving one final joke and punchline to the audience, or a dramatic work showing that maybe the guy who made a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeroicSacrifice' title='/pmwiki/pmwiki.php/Main/HeroicSacrifice' data-format='SGVyb2ljU2FjcmlmaWNl'>Heroic Sacrifice</a> is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotQuiteDead' title='/pmwiki/pmwiki.php/Main/NotQuiteDead' data-format='Tm90UXVpdGVEZWFk'>Not Quite Dead</a>. </p><p>Often done as a form of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThatsAllFolks' title='/pmwiki/pmwiki.php/Main/ThatsAllFolks' data-format='VGhhdHNBbGxGb2xrcw=='>That's All, Folks!</a>. It can overlap with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreativeClosingCredits' title='/pmwiki/pmwiki.php/Main/CreativeClosingCredits' data-format='Q3JlYXRpdmVDbG9zaW5nQ3JlZGl0cw=='>Creative Closing Credits</a>, if the format of the credits almost constitutes a special production in and of itself. </p><p><a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllThereInTheStinger' title='/pmwiki/pmwiki.php/Main/AllThereInTheStinger' data-format='QWxsVGhlcmVJblRoZVN0aW5nZXI='>All There in the Stinger</a> is a sub-trope. Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SigningOffCatchPhrase' title='/pmwiki/pmwiki.php/Main/SigningOffCatchPhrase' data-format='U2lnbmluZ09mZkNhdGNoUGhyYXNl'>Signing-Off Catchphrase</a>. See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheTag' title='/pmwiki/pmwiki.php/Main/TheTag' data-format='VGhlVGFn'>The Tag</a>. Not to be confused with a musical <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Sting' title='/pmwiki/pmwiki.php/Main/Sting' data-format='e3tTdGluZ319'>Sting</a> (or a wrestling <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Sting' title='/pmwiki/pmwiki.php/Wrestling/Sting' data-format='V3Jlc3RsaW5nL3t7U3Rpbmd9fQ=='>Sting</a>), though a suitably dramatic Stinger will have a Sting. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheTeaser' title='/pmwiki/pmwiki.php/Main/TheTeaser' data-format='VGhlVGVhc2Vy'>The Teaser</a> works at the <em>opposite</em> end. See <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OnTheNext' title='/pmwiki/pmwiki.php/Main/OnTheNext' data-format='T25UaGVOZXh0'>On the Next</a> for when there's a preview of the next episode. Also not to be confused with the body part on the back of a bee, scorpion, or wasp. Or a boxing glove wrapped in barbed wire. </p><p><h2>This is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EndingTrope' title='/pmwiki/pmwiki.php/Main/EndingTrope' data-format='RW5kaW5nVHJvcGU='>Ending Trope</a>, so beware of unmarked spoilers!</h2> <hr data-format='&#8212;&#8212;' /> <h2>Example Subpages:</h2> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/AnimeAndManga' title='/pmwiki/pmwiki.php/TheStinger/AnimeAndManga' data-format='VGhlU3Rpbmdlci9BbmltZUFuZE1hbmdh'>Anime & Manga</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/FanWorks' title='/pmwiki/pmwiki.php/TheStinger/FanWorks' data-format='VGhlU3Rpbmdlci9GYW5Xb3Jrcw=='>Fan Works</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/AnimatedFilms' title='/pmwiki/pmwiki.php/TheStinger/AnimatedFilms' data-format='W1tUaGVTdGluZ2VyL0FuaW1hdGVkRmlsbXMgRmlsbXMg4oCUIEFuaW1hdGlvbl1d'>Films — Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/LiveActionFilms' title='/pmwiki/pmwiki.php/TheStinger/LiveActionFilms' data-format='W1tUaGVTdGluZ2VyL0xpdmVBY3Rpb25GaWxtcyBGaWxtcyDigJQgTGl2ZS1BY3Rpb25dXQ=='>Films — Live-Action</a> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/DCExtendedUniverse' title='/pmwiki/pmwiki.php/TheStinger/DCExtendedUniverse' data-format='W1tUaGVTdGluZ2VyL0RDRXh0ZW5kZWRVbml2ZXJzZSBEQyBFeHRlbmRlZCBVbml2ZXJzZV1d'>DC Extended Universe</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/MarvelCinematicUniverse' title='/pmwiki/pmwiki.php/TheStinger/MarvelCinematicUniverse' data-format='W1tUaGVTdGluZ2VyL01hcnZlbENpbmVtYXRpY1VuaXZlcnNlIE1hcnZlbCBDaW5lbWF0aWMgVW5pdmVyc2VdXQ=='>Marvel Cinematic Universe</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/XMenFilmSeries' title='/pmwiki/pmwiki.php/TheStinger/XMenFilmSeries' data-format='W1tUaGVTdGluZ2VyL1hNZW5GaWxtU2VyaWVzIFgtTWVuIEZpbG0gU2VyaWVzXV0='>X-Men Film Series</a> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/LiveActionTV' title='/pmwiki/pmwiki.php/TheStinger/LiveActionTV' data-format='VGhlU3Rpbmdlci9MaXZlQWN0aW9uVFY='>Live-Action TV</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/VideoGames' title='/pmwiki/pmwiki.php/TheStinger/VideoGames' data-format='VGhlU3Rpbmdlci9WaWRlb0dhbWVz'>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TheStinger/WesternAnimation' title='/pmwiki/pmwiki.php/TheStinger/WesternAnimation' data-format='VGhlU3Rpbmdlci9XZXN0ZXJuQW5pbWF0aW9u'>Western Animation</a> </li></ul><!&#8212;/index&#8212;> </p><p><h2>Other Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Advertising&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Lalaloopsy' title='/pmwiki/pmwiki.php/Toys/Lalaloopsy' data-format='VG95cy97e0xhbGFsb29wc3l9fQ=='>Lalaloopsy</a> commercials always have one last scene after the "Each sold seperately" screen, usually with the actresses demonstrating the toy saying a phrase related to the product. <ul ><li> "Sweet!" - Generation 1 commercial </li><li> "Ooh la la!" - First Mini commercial </li><li> "Voila!" - First Silly Hair commercial </li><li> "Tree-mendous!" - Mini Treehouse commercial </li><li> "Lala-road trip!" - Sew Sweet Playhouse commercial </li><li> "Hair-riffic!" - Second Silly Hair commercial </li><li> "It's a snap!" - Littles Silly Hair commercial </li><li> "Fin-tastic!" - Sew Magical Mermaid commercial </li><li> "Born to be Loopsy!" - Lalaloopsy Scooter commercial </li><li> "Lala-funtastic!" - Mini Silly Fun House commercial </li><li> "Lala-all better!" - Sew Cute Patient commercial </li><li> "Oopsie!" - Lala-Oopsies commercials </li><li> "Do you like it? It's loopy!" - Loopy Hair commercials </li><li> "I made it myself!" - Lalaloopsy Workshop commercial </li><li> "Bubble-do!" - Bubbly Mermaid commercial </li><li> "Haha, baby!" - Lalaloopsy Babies commercial </li><li> "Charming!" - Diaper Surprise commercial </li><li> "It's a splash!" - Babies Mermaid commercial </li><li> "You can learn to dance!" - Dance with Me commercial </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Audio Plays&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> The season 2 finale of <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/WereAlive' title='/pmwiki/pmwiki.php/AudioPlay/WereAlive' data-format='QXVkaW9QbGF5L1dlcmVBbGl2ZQ=='>We're Alive</a></em> features a post-credits piece that the reveals the Mallers found someone in the rubble of Tower. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' title='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' data-format='QXVkaW9QbGF5L0JpZ0ZpbmlzaERvY3Rvcldobw=='>Big Finish Doctor Who</a></em> audio <em>The Book of Kells</em> has a post credits sequence revealing <span class="spoiler" title="you can set spoilers visible by default on your profile" > that the Meddling Monk's companion "Brother Lucianus" is really Lucy Miller.</span> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Books&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> Betcha nobody ever expected to see this one in a comic book (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanTheyThink' title='/pmwiki/pmwiki.php/Main/OlderThanTheyThink' data-format='W1tPbGRlclRoYW5UaGV5VGhpbmsgVW5sZXNzIHlvdSBncmV3IHVwIGR1cmluZ11d'>Unless you grew up during</a> <a class='twikilink' href='/pmwiki/pmwiki.php/MediaNotes/TheBronzeAgeOfComicBooks' title='/pmwiki/pmwiki.php/MediaNotes/TheBronzeAgeOfComicBooks' data-format='TWVkaWFOb3Rlcy97e3RoZSBCcm9uemUgQWdlfE9mQ29taWNCb29rc319'>the Bronze Age</a>), but there it is: <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLantern' title='/pmwiki/pmwiki.php/ComicBook/GreenLantern' data-format='Q29taWNCb29rL0dyZWVuTGFudGVybg=='>Green Lantern</a> crossover event <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SinestroCorpsWar' title='/pmwiki/pmwiki.php/ComicBook/SinestroCorpsWar' data-format='Q29taWNCb29rL1NpbmVzdHJvQ29ycHNXYXI='>Sinestro Corps War</a></em> ended with one of the main villains, nearly dead and utterly defeated, thrown into space. Then, with credits appearing between the panels, we see where he lands... and things have suddenly gotten much, much worse for our unknowing heroes. The final page of the book is a teaser for the sequel event, <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BlackestNight' title='/pmwiki/pmwiki.php/ComicBook/BlackestNight' data-format='Q29taWNCb29rL0JsYWNrZXN0TmlnaHQ='>Blackest Night</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DonRosa' title='/pmwiki/pmwiki.php/Creator/DonRosa' data-format='Q3JlYXRvci9Eb25Sb3Nh'>Don Rosa</a> supplied <a class='urllink' href='http://disneycomics.free.fr/Ducks/Rosa/show.php?num=34&amp;loc=D99078'>one extra page<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> as an epilogue for the hardcover versions of <em>The Quest For Sampo</em>, his Finnish-themed story. In it, the Grim Reaper returns Scrooge <span class='esc-seq' title='non-wikiword'>McDuck's</span> top hat and offers to allow him to take his fortune to the afterlife in exchange for a hundred dollars. </li><li> The final page in an issue of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/RisingStars' title='/pmwiki/pmwiki.php/ComicBook/RisingStars' data-format='Q29taWNCb29rL1Jpc2luZ1N0YXJz'>Rising Stars</a></em> is a clairvoyant sitting by himself. When you flip the page, there's a bunch of people drawn very lightly, speaking backwards. If you go back to the previous page and hold it up to the light, you see that the figures on the back page are actually GHOSTS talking to the character in the chair. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/FinalCrisis' title='/pmwiki/pmwiki.php/ComicBook/FinalCrisis' data-format='Q29taWNCb29rL0ZpbmFsQ3Jpc2lz'>Final Crisis</a></em>: Bruce Wayne is alive. </li><li> At the end of a <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ThePunisherMAX' title='/pmwiki/pmwiki.php/ComicBook/ThePunisherMAX' data-format='W1tDb21pY0Jvb2svVGhlUHVuaXNoZXJNQVggUHVuaXNoZXIgTWF4XV0='>Punisher Max</a></em> story arc Wilson Fisk has become the Kingpin (at the cost of his son's life and his wife's sanity) and orders everyone away so he can enjoy it. But one person won't leave. <div class='indent'><strong>Receptionist:</strong> You still have one appointment.<br data-format="\\" /><strong>Kingpin:</strong> Tell him to go away.<br data-format="\\" /><strong>Receptionist:</strong> I did, but he refuses to leave. He says he has a meeting with Don Rigoletto.<br data-format="\\" /><strong>Kingpin:</strong> Tell him Rigoletto's dead.<br data-format="\\" /><strong>Receptionist:</strong> I told him, sir, but he's very insistent. He says he's Rigoletto's "Miracle Worker". Whatever that means.<br data-format="\\" /><strong>Kingpin:</strong> What's his name?<br data-format="\\" /><strong>Receptionist:</strong> Well, he wants to be called <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook' data-format='W1tTZXF1ZWxIb29rIEJ1bGxzZXllXV0='>Bullseye</a>. </div></li><li> The 16th issue of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheUnbelievableGwenpool' title='/pmwiki/pmwiki.php/ComicBook/TheUnbelievableGwenpool' data-format='Q29taWNCb29rL1RoZVVuYmVsaWV2YWJsZUd3ZW5wb29s'>The Unbelievable Gwenpool</a></em> ends on a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BittersweetEnding' title='/pmwiki/pmwiki.php/Main/BittersweetEnding' data-format='Qml0dGVyc3dlZXRFbmRpbmc='>Bittersweet Ending</a>: her brother has successfully prevented her from ever entering the main <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MarvelComics' title='/pmwiki/pmwiki.php/Creator/MarvelComics' data-format='Q3JlYXRvci9NYXJ2ZWxDb21pY3M='>Marvel Comics</a> universe, but there's the promise that Gwen's life in her own world could improve, and she'll be happy. The page even ends with "The End" at the bottom. The next page is the letters to the editor, which show up at the end of every issue. And the real, FINAL page shows that Gwen notices the little "The End" at the bottom of the page and picks it up. When she drops it, it breaks, and a "To be continued..." shows at the end of the page, letting us know that the original ending wasn't the finale. </li><li> Following his return from the dead in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/MarvelLegacy' title='/pmwiki/pmwiki.php/ComicBook/MarvelLegacy' data-format='Q29taWNCb29rL01hcnZlbExlZ2FjeQ=='>Marvel Legacy</a></em> #1<span class="notelabel" onclick="togglenote('note0l932');"><sup>note&nbsp;</sup></span><span id="note0l932" class="inlinefolder" isnote="true" onclick="togglenote('note0l932');" style="cursor:pointer;font-size:smaller;display:none;">sort of; while the Wolverine of Earth-616 did return from the dead, the Wolverine seen in the initial one-shot is in fact an alternate universe Wolverine with the powers of the Phoenix</span>, <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Wolverine' title='/pmwiki/pmwiki.php/ComicBook/Wolverine' data-format='e3tDb21pY0Jvb2svV29sdmVyaW5lfX0='>Wolverine</a> was featured in one-page stingers that came after the letters page of numerous comics. The issues that featured the stinger included a "Where's Wolverine?" badge with Logan's face in it. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Literature&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <h3><strong>General:</strong></h3> <ul ><li> Many mass-market paperback versions of novels put a teaser for the sequel (usually its prologue or first chapter) or a separate book by the same author and/or in the same setting in a separate section after the end of the book. </li></ul></p><p><h3><strong>By work:</strong></h3> <ul ><li> Several novels in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCulture' title='/pmwiki/pmwiki.php/Literature/TheCulture' data-format='TGl0ZXJhdHVyZS9UaGVDdWx0dXJl'>The Culture</a></em> series end with an epilogue which is generally humorous/uplifting even if the end of the novel proper was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BittersweetEnding' title='/pmwiki/pmwiki.php/Main/BittersweetEnding' data-format='e3tiaXR0ZXJzd2VldHxFbmRpbmd9fQ=='>bittersweet</a> and/or followed Banks's "trademark". One notable exception to this pattern is <em>Look to Windward</em>, whose epilogue depicts a shape-shifting Culture assassin taking horrific revenge on the Chelgrians who had orchestrated the foiled terrorist plot by torturing them to death in terrifyingly sadistic ways. For example, it turns into a swarm of bees to suffocate one of them. It also makes sure that the attacks are recorded, so that the rest of the Chelgrians get the message. Bearing in mind that the plotters are <em>unarmed monks</em>, this is quite a departure in tone for a novel that is not generally either scary or action-packed, and which portrays the Culture almost exclusively favourably up to this point. </li><li> At the end of the first <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MagnusChaseAndTheGodsOfAsgard' title='/pmwiki/pmwiki.php/Literature/MagnusChaseAndTheGodsOfAsgard' data-format='TGl0ZXJhdHVyZS9NYWdudXNDaGFzZUFuZFRoZUdvZHNPZkFzZ2FyZA=='>Magnus Chase and the Gods of Asgard</a></em> book, there's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PerspectiveFlip' title='/pmwiki/pmwiki.php/Main/PerspectiveFlip' data-format='UGVyc3BlY3RpdmVGbGlw'>Perspective Flip</a> which shows us that Magnus's uncle Randolph was working with Loki the whole time, and that the god's the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a>. </li><li> Daniel Silva's <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/GabrielAllon' title='/pmwiki/pmwiki.php/Literature/GabrielAllon' data-format='TGl0ZXJhdHVyZS9HYWJyaWVsQWxsb24='>Gabriel Allon</a></em> novels tend to have epilogue's in which Mossad tracks down and assassinates any villain who escaped by the end of the novel proper (e.g. in one case, a character who had planned explosions is himself mailed a bomb which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KarmicDeath' title='/pmwiki/pmwiki.php/Main/KarmicDeath' data-format='W1tLYXJtaWNEZWF0aCBraWxscyBoaW1dXQ=='>kills him</a>. </li><li> Early in the book <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RemoteMan' title='/pmwiki/pmwiki.php/Literature/RemoteMan' data-format='TGl0ZXJhdHVyZS9SZW1vdGVNYW4='>Remote Man</a></em>, a rare python disappears from its habitat in the Northern Territory, and an American tourist who is later exposed as a wildlife smuggler is suspected by the teenage heroes of stealing it. On the last page, the python is back on the rock, calling into question whether it was stolen in the first place. </li><li> <em>Rogues to Riches</em> has the main characters convince an orc prison guard that they are all characters in a book partway through. They promise him that they will get him a bigger part if he lets them escape. The last page of the book includes a picture of him still sitting at his post and a paragraph stating that he is patiently waiting for them to fulfill the promise. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDarkProfitSaga' title='/pmwiki/pmwiki.php/Literature/TheDarkProfitSaga' data-format='W1tMaXRlcmF0dXJlL1RoZURhcmtQcm9maXRTYWdhIE9yY29ub21pY3M6IEEgU2F0aXJlXV0='>Orconomics: A Satire</a></em> has one after the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasyWorldMap' title='/pmwiki/pmwiki.php/Main/FantasyWorldMap' data-format='RmFudGFzeVdvcmxkTWFw'>Fantasy World Map</a>, the glossary, and the author's thanks. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WordsOfRadiance' title='/pmwiki/pmwiki.php/Literature/WordsOfRadiance' data-format='TGl0ZXJhdHVyZS9Xb3Jkc09mUmFkaWFuY2U='>Words of Radiance</a></em> (second book of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStormlightArchive' title='/pmwiki/pmwiki.php/Literature/TheStormlightArchive' data-format='TGl0ZXJhdHVyZS9UaGVTdG9ybWxpZ2h0QXJjaGl2ZQ=='>The Stormlight Archive</a></em>): The last chapter is narrated by Hoid, the King's Wit, as he waits for someone on a random plain. Then Jasnah teleports in. </li><li> The official novelization of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ResidentEvilTheFinalChapter' title='/pmwiki/pmwiki.php/Film/ResidentEvilTheFinalChapter' data-format='RmlsbS9SZXNpZGVudEV2aWxUaGVGaW5hbENoYXB0ZXI='>Resident Evil: The Final Chapter</a></em> ends with a scene not present in the actual movie, showing that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDragon' title='/pmwiki/pmwiki.php/Main/TheDragon' data-format='W1tUaGVEcmFnb24gV2Vza2VyJiMwMzk7c11d'>Wesker's</a> remains, buried at the bottom of the destroyed Hive, were shielded from the release of the anti-virus. As such, the T-virus within his cells is intact, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEndOrIsIt' title='/pmwiki/pmwiki.php/Main/TheEndOrIsIt' data-format='W1tUaGVFbmRPcklzSXQgYXdhaXRpbmcgdGhlIGRheSBpdCBjYW4gYmUgcmVsZWFzZWQgYWdhaW4uLi5dXQ=='>awaiting the day it can be released again...</a> </li><li> The second <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekDiscovery' title='/pmwiki/pmwiki.php/Series/StarTrekDiscovery' data-format='U2VyaWVzL1N0YXJUcmVrRGlzY292ZXJ5'>Star Trek: Discovery</a></em> novel, <em>Drastic Measures</em>, has a scene after the About the Author and acknowledgements suggesting that the real Captain Lorca is still alive in the Mirror Universe. </li><li> The last chapter of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AngelsOfMusic' title='/pmwiki/pmwiki.php/Literature/AngelsOfMusic' data-format='TGl0ZXJhdHVyZS9BbmdlbHNPZk11c2lj'>Angels of Music</a></em> is followed by the author's afterword and acknowledgments, an author bio, a page plugging other books from the same publisher, and <em>then</em> a brief epilogue with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook' data-format='U2VxdWVsSG9vaw=='>Sequel Hook</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NOS4A2' title='/pmwiki/pmwiki.php/Literature/NOS4A2' data-format='TGl0ZXJhdHVyZS97e05PUzRBMn19'>NOS4A2</a></em>: The novel ends with a note on the font used... which immediately switches describing a few of Charlie's Children escaping to celebrate Christmas in the real world. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FallingUpSilverstein' title='/pmwiki/pmwiki.php/Literature/FallingUpSilverstein' data-format='TGl0ZXJhdHVyZS97e0ZhbGxpbmcgVXB8U2lsdmVyc3RlaW59fQ=='>Falling Up</a></em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ShelSilverstein' title='/pmwiki/pmwiki.php/Creator/ShelSilverstein' data-format='Q3JlYXRvci9TaGVsU2lsdmVyc3RlaW4='>Shel Silverstein</a>: The back inside cover has a short handwritten poem telling the reader that they've reached the end and warning them of trying to look for more in the book's binding, lest they vanish within. It is accompanied by an illustration of a pair of legs sticking out of the binding. <div class='indent'><em>The end of the book&#8212;<br data-format="\\" />No use to look<br data-format="\\" />For any more, my dear,<br data-format="\\" />'Cause if you try finding<br data-format="\\" />Some more in the binding,<br data-format="\\" />You may just...disappear</em> <div class='indent'><em>Bye-bye<br data-format="\\" />S.S.</em> </div></div></li><li> The "Author's Preferred Text" edition of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Neverwhere' title='/pmwiki/pmwiki.php/Literature/Neverwhere' data-format='TGl0ZXJhdHVyZS97e05ldmVyd2hlcmV9fQ=='>Neverwhere</a></em> includes an entire short story featuring a secondary character as the Stinger, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HowTheMarquisGotHisCoatBack' title='/pmwiki/pmwiki.php/Literature/HowTheMarquisGotHisCoatBack' data-format='TGl0ZXJhdHVyZS9Ib3dUaGVNYXJxdWlzR290SGlzQ29hdEJhY2s='>How the Marquis Got His Coat Back</a></em>, which explains, well, how the Marquis got his coat back. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Music Videos&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the music video to <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Disturbed' title='/pmwiki/pmwiki.php/Music/Disturbed' data-format='TXVzaWMve3tEaXN0dXJiZWR9fQ=='>Disturbed</a>'s "Asylum", after the song ends we're treated to a shot of the charred corpse of the protagonist sitting in a morgue who'd just tossed himself into a furnace to escape his pursuers<span class="notelabel" onclick="togglenote('note1bjzn');"><sup>note&nbsp;</sup></span><span id="note1bjzn" class="inlinefolder" isnote="true" onclick="togglenote('note1bjzn');" style="cursor:pointer;font-size:smaller;display:none;">The doctors trying to help him</span> (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/CuckooNest' title='/pmwiki/pmwiki.php/Main/CuckooNest' data-format='W1tDdWNrb29OZXN0IHRoaW5raW5nIGhpcyB3YXMganVzdCBoYXZpbmcgYSBkZWx1c2lvbl1d'>thinking his was just having a delusion</a> and that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ResetButton' title='/pmwiki/pmwiki.php/Main/ResetButton' data-format='W1tSZXNldEJ1dHRvbiBoZSB3b3VsZCBlbmQgdXAgYmFjayBpbiBoaXMgcGFkZGVkIGNlbGxdXQ=='>he would end up back in his padded cell</a>). The corpse opens its eyes, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThroughTheEyesOfMadness' title='/pmwiki/pmwiki.php/Main/ThroughTheEyesOfMadness' data-format='W1tUaHJvdWdoVGhlRXllc09mTWFkbmVzcyBpbXBseWluZyB0aGF0IGV2ZW4gdGhpcyB3YXMgc29tZWhvdyBqdXN0IGEgZGVsdXNpb25dXQ=='>implying that even this was somehow just a delusion</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/NineInchNails' title='/pmwiki/pmwiki.php/Music/NineInchNails' data-format='TXVzaWMvTmluZUluY2hOYWlscw=='>Nine Inch Nails</a>' unreleased (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/KeepCirculatingTheTapes' title='/pmwiki/pmwiki.php/Main/KeepCirculatingTheTapes' data-format='W1tLZWVwQ2lyY3VsYXRpbmdUaGVUYXBlcyBvZmZpY2lhbGx5IGF0IGxlYXN0XV0='>officially at least</a>) <em>Broken Movie</em> has a Stinger where the severed head of the serial killer, who had just been hanged, suddenly hits the ground. This occurrs about a minute after it seems to end, making it more than a little jarring. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Podcasts&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> Every episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/DungeonsAndDaddies' title='/pmwiki/pmwiki.php/Podcast/DungeonsAndDaddies' data-format='UG9kY2FzdC9EdW5nZW9uc0FuZERhZGRpZXM='>Dungeons & Daddies</a></em> features a cut joke or mishap that didn't make it into the larger episode. The exceptions to this are the season finales. Season 1's finale post-credit scene is a plot hook for season 2 where <span class="spoiler" title="you can set spoilers visible by default on your profile" > Lark stabs Henry in order to summon the Doodler into the world</span>. Season 2's finale post-credit scene is a cut to 25 years after the events of the main season where we learn about what happened to the main four characters after high school. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/HeroClub' title='/pmwiki/pmwiki.php/Podcast/HeroClub' data-format='UG9kY2FzdC9IZXJvQ2x1Yg=='>Hero Club</a></em>: Most episodes end with a short scene. It's usually a comedic blooper from the episode, like a flubbed line reading. </li><li> Each episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/WelcomeToNightVale' title='/pmwiki/pmwiki.php/Podcast/WelcomeToNightVale' data-format='UG9kY2FzdC9XZWxjb21lVG9OaWdodFZhbGU='>Welcome to Night Vale</a></em> ends with a proverb, written in the same surreal tone as the rest of the series. </li><li> The Cordials of Kindness segment of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/WereYouRaisedByWolves' title='/pmwiki/pmwiki.php/Podcast/WereYouRaisedByWolves' data-format='UG9kY2FzdC9XZXJlWW91UmFpc2VkQnlXb2x2ZXM='>Were You Raised by Wolves?</a></em> often follows the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SigningOffCatchphrase' title='/pmwiki/pmwiki.php/Main/SigningOffCatchphrase' data-format='U2lnbmluZ09mZkNhdGNocGhyYXNl'>Signing Off Catchphrase</a> and can easily be missed if the listener tries to skip the Patreon ad at the very end of the episode. This emphasizes Nick's point that Leah insists they do this segment, which goes into the theme that it's additional to a given episode and not a normal segment. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/UnwellPodcast' title='/pmwiki/pmwiki.php/Podcast/UnwellPodcast' data-format='UG9kY2FzdC9VbndlbGxQb2RjYXN0'>Unwell Podcast</a></em>: After the credits of most episodes of the first two seaons have a fact about the town. Several epsisodes after season two have post-credit scenes. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Puppet Shows&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AfterTheCredits' title='/pmwiki/pmwiki.php/Main/AfterTheCredits' data-format='QWZ0ZXJUaGVDcmVkaXRz'>After the Credits</a> for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMuppetShow' title='/pmwiki/pmwiki.php/Series/TheMuppetShow' data-format='U2VyaWVzL1RoZU11cHBldFNob3c='>The Muppet Show</a></em>, <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/StatlerAndWaldorf' title='/pmwiki/pmwiki.php/JustForFun/StatlerAndWaldorf' data-format='SnVzdEZvckZ1bi9TdGF0bGVyQW5kV2FsZG9yZg=='>Statler and Waldorf</a>, two crotchety old Muppets in the balcony seats, would make insulting jokes about the show for a few seconds. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MuppetsTonight' title='/pmwiki/pmwiki.php/Series/MuppetsTonight' data-format='U2VyaWVzL011cHBldHNUb25pZ2h0'>Muppets Tonight</a></em> would often have bloopers at the end. As in, one of the Muppets would point out that another Muppets or the special guest had flubbed a line. Now that's dedication to the illusion. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/TheSproutSharingShow' title='/pmwiki/pmwiki.php/Series/TheSproutSharingShow' data-format='U2VyaWVzL1RoZVNwcm91dFNoYXJpbmdTaG93'>The Sprout Sharing Show</a></em>: A website promo would play after the Goodbye Song and before the start of <em>The Good Night Show</em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Radio&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/TheHitchhikersGuideToTheGalaxy1978' title='/pmwiki/pmwiki.php/Radio/TheHitchhikersGuideToTheGalaxy1978' data-format='UmFkaW8vVGhlSGl0Y2hoaWtlcnNHdWlkZVRvVGhlR2FsYXh5MTk3OA=='>The Hitchhiker's Guide to the Galaxy (1978)</a></em>: Almost all of the radio episodes followed the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FindOutNextTime' title='/pmwiki/pmwiki.php/Main/FindOutNextTime' data-format='RmluZE91dE5leHRUaW1l'>Find Out Next Time</a> narration with an announcer delivering either a brief advertisement for some in-universe publication/product or a mock advisory warning. A few episodes also had a main character coming back to say one more thing, e.g. Zaphod noticing the fairy cake in the Total Perspective Vortex and eating it. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' title='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' data-format='QXVkaW9QbGF5L0JpZ0ZpbmlzaERvY3Rvcldobw=='>Big Finish Doctor Who</a> audio <em><a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BigFinishDoctorWhoNEDAS4E4TheBookOfKells' title='/pmwiki/pmwiki.php/Recap/BigFinishDoctorWhoNEDAS4E4TheBookOfKells' data-format='W1tSZWNhcC9CaWdGaW5pc2hEb2N0b3JXaG9ORURBUzRFNFRoZUJvb2tPZktlbGxzIFRoZSBCb29rIG9mIEtlbGxzXV0='>The Book of Kells</a></em> ends with the revelation that the Meddling Monk's companion Brother Lucianus, is actually the Doctor's ex-companion Lucie Miller. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' title='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' data-format='UmFkaW8vSm9obkZpbm5lbW9yZXNTb3V2ZW5pclByb2dyYW1tZQ=='>John Finnemore's Souvenir Programme</a></em> always has a one liner after the credits, sometimes a parody of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityAnnouncement' title='/pmwiki/pmwiki.php/Main/ContinuityAnnouncement' data-format='Q29udGludWl0eUFubm91bmNlbWVudA=='>Continuity Announcement</a> ("If you'd like to hear this show again ... aw, thanks!"). The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfParody' title='/pmwiki/pmwiki.php/Main/SelfParody' data-format='U2VsZlBhcm9keQ=='>Self-Parody</a> in the final episode of season 7 has "Putting a line after the credits doesn't make you <em>Hitchhiker's</em>." </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Roleplay&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/RubyQuest' title='/pmwiki/pmwiki.php/Roleplay/RubyQuest' data-format='Um9sZXBsYXkvUnVieVF1ZXN0'>Ruby Quest</a></em>, after Ruby, Tom, and Jay have escaped the Metal Glen and are riding away on a tram, the final panel (after one showing the last verse of the poem <em>The Metal Glen</em>) shows Daisy (a minor character killed relatively early on) <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook' data-format='W1tTZXF1ZWxIb29rIHJldml2aW5nIGluIGEgbG9ja2VyXV0='>reviving in a locker</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BookEnds' title='/pmwiki/pmwiki.php/Main/BookEnds' data-format='W1tCb29rRW5kcyBtaXJyb3JpbmcgUnVieSYjMDM5O3MgcG9zaXRpb24gYXQgdGhlIGJlZ2lubmluZyBvZiB0aGUgcXVlc3RdXQ=='>mirroring Ruby's position at the beginning of the quest</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Tabletop Games&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> If the director rolls double after the ending in <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DieLaughing2019' title='/pmwiki/pmwiki.php/TabletopGame/DieLaughing2019' data-format='VGFibGV0b3BHYW1lL0RpZUxhdWdoaW5nMjAxOQ=='>Die Laughing (2019)</a></em>, the "Post-Credits Scene" list is consulted, with various options ranging from players describing a scene of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HilariousOuttakes' title='/pmwiki/pmwiki.php/Main/HilariousOuttakes' data-format='SGlsYXJpb3VzT3V0dGFrZXM='>Hilarious Outtakes</a>, to the first player to be killed during the session coming up with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook' data-format='U2VxdWVsSG9vaw=='>Sequel Hook</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Theatre&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/ArsenicAndOldLace' title='/pmwiki/pmwiki.php/Theatre/ArsenicAndOldLace' data-format='VGhlYXRyZS9BcnNlbmljQW5kT2xkTGFjZQ=='>Arsenic and Old Lace</a></em>, the curtain call is supposed to include the twelve deceased old men walking out of the cellar and taking their bows. </li><li> ''<a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Hadestown' title='/pmwiki/pmwiki.php/Theatre/Hadestown' data-format='VGhlYXRyZS97e0hhZGVzdG93bn19'>Hadestown</a> has the song 'I Raise My Cup to Him' sung after the curtain call. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/MrsHawking' title='/pmwiki/pmwiki.php/Theatre/MrsHawking' data-format='VGhlYXRyZS9NcnNIYXdraW5n'>Mrs. Hawking</a></em> play series: Part V: <em><a class='urllink' href='https://vimeo.com/321115275'>Mrs. Frost<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> has a tiny final scene occurs "during the credits" by pausing the curtain call and resuming it after the scene is finished. It sets up the next story. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScreenToStageAdaptation' title='/pmwiki/pmwiki.php/Main/ScreenToStageAdaptation' data-format='U2NyZWVuVG9TdGFnZUFkYXB0YXRpb24='>Screen-to-Stage Adaptation</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheProducers' title='/pmwiki/pmwiki.php/Film/TheProducers' data-format='RmlsbS9UaGVQcm9kdWNlcnM='>The Producers</a></em> has a short musical number during the curtain call, thanking the audience for coming and telling them to get lost. This also appears in the 2005 film version after the credits. </li><li> Almost a minute after the curtain call of <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Stage/TheCuriousIncidentOfTheDogInTheNightTime' title='/pmwiki/pmwiki.php/Stage/TheCuriousIncidentOfTheDogInTheNightTime' data-format='U3RhZ2UvVGhlQ3VyaW91c0luY2lkZW50T2ZUaGVEb2dJblRoZU5pZ2h0VGltZQ=='>The Curious Incident Of The Dog In The Night Time</a></em>, Christopher returns to the stage to give a maths appendix (as Siobhan promised him earlier), utilizing all the technology used in the theatre and ending with a big confetti finish. </li><li> At the end of <em>Tails of Wasps</em>, after Frank's seemingly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoEnding' title='/pmwiki/pmwiki.php/Main/NoEnding' data-format='W1tOb0VuZGluZyBhbnRpY2xpbWFjdGljXV0='>anticlimactic</a> ending soliloquy, the audience exits the hotel room to find that Judith, the hooker who robbed him at knife point, is passed out in the hallway. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Web Animation&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HomestarRunner' title='/pmwiki/pmwiki.php/WebAnimation/HomestarRunner' data-format='V2ViQW5pbWF0aW9uL0hvbWVzdGFyUnVubmVy'>Homestar Runner</a></em>: Many cartoons end with not only one or more clickable <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EasterEgg' title='/pmwiki/pmwiki.php/Main/EasterEgg' data-format='e3tFYXN0ZXIgRWdnfX1z'>Easter Eggs</a> (in the Flash version at least), but an extra scene that plays automatically at the end. This gets lampshaded in the <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/StrongBadEmail' title='/pmwiki/pmwiki.php/WebAnimation/StrongBadEmail' data-format='V2ViQW5pbWF0aW9uL1N0cm9uZ0JhZEVtYWls'>Strong Bad Email</a> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StrongBadEmailE79TheProcess' title='/pmwiki/pmwiki.php/Recap/StrongBadEmailE79TheProcess' data-format='W1tSZWNhcC9TdHJvbmdCYWRFbWFpbEU3OVRoZVByb2Nlc3MgdGhlIHByb2Nlc3NdXQ=='>the process</a>", where after Strong Bad shows the viewers <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FauxToGuide' title='/pmwiki/pmwiki.php/Main/FauxToGuide' data-format='W1tGYXV4VG9HdWlkZSBob3cgdG8gImFuc3dlciBlbWFpbHMgbGlrZSBhIHRydWUgU3Ryb25nIEJhZCJdXQ=='>how to "answer emails like a true Strong Bad"</a>, he eventually adds "And sometimes, if you wait around for ten or fifteen seconds, something else happens." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/NCHProductions' title='/pmwiki/pmwiki.php/WebAnimation/NCHProductions' data-format='V2ViQW5pbWF0aW9uL05DSFByb2R1Y3Rpb25z'>NCHProductions</a></em> regularly ends his videos with a short stinger offering one last joke. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/RedVsBlue' title='/pmwiki/pmwiki.php/WebAnimation/RedVsBlue' data-format='V2ViQW5pbWF0aW9uL1JlZFZzQmx1ZQ=='>Red vs. Blue</a></em>, Season 3 &#8212; at the end of the credits on the DVD Vic appears, saying, "I understand you're enjoying the sweet music and all, but the DVD's over. Go home, dude, live your life." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TP' title='/pmwiki/pmwiki.php/WebAnimation/TP' data-format='V2ViQW5pbWF0aW9uL3t7VFB9fQ=='>TP</a></em>: After the credits roll, we cut back to the restroom the toilet paper roll escaped from. The toilet goes on another "Piece by piece, ply by ply" rant, only for the plunger to start plunging his mouth and telling him to shut up. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=aKUDrUbU8XM'>Worst...<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/WorldOfWarcraft' title='/pmwiki/pmwiki.php/VideoGame/WorldOfWarcraft' data-format='W1tWaWRlb0dhbWUvV29ybGRPZldhcmNyYWZ0IGNvcnBzZSBydW4uLi5dXQ=='>corpse run...</a> <em>ever</em>. </li><li> Most <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheFlashTub' title='/pmwiki/pmwiki.php/WebAnimation/TheFlashTub' data-format='W1tXZWJBbmltYXRpb24vVGhlRmxhc2hUdWIgRmxhc2ggVHViXV0='>Flash Tub</a></em> animations have a stinger, usually an outtake from one of the voice actors or an extra scene. Sometimes, there's <em>two</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheRedEclipse' title='/pmwiki/pmwiki.php/WebAnimation/TheRedEclipse' data-format='V2ViQW5pbWF0aW9uL1RoZVJlZEVjbGlwc2U='>The Red Eclipse</a></em>: After the credits, there's a short scene of Origami in her apartment, cooking on the stove. The camera zooms out to show a bunch of dollar bills on her table folded into origami cranes. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/RWBY' title='/pmwiki/pmwiki.php/WebAnimation/RWBY' data-format='V2ViQW5pbWF0aW9uL3t7UldCWX19'>RWBY</a></em>: Each season is called a 'Volume'. At the end of every volume, there is a post-credits scene that either reveals something previously unknown or unconfirmed or which acts as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook' data-format='W1tTZXF1ZWxIb29rIGhvb2sgdG8gc2V0IHVwIHRoZSBuZXh0IHZvbHVtZV1d'>hook to set up the next volume</a>. <ul ><li> Volume 1 focusses on the main villain being Roman Torchwick, a petty thief who runs afoul of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeroine' title='/pmwiki/pmwiki.php/Main/TheHeroine' data-format='W1tUaGVIZXJvaW5lIFJ1YnkgUm9zZV1d'>Ruby Rose</a> when he tries to rob the shop she's in. However, in the pilot episode, he escapes with the help of a mysterious woman with phenomenal power, whose face remains hidden in shadows except for a pair of glowing golden eyes and an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElementalPowers' title='/pmwiki/pmwiki.php/Main/ElementalPowers' data-format='W1tFbGVtZW50YWxQb3dlcnMgYWZmaW5pdHkgZm9yIGZpcmVdXQ=='>affinity for fire</a>. The volume's stinger reveals the woman's face for the first time and introduces her name. While the pilot implied that Roman was this woman's boss, the stinger reveals the opposite: Roman is working for Cinder, and she is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' title='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' data-format='VGhlTWFuQmVoaW5kVGhlTWFu'>The Man Behind the Man</a> for Volume 1 and the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> of Volumes 2-3. The stinger also reveals Cinder's two disciples, Emerald and Mercury. </li><li> Volume 2 involves Team RWBY attempting to uncover what the White Fang and Roman Torchwick are up to, given that it's very strange for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LittleBitBeastly' title='/pmwiki/pmwiki.php/Main/LittleBitBeastly' data-format='W1tMaXR0bGVCaXRCZWFzdGx5IEZhdW51c11d'>Faunus</a> equal-rights <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WesternTerrorists' title='/pmwiki/pmwiki.php/Main/WesternTerrorists' data-format='W1tXZXN0ZXJuVGVycm9yaXN0cyB0ZXJyb3Jpc3Qgb3JnYW5pc2F0aW9uXV0='>terrorist organisation</a> to team up with the highly racist and human Roman. When Team RWBY run across the villainous hideout and attempt to thwart the plot, Yang is rescued from certain death by the intervention of a mysterious masked woman who appears through a portal just long enough to save her life and disappear the way she came without a word to Yang. At the end of the volume finale, Yang comments on being so exhausted that she's looking forward to a good sleep. The stinger reveals Yang walking through the school grounds towards the masked woman in a surreal, dream-like sequence. The woman removes her mask, revealing that she's almost the spitting image of Yang, except for her hair and default eye colour. The stinger ends as the woman informs Yang that they need to talk. In Volume 3, the woman is confirmed to be Yang's mother, Raven Branwen, who abandoned Yang as a newborn baby for what reason, Yang doesn't know. </li><li> Volume 3 ends with the climax of Cinder's villainous plans and the reveal that she's just <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeavy' title='/pmwiki/pmwiki.php/Main/TheHeavy' data-format='VGhlSGVhdnk='>The Heavy</a> for the true <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a>, Salem, who seems determined to destroy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='W1tCaWdHb29kIFByb2Zlc3NvciBPenBpbl1d'>Professor Ozpin</a>. Team RWBY is scattered to the four winds by the destruction of Beacon Academy, leaving Ruby to set out on a long journey to Haven Academy, with a couple of friends from Team JNPR. The stinger reveals that Ruby's uncle, Qrow, is secretly following the group; he is carrying the cane of missing-and-possibly-dead Beacon headmaster, Ozpin, and is revealed to be capable of shapeshifting into a literal crow. This sets up several different strands of Volume 4's multiple plotlines. </li><li> Volume 4 introduces the farm boy Oscar Pine, who suddenly finds himself <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SharingABody' title='/pmwiki/pmwiki.php/Main/SharingABody' data-format='U2hhcmluZ0FCb2R5'>Sharing a Body</a> with Professor Ozpin; Ozpin spends the volume trying to convince Oscar to travel to Haven Academy to meet the school's headmaster, an old friend of Ozpin's. Towards the climax of the volume, Ruby's group finds out that Qrow has been following them and he tells them about Ozpin's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretWar' title='/pmwiki/pmwiki.php/Main/SecretWar' data-format='U2VjcmV0V2Fy'>Secret War</a> with Salem. When they ask him if there's anything else he's hiding from them, he is evasive but it's implied he's keeping his shapeshifting ability secret. The stinger of the volume consists Qrow sitting in a bar in Mistral. Oscar appears in the bar and asks for his cane back. Qrow instantly gives him Ozpin's cane, and tells Ozpin it's good to see him again. The stinger's reveal is that Qrow knew all along that Ozpin could <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BodySurf' title='/pmwiki/pmwiki.php/Main/BodySurf' data-format='Qm9keVN1cmY='>Body Surf</a> and that they clearly had some kind of pre-arranged agreement to meet in Mistral should something happen to Ozpin, using the cane as a means to identify Ozpin's new host body. </li><li> Volume 5 focusses on the various plans to either destroy Haven Academy and steal its mythical Relic of Knowledge or protect both the school and the Relic it guards. Yang confronts her mother, who is revealed to have the ability to create portals to people she has created a 'bond' with. She has three known connections: her daughter, Yang; her brother, Qrow; and her former husband, Taiyang. Yang uses Raven's ability to connect to Qrow to locate her sister, Ruby. During the volume finale, Yang and Raven have a confrontation over the fate of the Relic of Knowledge, and Raven abandons both the Relic and her daughter, escaping from the school by a portal, despite the fact that two of her portal connections (Yang and Qrow) are in the same building as her. The stinger shows an idyllic scene of Taiyang watering his plants at home. When he suddenly hears feathers rustling overhead, however, all Taiyang can do is sigh as he sees a black feather landing near him. The stinger's implication is that Raven used her portal connection to Taiyang to escape from Haven Academy. </li><li> Volume 6 deals with the protagonists as they attempt to reach Atlas without aid from Ozpin whom they take to task for the secrets he's been keeping, and also with the villains who are taken to task by Salem for the failures in Volume 5. The volume ends with both the villains and the protagonists descending upon Atlas for their own reasons. The stinger, however, reveals to Emerald and Mercury that Salem is building an army of Grimm made from a new species she is creating. Hazel's explanation of what's happen indicates that she's decided the only one who can properly complete the task she's set is herself. </li><li> Volume 7 is the first volume to avert this trope, as it features no stinger whatsoever. </li><li> Volume 8 features the heroes try and fail to save the kingdom of Atlas, ultimately falling down while in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VoidBetweenTheWorlds' title='/pmwiki/pmwiki.php/Main/VoidBetweenTheWorlds' data-format='Vm9pZEJldHdlZW5UaGVXb3JsZHM='>Void Between the Worlds</a>, which they were explicitly warned not to do. The stinger features Crescent Rose, Ruby's weapon and the first thing to fall, washed up on an unknown beach, in a setting that looks very much not like Remnant, the world that RWBY takes place in. Volume 9 reveals that this place is the Ever After, a world that Remnant's gods had been a part of before abandoning it and going to Remnant itself. The focus of Volume 9 is on the heroes also arriving in the Ever After and finding a way to escape it and get back to Remnant. </li><li> Volume 9 subverts this trope. Its end credits do feature a scene afterwards... but it's just a trailer for the then-upcoming crossover movie with the Justice League. </li></ul></li><li> The popular web animation <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/DrawWithMe' title='/pmwiki/pmwiki.php/WebAnimation/DrawWithMe' data-format='V2ViQW5pbWF0aW9uL0RyYXdXaXRoTWU='>Draw with Me</a></em> has a particularly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TearJerker' title='/pmwiki/pmwiki.php/Main/TearJerker' data-format='W1tUZWFySmVya2VyIGluZmFtb3VzXV0='>infamous</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NightmareFuel' title='/pmwiki/pmwiki.php/Main/NightmareFuel' data-format='W1tOaWdodG1hcmVGdWVsIG9uZS5dXQ=='>one.</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/InanimateInsanity' title='/pmwiki/pmwiki.php/WebAnimation/InanimateInsanity' data-format='V2ViQW5pbWF0aW9uL0luYW5pbWF0ZUluc2FuaXR5'>Inanimate Insanity</a> II</em> has a stinger at the end of every episode. A few contribute to the plot, such as teasing the return of Taco. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheMostEpicStoryEverToldInAllOfHumanHistory' title='/pmwiki/pmwiki.php/WebAnimation/TheMostEpicStoryEverToldInAllOfHumanHistory' data-format='V2ViQW5pbWF0aW9uL1RoZU1vc3RFcGljU3RvcnlFdmVyVG9sZEluQWxsT2ZIdW1hbkhpc3Rvcnk='>The Most Epic Story Ever Told in All of Human History</a></em>: The trailer includes an extra scene during the credits where Epic Fail <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EpicFail' title='/pmwiki/pmwiki.php/Main/EpicFail' data-format='W1tFcGljRmFpbCBibG93cyB1cCBoaXMgb3duIHRvYXN0ZXIgYnkgdHJ5aW5nIHRvIHdhcm0gdXAgaGlzIERWRCBwbGF5ZXIgaW4gaXRdXQ=='>blows up his own toaster by trying to warm up his DVD player in it</a>, and Epic-Man does a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FacePalm' title='/pmwiki/pmwiki.php/Main/FacePalm' data-format='RmFjZVBhbG0='>Face Palm</a> in response. </li><li> A few <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouTubePoop' title='/pmwiki/pmwiki.php/Main/YouTubePoop' data-format='WW91VHViZVBvb3A='>YouTube Poop</a> videos show things at the end, such as subliminal messages/images or a "CUT-OFF PREVENTION" blurb (<span class='esc-seq' title='non-wikiword'>YouTube</span> is known for frequently cutting off half a second of video, maybe more depending on the length). Steg often shows a clip at the end of his videos showing Big Bird saying, "Coming soon on Sesame Street!" and then cutting to something completely unrelated, while Big Bird finishes off with "Toodle-oo!" </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/BattleForDreamIsland' title='/pmwiki/pmwiki.php/WebAnimation/BattleForDreamIsland' data-format='V2ViQW5pbWF0aW9uL0JhdHRsZUZvckRyZWFtSXNsYW5k'>Battle for Dream Island</a></em>, there will probably be one after the voting screen. So far, there are 41 stingers and counting. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HappyTreeFriends' title='/pmwiki/pmwiki.php/WebAnimation/HappyTreeFriends' data-format='V2ViQW5pbWF0aW9uL0hhcHB5VHJlZUZyaWVuZHM='>Happy Tree Friends</a></em>: <ul ><li> After the credits of "Clause For Concern, Cub is seen reaching for a light switch and is soon squashed by the door when a disappointed Pop opens it. </li><li> After the credits of "Mirror Mirror", Splendid's group try to wedge him out of the concrete with a giant crowbar, only to have it break. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/MinilifeTV' title='/pmwiki/pmwiki.php/WebAnimation/MinilifeTV' data-format='V2ViQW5pbWF0aW9uL01pbmlsaWZlVFY='>Minilife TV</a></em>: <ul ><li> After the credits of "The Semi-Finals", <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLEGOMovie' title='/pmwiki/pmwiki.php/WesternAnimation/TheLEGOMovie' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1RoZUxFR09Nb3ZpZSBhIGZhbWlsaWFyLWxvb2tpbmcgY29uc3RydWN0aW9uIHdvcmtlcl1d'>a familiar-looking construction worker</a> and his workmate are shown repairing the hole left in the wall of the arena from the match in the episode. </li><li> During the credits of "The Party (Season Finale)", there's a scene where Genevieve interviews Vince about Chris and Ian's roof collapsing, but Vince is unable to answer. </li><li> After the credits of the Minilife Chronicles episode "The Student and The Master", Abel calls Chris about coming to visit Minilife City for the World Martial Arts Tournament, and there's a reanimated scene from "Flashback to Fortune Teller Fankii". </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HFIL' title='/pmwiki/pmwiki.php/WebAnimation/HFIL' data-format='V2ViQW5pbWF0aW9uL3t7SEZJTH19'>HFIL</a></em> has these in a carryover from its parent series <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DragonBallZAbridged' title='/pmwiki/pmwiki.php/WebVideo/DragonBallZAbridged' data-format='V2ViVmlkZW8vRHJhZ29uQmFsbFpBYnJpZGdlZA=='>Dragon Ball Z Abridged</a></em>. The ogres even <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakingTheFourthWall' title='/pmwiki/pmwiki.php/Main/BreakingTheFourthWall' data-format='W1tCcmVha2luZ1RoZUZvdXJ0aFdhbGwgZGlyZWN0bHkgbWVudGlvbiB0aGVtXV0='>directly mention them</a> in episode 9, pointing out how often people miss them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/ThePinkCity' title='/pmwiki/pmwiki.php/WebAnimation/ThePinkCity' data-format='V2ViQW5pbWF0aW9uL1RoZVBpbmtDaXR5'>The Pink City</a></em>: In "Elain the Bounty Hunter", after the credits finish, it shows Dento still stuck in the elevator. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/WolfSongTheMovie' title='/pmwiki/pmwiki.php/WebAnimation/WolfSongTheMovie' data-format='V2ViQW5pbWF0aW9uL1dvbGZTb25nVGhlTW92aWU='>Wolf Song: The Movie</a> has a dialogue free stinger, showing that Hartanna and Kendon have defected to the side of the Death Alpha and that Mai, the Death Alpha’s daughter, has given birth to a pup that looks suspiciously similar to Alador </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Webcomics&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Conversed' title='/pmwiki/pmwiki.php/Main/Conversed' data-format='e3tDb252ZXJzZWR9fQ=='>Conversed</a> in <a class='urllink' href='http://basicinstructions.net/basic-instructions/2011/3/6/how-to-synergize.html'>this<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/BasicInstructions' title='/pmwiki/pmwiki.php/Webcomic/BasicInstructions' data-format='V2ViY29taWMvQmFzaWNJbnN0cnVjdGlvbnM='>Basic Instructions</a></em> strip. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Webcomic/CinemaBums' title='/pmwiki/pmwiki.php/Webcomic/CinemaBums' data-format='V2ViY29taWMvQ2luZW1hQnVtcw=='>Cinema Bums</a></em> speculates on one in <a class='urllink' href='http://www.cinemabums.com/?p=335'>this<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> strip. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' title='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' data-format='V2ViY29taWMvRWxHb29uaXNoU2hpdmU='>El Goonish Shive</a></em> has one at the end of "New And Old Flames" arc and a more smooth but deep one at the end of "One Way Road" arc. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/GunnerkriggCourt' title='/pmwiki/pmwiki.php/Webcomic/GunnerkriggCourt' data-format='V2ViY29taWMvR3VubmVya3JpZ2dDb3VydA=='>Gunnerkrigg Court</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/GunnerkriggCourtChapter3Reynardine' title='/pmwiki/pmwiki.php/Recap/GunnerkriggCourtChapter3Reynardine' data-format='W1tSZWNhcC9HdW5uZXJrcmlnZ0NvdXJ0Q2hhcHRlcjNSZXluYXJkaW5lIENoYXB0ZXIgM11d'>Chapter 3</a> ends as the last panel complements the page and whole chapter, in different ways. <!--** And now you can add Chapter 46 to the list.--> </li><li> Occasionally some <a class='twikilink' href='/pmwiki/pmwiki.php/Website/Reddit' title='/pmwiki/pmwiki.php/Website/Reddit' data-format='e3tXZWJzaXRlL1JlZGRpdH19'>Reddit</a> <a class='urllink' href='https://tvtropes.org/pmwiki/pmwiki.php/Webcomic/Polandball'>Polandball<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> comics will have stingers in the comments section. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ShenComix' title='/pmwiki/pmwiki.php/Webcomic/ShenComix' data-format='V2ViY29taWMvU2hlbkNvbWl4'>Shen Comix</a></em>: <em>Fly to the Heavens</em> ends with with two black panels reading "Art by Shen" and "Writing by Shen", followed by one additional strip showing a diminished Life getting up and running after Shen. <div class='indent'>Always wait until after the credits. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SluggyFreelance' title='/pmwiki/pmwiki.php/Webcomic/SluggyFreelance' data-format='V2ViY29taWMvU2x1Z2d5RnJlZWxhbmNl'>Sluggy Freelance</a></em> 'Displacement' story arc ended on an tidy Epilogue...Or So It Seemed. The next strip showed two castaway villains resigning themselves to an island Paradise, and relaxed in poses <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Bookends' title='/pmwiki/pmwiki.php/Main/Bookends' data-format='W1t7e0Jvb2tlbmRzfX0gbWF0Y2hpbmcgVG9yZyBhbmQgU2FzaGEmIzAzOTtzIGF0IHRoZSBiZWdpbm5pbmcgb2YgdGhlIHN0b3J5XV0='>matching Torg and Sasha's at the beginning of the story</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Trevor2020' title='/pmwiki/pmwiki.php/Webcomic/Trevor2020' data-format='V2ViY29taWMvVHJldm9yMjAyMA=='>Trevor (2020)</a></em>, after the credits are over, the last shot of the comic is of the early dawn sky, through the windows of the doors at the entrance to the medical facility. The only reminder of the carnage that took place earlier that night is <span class="spoiler" title="you can set spoilers visible by default on your profile" >Dr. Maddison’s</span> severed hand on the floor. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/DesuDesBrigade' title='/pmwiki/pmwiki.php/Website/DesuDesBrigade' data-format='V2Vic2l0ZS9EZXN1RGVzQnJpZ2FkZQ=='>DesuDesBrigade</a></em>: Professor Otaku has ended every review of his since <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/StreetFighterII' title='/pmwiki/pmwiki.php/VideoGame/StreetFighterII' data-format='VmlkZW9HYW1lL1N0cmVldEZpZ2h0ZXJJSQ=='>Street Fighter II</a> with one of these, of varying hilarity levels. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Website/Botchamania' title='/pmwiki/pmwiki.php/Website/Botchamania' data-format='V2Vic2l0ZS97e0JvdGNoYW1hbmlhfX0='>Botchamania</a> ends most of his videos with a video clip (not always wrestling related but almost always incorporating one of the series many <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='e3tSdW5uaW5nIEdhZ319cw=='>Running Gags</a>), and usually incorporates the audio/video clip of <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TheIronSheik' title='/pmwiki/pmwiki.php/Wrestling/TheIronSheik' data-format='V3Jlc3RsaW5nL1RoZUlyb25TaGVpaw=='>The Iron Sheik</a> shouting "FUCK!" </li><li> The vidya gaems awards webpage showed among its categories "fattest developer". At the gala, this award seemed to have been skipped. Except it didn't. </li><li> "Ayla and the Networks" in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WhateleyUniverse' title='/pmwiki/pmwiki.php/Literature/WhateleyUniverse' data-format='TGl0ZXJhdHVyZS9XaGF0ZWxleVVuaXZlcnNl'>Whateley Universe</a></em>: Chaka's last joke at the end of the story, and its aftermath. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Neopets' title='/pmwiki/pmwiki.php/Website/Neopets' data-format='V2Vic2l0ZS97e05lb3BldHN9fQ=='>Neopets</a></em>: The day after the conclusion of the 2023 Faerie Festival, a comic appeared on the event's main page, revealing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' title='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' data-format='W1tUaGVNYW5CZWhpbmRUaGVNYW4gdGhlIHZpbGxhaW4gYmVoaW5kIE1hbGt1cyBWaWxlXV0='>the villain behind Malkus Vile</a> and hinting at events to come. </li><li> "Sorry for the long post. Here's a potato." </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder14');">&nbsp;&nbsp;&nbsp;&nbsp;Web Videos&nbsp;</div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheBritishRailwayStories' title='/pmwiki/pmwiki.php/WebVideo/TheBritishRailwayStories' data-format='V2ViVmlkZW8vVGhlQnJpdGlzaFJhaWx3YXlTdG9yaWVz'>The British Railway Stories</a></em>: <ul ><li> Episode 14, Silent Night, had a scene after the end credits of Hawk pulling a train back to the Western Region of British Rail. It was then followed by text stating that <span class='esc-seq' title='non-wikiword'>GWR</span> Class 94xx No. 9400, aka Hawk, is now preserved at the <span class='esc-seq' title='non-wikiword'>STEAM</span> Museum in the old railway town, his spiritual home in Swindon. </li><li> Episode 15, Day Of The Deltic, has Gronk going along the line and entering Leeds Central, where a bunch of steam engines are being cut up for scrapping. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Chrontendo' title='/pmwiki/pmwiki.php/WebVideo/Chrontendo' data-format='V2ViVmlkZW8ve3tDaHJvbnRlbmRvfX0='>Chrontendo</a></em> has had a few of these, starting from chrontendo episode 32 onwards and finishing with chrontendo episode 38 (with the exception of chrontendo episode 37). It was usually a fragment of a TV Show, Film or Music track that he was talking about in the episode itself. </li><li> The scene at the end of the credits of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/StarTrekNewVoyages' title='/pmwiki/pmwiki.php/WebVideo/StarTrekNewVoyages' data-format='V2ViVmlkZW8vU3RhclRyZWtOZXdWb3lhZ2Vz'>Star Trek: New Voyages</a></em> episode "To Serve All My Days", which reveals that most of the entire episode was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllJustADream' title='/pmwiki/pmwiki.php/Main/AllJustADream' data-format='QWxsSnVzdEFEcmVhbQ=='>All Just a Dream</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/WorldsGreatestAdventures' title='/pmwiki/pmwiki.php/WebVideo/WorldsGreatestAdventures' data-format='V2ViVmlkZW8vV29ybGRzR3JlYXRlc3RBZHZlbnR1cmVz'>World's Greatest Adventures</a></em> has used infrequent stingers to punctuate jokes from the episode proper. The Season 1 finale ends on a more sinister one, showing that Warlord Cassius is planning something. </li><li> The plot threads left hanging by the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Lonelygirl15' title='/pmwiki/pmwiki.php/WebVideo/Lonelygirl15' data-format='V2ViVmlkZW8vTG9uZWx5Z2lybDE1'>lonelygirl15</a></em> were arguably a sequel hook to begin with. But then, just when you think it's over, one more video is uploaded. We see the now-penultimate video being taped from a different angle, then at literally the last second, reveal the blogger to be none other than <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDragon' title='/pmwiki/pmwiki.php/Main/TheDragon' data-format='VGhlRHJhZ29u'>The Dragon</a>... </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=QaiB0AUNqCs'>We come back Tuesday<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> A few of the <a class='urllink' href='http://www.failblog.org'>FailBlog<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> videos did this by playing audio from part of the featured video over the credit screen. <ul ><li> <a class='urllink' href='https://www.youtube.com/watch?v=gBkVuT5pw1g'>AYDS Commercial Fail (3-13-09)<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: "Use only as directed." </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=mzArewRwLWY'>Audition Fail (3-17-09)<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: The audio from the "Interpretive Dance Win" continues into the "Today's Fail Powered By..." and the credit page. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=U6MATa-IxEg'>911 Operator Fail (3-19-09)<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: Narcoleptic operator snoring and caller asking, "Are you there?" </li></ul></li><li> Most of <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/StuartAshen' title='/pmwiki/pmwiki.php/Creator/StuartAshen' data-format='W1tDcmVhdG9yL1N0dWFydEFzaGVuIEFzaGVuc11d'>Ashens</a>' review videos have one. </li><li> <a class='urllink' href='http://www.gamescrap.com'>Gamescrap.com's<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Action52' title='/pmwiki/pmwiki.php/VideoGame/Action52' data-format='VmlkZW9HYW1lL0FjdGlvbjUy'>Action 52</a></em> <a class='urllink' href='http://www.gamescrap.com/An-Intro-to-the-Action-52.html'>marathon review<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> had these at the end of a few of their videos: <ul ><li> <a class='urllink' href='https://www.youtube.com/watch?v=n2On5lsX6fM'>Starevil<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: The phrase "everything else you could care to know" in the ending card is replaced with "more pink than you can handle". </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=6ihdB-sa1wQ'>Illuminator<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: The phrase "everything else you could care to know" in the ending card is replaced with "the eternal struggle of illuminator vs goth". </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=MdZf9p90pNc'>Operation Moon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: The frozen music continues over the ending card. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=carLKDyPeRM'>Hambo's Adventures<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: The ending card appears as normal, but Hambo's sprite suddenly replaces it and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScreamerPrank' title='/pmwiki/pmwiki.php/Main/ScreamerPrank' data-format='W1tTY3JlYW1lclByYW5rIGxvdWQgc291bmQgY2xpcF1d'>loud sound clip</a> of someone saying "Hambo!" plays. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=mDQeT67Ez6A'>Cheetahmen<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: The ending card appears as normal, then a gameplay clip plays of Apollo stuck in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GameBreakingBug' title='/pmwiki/pmwiki.php/Main/GameBreakingBug' data-format='W1tHYW1lQnJlYWtpbmdCdWcgTGV2ZWwgMTBdXQ=='>Level 10</a> and losing his last two lives. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/WheezyWaiter' title='/pmwiki/pmwiki.php/WebVideo/WheezyWaiter' data-format='V2ViVmlkZW8vV2hlZXp5V2FpdGVy'>Wheezy Waiter</a> usually has info about other videos he's been in, tours, or just bloopers. </li><li> A longtime trademark of <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/LoadingReadyRun' title='/pmwiki/pmwiki.php/WebVideo/LoadingReadyRun' data-format='V2ViVmlkZW8vTG9hZGluZ1JlYWR5UnVu'>LoadingReadyRun</a> ; even in the years after they stopped making weekly sketches a variety of other programming has picked up the torch including the occasional Twitch stream (if only as a courtesy to the chat; ads are run at the end of streams and a stinger serves to inform any chat members who left the window open that the stream is about to be taken offline). This extends to <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DesertBusForHope' title='/pmwiki/pmwiki.php/WebVideo/DesertBusForHope' data-format='V2ViVmlkZW8vRGVzZXJ0QnVzRm9ySG9wZQ=='>Desert Bus for Hope</a> ; once the fundraiser proper has concluded, the chat will even remind viewers to 'hold for stinger'; as in, don't leave yet, there's going to be one more thing soon. </li><li> Before the video ends, Harley Morenstein of <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/EpicMealTime' title='/pmwiki/pmwiki.php/WebVideo/EpicMealTime' data-format='V2ViVmlkZW8vRXBpY01lYWxUaW1l'>Epic Meal Time</a> says, "Next time, we eat <em>x</em>". </li><li> Every episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/EchoChamber' title='/pmwiki/pmwiki.php/WebVideo/EchoChamber' data-format='V2ViVmlkZW8vRWNob0NoYW1iZXI='>Echo Chamber</a></em> so far has had a stinger. Usually they are outtakes, but <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' title='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' data-format='W1tVbnJlc29sdmVkU2V4dWFsVGVuc2lvbiBFcGlzb2RlIDVdXQ=='>Episode 5</a> has one with <span class="spoiler" title="you can set spoilers visible by default on your profile" > actual plot relevance</span>. </li><li> Played with at the end of some <a class='twikilink' href='/pmwiki/pmwiki.php/Music/BadLipReading' title='/pmwiki/pmwiki.php/Music/BadLipReading' data-format='TXVzaWMvQmFkTGlwUmVhZGluZw=='>Bad Lip Reading</a> videos. A shot already in the video proper is shown but with different lyrics, presumably from an earlier draft. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/AtopTheFourthWall' title='/pmwiki/pmwiki.php/WebVideo/AtopTheFourthWall' data-format='V2ViVmlkZW8vQXRvcFRoZUZvdXJ0aFdhbGw='>Atop the Fourth Wall</a></em> <ul ><li> Most episodes will sometimes have one after the credits roll, usually related to the current storyline or an alternate gag that couldn't fit into the review itself. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/AtopTheFourthWallTheMovie' title='/pmwiki/pmwiki.php/WebVideo/AtopTheFourthWallTheMovie' data-format='V2ViVmlkZW8vQXRvcFRoZUZvdXJ0aFdhbGxUaGVNb3ZpZQ=='>Atop the Fourth Wall: The Movie</a></em> feature two in a row. The first shows Mechakara's remains back on Europa, with mystical energy coming from his hand, hinting that the healing effect of <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/ToBoldlyFlee' title='/pmwiki/pmwiki.php/WebVideo/ToBoldlyFlee' data-format='W1tXZWJWaWRlby9Ub0JvbGRseUZsZWUgdGhlIFBsb3QgSG9sZV1d'>the Plot Hole</a> will eventually restore him back to life. It's soon followed up by returning to Linkara's birthday party, where everyone is staring in silence after the Cinema Snob showed them <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SaloOrThe120DaysOfSodom' title='/pmwiki/pmwiki.php/Film/SaloOrThe120DaysOfSodom' data-format='RmlsbS9TYWxvT3JUaGUxMjBEYXlzT2ZTb2RvbQ=='>Salò, or the 120 Days of Sodom</a></em>. </li></ul></li><li> The people of <a class='twikilink' href='/pmwiki/pmwiki.php/Website/ChannelAwesome' title='/pmwiki/pmwiki.php/Website/ChannelAwesome' data-format='V2Vic2l0ZS9DaGFubmVsQXdlc29tZQ=='>Channel Awesome</a> always have a funny line from the review play over the <a class='twikilink' href='/pmwiki/pmwiki.php/Website/ChannelAwesome' title='/pmwiki/pmwiki.php/Website/ChannelAwesome' data-format='V2Vic2l0ZS9DaGFubmVsQXdlc29tZQ=='>Channel Awesome</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VanityPlate' title='/pmwiki/pmwiki.php/Main/VanityPlate' data-format='VmFuaXR5UGxhdGU='>Vanity Plate</a>. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/BennettTheSage' title='/pmwiki/pmwiki.php/WebVideo/BennettTheSage' data-format='V2ViVmlkZW8vQmVubmV0dFRoZVNhZ2U='>Bennett the Sage</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Devilman' title='/pmwiki/pmwiki.php/Manga/Devilman' data-format='TWFuZ2Eve3tEZXZpbG1hbn19'>Devilman</a></em> review, we were treated to a scene at the end where Bennett holds up the infamous, rare and uncut VHS version of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ViolenceJack' title='/pmwiki/pmwiki.php/Manga/ViolenceJack' data-format='TWFuZ2EvVmlvbGVuY2VKYWNr'>Violence Jack</a></em> in hand, lamenting that many people want him to review it, but it's so rare, there's not even a torrent of it and plans to keep it that way, resulting in him throwing the tape off a bridge and into a river, fading to the credits. But there's still a minute or two left after credits. What do we get? <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NightmareFuel' title='/pmwiki/pmwiki.php/Main/NightmareFuel' data-format='W1tOaWdodG1hcmVGdWVsIFZJT0xFTkNFIElTIENPTUlOR11d'>VIOLENCE IS COMING</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEndOrIsIt' title='/pmwiki/pmwiki.php/Main/TheEndOrIsIt' data-format='W1tUaGVFbmRPcklzSXQgVGhpcyBtaWdodCBub3QgYmUgdGhlIGxhc3Qgd2Ugc2VlbiBvZl1d'>This might not be the last we seen of</a> <em>Violence Jack</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Phelous' title='/pmwiki/pmwiki.php/WebVideo/Phelous' data-format='V2ViVmlkZW8ve3tQaGVsb3VzfX0='>Phelous</a> ended his <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/JacobsLadder' title='/pmwiki/pmwiki.php/Film/JacobsLadder' data-format='RmlsbS9KYWNvYnNMYWRkZXI='>Jacob's Ladder</a></em> review revealing that every review of his from the past five years has never really happened due to him dying at the end of first review, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MacAndMe' title='/pmwiki/pmwiki.php/Film/MacAndMe' data-format='RmlsbS9NYWNBbmRNZQ=='>Mac and Me</a></em>, resulting in him never leading go of his life, forced to keep reviewing shitty movies. He then accepted his death and we were treated to the last image of his death from his first episode before we cut to the credits, which was in complete silence unlike his other reviews. But then you start hearing what appears to be siren sounds in the background slowly increasing in volume before we're treated to a quick scene of Phelous' door and the door knocking. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Noob' title='/pmwiki/pmwiki.php/Series/Noob' data-format='U2VyaWVzL3t7Tm9vYn19'>Noob</a></em>: <ul ><li> Many episodes have one starting Season 2, with content that can be anything from an extra gag related to the episode to a small piece of actual story progression. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/NoobLeConseilDesTroisFactions' title='/pmwiki/pmwiki.php/Film/NoobLeConseilDesTroisFactions' data-format='RmlsbS9Ob29iTGVDb25zZWlsRGVzVHJvaXNGYWN0aW9ucw=='>Noob: Le Conseil des Trois Factions</a></em> has three seperate ones: Two are extra scenes with characters of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThirdLineSomeWaiting' title='/pmwiki/pmwiki.php/Main/ThirdLineSomeWaiting' data-format='VGhpcmRMaW5lU29tZVdhaXRpbmc='>Third Line, Some Waiting</a> plot, while the third has the narcoleptic character that had'nt been seen for the whole movie wake up and hope she didn't miss anything important. </li></ul></li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/MatthewSantoro' title='/pmwiki/pmwiki.php/WebVideo/MatthewSantoro' data-format='W1tXZWJWaWRlby9NYXR0aGV3U2FudG9ybyBNYXR0IFNhbnRvcm9dXQ=='>Matt Santoro</a>'s web series, when Matt does this, he thanks the viewer for watching the video, tells them to subscribe if they enjoyed the content, and tells them about his other internet accounts. </li><li> Many recent <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/CinemaSins' title='/pmwiki/pmwiki.php/WebVideo/CinemaSins' data-format='V2ViVmlkZW8vQ2luZW1hU2lucw=='>CinemaSins</a> videos have these, and they enter <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouTubePoop' title='/pmwiki/pmwiki.php/Main/YouTubePoop' data-format='WW91VHViZVBvb3A='>YouTube Poop</a> territory. They <em>do</em> include footage from the movie that is being sinned, though. </li><li> Much like <span class='esc-seq' title='non-wikiword'>CinemaSins</span>, some <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/MysteryScienceTheaterF1' title='/pmwiki/pmwiki.php/WebVideo/MysteryScienceTheaterF1' data-format='V2ViVmlkZW8vTXlzdGVyeVNjaWVuY2VUaGVhdGVyRjE='>Mystery Science Theater F1</a></em> episodes have "musical fun" after the outro, where things that happened or are said by commentators during the race are placed with relevant songs. </li><li> Some episodes of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/BingingWithBabish' title='/pmwiki/pmwiki.php/WebVideo/BingingWithBabish' data-format='V2ViVmlkZW8vQmluZ2luZ1dpdGhCYWJpc2g='>Binging with Babish</a></em> include a short, amusing clip from the cooking process at the end, complete with the raw audio. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DragonBallZAbridged' title='/pmwiki/pmwiki.php/WebVideo/DragonBallZAbridged' data-format='V2ViVmlkZW8vRHJhZ29uQmFsbFpBYnJpZGdlZA=='>Dragon Ball Z Abridged</a></em> has one in almost every episode, ranging from throwaway jokes to important plot developments. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/CrossedLines' title='/pmwiki/pmwiki.php/WebVideo/CrossedLines' data-format='V2ViVmlkZW8vQ3Jvc3NlZExpbmVz'>Crossed Lines</a></em>: All the episodes, except "Going Haywire" and "The Long Journey Home", have one. <ul ><li> Episode 1, Public Enemy: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Clay finally manages to get the train he was double-heading with Atlas to its intended destination by himself after Atlas leaves him to takes Mr. Traverse's train. He's then informed that he's very late as a result.</span> </li><li> Episode 2, Down The Drains: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Atlas has just been fitted with a control link so he can contact other engines and control. He tries contacting Wurzel with it, only to send a massive feedback through it.</span> </li><li> Episode 3, From Dusk Till Dawn: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Clay and Cojack are doing yard work while Dawn's at the works. Cojack isn't happy with it, while Clay suggests working to music. He then starts singing <a class='twikilink' href='/pmwiki/pmwiki.php/Music/KylieMinogue' title='/pmwiki/pmwiki.php/Music/KylieMinogue' data-format='W1tNdXNpYy9LeWxpZU1pbm9ndWUgVGhlIExvY29tb3Rpb25dXQ=='>The Locomotion</a>, to which Cojack responds that he never do that again.</span> </li><li> Episode 5, Nightmares: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Atlas has a nightmare where he's on a turntable, surrounded by the Waterdown engines, who all have static in place of their faces. He's then confronted by M, who has Dev-kahn1's screen in place of her face, shouting Dev-kahn1's words at Atlas. Atlas then wakes up, wondering who M is.</span> </li><li> Episode 6, The Mail Bag Snag: <span class="spoiler" title="you can set spoilers visible by default on your profile" >A still sepia-toned image of Atlas and M, revealed to be named Ember, side-by-side.</span> </li><li> Episode 7, Rebel Iron: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Discovering that Whistler allowed Zebedee and Boomer into the Masonry Bridge Scrapyard to rescue Ember, Mr. Hardgraves decides to scrap Whistler in her place. Mr. Hardgraves then discovers a poster for the Waterdown Railway, showing him where to go to find Ember.</span> </li><li> Episode 8, Kindred Spirits: <span class="spoiler" title="you can set spoilers visible by default on your profile" >A still sepia-toned image of Atlas and Ember at a station on the Masonry Bridge Railway, when Ember was the railway's main express engine.</span> </li></ul></li><li> Most of the videos on the <a class='urllink' href='https://www.youtube.com/c/emmymade'>Emmymade<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='twikilink' href='/pmwiki/pmwiki.php/Website/YouTube' title='/pmwiki/pmwiki.php/Website/YouTube' data-format='V2Vic2l0ZS9Zb3VUdWJl'>YouTube</a> channel have stingers after the closing music and endcard. These usually involve Emmy saying or doing something silly. </li><li> Most of the cat videos on the <span class='esc-seq' title='non-wikiword'>YouTube</span> channel <a class='urllink' href='https://m.youtube.com/@ButtersTheBean'>Butters The Bean<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> have an extra scene after the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThankingTheViewer' title='/pmwiki/pmwiki.php/Main/ThankingTheViewer' data-format='VGhhbmtpbmdUaGVWaWV3ZXI='>Thanking the Viewer</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PleaseSubscribeToOurChannel' title='/pmwiki/pmwiki.php/Main/PleaseSubscribeToOurChannel' data-format='UGxlYXNlU3Vic2NyaWJlVG9PdXJDaGFubmVs'>Please Subscribe to Our Channel</a> screens are shown. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheSpider2024' title='/pmwiki/pmwiki.php/WebVideo/TheSpider2024' data-format='V2ViVmlkZW8vVGhlU3BpZGVyMjAyNA=='>The Spider (2024)</a></em> has a post-credits scene with a bystander encountering <span class="spoiler" title="you can set spoilers visible by default on your profile" >Peter's fully-mutated form.</span> </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/ITVInTheFace' title='/pmwiki/pmwiki.php/WebVideo/ITVInTheFace' data-format='V2ViVmlkZW8vSVRWSW5UaGVGYWNl'>ITV in the Face</a></em> episode, "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/ITVInTheFaceS1E6SurvivalOfTheFittest' title='/pmwiki/pmwiki.php/Recap/ITVInTheFaceS1E6SurvivalOfTheFittest' data-format='W1tSZWNhcC9JVFZJblRoZUZhY2VTMUU2U3Vydml2YWxPZlRoZUZpdHRlc3QgU3Vydml2YWwgb2YgdGhlIEZpdHRlc3RdXQ=='>Survival of the Fittest</a>", ends with a clip (with inverted colours and distorted audio) of <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/NicholasParsons' title='/pmwiki/pmwiki.php/Creator/NicholasParsons' data-format='Q3JlYXRvci9OaWNob2xhc1BhcnNvbnM='>Nicholas Parsons</a> awkwardly badgering a shy contestant on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SaleOfTheCentury' title='/pmwiki/pmwiki.php/Series/SaleOfTheCentury' data-format='U2VyaWVzL1NhbGVPZlRoZUNlbnR1cnk='>Sale of the Century</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');">&nbsp;&nbsp;&nbsp;&nbsp;Pages on This Very Wiki&nbsp;</div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> This article </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TwoThousandAD' title='/pmwiki/pmwiki.php/ComicBook/TwoThousandAD' data-format='W1tDb21pY0Jvb2svVHdvVGhvdXNhbmRBRCAyMDAwIEFEXV0='>2000 AD</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSeventhGuest' title='/pmwiki/pmwiki.php/VideoGame/TheSeventhGuest' data-format='VmlkZW9HYW1lL1RoZVNldmVudGhHdWVzdA=='>The 7th Guest</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdvancedTech2000' title='/pmwiki/pmwiki.php/Main/AdvancedTech2000' data-format='QWR2YW5jZWRUZWNoMjAwMA=='>Advanced Tech 2000</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/AlbertoDelRio' title='/pmwiki/pmwiki.php/Wrestling/AlbertoDelRio' data-format='V3Jlc3RsaW5nL0FsYmVydG9EZWxSaW8='>Alberto Del Rio</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AncientConspiracy' title='/pmwiki/pmwiki.php/Main/AncientConspiracy' data-format='QW5jaWVudENvbnNwaXJhY3k='>Ancient Conspiracy</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AndThenJohnWasAZombie' title='/pmwiki/pmwiki.php/Main/AndThenJohnWasAZombie' data-format='QW5kVGhlbkpvaG5XYXNBWm9tYmll'>And Then John Was a Zombie</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AngelsDevilsAndSquid' title='/pmwiki/pmwiki.php/Main/AngelsDevilsAndSquid' data-format='QW5nZWxzRGV2aWxzQW5kU3F1aWQ='>Angels, Devils and Squid</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheAnnoyingOrange' title='/pmwiki/pmwiki.php/WebVideo/TheAnnoyingOrange' data-format='V2ViVmlkZW8vVGhlQW5ub3lpbmdPcmFuZ2U='>The Annoying Orange</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Anthrax' title='/pmwiki/pmwiki.php/Music/Anthrax' data-format='TXVzaWMve3tBbnRocmF4fX0='>Anthrax</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AreYouPonderingWhatImPondering' title='/pmwiki/pmwiki.php/Main/AreYouPonderingWhatImPondering' data-format='QXJlWW91UG9uZGVyaW5nV2hhdEltUG9uZGVyaW5n'>Are You Pondering What I'm Pondering?</a> <div class='indent'>I think so, Brain, but where are we going to find <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoodleImplements' title='/pmwiki/pmwiki.php/Main/NoodleImplements' data-format='W1tOb29kbGVJbXBsZW1lbnRzIGEgZHVjayBhbmQgYSBob3NlXV0='>a duck and a hose</a> at this hour? </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AsianStoreOwner' title='/pmwiki/pmwiki.php/Main/AsianStoreOwner' data-format='QXNpYW5TdG9yZU93bmVy'>Asian Store-Owner</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AudienceAlienatingEnding' title='/pmwiki/pmwiki.php/Main/AudienceAlienatingEnding' data-format='QXVkaWVuY2VBbGllbmF0aW5nRW5kaW5n'>Audience-Alienating Ending</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheAvengers2012' title='/pmwiki/pmwiki.php/Film/TheAvengers2012' data-format='RmlsbS97e1RoZSBBdmVuZ2Vyc3wyMDEyfX0='>The Avengers</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DeAvonturenVanVarkentjeRund' title='/pmwiki/pmwiki.php/WesternAnimation/DeAvonturenVanVarkentjeRund' data-format='V2VzdGVybkFuaW1hdGlvbi9EZUF2b250dXJlblZhblZhcmtlbnRqZVJ1bmQ='>De Avonturen van Varkentje Rund</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeeAfraid' title='/pmwiki/pmwiki.php/Main/BeeAfraid' data-format='QmVlQWZyYWlk'>Bee Afraid</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeingTheBrush' title='/pmwiki/pmwiki.php/Main/BeingTheBrush' data-format='QmVpbmdUaGVCcnVzaA=='>Being the Brush</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/BenDrowned' title='/pmwiki/pmwiki.php/WebVideo/BenDrowned' data-format='V2ViVmlkZW8vQmVuRHJvd25lZA=='>Ben Drowned</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/BenTheLooney' title='/pmwiki/pmwiki.php/WebAnimation/BenTheLooney' data-format='V2ViQW5pbWF0aW9uL0JlblRoZUxvb25leQ=='>Ben The Looney</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigNever' title='/pmwiki/pmwiki.php/Main/BigNever' data-format='QmlnTmV2ZXI='>Big "NEVER!"</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigNo' title='/pmwiki/pmwiki.php/Main/BigNo' data-format='QmlnTm8='>Big "NO!"</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigShutUp' title='/pmwiki/pmwiki.php/Main/BigShutUp' data-format='QmlnU2h1dFVw'>Big "SHUT UP!"</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigWhat' title='/pmwiki/pmwiki.php/Main/BigWhat' data-format='QmlnV2hhdA=='>Big &quot;WHAT?!&quot;</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigWhy' title='/pmwiki/pmwiki.php/Main/BigWhy' data-format='QmlnV2h5'>Big "WHY?!"</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigYes' title='/pmwiki/pmwiki.php/Main/BigYes' data-format='QmlnWWVz'>Big "YES!"</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Blocklanta' title='/pmwiki/pmwiki.php/WebVideo/Blocklanta' data-format='V2ViVmlkZW8ve3tCbG9ja2xhbnRhfX0='>Blocklanta</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrokenBase' title='/pmwiki/pmwiki.php/Main/BrokenBase' data-format='QnJva2VuQmFzZQ=='>Broken Base</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CameraAbuse' title='/pmwiki/pmwiki.php/Main/CameraAbuse' data-format='Q2FtZXJhQWJ1c2U='>Camera Abuse</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CareBearStare' title='/pmwiki/pmwiki.php/Main/CareBearStare' data-format='Q2FyZUJlYXJTdGFyZQ=='>Care-Bear Stare</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Website/ChannelAwesome' title='/pmwiki/pmwiki.php/Website/ChannelAwesome' data-format='V2Vic2l0ZS9DaGFubmVsQXdlc29tZQ=='>Channel Awesome</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ChickTracts' title='/pmwiki/pmwiki.php/ComicBook/ChickTracts' data-format='Q29taWNCb29rL0NoaWNrVHJhY3Rz'>Chick Tracts</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/CinemaSins' title='/pmwiki/pmwiki.php/WebVideo/CinemaSins' data-format='V2ViVmlkZW8vQ2luZW1hU2lucw=='>CinemaSins</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Civilization' title='/pmwiki/pmwiki.php/VideoGame/Civilization' data-format='VmlkZW9HYW1lL3t7Q2l2aWxpemF0aW9ufX0='>Civilization</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Community' title='/pmwiki/pmwiki.php/Series/Community' data-format='U2VyaWVzL3t7Q29tbXVuaXR5fX0='>Community</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CookieClicker' title='/pmwiki/pmwiki.php/VideoGame/CookieClicker' data-format='VmlkZW9HYW1lL0Nvb2tpZUNsaWNrZXI='>Cookie Clicker</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClothespinNosePlug' title='/pmwiki/pmwiki.php/Main/ClothespinNosePlug' data-format='Q2xvdGhlc3Bpbk5vc2VQbHVn'>Clothespin Nose Plug</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClusterFBomb' title='/pmwiki/pmwiki.php/Main/ClusterFBomb' data-format='Q2x1c3RlckZCb21i'>Cluster F-Bomb</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CommanderContrarian' title='/pmwiki/pmwiki.php/Main/CommanderContrarian' data-format='Q29tbWFuZGVyQ29udHJhcmlhbg=='>Commander Contrarian</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConfucianConfusion' title='/pmwiki/pmwiki.php/Main/ConfucianConfusion' data-format='Q29uZnVjaWFuQ29uZnVzaW9u'>Confucian Confusion</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CORROSION' title='/pmwiki/pmwiki.php/VideoGame/CORROSION' data-format='VmlkZW9HYW1lL3t7Q09SUk9TSU9OfX0='>CORROSION</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreepyPasta' title='/pmwiki/pmwiki.php/Main/CreepyPasta' data-format='Q3JlZXB5UGFzdGE='>Creepypasta</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CurseCutShort' title='/pmwiki/pmwiki.php/Main/CurseCutShort' data-format='Q3Vyc2VDdXRTaG9ydA=='>Curse Cut Short</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DarkSimpsons' title='/pmwiki/pmwiki.php/WebVideo/DarkSimpsons' data-format='V2ViVmlkZW8vRGFya1NpbXBzb25z'>Dark Simpsons</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/DeathspellOmega' title='/pmwiki/pmwiki.php/Music/DeathspellOmega' data-format='TXVzaWMvRGVhdGhzcGVsbE9tZWdh'>Deathspell Omega</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemonicPossession' title='/pmwiki/pmwiki.php/Main/DemonicPossession' data-format='RGVtb25pY1Bvc3Nlc3Npb24='>Demonic Possession</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DepartmentOfRedundancyDepartment' title='/pmwiki/pmwiki.php/Main/DepartmentOfRedundancyDepartment' data-format='RGVwYXJ0bWVudE9mUmVkdW5kYW5jeURlcGFydG1lbnQ='>Department of Redundancy Department</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/DescribeTopicHere' title='/pmwiki/pmwiki.php/JustForFun/DescribeTopicHere' data-format='SnVzdEZvckZ1bi9EZXNjcmliZVRvcGljSGVyZQ=='>Describe Topic Here</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DeusExHumanRevolution' title='/pmwiki/pmwiki.php/VideoGame/DeusExHumanRevolution' data-format='VmlkZW9HYW1lL0RldXNFeEh1bWFuUmV2b2x1dGlvbg=='>Deus Ex: Human Revolution</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DevelopmentHell' title='/pmwiki/pmwiki.php/Main/DevelopmentHell' data-format='RGV2ZWxvcG1lbnRIZWxs'>Development Hell</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DidWeJustHaveTeaWithCthulhu' title='/pmwiki/pmwiki.php/Main/DidWeJustHaveTeaWithCthulhu' data-format='RGlkV2VKdXN0SGF2ZVRlYVdpdGhDdGh1bGh1'>Did We Just Have Tea with Cthulhu?</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiplomaticImpunity' title='/pmwiki/pmwiki.php/Main/DiplomaticImpunity' data-format='RGlwbG9tYXRpY0ltcHVuaXR5'>Diplomatic Impunity</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/DirtyPotter' title='/pmwiki/pmwiki.php/AudioPlay/DirtyPotter' data-format='QXVkaW9QbGF5L0RpcnR5UG90dGVy'>Dirty Potter</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DontExplainTheJoke' title='/pmwiki/pmwiki.php/Main/DontExplainTheJoke' data-format='RG9udEV4cGxhaW5UaGVKb2tl'>Don't Explain the Joke</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrillSergeantNasty' title='/pmwiki/pmwiki.php/Main/DrillSergeantNasty' data-format='RHJpbGxTZXJnZWFudE5hc3R5'>Drill Sergeant Nasty</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EarWorm' title='/pmwiki/pmwiki.php/Main/EarWorm' data-format='RWFyV29ybQ=='>Ear Worm</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEponymousShow' title='/pmwiki/pmwiki.php/Main/TheEponymousShow' data-format='VGhlRXBvbnltb3VzU2hvdw=='>The Eponymous Show</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilWeapon' title='/pmwiki/pmwiki.php/Main/EvilWeapon' data-format='RXZpbFdlYXBvbg=='>Evil Weapon</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExcuseQuestion' title='/pmwiki/pmwiki.php/Main/ExcuseQuestion' data-format='RXhjdXNlUXVlc3Rpb24='>Excuse Question</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FiveNightsAtFuckboys' title='/pmwiki/pmwiki.php/VideoGame/FiveNightsAtFuckboys' data-format='VmlkZW9HYW1lL0ZpdmVOaWdodHNBdEZ1Y2tib3lz'>Five Nights at Fuckboy's</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForkliftFu' title='/pmwiki/pmwiki.php/Main/ForkliftFu' data-format='Rm9ya2xpZnRGdQ=='>Forklift Fu</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FreePrizeAtTheBottom' title='/pmwiki/pmwiki.php/Main/FreePrizeAtTheBottom' data-format='RnJlZVByaXplQXRUaGVCb3R0b20='>Free Prize at the Bottom</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/GameTheory' title='/pmwiki/pmwiki.php/WebVideo/GameTheory' data-format='V2ViVmlkZW8vR2FtZVRoZW9yeQ=='>Game Theory</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/GetThatPizza' title='/pmwiki/pmwiki.php/Roleplay/GetThatPizza' data-format='Um9sZXBsYXkvR2V0VGhhdFBpenph'>GET THAT PIZZA!</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Godzilla2014' title='/pmwiki/pmwiki.php/Film/Godzilla2014' data-format='RmlsbS97e0dvZHppbGxhIDIwMTR9fQ=='>Godzilla (2014)</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GravityFalls' title='/pmwiki/pmwiki.php/WesternAnimation/GravityFalls' data-format='V2VzdGVybkFuaW1hdGlvbi9HcmF2aXR5RmFsbHM='>Gravity Falls</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GroundhogDayLoop' title='/pmwiki/pmwiki.php/Main/GroundhogDayLoop' data-format='R3JvdW5kaG9nRGF5TG9vcA=='>"Groundhog Day" Loop</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Hannibal' title='/pmwiki/pmwiki.php/Series/Hannibal' data-format='U2VyaWVzL3t7SGFubmliYWx9fQ=='>Hannibal</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeatIndex' title='/pmwiki/pmwiki.php/Main/HeatIndex' data-format='SGVhdEluZGV4'>Heat Index</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HehHehYouSaidX' title='/pmwiki/pmwiki.php/Main/HehHehYouSaidX' data-format='SGVoSGVoWW91U2FpZFg='>Heh Heh, You Said "X"</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hellevator' title='/pmwiki/pmwiki.php/Main/Hellevator' data-format='e3tIZWxsZXZhdG9yfX0='>Hellevator</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HideAndSeekHorror' title='/pmwiki/pmwiki.php/Main/HideAndSeekHorror' data-format='SGlkZUFuZFNlZWtIb3Jyb3I='>Hide-and-Seek Horror</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/HoboJohnson' title='/pmwiki/pmwiki.php/Music/HoboJohnson' data-format='TXVzaWMvSG9ib0pvaG5zb24='>Hobo Johnson</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/HonestTrailers' title='/pmwiki/pmwiki.php/WebVideo/HonestTrailers' data-format='V2ViVmlkZW8vSG9uZXN0VHJhaWxlcnM='>Honest Trailers</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HurlItIntoTheSun' title='/pmwiki/pmwiki.php/Main/HurlItIntoTheSun' data-format='SHVybEl0SW50b1RoZVN1bg=='>Hurl It into the Sun</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IfIHadANickel' title='/pmwiki/pmwiki.php/Main/IfIHadANickel' data-format='SWZJSGFkQU5pY2tlbA=='>If I Had a Nickel...</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheImpossibleQuiz' title='/pmwiki/pmwiki.php/VideoGame/TheImpossibleQuiz' data-format='VmlkZW9HYW1lL1RoZUltcG9zc2libGVRdWl6'>The Impossible Quiz</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Inception' title='/pmwiki/pmwiki.php/Film/Inception' data-format='RmlsbS97e0luY2VwdGlvbn19'>Inception</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItsPopularNowItSucks' title='/pmwiki/pmwiki.php/Main/ItsPopularNowItSucks' data-format='SXRzUG9wdWxhck5vd0l0U3Vja3M='>It's Popular, Now It Sucks!</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItsTheBestWhateverEver' title='/pmwiki/pmwiki.php/Main/ItsTheBestWhateverEver' data-format='SXRzVGhlQmVzdFdoYXRldmVyRXZlcg=='>It's the Best Whatever, Ever!</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JanesAddiction' title='/pmwiki/pmwiki.php/Music/JanesAddiction' data-format='TXVzaWMvSmFuZXNBZGRpY3Rpb24='>Jane's Addiction</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheJeeves' title='/pmwiki/pmwiki.php/Main/TheJeeves' data-format='VGhlSmVldmVz'>The Jeeves</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Kickassia' title='/pmwiki/pmwiki.php/WebVideo/Kickassia' data-format='V2ViVmlkZW8ve3tLaWNrYXNzaWF9fQ=='>Kickassia</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/KiraIsJustice' title='/pmwiki/pmwiki.php/Fanfic/KiraIsJustice' data-format='RmFuZmljL0tpcmFJc0p1c3RpY2U='>Kira Is Justice</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LackOfEmpathy' title='/pmwiki/pmwiki.php/Main/LackOfEmpathy' data-format='TGFja09mRW1wYXRoeQ=='>Lack of Empathy</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/LeylandKirby' title='/pmwiki/pmwiki.php/Music/LeylandKirby' data-format='TXVzaWMvTGV5bGFuZEtpcmJ5'>Leyland Kirby</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LieBackAndThinkOfEngland' title='/pmwiki/pmwiki.php/Main/LieBackAndThinkOfEngland' data-format='TGllQmFja0FuZFRoaW5rT2ZFbmdsYW5k'>Lie Back and Think of England</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Lost' title='/pmwiki/pmwiki.php/Series/Lost' data-format='U2VyaWVzL3t7TG9zdH19'>Lost</a></em> <span class="spoiler" title="you can set spoilers visible by default on your profile" >The text is in white.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MarioIsMissing' title='/pmwiki/pmwiki.php/VideoGame/MarioIsMissing' data-format='VmlkZW9HYW1lL01hcmlvSXNNaXNzaW5n'>Mario Is Missing!</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/LetsPlay/MarioPartyTV' title='/pmwiki/pmwiki.php/LetsPlay/MarioPartyTV' data-format='TGV0c1BsYXkvTWFyaW9QYXJ0eVRW'>Mario Party TV</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MaxPayne' title='/pmwiki/pmwiki.php/VideoGame/MaxPayne' data-format='VmlkZW9HYW1lL01heFBheW5l'>Max Payne</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MenInBlack' title='/pmwiki/pmwiki.php/Film/MenInBlack' data-format='RmlsbS9NZW5JbkJsYWNr'>Men in Black</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MindGameShip' title='/pmwiki/pmwiki.php/Main/MindGameShip' data-format='TWluZEdhbWVTaGlw'>Mind Game Ship</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMuppetShow' title='/pmwiki/pmwiki.php/Series/TheMuppetShow' data-format='U2VyaWVzL1RoZU11cHBldFNob3c='>The Muppet Show</a></em> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/StatlerAndWaldorf' title='/pmwiki/pmwiki.php/JustForFun/StatlerAndWaldorf' data-format='SnVzdEZvckZ1bi9TdGF0bGVyQW5kV2FsZG9yZg=='>Statler and Waldorf</a> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoreDakka' title='/pmwiki/pmwiki.php/Main/MoreDakka' data-format='TW9yZURha2th'>More Dakka</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NerdsSpeakKlingon' title='/pmwiki/pmwiki.php/Main/NerdsSpeakKlingon' data-format='TmVyZHNTcGVha0tsaW5nb24='>Nerds Speak Klingon</a>: "We are Klingon! Troping is honorable!" in Klingon. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoEnding' title='/pmwiki/pmwiki.php/Main/NoEnding' data-format='Tm9FbmRpbmc='>No Ending</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoGearLevel' title='/pmwiki/pmwiki.php/Main/NoGearLevel' data-format='Tm9HZWFyTGV2ZWw='>No-Gear Level</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/NobodyHere' title='/pmwiki/pmwiki.php/Website/NobodyHere' data-format='V2Vic2l0ZS9Ob2JvZHlIZXJl'>Nobody Here</a></em> has a "jump" button at the bottom, like most pages on that site. Unlike those, however, it's not random&#8212;it just takes you to this page. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheNoseless' title='/pmwiki/pmwiki.php/Main/TheNoseless' data-format='VGhlTm9zZWxlc3M='>The Noseless</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' data-format='T3VyRHJhZ29uc0FyZURpZmZlcmVudA=='>Our Dragons Are Different</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Persona' title='/pmwiki/pmwiki.php/Franchise/Persona' data-format='RnJhbmNoaXNlL3t7UGVyc29uYX19'>Persona</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PinkyAndTheBrain' title='/pmwiki/pmwiki.php/WesternAnimation/PinkyAndTheBrain' data-format='V2VzdGVybkFuaW1hdGlvbi9QaW5reUFuZFRoZUJyYWlu'>Pinky and the Brain</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlanetOfSteves' title='/pmwiki/pmwiki.php/Main/PlanetOfSteves' data-format='UGxhbmV0T2ZTdGV2ZXM='>Planet of Steves</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PleaseSubscribeToOurChannel' title='/pmwiki/pmwiki.php/Main/PleaseSubscribeToOurChannel' data-format='UGxlYXNlU3Vic2NyaWJlVG9PdXJDaGFubmVs'>Please Subscribe to Our Channel</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/PleasantGoatAndBigBigWolf' title='/pmwiki/pmwiki.php/Animation/PleasantGoatAndBigBigWolf' data-format='QW5pbWF0aW9uL1BsZWFzYW50R29hdEFuZEJpZ0JpZ1dvbGY='>Pleasant Goat and Big Big Wolf</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonRadicalRed' title='/pmwiki/pmwiki.php/VideoGame/PokemonRadicalRed' data-format='VmlkZW9HYW1lL1Bva2Vtb25SYWRpY2FsUmVk'>Pokémon Radical Red</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PowerBomberman' title='/pmwiki/pmwiki.php/VideoGame/PowerBomberman' data-format='VmlkZW9HYW1lL1Bvd2VyQm9tYmVybWFu'>Power Bomberman</a></em> ends, like all matches, with someone being declared the winner. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfLove' title='/pmwiki/pmwiki.php/Main/ThePowerOfLove' data-format='VGhlUG93ZXJPZkxvdmU='>The Power of Love</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreviouslyOn' title='/pmwiki/pmwiki.php/Main/PreviouslyOn' data-format='UHJldmlvdXNseU9u'>Previously on…</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RageQuit' title='/pmwiki/pmwiki.php/Main/RageQuit' data-format='UmFnZVF1aXQ='>Rage Quit</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/RatchetAndClank2016' title='/pmwiki/pmwiki.php/WesternAnimation/RatchetAndClank2016' data-format='V2VzdGVybkFuaW1hdGlvbi9SYXRjaGV0QW5kQ2xhbmsyMDE2'>Ratchet &amp; Clank (2016)</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecursiveAmmo' title='/pmwiki/pmwiki.php/Main/RecursiveAmmo' data-format='UmVjdXJzaXZlQW1tbw=='>Recursive Ammo</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ResidentEvil4' title='/pmwiki/pmwiki.php/VideoGame/ResidentEvil4' data-format='VmlkZW9HYW1lL1Jlc2lkZW50RXZpbDQ='>Resident Evil 4</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RewardingVandalism' title='/pmwiki/pmwiki.php/Main/RewardingVandalism' data-format='UmV3YXJkaW5nVmFuZGFsaXNt'>Rewarding Vandalism</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RosesAreRedVioletsAreBlue' title='/pmwiki/pmwiki.php/Main/RosesAreRedVioletsAreBlue' data-format='Um9zZXNBcmVSZWRWaW9sZXRzQXJlQmx1ZQ=='>Roses Are Red, Violets Are Blue...</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Rubbadubbers' title='/pmwiki/pmwiki.php/WesternAnimation/Rubbadubbers' data-format='V2VzdGVybkFuaW1hdGlvbi97e1J1YmJhZHViYmVyc319'>Rubbadubbers</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/SamONellaAcademy' title='/pmwiki/pmwiki.php/WebVideo/SamONellaAcademy' data-format='V2ViVmlkZW8vU2FtT05lbGxhQWNhZGVteQ=='>Sam O'Nella Academy</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SayItWithHearts' title='/pmwiki/pmwiki.php/Main/SayItWithHearts' data-format='U2F5SXRXaXRoSGVhcnRz'>Say It with Hearts</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SchmuckBait' title='/pmwiki/pmwiki.php/Main/SchmuckBait' data-format='U2NobXVja0JhaXQ='>Schmuck Bait</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfDemonstratingArticle' title='/pmwiki/pmwiki.php/Main/SelfDemonstratingArticle' data-format='U2VsZkRlbW9uc3RyYXRpbmdBcnRpY2xl'>Self-Demonstrating Article</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SleeplessDomain' title='/pmwiki/pmwiki.php/Webcomic/SleeplessDomain' data-format='V2ViY29taWMvU2xlZXBsZXNzRG9tYWlu'>Sleepless Domain</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Smurfing' title='/pmwiki/pmwiki.php/Main/Smurfing' data-format='e3tTbXVyZmluZ319'>Smurfing</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpellMyNameWithAThe' title='/pmwiki/pmwiki.php/Main/SpellMyNameWithAThe' data-format='U3BlbGxNeU5hbWVXaXRoQVRoZQ=='>Spell My Name with a "The"</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Splatoon1' title='/pmwiki/pmwiki.php/VideoGame/Splatoon1' data-format='VmlkZW9HYW1lL1NwbGF0b29uMQ=='>Splatoon</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Splatoon2' title='/pmwiki/pmwiki.php/VideoGame/Splatoon2' data-format='VmlkZW9HYW1lL1NwbGF0b29uMg=='>Splatoon 2</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Splatoon3' title='/pmwiki/pmwiki.php/VideoGame/Splatoon3' data-format='VmlkZW9HYW1lL1NwbGF0b29uMw=='>Splatoon 3</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SplinterCell' title='/pmwiki/pmwiki.php/VideoGame/SplinterCell' data-format='VmlkZW9HYW1lL1NwbGludGVyQ2VsbA=='>Splinter Cell</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Sssssnaketalk' title='/pmwiki/pmwiki.php/Main/Sssssnaketalk' data-format='e3tTc3Nzc25ha2V0YWxrfX0='>Sssssnaketalk</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StagingAnIntervention' title='/pmwiki/pmwiki.php/Main/StagingAnIntervention' data-format='U3RhZ2luZ0FuSW50ZXJ2ZW50aW9u'>Staging an Intervention</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/StevenUniverse' title='/pmwiki/pmwiki.php/WesternAnimation/StevenUniverse' data-format='V2VzdGVybkFuaW1hdGlvbi9TdGV2ZW5Vbml2ZXJzZQ=='>Steven Universe</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StockNessMonster' title='/pmwiki/pmwiki.php/Main/StockNessMonster' data-format='U3RvY2tOZXNzTW9uc3Rlcg=='>Stock Ness Monster</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StupidSexyFlanders' title='/pmwiki/pmwiki.php/Main/StupidSexyFlanders' data-format='U3R1cGlkU2V4eUZsYW5kZXJz'>Stupid Sexy Flanders</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuddenlyShouting' title='/pmwiki/pmwiki.php/Main/SuddenlyShouting' data-format='U3VkZGVubHlTaG91dGluZw=='>Suddenly Shouting</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SunkyMPEG' title='/pmwiki/pmwiki.php/VideoGame/SunkyMPEG' data-format='VmlkZW9HYW1lL1N1bmt5TVBFRw=='>Sunky.MPEG</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuspiciouslySpecificDenial' title='/pmwiki/pmwiki.php/Main/SuspiciouslySpecificDenial' data-format='U3VzcGljaW91c2x5U3BlY2lmaWNEZW5pYWw='>Suspiciously Specific Denial</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeThatAudience' title='/pmwiki/pmwiki.php/Main/TakeThatAudience' data-format='VGFrZVRoYXRBdWRpZW5jZQ=='>Take That, Audience!</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Terraria' title='/pmwiki/pmwiki.php/VideoGame/Terraria' data-format='VmlkZW9HYW1lL3t7VGVycmFyaWF9fQ=='>Terraria</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThankingTheViewer' title='/pmwiki/pmwiki.php/Main/ThankingTheViewer' data-format='VGhhbmtpbmdUaGVWaWV3ZXI='>Thanking the Viewer</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheThreeCertaintiesInLife' title='/pmwiki/pmwiki.php/Main/TheThreeCertaintiesInLife' data-format='VGhlVGhyZWVDZXJ0YWludGllc0luTGlmZQ=='>The Three Certainties in Life</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ThisIsTheOnlyLevel' title='/pmwiki/pmwiki.php/VideoGame/ThisIsTheOnlyLevel' data-format='VmlkZW9HYW1lL1RoaXNJc1RoZU9ubHlMZXZlbA=='>This Is the Only Level</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThinlyVeiledDubCountryChange' title='/pmwiki/pmwiki.php/Main/ThinlyVeiledDubCountryChange' data-format='VGhpbmx5VmVpbGVkRHViQ291bnRyeUNoYW5nZQ=='>Thinly-Veiled Dub Country Change</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooQualifiedToApply' title='/pmwiki/pmwiki.php/Main/TooQualifiedToApply' data-format='VG9vUXVhbGlmaWVkVG9BcHBseQ=='>Too Qualified to Apply</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TurnaboutStorm' title='/pmwiki/pmwiki.php/WebAnimation/TurnaboutStorm' data-format='V2ViQW5pbWF0aW9uL1R1cm5hYm91dFN0b3Jt'>Turnabout Storm</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TroperTales' title='/pmwiki/pmwiki.php/Main/TroperTales' data-format='VHJvcGVyVGFsZXM='>Troper Tales</a> pages, when they still existed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Tsundere' title='/pmwiki/pmwiki.php/Main/Tsundere' data-format='e3tUc3VuZGVyZX19'>Tsundere</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/DrinkingGame/TVTropesWikiDrinkingGame' title='/pmwiki/pmwiki.php/DrinkingGame/TVTropesWikiDrinkingGame' data-format='RHJpbmtpbmdHYW1lL1RWVHJvcGVzV2lraURyaW5raW5nR2FtZQ=='>TV Tropes Wiki Drinking Game</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnexpectedlyRealisticGameplay' title='/pmwiki/pmwiki.php/Main/UnexpectedlyRealisticGameplay' data-format='VW5leHBlY3RlZGx5UmVhbGlzdGljR2FtZXBsYXk='>Unexpectedly Realistic Gameplay</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheUnmaskedToys' title='/pmwiki/pmwiki.php/VideoGame/TheUnmaskedToys' data-format='VmlkZW9HYW1lL1RoZVVubWFza2VkVG95cw=='>The Unmasked Toys</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UrbanLegendOfZelda' title='/pmwiki/pmwiki.php/Main/UrbanLegendOfZelda' data-format='VXJiYW5MZWdlbmRPZlplbGRh'>Urban Legend of Zelda</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/UltimateVideoRumble' title='/pmwiki/pmwiki.php/Fanfic/UltimateVideoRumble' data-format='RmFuZmljL1VsdGltYXRlVmlkZW9SdW1ibGU='>Ultimate Video Rumble</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VanityPlate' title='/pmwiki/pmwiki.php/Main/VanityPlate' data-format='VmFuaXR5UGxhdGU='>Vanity Plate</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Vat19' title='/pmwiki/pmwiki.php/Website/Vat19' data-format='V2Vic2l0ZS97e1ZhdDE5fX0='>Vat19</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ViewersAreGoldfish' title='/pmwiki/pmwiki.php/Main/ViewersAreGoldfish' data-format='Vmlld2Vyc0FyZUdvbGRmaXNo'>Viewers Are Goldfish</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Vsauce' title='/pmwiki/pmwiki.php/WebVideo/Vsauce' data-format='V2ViVmlkZW8ve3tWc2F1Y2V9fQ=='>Vsauce</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/WelcomeTo' title='/pmwiki/pmwiki.php/WebAnimation/WelcomeTo' data-format='V2ViQW5pbWF0aW9uL1dlbGNvbWVUbw=='>Welcome to...</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatHappenedToTheMouse' title='/pmwiki/pmwiki.php/Main/WhatHappenedToTheMouse' data-format='V2hhdEhhcHBlbmVkVG9UaGVNb3VzZQ=='>What Happened to the Mouse?</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Blog/WhatIfXKCD' title='/pmwiki/pmwiki.php/Blog/WhatIfXKCD' data-format='QmxvZy9XaGF0SWZYS0NE'>What If? (xkcd)</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhenIWasYourAge' title='/pmwiki/pmwiki.php/Main/WhenIWasYourAge' data-format='V2hlbklXYXNZb3VyQWdl'>When I Was Your Age...</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Film/WhoCanKillAChild' title='/pmwiki/pmwiki.php/Film/WhoCanKillAChild' data-format='RmlsbS9XaG9DYW5LaWxsQUNoaWxk'>Who Can Kill a Child?</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhosLaughingNow' title='/pmwiki/pmwiki.php/Main/WhosLaughingNow' data-format='V2hvc0xhdWdoaW5nTm93'>Who's Laughing Now?</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhoWantsToLiveForever' title='/pmwiki/pmwiki.php/Main/WhoWantsToLiveForever' data-format='V2hvV2FudHNUb0xpdmVGb3JldmVy'>Who Wants to Live Forever?</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordSaladHumor' title='/pmwiki/pmwiki.php/Main/WordSaladHumor' data-format='V29yZFNhbGFkSHVtb3I='>Word-Salad Humor</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorstWhateverEver' title='/pmwiki/pmwiki.php/Main/WorstWhateverEver' data-format='V29yc3RXaGF0ZXZlckV2ZXI='>Worst. Whatever. Ever!</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Wynncraft' title='/pmwiki/pmwiki.php/VideoGame/Wynncraft' data-format='VmlkZW9HYW1lL3t7V3lubmNyYWZ0fX0='>Wynncraft</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Yandere' title='/pmwiki/pmwiki.php/Main/Yandere' data-format='e3tZYW5kZXJlfX0='>Yandere</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YeOldeButcheredeEnglishe' title='/pmwiki/pmwiki.php/Main/YeOldeButcheredeEnglishe' data-format='WWVPbGRlQnV0Y2hlcmVkZUVuZ2xpc2hl'>Ye Olde Butcherede Englishe</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouWillBeBeethoven' title='/pmwiki/pmwiki.php/Main/YouWillBeBeethoven' data-format='WW91V2lsbEJlQmVldGhvdmVu'>You Will Be Beethoven</a> </li></ul></div> <hr data-format='&#8212;&#8212;' /> <div class='indent'><span class="spoiler" title="you can set spoilers visible by default on your profile" > <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheLegendOfZelda' title='/pmwiki/pmwiki.php/Franchise/TheLegendOfZelda' data-format='W1tGcmFuY2hpc2UvVGhlTGVnZW5kT2ZaZWxkYSBHYW5vbjpdXQ=='>Ganon:</a></strong> <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/HijackedByGanon' title='/pmwiki/pmwiki.php/Main/HijackedByGanon' data-format='W1tIaWphY2tlZEJ5R2Fub24gV2hlcmUgZG8geW91IHRoaW5rXV0='>Where do you think</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfDemonstratingArticle' title='/pmwiki/pmwiki.php/Main/SelfDemonstratingArticle' data-format='W1tTZWxmRGVtb25zdHJhdGluZ0FydGljbGUgYWxsIHRoZXNlIGV4YW1wbGVzIGNhbWUgZnJvbT9dXQ=='>all these examples came from?</a></strong></span> </div><hr data-format='&#8212;&#8212;' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div>&nbsp;</div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="fyzqex" data-video-descrip="The end credits feature Herriman adapting to his wild rabbit lifestyle before raiding a farmer's garden in an homage to The Tale of Peter Rabbit." data-video-title="Run Mr. Herriman fast and free" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fyzqex_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fyzqex.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fyzqex.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fyzqex.jpg" data-video-trope="Main/ShoutOut" data-video-tropename="Shout-Out" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.57" data-video-rating-count="7" data-video-media-sources="Main/TheStinger,Recap/FostersHomeForImaginaryFriendsS3E3CampKeepAGoodMacDown,WesternAnimation/FostersHomeForImaginaryFriends" class="video-launch-link video-overlay-link featured-widget-vid"> <div class="featured-widget-vid-iframe"> <div id="tvtropes_no_volume_player" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fyzqex.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fyzqex_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fyzqex.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fyzqex.m3u8" data-controls="0" data-muted="1"> <script> tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); }); </script> </div> </div> </a> </div> <h2 class="bold font-l">Run Mr. Herriman fast and free</h2> <p class="_pmvv-vidbox-descTxt"> The end credits feature Herriman adapting to his wild rabbit lifestyle before raiding a farmer's garden in an homage to The Tale of Peter Rabbit. </p> <p class='example_row'>Example of:<br><a href="/pmwiki/pmwiki.php/Main/ShoutOut"class='trope-example-link'>Shout-Out</a></p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="9y3lzp" data-video-descrip="After the credits, a post-scene shows Amok directly asking Ann if she wishes to change destiny. (NOTE: This scene only appeared in the original release of the game. It was removed entirely following the extended ending update.)" data-video-title="Rewrite Destiny" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9y3lzp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9y3lzp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9y3lzp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9y3lzp.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CloseOnTitle,VideoGame/ANNOMutationem" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9y3lzp.jpg"> <p><span class="bold">Rewrite Destiny</span></p> </a> <a href="#video-link" data-video-id="2d6ypt" data-video-descrip="Terrence explains all what happened and what made the hole on the rooftop, but their mother doesn't buy it all, thereby justifying to ground Terrance. Servers him right, by the way." data-video-title="Terrence gets grounded" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2d6ypt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2d6ypt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2d6ypt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2d6ypt.jpg" data-video-trope="Main/YouAreGrounded" data-video-tropename="You Are Grounded!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CassandraTruth,Main/LaserGuidedKarma,Main/TheStinger,Recap/FostersHomeForImaginaryFriendsS4E5InfernalSlumber,WesternAnimation/FostersHomeForImaginaryFriends" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2d6ypt.jpg"> <p><span class="bold">Terrence gets g...</span></p> </a> <a href="#video-link" data-video-id="u0lm5p" data-video-descrip="At the end of &amp;quot;Blendin's Game&amp;quot;, it's revealed how Soos came to work at the Mystery Shack: when he was twelve, he found a screwdriver owned by the Shack and went to return it. He arrived just as Stan fired the handyman (who ran away). Stan saw Soos with the screwdriver, asked him if he could fix a golf cart, then told him he was hired before he could answer. Soos happily took the job and worked there for the next ten years." data-video-title="Soos gets hired" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/u0lm5p_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/u0lm5p.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/u0lm5p.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u0lm5p.jpg" data-video-trope="Main/HiredOnTheSpot" data-video-tropename="Hired on the Spot" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BecauseYouWereNiceToMe,Main/ParentalSubstitute,Main/StableTimeLoop,Main/TheStinger,Recap/GravityFallsS2E8BlendinsGame,WesternAnimation/GravityFalls" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u0lm5p.jpg"> <p><span class="bold">Soos gets hired</span></p> </a> <a href="#video-link" data-video-id="7kep0r" data-video-descrip="Doofenshmirtz explains that in the past that when he tried entering a science fair with his first &amp;quot;Inator&amp;quot;, he lost to baking soda volcano. He tried against in the next year with a bigger Inator, and lost again to baking soda volcano. He decided to give up on science fairs so he try his hand at poetry, but still lost a poetry contest to someone who made a baking soda volcano! So he decided to enter another science fair, this time with his self-proclaimed &amp;quot;world's largest baking soda volcano&amp;quot; to get back at all the times that he lost. During The Stinger, after Doof gets transported to Mars at the end of the former segment, the Martians walk up to him as if they are going to make him King of their planet (similar to how Candace becomes the Queen of Mars in the latter segment), but they end up giving the crown to a baking soda volcano, much to his chagrin." data-video-title="Baking Soda Volcanoes" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7kep0r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7kep0r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7kep0r.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7kep0r.jpg" data-video-trope="Main/AlwaysSomeoneBetter" data-video-tropename="Always Someone Better" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BeyondTheImpossible,Main/EpicFail,Main/RunningGag,Main/TheStinger,Recap/PhineasAndFerbUnfairScienceFair,Recap/PhineasAndFerbUnfairScienceFairRedux,WesternAnimation/PhineasAndFerb" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7kep0r.jpg"> <p><span class="bold">Baking Soda Vol...</span></p> </a> <a href="#video-link" data-video-id="3hh1ba" data-video-descrip="George and Harold need to sneak past Mr. Krupp's secretary Ms. Anthrope, so they call her and pretend that she's won a contest and needs to be on hold to claim her prize, so they play the phone next to some on hold music; she spends the entire rest of of the movie listening to the phone, which must have been at least half a week. The Stinger has George and Harold realize that they forgot that she's still on hold and when they talk phone again, she accidentally hangs up, which enrages her." data-video-title="Ms. Anthrope's Long Phone Hold" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3hh1ba_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3hh1ba.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3hh1ba.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2875246.jpg" data-video-trope="Main/RidiculouslyLongPhoneHold" data-video-tropename="Ridiculously Long Phone Hold" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigNo,Main/OverlyLongGag,Main/RunningGag,Main/TheStinger,WesternAnimation/CaptainUnderpantsTheFirstEpicMovie" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2875246.jpg"> <p><span class="bold">Ms. Anthrope's ...</span></p> </a> <a href="#video-link" data-video-id="inrr3r" data-video-descrip="Played for laughs in The Scary Door segment that plays over the credits, where a scientist combines the DNA of the world's most evil animals, resulting in a naked guy who walks out of the test chamber and bluntly states &amp;quot;It turns out it's man.&amp;quot; This was originally a scene from &amp;quot;The Birdbot of Ice-Catraz&amp;quot;, which was cut from that episode due to time constraints." data-video-title="&quot;It turns out it's man.&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/inrr3r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/inrr3r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/inrr3r.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1347028.jpg" data-video-trope="Main/HumansAreTheRealMonsters" data-video-tropename="Humans Are the Real Monsters" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CensorSteam,Recap/FuturamaS4E17SpanishFry,WesternAnimation/Futurama,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1347028.jpg"> <p><span class="bold">"It turns out i...</span></p> </a> <a href="#video-link" data-video-id="h8tfi8" data-video-descrip="The Stinger for &amp;quot;Mario Kart in real life is dangerous&amp;quot; has Jacob getting caught dressing up as Princess Peach." data-video-title="Jacob as Princess Peach" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h8tfi8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h8tfi8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h8tfi8.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h8tfi8.jpg" data-video-trope="Main/UnmanlySecret" data-video-tropename="Unmanly Secret" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,WebVideo/Alpharad" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h8tfi8.jpg"> <p><span class="bold">Jacob as Prince...</span></p> </a> <a href="#video-link" data-video-id="6f91eq" data-video-descrip="During the end credits of the episode where Candace and Perry switched bodies, we get a variation of Perry's theme song." data-video-title="Perry the Teenage Girl" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6f91eq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6f91eq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6f91eq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6f91eq.jpg" data-video-trope="Main/SelfParody" data-video-tropename="Self-Parody" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/EarWorm,Main/FreakyFridayFlip,Main/TheStinger,Recap/PhineasAndFerbDoesThisDuckbillMakeMeLookFat,WesternAnimation/PhineasAndFerb" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6f91eq.jpg"> <p><span class="bold">Perry the Teena...</span></p> </a> <a href="#video-link" data-video-id="ipp77g" data-video-descrip="After the end card fades away, a scene is shown where first, the items pertaining to Mario, Sonic, and Crash disappear, after which all eight of the main heroes find themselves in a black void greeted by the villain Zinyak, thus setting up the events of Gaming All-Stars 2." data-video-title="Gaming All-Stars: Remastered" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ipp77g_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ipp77g.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ipp77g.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ipp77g.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/SequelHook,WebAnimation/GamingAllStars" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ipp77g.jpg"> <p><span class="bold">Gaming All-Star...</span></p> </a> <a href="#video-link" data-video-id="4qch6r" data-video-descrip="Mazuru Ameku receives a letter that calls for suing Dr. Ameku for medical malpractice." data-video-title="Suing" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4qch6r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4qch6r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4qch6r.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4qch6r.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Literature/AmekuMDDoctorDetective" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4qch6r.jpg"> <p><span class="bold">Suing</span></p> </a> <a href="#video-link" data-video-id="qmkozw" data-video-descrip="Kikaider shows up at the stinger, commenting on the heroes." data-video-title="Spoken words" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qmkozw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qmkozw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qmkozw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qmkozw.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/KamenRiderXSuperSentaiXSpaceSheriffSuperHeroTaisenZ" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qmkozw.jpg"> <p><span class="bold">Spoken words</span></p> </a> <a href="#video-link" data-video-id="uzjdk8" data-video-descrip="The post-credit stinger of Iron Man 3 reveals Tony Stark (Robert Downey Jr.) had been narrating his trauma throughout the movie to Bruce Banner (Mark Ruffalo), who insists that none of his phDs make him a qualified mental health professional, especially because of Hulking tendencies. " data-video-title="&quot;not that kind of doctor&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/uzjdk8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/uzjdk8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/uzjdk8.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2025_01_15_154557.png" data-video-trope="Main/AmateurTherapist" data-video-tropename="Amateur Therapist" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/IronMan3,Main/TheStinger,Main/NotThatKindOfDoctor" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2025_01_15_154557.png"> <p><span class="bold">"not that kind ...</span></p> </a> <a href="#video-link" data-video-id="1g61gc" data-video-descrip="Eric survives being killed by the Bride and he's looked after by a different Romani woman." data-video-title="He's under good care" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/1g61gc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/1g61gc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/1g61gc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1g61gc.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/CreatureCommandos2024" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1g61gc.jpg"> <p><span class="bold">He's under good...</span></p> </a> <a href="#video-link" data-video-id="mfwb3d" data-video-descrip="After the first episodes, Inori is more than happy to do figure skating." data-video-title="A happy outcome" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mfwb3d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mfwb3d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mfwb3d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfwb3d.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Manga/Medalist" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfwb3d.jpg"> <p><span class="bold">A happy outcome</span></p> </a> <a href="#video-link" data-video-id="3xeu0h" data-video-descrip="The Castle of the Dragon Queen's High Priest, having gotten over his grief of the Dragon Queen's death, vows to raise her child into a fine ruler of Alfegard and reveals his name to be Hargon, a major villain of Dragon Quest II, which will also have a HD-2D Remake alongside the very first game of the series." data-video-title="The Name of...Hargon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3xeu0h_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3xeu0h.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3xeu0h.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3xeu0h.jpg" data-video-trope="Main/SequelHook" data-video-tropename="Sequel Hook" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CanonCharacterAllAlong,Main/ToBeContinued,Main/VillainousVow,Main/WhamLine,VideoGame/DragonQuestIII,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3xeu0h.jpg"> <p><span class="bold">The Name of...H...</span></p> </a> <a href="#video-link" data-video-id="lnikx1" data-video-descrip="After the end card, Twilight kills Pinkie." data-video-title="Cinemare Sins" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lnikx1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lnikx1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lnikx1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lnikx1.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/CinemareSins" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lnikx1.jpg"> <p><span class="bold">Cinemare Sins</span></p> </a> <a href="#video-link" data-video-id="h0ttq1" data-video-descrip="During the end credits of the special, Deadpool finally makes an appearance. Only to be disappointed when he finds out he's the post credit scene, only for She-Hulk to pop up and tell Deadpool he wasn't supposed to be in the special and fights with him. As they fight, several Marvel characters are shown with their own shows. After She-Hulk wins, she tells someone offscreen to roll the actual credits. " data-video-title="LEGO Deadpool &amp; LEGO She-Hulk" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h0ttq1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h0ttq1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h0ttq1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h0ttq1.jpg" data-video-trope="Main/BreakingTheFourthWall" data-video-tropename="Breaking the Fourth Wall" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/MythologyGag,Main/TheStinger,WesternAnimation/LegoMarvelAvengersMissionDemolition" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h0ttq1.jpg"> <p><span class="bold">LEGO Deadpool &...</span></p> </a> <a href="#video-link" data-video-id="h1bpzp" data-video-descrip="Laserhawk finds himself okay somehow. Sam tells him that this is where they're going to start the fight again..." data-video-title="He ain't dead yet" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h1bpzp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h1bpzp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h1bpzp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h1bpzp.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/NotQuiteDead,WesternAnimation/CaptainLaserhawkABloodDragonRemix" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h1bpzp.jpg"> <p><span class="bold">He ain't dead yet</span></p> </a> <a href="#video-link" data-video-id="j2mciz" data-video-descrip="Despite the Kakurangers saving the day (in their 50s), something's going on in the dimension that's keeping the Yokai Army Corp from resurfacing. Red light is seen coming out... which is not suppose to happen." data-video-title="Something's going on" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j2mciz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j2mciz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j2mciz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j2mciz.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/NinjaSentaiKakurangerAct3TheMiddleAgedStruggles" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j2mciz.jpg"> <p><span class="bold">Something's goi...</span></p> </a> <a href="#video-link" data-video-id="hjr1xq" data-video-descrip="Aki's about to fight someone when she sees a familiar face hidden under the raincoat." data-video-title="Familiar?" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hjr1xq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hjr1xq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hjr1xq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hjr1xq.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/MechaUde" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hjr1xq.jpg"> <p><span class="bold">Familiar?</span></p> </a> <a href="#video-link" data-video-id="b4ap03" data-video-descrip="In the same vein as Ferris Bueller, Deadpool tells the audience to go home as the movie is over and that Sam Jackson doesn't appear at all. Although he does give us a couple of hints regarding the sequel." data-video-title="Deadpool" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/b4ap03_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/b4ap03.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/b4ap03.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_10_10_175613.png" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/Deadpool2016,Main/SequelHook,Main/ShoutOut" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_10_10_175613.png"> <p><span class="bold">Deadpool</span></p> </a> <a href="#video-link" data-video-id="26r3jl" data-video-descrip="The post-credits scene of Crisis Core: Final Fantasy VII is a remake of the opening cutscene of the original Final Fantasy VII; from Aerith walking out of an alleyway in Midgar, to Cloud riding atop a train arriving at Mako Reactor 1." data-video-title="Crisis Core" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/26r3jl_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/26r3jl.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/26r3jl.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/26r3jl.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ToBeContinued,VideoGame/CrisisCore" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/26r3jl.jpg"> <p><span class="bold">Crisis Core</span></p> </a> <a href="#video-link" data-video-id="id7ouo" data-video-descrip="After the first episode, Kana is welcomed to join Magilumiere. She also meets the president, who happens to like wearing magical girl costumes." data-video-title="A welcoming reception" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/id7ouo_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/id7ouo.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/id7ouo.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/id7ouo.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Manga/MagilumiereCoLtd" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/id7ouo.jpg"> <p><span class="bold">A welcoming rec...</span></p> </a> <a href="#video-link" data-video-id="l8fu2b" data-video-descrip="The end of Code White has Franky waiting for Loid to show up as he got the liquor he needed." data-video-title="A cold Franky" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l8fu2b_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l8fu2b.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l8fu2b.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l8fu2b.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/SpyXFamilyCodeWhite" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l8fu2b.jpg"> <p><span class="bold">A cold Franky</span></p> </a> <a href="#video-link" data-video-id="tewb1s" data-video-descrip="At the stinger of &amp;quot;Best Husband&amp;quot;, Kogoro is shown awake in a groggy manner (thanks to Conan's darts) that he mutters &amp;quot;Case Closed&amp;quot;. CC is the alternate title of Detective Conan (manga) in some countries outside Japan." data-video-title="Case closed" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/tewb1s_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/tewb1s.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/tewb1s.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tewb1s.jpg" data-video-trope="Main/TitleDrop" data-video-tropename="Title Drop" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Manga/CaseClosed,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tewb1s.jpg"> <p><span class="bold">Case closed</span></p> </a> <a href="#video-link" data-video-id="cnd6a0" data-video-descrip="After the end of &amp;quot;Lavendar&amp;quot;, a young Ash is shown in the aftermath of a massacre he just did. Norland smirks in the end, suggesting that he masterminded the incident." data-video-title="What Ash did (SPOILERS)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cnd6a0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cnd6a0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cnd6a0.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cnd6a0.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/CodeGeassRozeOfTheRecapture,Main/TrailOfBlood" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cnd6a0.jpg"> <p><span class="bold">What Ash did (S...</span></p> </a> <a href="#video-link" data-video-id="7wfadp" data-video-descrip="In space, Eggman angrily tells Orbot and Cubot to push his damaged Egg Mobile, saying he has his revenge plan in the works and he won't fail this time, hinting at the events of Sonic Generations. Orbot tells him he won't fail this time and that on the bright side, Cubot got his voice back, who starts to talk like crazy, much to Eggman and Orbot's displeasure, who have to endure all that talking before Eggman, Orbot, and Cubot stumble upon the Time Eater." data-video-title="Eggman in Space" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7wfadp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7wfadp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7wfadp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7wfadp.jpg" data-video-trope="Main/SequelHook" data-video-tropename="Sequel Hook" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/FateWorseThanDeath,Main/IrisOut,Main/MotorMouth,Main/TheStinger,VideoGame/SonicColors" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7wfadp.jpg"> <p><span class="bold">Eggman in Space</span></p> </a> <a href="#video-link" data-video-id="g8a5m0" data-video-descrip="At the end of ONA, Chinen gets acquainted with his AI since his AMAIM previously got wrecked. This was prior to his deployment in a guerrilla operation." data-video-title="Deployment " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/g8a5m0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/g8a5m0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/g8a5m0.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g8a5m0.jpg" data-video-trope="Main/AndTheAdventureContinues" data-video-tropename="And the Adventure Continues" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/AmaimWarriorAtTheBorderlineUltraSteelOgreGear,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g8a5m0.jpg"> <p><span class="bold">Deployment </span></p> </a> <a href="#video-link" data-video-id="0u76hy" data-video-descrip="The stinger of the film shows Dagded for the first time after Reinol Husty is taken care of." data-video-title="Guess who shows up" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0u76hy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0u76hy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0u76hy.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0u76hy.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/OhsamaSentaiKingOhgerAdventureHeaven" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0u76hy.jpg"> <p><span class="bold">Guess who shows up</span></p> </a> <a href="#video-link" data-video-id="65mr6d" data-video-descrip="According to Stormy, it turns out that the entire episode of Sealab 2021 was a video game being played by Master Shake and Meatwad of Aqua Teen Hunger Force." data-video-title="Sealab 2021" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/65mr6d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/65mr6d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/65mr6d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/65mr6d.jpg" data-video-trope="Main/CrossoverPunchline" data-video-tropename="Crossover Punchline" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/LogoJoke,Main/TheStinger,Recap/Sealab2021S1E10MurphyMurphAndTheFengShuiBunch,WesternAnimation/AquaTeenHungerForce,WesternAnimation/Sealab2021" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/65mr6d.jpg"> <p><span class="bold">Sealab 2021</span></p> </a> <a href="#video-link" data-video-id="r7ux5f" data-video-descrip="Towards the beginning of the movie, a slug monster who was trying (emphasis on &amp;quot;trying&amp;quot;) to make it to his first class on the first day of school? Well, during the stinger after the credits, we find out that the slug finally made it to class... but it turns out it took him the entire school year for him to get there." data-video-title="Monsters University" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/r7ux5f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/r7ux5f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/r7ux5f.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r7ux5f.jpg" data-video-trope="Main/BrickJoke" data-video-tropename="Brick Joke" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,WesternAnimation/MonstersUniversity" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r7ux5f.jpg"> <p><span class="bold">Monsters Univer...</span></p> </a> <a href="#video-link" data-video-id="stbm8n" data-video-descrip="Superbia's shocked to hear Lulu wanting to ride Superbia's cockpit." data-video-title="Riding Superbia" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/stbm8n_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/stbm8n.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/stbm8n.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/stbm8n.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/BangBraveBangBravern" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/stbm8n.jpg"> <p><span class="bold">Riding Superbia</span></p> </a> <a href="#video-link" data-video-id="41gqqo" data-video-descrip="Jigen waits at a harbor, taking time to relax. When he sees a yellow Fiat 500, the gunman knows that it's back to work." data-video-title="Off to another job" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/41gqqo_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/41gqqo.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/41gqqo.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/41gqqo.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/JigenDaisuke2023,Main/AndTheAdventureContinues" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/41gqqo.jpg"> <p><span class="bold">Off to another job</span></p> </a> <a href="#video-link" data-video-id="e7fxog" data-video-descrip="Zenon shows Tilt the cards he got from the raid on the Pinochle building." data-video-title="Showing the cards" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e7fxog_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e7fxog.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e7fxog.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e7fxog.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/HighCard,Main/WhamShot" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e7fxog.jpg"> <p><span class="bold">Showing the cards</span></p> </a> <a href="#video-link" data-video-id="7i7h4o" data-video-descrip="&amp;quot;Mission: Freakazoid&amp;quot; was repeatedly sponsored by Anubis Market, which after all the shilling for it, Freakazoid cops to how this kept the show on for another season." data-video-title="Anubis Market" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7i7h4o_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7i7h4o.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7i7h4o.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_764.png" data-video-trope="Main/ParodyCommercial" data-video-tropename="Parody Commercial" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/LampshadeHanging,Main/RunningGag,Main/TheStinger,Recap/FreakazoidS2E3MissionFreakazoid,WesternAnimation/Freakazoid" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_764.png"> <p><span class="bold">Anubis Market</span></p> </a> <a href="#video-link" data-video-id="6hbs0l" data-video-descrip="After the Warners bid everyone goodnight, they proceed to badmouth everyone in the credits, including their own voice actors! To the siblings' horror, it turns out that their mics were on the whole time." data-video-title="Animaniacs Cold Ending" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6hbs0l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6hbs0l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6hbs0l.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_60.png" data-video-trope="Main/CreativeClosingCredits" data-video-tropename="Creative Closing Credits" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AccidentalMisnaming,Main/BitingTheHandHumor,Main/ButHeSoundsHandsome,Main/IsThisThingStillOn,Main/OhCrap,Main/TheStinger,Main/WhoWritesThisCrap,Recap/AnimaniacsEpisode84,WesternAnimation/Animaniacs" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_60.png"> <p><span class="bold">Animaniacs Cold...</span></p> </a> <a href="#video-link" data-video-id="nam0da" data-video-descrip="After the Omega Device kills Slow Mobius in every conceivable universe, his wife goes on a journey to find the truth, but she later learns to move on and find love again." data-video-title="Slow Mobius Erased" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nam0da_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nam0da.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nam0da.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/ram_s07e05_slow_mobiuss_wife.png" data-video-trope="Main/RetGone" data-video-tropename="Ret-Gone" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/KnuckleTattoos,Main/SecondLove,Main/TheStinger,Recap/RickAndMortyS7E5Unmortricken,WesternAnimation/RickAndMorty,Main/HerHeartWillGoOn" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/ram_s07e05_slow_mobiuss_wife.png"> <p><span class="bold">Slow Mobius Erased</span></p> </a> <a href="#video-link" data-video-id="cs4nq3" data-video-descrip="The post-credits scene for Ed, Edd n Eddy's Big Picture Show features Jonny 2x4 plotting revenge on the Eds under his new persona of the Gourd, only to be told by Plank that the movie's already over and there's no time for him to actually get his revenge." data-video-title="The Gourd" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cs4nq3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cs4nq3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cs4nq3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cs4nq3.jpg" data-video-trope="Main/InterruptedByTheEnd" data-video-tropename="Interrupted by the End" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/EndOfSeriesAwareness,Main/TheStinger,WesternAnimation/EdEddNEddysBigPictureShow,Main/BreakingTheFourthWall" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cs4nq3.jpg"> <p><span class="bold">The Gourd</span></p> </a> <a href="#video-link" data-video-id="52gf3g" data-video-descrip="One adventure is Morty having Rick animate a churro for him to have as a friend. When Morty comes to him asking when it'll wear off, Rick explains that to bring Churrie to life without needing any internal organs he had to make him functionally immortal. Morty, not happy to learn this, abandons Churrie on a barren planet, which leads him to swear vengeance." data-video-title="Churrie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/52gf3g_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/52gf3g.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/52gf3g.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/52gf3g.jpg" data-video-trope="Main/AnimateInanimateObject" data-video-tropename="Animate Inanimate Object" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,Recap/RickAndMortyS7E6RickfendingYourMort,WesternAnimation/RickAndMorty" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/52gf3g.jpg"> <p><span class="bold">Churrie</span></p> </a> <a href="#video-link" data-video-id="brns1w" data-video-descrip="The episode ends with Numbuh 5 about to tell Sector V where babies come from. What follows in The Stinger is the rest of the team reacting in either shock, horror, disgust, or a combination of the three, making us believe she actually gave them The Talk. But then Numbuh 1 breaks out of his stupor and says that babies don't come from New Jersey, they actually come from Philadelphia." data-video-title="Babies Come From..." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/brns1w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/brns1w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/brns1w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brns1w.jpg" data-video-trope="Main/BaitAndSwitch" data-video-tropename="Bait-and-Switch" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,Main/TheTalk,Recap/CodenameKidsNextDoorS5E2BOperationDIAPER,WesternAnimation/CodenameKidsNextDoor" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brns1w.jpg"> <p><span class="bold">Babies Come Fro...</span></p> </a> <a href="#video-link" data-video-id="f4yl9j" data-video-descrip="The Post Credits scene of Big Hero 6 has Fred discover that his millionaire father, played by the Legendary Stan Lee, was actually a superhero and embracing him upon discovery." data-video-title="Fred's Dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f4yl9j_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f4yl9j.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f4yl9j.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4yl9j.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/StanLee,Main/BookcasePassage,Main/CoolOldGuy,Main/CoolShades,Main/OldSuperhero,Main/RetiredBadass,Main/TheCameo,Main/WellDoneSonGuy,WesternAnimation/BigHero6,Main/UnderwearOfPower,Main/FinishDialogueInUnison" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4yl9j.jpg"> <p><span class="bold">Fred's Dad</span></p> </a> <a href="#video-link" data-video-id="3l8rwt" data-video-descrip="During the epilogue for Good Wilt Hunting, Wilt and the Foster's gang watch Jordan play basketball during one of his professional games, with Wilt getting a little crazy on the commentary." data-video-title="Good Wilt Hunting's Epilogue" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3l8rwt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3l8rwt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3l8rwt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3l8rwt.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/DoesThisRemindYouOfAnything,WesternAnimation/FostersHomeForImaginaryFriends,WesternAnimation/GoodWiltHunting" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3l8rwt.jpg"> <p><span class="bold">Good Wilt Hunti...</span></p> </a> <a href="#video-link" data-video-id="d12wn3" data-video-descrip="A running gag in &amp;quot;Berry Scary&amp;quot; is Bloo constantly gets Berry's name wrong, often replacing it with a name that rhymes with it such as Mary, Larry, Jerry, etc." data-video-title="Bloo gets Berry's name wrong" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d12wn3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d12wn3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d12wn3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d12wn3.jpg" data-video-trope="Main/RunningGag" data-video-tropename="Running Gag" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,Recap/FostersHomeForImaginaryFriendsS1E12ScaryBerry,WesternAnimation/FostersHomeForImaginaryFriends,Main/FullyAutomaticClipShow" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d12wn3.jpg"> <p><span class="bold">Bloo gets Berry...</span></p> </a> <a href="#video-link" data-video-id="79j874" data-video-descrip="Whithers gives a speech aimed at the Dead Three at the end of the game, mocking their failure and telling them their plan would have never worked." data-video-title="Baldur's Gate Epilogue Speech" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/79j874_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/79j874.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/79j874.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/79j874.jpg" data-video-trope="Main/TheReasonYouSuckSpeech" data-video-tropename="&quot;The Reason You Suck&quot; Speech" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/DidntThinkThisThrough,Main/TheStinger,VideoGame/BaldursGateIII" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/79j874.jpg"> <p><span class="bold">Baldur's Gate E...</span></p> </a> <a href="#video-link" data-video-id="podaks" data-video-descrip="The new Ladybug/Cat duo successfully stop one of the strongest villains yet, and Adrien and Marinette can finally be themselves around each other. Then The Stinger comes, revealing that Gabriel knows who the new heroes are thanks to their Alliance Rings." data-video-title="&quot;Transmission&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/podaks_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/podaks.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/podaks.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/podaks.jpg" data-video-trope="Main/SuddenDownerEnding" data-video-tropename="Sudden Downer Ending" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,Recap/MiraculousLadybugS05E10TransmissionTheKwamisChoicePart1,WesternAnimation/MiraculousLadybug" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/podaks.jpg"> <p><span class="bold">"Transmission"</span></p> </a> <a href="#video-link" data-video-id="5i3612" data-video-descrip="Ian marries Butt-Massage Girl after the end credits." data-video-title="Smosh: The Movie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/5i3612_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/5i3612.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/5i3612.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5i3612.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/SmoshTheMovie,Main/WeddingFinale" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5i3612.jpg"> <p><span class="bold">Smosh: The Movie</span></p> </a> <a href="#video-link" data-video-id="j8rf8w" data-video-descrip="" data-video-title="Nightmares discover Multiverse" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j8rf8w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j8rf8w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j8rf8w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j8rf8w.jpg" data-video-trope="Main/TheMultiverse" data-video-tropename="The Multiverse" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TheStinger,WebAnimation/FiveNightsAtFreddysForgottenEvents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j8rf8w.jpg"> <p><span class="bold">Nightmares disc...</span></p> </a> <a href="#video-link" data-video-id="3m245q" data-video-descrip="Ike eats a rat in the attic." data-video-title="Ike" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3m245q_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3m245q.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3m245q.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3m245q.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/SouthParkBiggerLongerAndUncut" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3m245q.jpg"> <p><span class="bold">Ike</span></p> </a> <a href="#video-link" data-video-id="3mhoi4" data-video-descrip="At the end of the first season, Nhat Thi Nguyen was attacked in the sewers by the Black Knight, a supposed specter haunting Finn's dreams. With an accusing look at the BK, it seemed that she knows more about the being." data-video-title="Stabbed hard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3mhoi4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3mhoi4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3mhoi4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mhoi4.jpg" data-video-trope="Main/ImpaledWithExtremePrejudice" data-video-tropename="Impaled with Extreme Prejudice" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/HighCard,Main/TheStinger,Main/RedEyesTakeWarning" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mhoi4.jpg"> <p><span class="bold">Stabbed hard</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>After The Credits</span>, <span>Stinger</span>, <span>Post Credits Scene</span>, <span>Post Credit Scene</span> </h3> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/SoundEffectBleep">Sound-Effect Bleep</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AbridgedSeriesTropes">Abridged Series Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TakeThat">Take That!</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LogoJoke">Logo Joke</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ShowParts">Show Parts</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterInTheLogo">Character in the Logo</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/SignatureScene">Signature Scene</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Scenes">Scenes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AccidentalDanceCraze">Accidental Dance Craze</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/Squick">Squick</a> </li> <li> <a href="/pmwiki/pmwiki.php/Administrivia/PotholeMagnet">Administrivia/Pothole Magnet</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SurprisinglyRealisticOutcome">Surprisingly Realistic Outcome</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/StandardHeroReward">Standard Hero Reward</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/EndingTropes">Ending Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/StockSeriesFinales">Stock Series Finales</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/HoYay/MarvelCinematicUniverse">Marvel Cinematic Universe</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/MarvelCinematicUniverse">ImageSource/Marvel Cinematic Universe</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheStraightAndArrowPath">The Straight and Arrow Path</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/StereotypicalSouthAsianEnglish">Stereotypical South Asian English</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SelfDemonstratingArticle">Self-Demonstrating Article</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/StopPokingMe">Stop Poking Me!</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Webcomic/BasicInstructions">Basic Instructions</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Webcomics">QuoteSource/Webcomics</a> </li> <li> <a href="/pmwiki/pmwiki.php/Webcomic/Beanstalked">Beanstalked</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/StickyFingers">Sticky Fingers</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesQToZ">WeAreNotAlone/Tropes Q to Z</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/StingyJack">Stingy Jack</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheSpook">The Spook</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisMightBeAnIndex">This Might Be an Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TakenDuringTheEnding">Taken During the Ending</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-fyzqex" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fyzqex.jpg" data-video-title="Run Mr. Herriman fast and free" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fyzqex_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fyzqex.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fyzqex.m3u8" data-small-player="never" data-track-events="1" data-do-not-loop="1" data-starting-quality="1" data-autoplay="true"> </div> </div> </div> <div class="_pmvv-vidbox-desc"> <h1 id="overlay-title">Run Mr. Herriman fast and free</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> The end credits feature Herriman adapting to his wild rabbit lifestyle before raiding a farmer's garden in an homage to The Tale of Peter Rabbit. </p> <div class="rating-row" data-video-id="fyzqex" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">&starf;</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">&starf;</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">&starf;</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">&starf;</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">&starf;</label> </div> <div id="star-rating-total"> 4.57 (7 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / ShoutOut</div> </div> <div class="media_second_wrapper"> <div class="media-sources-overlay example-overlay"> <p>Media sources:</p> <div id="overlay-media"></div> </div> <div class="example-overlay"> <div id="secondary_tropes_row"></div> <div id="overlay-second"></div> </div> </div> </div> <p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)"> <!-- <i class="fa fa-eye"></i> 11,241--> <a href="#video-feedback" class="float-right" data-modal-target="login" >Report</a> </p> </div> </div> </div> <div class="_pmvv-foot"> <div class="_pmvv-foot-scrollwrapper"> <a href="#video-link" data-video-id="fyzqex" data-vimeo-id="" data-video-descrip="The end credits feature Herriman adapting to his wild rabbit lifestyle before raiding a farmer's garden in an homage to The Tale of Peter Rabbit." data-video-title="Run Mr. Herriman fast and free" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fyzqex_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fyzqex.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fyzqex.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fyzqex.jpg" data-video-trope="Main/ShoutOut" data-video-tropename="Shout-Out" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.57" data-video-rating-count="7" data-video-media-sources="Main/TheStinger,Recap/FostersHomeForImaginaryFriendsS3E3CampKeepAGoodMacDown,WesternAnimation/FostersHomeForImaginaryFriends" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fyzqex.jpg"> <p><span class="bold">Run Mr. Herrima...</span></p> </a> <a href="#video-link" data-video-id="9y3lzp" data-vimeo-id="" data-video-descrip="After the credits, a post-scene shows Amok directly asking Ann if she wishes to change destiny. (NOTE: This scene only appeared in the original release of the game. It was removed entirely following the extended ending update.)" data-video-title="Rewrite Destiny" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9y3lzp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9y3lzp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9y3lzp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9y3lzp.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Main/CloseOnTitle,VideoGame/ANNOMutationem" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9y3lzp.jpg"> <p><span class="bold">Rewrite Destiny</span></p> </a> <a href="#video-link" data-video-id="2d6ypt" data-vimeo-id="" data-video-descrip="Terrence explains all what happened and what made the hole on the rooftop, but their mother doesn't buy it all, thereby justifying to ground Terrance. Servers him right, by the way." data-video-title="Terrence gets grounded" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2d6ypt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2d6ypt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2d6ypt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2d6ypt.jpg" data-video-trope="Main/YouAreGrounded" data-video-tropename="You Are Grounded!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.87" data-video-rating-count="15" data-video-media-sources="Main/CassandraTruth,Main/LaserGuidedKarma,Main/TheStinger,Recap/FostersHomeForImaginaryFriendsS4E5InfernalSlumber,WesternAnimation/FostersHomeForImaginaryFriends" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2d6ypt.jpg"> <p><span class="bold">Terrence gets g...</span></p> </a> <a href="#video-link" data-video-id="u0lm5p" data-vimeo-id="" data-video-descrip="At the end of &amp;quot;Blendin's Game&amp;quot;, it's revealed how Soos came to work at the Mystery Shack: when he was twelve, he found a screwdriver owned by the Shack and went to return it. He arrived just as Stan fired the handyman (who ran away). Stan saw Soos with the screwdriver, asked him if he could fix a golf cart, then told him he was hired before he could answer. Soos happily took the job and worked there for the next ten years." data-video-title="Soos gets hired" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/u0lm5p_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/u0lm5p.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/u0lm5p.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u0lm5p.jpg" data-video-trope="Main/HiredOnTheSpot" data-video-tropename="Hired on the Spot" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.77" data-video-rating-count="22" data-video-media-sources="Main/BecauseYouWereNiceToMe,Main/ParentalSubstitute,Main/StableTimeLoop,Main/TheStinger,Recap/GravityFallsS2E8BlendinsGame,WesternAnimation/GravityFalls" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u0lm5p.jpg"> <p><span class="bold">Soos gets hired</span></p> </a> <a href="#video-link" data-video-id="7kep0r" data-vimeo-id="" data-video-descrip="Doofenshmirtz explains that in the past that when he tried entering a science fair with his first &amp;quot;Inator&amp;quot;, he lost to baking soda volcano. He tried against in the next year with a bigger Inator, and lost again to baking soda volcano. He decided to give up on science fairs so he try his hand at poetry, but still lost a poetry contest to someone who made a baking soda volcano! So he decided to enter another science fair, this time with his self-proclaimed &amp;quot;world's largest baking soda volcano&amp;quot; to get back at all the times that he lost. During The Stinger, after Doof gets transported to Mars at the end of the former segment, the Martians walk up to him as if they are going to make him King of their planet (similar to how Candace becomes the Queen of Mars in the latter segment), but they end up giving the crown to a baking soda volcano, much to his chagrin." data-video-title="Baking Soda Volcanoes" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7kep0r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7kep0r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7kep0r.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7kep0r.jpg" data-video-trope="Main/AlwaysSomeoneBetter" data-video-tropename="Always Someone Better" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.67" data-video-rating-count="30" data-video-media-sources="Main/BeyondTheImpossible,Main/EpicFail,Main/RunningGag,Main/TheStinger,Recap/PhineasAndFerbUnfairScienceFair,Recap/PhineasAndFerbUnfairScienceFairRedux,WesternAnimation/PhineasAndFerb" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7kep0r.jpg"> <p><span class="bold">Baking Soda Vol...</span></p> </a> <a href="#video-link" data-video-id="3hh1ba" data-vimeo-id="" data-video-descrip="George and Harold need to sneak past Mr. Krupp's secretary Ms. Anthrope, so they call her and pretend that she's won a contest and needs to be on hold to claim her prize, so they play the phone next to some on hold music; she spends the entire rest of of the movie listening to the phone, which must have been at least half a week. The Stinger has George and Harold realize that they forgot that she's still on hold and when they talk phone again, she accidentally hangs up, which enrages her." data-video-title="Ms. Anthrope's Long Phone Hold" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3hh1ba_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3hh1ba.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3hh1ba.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2875246.jpg" data-video-trope="Main/RidiculouslyLongPhoneHold" data-video-tropename="Ridiculously Long Phone Hold" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="19" data-video-media-sources="Main/BigNo,Main/OverlyLongGag,Main/RunningGag,Main/TheStinger,WesternAnimation/CaptainUnderpantsTheFirstEpicMovie" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2875246.jpg"> <p><span class="bold">Ms. Anthrope's ...</span></p> </a> <a href="#video-link" data-video-id="inrr3r" data-vimeo-id="" data-video-descrip="Played for laughs in The Scary Door segment that plays over the credits, where a scientist combines the DNA of the world's most evil animals, resulting in a naked guy who walks out of the test chamber and bluntly states &amp;quot;It turns out it's man.&amp;quot; This was originally a scene from &amp;quot;The Birdbot of Ice-Catraz&amp;quot;, which was cut from that episode due to time constraints." data-video-title="&quot;It turns out it's man.&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/inrr3r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/inrr3r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/inrr3r.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1347028.jpg" data-video-trope="Main/HumansAreTheRealMonsters" data-video-tropename="Humans Are the Real Monsters" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.96" data-video-rating-count="25" data-video-media-sources="Main/CensorSteam,Recap/FuturamaS4E17SpanishFry,WesternAnimation/Futurama,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1347028.jpg"> <p><span class="bold">"It turns out i...</span></p> </a> <a href="#video-link" data-video-id="h8tfi8" data-vimeo-id="" data-video-descrip="The Stinger for &amp;quot;Mario Kart in real life is dangerous&amp;quot; has Jacob getting caught dressing up as Princess Peach." data-video-title="Jacob as Princess Peach" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h8tfi8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h8tfi8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h8tfi8.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h8tfi8.jpg" data-video-trope="Main/UnmanlySecret" data-video-tropename="Unmanly Secret" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="8" data-video-media-sources="Main/TheStinger,WebVideo/Alpharad" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h8tfi8.jpg"> <p><span class="bold">Jacob as Prince...</span></p> </a> <a href="#video-link" data-video-id="6f91eq" data-vimeo-id="" data-video-descrip="During the end credits of the episode where Candace and Perry switched bodies, we get a variation of Perry's theme song." data-video-title="Perry the Teenage Girl" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6f91eq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6f91eq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6f91eq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6f91eq.jpg" data-video-trope="Main/SelfParody" data-video-tropename="Self-Parody" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.56" data-video-rating-count="27" data-video-media-sources="Main/EarWorm,Main/FreakyFridayFlip,Main/TheStinger,Recap/PhineasAndFerbDoesThisDuckbillMakeMeLookFat,WesternAnimation/PhineasAndFerb" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6f91eq.jpg"> <p><span class="bold">Perry the Teena...</span></p> </a> <a href="#video-link" data-video-id="ipp77g" data-vimeo-id="" data-video-descrip="After the end card fades away, a scene is shown where first, the items pertaining to Mario, Sonic, and Crash disappear, after which all eight of the main heroes find themselves in a black void greeted by the villain Zinyak, thus setting up the events of Gaming All-Stars 2." data-video-title="Gaming All-Stars: Remastered" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ipp77g_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ipp77g.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ipp77g.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ipp77g.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="3.00" data-video-rating-count="1" data-video-media-sources="Main/SequelHook,WebAnimation/GamingAllStars" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ipp77g.jpg"> <p><span class="bold">Gaming All-Star...</span></p> </a> <a href="#video-link" data-video-id="4qch6r" data-vimeo-id="" data-video-descrip="Mazuru Ameku receives a letter that calls for suing Dr. Ameku for medical malpractice." data-video-title="Suing" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4qch6r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4qch6r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4qch6r.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4qch6r.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Literature/AmekuMDDoctorDetective" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4qch6r.jpg"> <p><span class="bold">Suing</span></p> </a> <a href="#video-link" data-video-id="qmkozw" data-vimeo-id="" data-video-descrip="Kikaider shows up at the stinger, commenting on the heroes." data-video-title="Spoken words" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qmkozw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qmkozw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qmkozw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qmkozw.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="1" data-video-media-sources="Film/KamenRiderXSuperSentaiXSpaceSheriffSuperHeroTaisenZ" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qmkozw.jpg"> <p><span class="bold">Spoken words</span></p> </a> <a href="#video-link" data-video-id="uzjdk8" data-vimeo-id="" data-video-descrip="The post-credit stinger of Iron Man 3 reveals Tony Stark (Robert Downey Jr.) had been narrating his trauma throughout the movie to Bruce Banner (Mark Ruffalo), who insists that none of his phDs make him a qualified mental health professional, especially because of Hulking tendencies. " data-video-title="&quot;not that kind of doctor&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/uzjdk8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/uzjdk8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/uzjdk8.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2025_01_15_154557.png" data-video-trope="Main/AmateurTherapist" data-video-tropename="Amateur Therapist" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Film/IronMan3,Main/TheStinger,Main/NotThatKindOfDoctor" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2025_01_15_154557.png"> <p><span class="bold">"not that kind ...</span></p> </a> <a href="#video-link" data-video-id="1g61gc" data-vimeo-id="" data-video-descrip="Eric survives being killed by the Bride and he's looked after by a different Romani woman." data-video-title="He's under good care" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/1g61gc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/1g61gc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/1g61gc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1g61gc.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="WesternAnimation/CreatureCommandos2024" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1g61gc.jpg"> <p><span class="bold">He's under good...</span></p> </a> <a href="#video-link" data-video-id="mfwb3d" data-vimeo-id="" data-video-descrip="After the first episodes, Inori is more than happy to do figure skating." data-video-title="A happy outcome" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mfwb3d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mfwb3d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mfwb3d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfwb3d.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Manga/Medalist" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfwb3d.jpg"> <p><span class="bold">A happy outcome</span></p> </a> <a href="#video-link" data-video-id="3xeu0h" data-vimeo-id="" data-video-descrip="The Castle of the Dragon Queen's High Priest, having gotten over his grief of the Dragon Queen's death, vows to raise her child into a fine ruler of Alfegard and reveals his name to be Hargon, a major villain of Dragon Quest II, which will also have a HD-2D Remake alongside the very first game of the series." data-video-title="The Name of...Hargon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3xeu0h_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3xeu0h.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3xeu0h.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3xeu0h.jpg" data-video-trope="Main/SequelHook" data-video-tropename="Sequel Hook" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="Main/CanonCharacterAllAlong,Main/ToBeContinued,Main/VillainousVow,Main/WhamLine,VideoGame/DragonQuestIII,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3xeu0h.jpg"> <p><span class="bold">The Name of...H...</span></p> </a> <a href="#video-link" data-video-id="lnikx1" data-vimeo-id="" data-video-descrip="After the end card, Twilight kills Pinkie." data-video-title="Cinemare Sins" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lnikx1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lnikx1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lnikx1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lnikx1.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="2.57" data-video-rating-count="7" data-video-media-sources="WebVideo/CinemareSins" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lnikx1.jpg"> <p><span class="bold">Cinemare Sins</span></p> </a> <a href="#video-link" data-video-id="h0ttq1" data-vimeo-id="" data-video-descrip="During the end credits of the special, Deadpool finally makes an appearance. Only to be disappointed when he finds out he's the post credit scene, only for She-Hulk to pop up and tell Deadpool he wasn't supposed to be in the special and fights with him. As they fight, several Marvel characters are shown with their own shows. After She-Hulk wins, she tells someone offscreen to roll the actual credits. " data-video-title="LEGO Deadpool &amp; LEGO She-Hulk" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h0ttq1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h0ttq1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h0ttq1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h0ttq1.jpg" data-video-trope="Main/BreakingTheFourthWall" data-video-tropename="Breaking the Fourth Wall" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.82" data-video-rating-count="11" data-video-media-sources="Main/MythologyGag,Main/TheStinger,WesternAnimation/LegoMarvelAvengersMissionDemolition" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h0ttq1.jpg"> <p><span class="bold">LEGO Deadpool &...</span></p> </a> <a href="#video-link" data-video-id="h1bpzp" data-vimeo-id="" data-video-descrip="Laserhawk finds himself okay somehow. Sam tells him that this is where they're going to start the fight again..." data-video-title="He ain't dead yet" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h1bpzp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h1bpzp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h1bpzp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h1bpzp.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/NotQuiteDead,WesternAnimation/CaptainLaserhawkABloodDragonRemix" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h1bpzp.jpg"> <p><span class="bold">He ain't dead yet</span></p> </a> <a href="#video-link" data-video-id="j2mciz" data-vimeo-id="" data-video-descrip="Despite the Kakurangers saving the day (in their 50s), something's going on in the dimension that's keeping the Yokai Army Corp from resurfacing. Red light is seen coming out... which is not suppose to happen." data-video-title="Something's going on" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j2mciz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j2mciz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j2mciz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j2mciz.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.33" data-video-rating-count="3" data-video-media-sources="Recap/NinjaSentaiKakurangerAct3TheMiddleAgedStruggles" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j2mciz.jpg"> <p><span class="bold">Something's goi...</span></p> </a> <a href="#video-link" data-video-id="hjr1xq" data-vimeo-id="" data-video-descrip="Aki's about to fight someone when she sees a familiar face hidden under the raincoat." data-video-title="Familiar?" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hjr1xq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hjr1xq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hjr1xq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hjr1xq.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Anime/MechaUde" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hjr1xq.jpg"> <p><span class="bold">Familiar?</span></p> </a> <a href="#video-link" data-video-id="b4ap03" data-vimeo-id="" data-video-descrip="In the same vein as Ferris Bueller, Deadpool tells the audience to go home as the movie is over and that Sam Jackson doesn't appear at all. Although he does give us a couple of hints regarding the sequel." data-video-title="Deadpool" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/b4ap03_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/b4ap03.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/b4ap03.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_10_10_175613.png" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.88" data-video-rating-count="8" data-video-media-sources="Film/Deadpool2016,Main/SequelHook,Main/ShoutOut" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_10_10_175613.png"> <p><span class="bold">Deadpool</span></p> </a> <a href="#video-link" data-video-id="26r3jl" data-vimeo-id="" data-video-descrip="The post-credits scene of Crisis Core: Final Fantasy VII is a remake of the opening cutscene of the original Final Fantasy VII; from Aerith walking out of an alleyway in Midgar, to Cloud riding atop a train arriving at Mako Reactor 1." data-video-title="Crisis Core" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/26r3jl_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/26r3jl.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/26r3jl.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/26r3jl.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/ToBeContinued,VideoGame/CrisisCore" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/26r3jl.jpg"> <p><span class="bold">Crisis Core</span></p> </a> <a href="#video-link" data-video-id="id7ouo" data-vimeo-id="" data-video-descrip="After the first episode, Kana is welcomed to join Magilumiere. She also meets the president, who happens to like wearing magical girl costumes." data-video-title="A welcoming reception" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/id7ouo_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/id7ouo.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/id7ouo.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/id7ouo.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="6" data-video-media-sources="Manga/MagilumiereCoLtd" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/id7ouo.jpg"> <p><span class="bold">A welcoming rec...</span></p> </a> <a href="#video-link" data-video-id="l8fu2b" data-vimeo-id="" data-video-descrip="The end of Code White has Franky waiting for Loid to show up as he got the liquor he needed." data-video-title="A cold Franky" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l8fu2b_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l8fu2b.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l8fu2b.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l8fu2b.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.50" data-video-rating-count="8" data-video-media-sources="Anime/SpyXFamilyCodeWhite" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l8fu2b.jpg"> <p><span class="bold">A cold Franky</span></p> </a> <a href="#video-link" data-video-id="tewb1s" data-vimeo-id="" data-video-descrip="At the stinger of &amp;quot;Best Husband&amp;quot;, Kogoro is shown awake in a groggy manner (thanks to Conan's darts) that he mutters &amp;quot;Case Closed&amp;quot;. CC is the alternate title of Detective Conan (manga) in some countries outside Japan." data-video-title="Case closed" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/tewb1s_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/tewb1s.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/tewb1s.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tewb1s.jpg" data-video-trope="Main/TitleDrop" data-video-tropename="Title Drop" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="6" data-video-media-sources="Manga/CaseClosed,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tewb1s.jpg"> <p><span class="bold">Case closed</span></p> </a> <a href="#video-link" data-video-id="cnd6a0" data-vimeo-id="" data-video-descrip="After the end of &amp;quot;Lavendar&amp;quot;, a young Ash is shown in the aftermath of a massacre he just did. Norland smirks in the end, suggesting that he masterminded the incident." data-video-title="What Ash did (SPOILERS)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cnd6a0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cnd6a0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cnd6a0.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cnd6a0.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Anime/CodeGeassRozeOfTheRecapture,Main/TrailOfBlood" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cnd6a0.jpg"> <p><span class="bold">What Ash did (S...</span></p> </a> <a href="#video-link" data-video-id="7wfadp" data-vimeo-id="" data-video-descrip="In space, Eggman angrily tells Orbot and Cubot to push his damaged Egg Mobile, saying he has his revenge plan in the works and he won't fail this time, hinting at the events of Sonic Generations. Orbot tells him he won't fail this time and that on the bright side, Cubot got his voice back, who starts to talk like crazy, much to Eggman and Orbot's displeasure, who have to endure all that talking before Eggman, Orbot, and Cubot stumble upon the Time Eater." data-video-title="Eggman in Space" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7wfadp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7wfadp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7wfadp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7wfadp.jpg" data-video-trope="Main/SequelHook" data-video-tropename="Sequel Hook" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.89" data-video-rating-count="9" data-video-media-sources="Main/FateWorseThanDeath,Main/IrisOut,Main/MotorMouth,Main/TheStinger,VideoGame/SonicColors" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7wfadp.jpg"> <p><span class="bold">Eggman in Space</span></p> </a> <a href="#video-link" data-video-id="g8a5m0" data-vimeo-id="" data-video-descrip="At the end of ONA, Chinen gets acquainted with his AI since his AMAIM previously got wrecked. This was prior to his deployment in a guerrilla operation." data-video-title="Deployment " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/g8a5m0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/g8a5m0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/g8a5m0.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g8a5m0.jpg" data-video-trope="Main/AndTheAdventureContinues" data-video-tropename="And the Adventure Continues" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Anime/AmaimWarriorAtTheBorderlineUltraSteelOgreGear,Main/TheStinger" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g8a5m0.jpg"> <p><span class="bold">Deployment </span></p> </a> <a href="#video-link" data-video-id="0u76hy" data-vimeo-id="" data-video-descrip="The stinger of the film shows Dagded for the first time after Reinol Husty is taken care of." data-video-title="Guess who shows up" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0u76hy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0u76hy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0u76hy.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0u76hy.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Film/OhsamaSentaiKingOhgerAdventureHeaven" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0u76hy.jpg"> <p><span class="bold">Guess who shows up</span></p> </a> <a href="#video-link" data-video-id="65mr6d" data-vimeo-id="" data-video-descrip="According to Stormy, it turns out that the entire episode of Sealab 2021 was a video game being played by Master Shake and Meatwad of Aqua Teen Hunger Force." data-video-title="Sealab 2021" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/65mr6d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/65mr6d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/65mr6d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/65mr6d.jpg" data-video-trope="Main/CrossoverPunchline" data-video-tropename="Crossover Punchline" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.91" data-video-rating-count="11" data-video-media-sources="Main/LogoJoke,Main/TheStinger,Recap/Sealab2021S1E10MurphyMurphAndTheFengShuiBunch,WesternAnimation/AquaTeenHungerForce,WesternAnimation/Sealab2021" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/65mr6d.jpg"> <p><span class="bold">Sealab 2021</span></p> </a> <a href="#video-link" data-video-id="r7ux5f" data-vimeo-id="" data-video-descrip="Towards the beginning of the movie, a slug monster who was trying (emphasis on &amp;quot;trying&amp;quot;) to make it to his first class on the first day of school? Well, during the stinger after the credits, we find out that the slug finally made it to class... but it turns out it took him the entire school year for him to get there." data-video-title="Monsters University" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/r7ux5f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/r7ux5f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/r7ux5f.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r7ux5f.jpg" data-video-trope="Main/BrickJoke" data-video-tropename="Brick Joke" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.96" data-video-rating-count="24" data-video-media-sources="Main/TheStinger,WesternAnimation/MonstersUniversity" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r7ux5f.jpg"> <p><span class="bold">Monsters Univer...</span></p> </a> <a href="#video-link" data-video-id="stbm8n" data-vimeo-id="" data-video-descrip="Superbia's shocked to hear Lulu wanting to ride Superbia's cockpit." data-video-title="Riding Superbia" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/stbm8n_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/stbm8n.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/stbm8n.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/stbm8n.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Anime/BangBraveBangBravern" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/stbm8n.jpg"> <p><span class="bold">Riding Superbia</span></p> </a> <a href="#video-link" data-video-id="41gqqo" data-vimeo-id="" data-video-descrip="Jigen waits at a harbor, taking time to relax. When he sees a yellow Fiat 500, the gunman knows that it's back to work." data-video-title="Off to another job" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/41gqqo_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/41gqqo.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/41gqqo.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/41gqqo.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Film/JigenDaisuke2023,Main/AndTheAdventureContinues" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/41gqqo.jpg"> <p><span class="bold">Off to another job</span></p> </a> <a href="#video-link" data-video-id="e7fxog" data-vimeo-id="" data-video-descrip="Zenon shows Tilt the cards he got from the raid on the Pinochle building." data-video-title="Showing the cards" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e7fxog_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e7fxog.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e7fxog.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e7fxog.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.80" data-video-rating-count="5" data-video-media-sources="Anime/HighCard,Main/WhamShot" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e7fxog.jpg"> <p><span class="bold">Showing the cards</span></p> </a> <a href="#video-link" data-video-id="7i7h4o" data-vimeo-id="" data-video-descrip="&amp;quot;Mission: Freakazoid&amp;quot; was repeatedly sponsored by Anubis Market, which after all the shilling for it, Freakazoid cops to how this kept the show on for another season." data-video-title="Anubis Market" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7i7h4o_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7i7h4o.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7i7h4o.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_764.png" data-video-trope="Main/ParodyCommercial" data-video-tropename="Parody Commercial" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="12" data-video-media-sources="Main/LampshadeHanging,Main/RunningGag,Main/TheStinger,Recap/FreakazoidS2E3MissionFreakazoid,WesternAnimation/Freakazoid" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_764.png"> <p><span class="bold">Anubis Market</span></p> </a> <a href="#video-link" data-video-id="6hbs0l" data-vimeo-id="" data-video-descrip="After the Warners bid everyone goodnight, they proceed to badmouth everyone in the credits, including their own voice actors! To the siblings' horror, it turns out that their mics were on the whole time." data-video-title="Animaniacs Cold Ending" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6hbs0l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6hbs0l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6hbs0l.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_60.png" data-video-trope="Main/CreativeClosingCredits" data-video-tropename="Creative Closing Credits" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.94" data-video-rating-count="17" data-video-media-sources="Main/AccidentalMisnaming,Main/BitingTheHandHumor,Main/ButHeSoundsHandsome,Main/IsThisThingStillOn,Main/OhCrap,Main/TheStinger,Main/WhoWritesThisCrap,Recap/AnimaniacsEpisode84,WesternAnimation/Animaniacs" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_60.png"> <p><span class="bold">Animaniacs Cold...</span></p> </a> <a href="#video-link" data-video-id="nam0da" data-vimeo-id="" data-video-descrip="After the Omega Device kills Slow Mobius in every conceivable universe, his wife goes on a journey to find the truth, but she later learns to move on and find love again." data-video-title="Slow Mobius Erased" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nam0da_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nam0da.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nam0da.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/ram_s07e05_slow_mobiuss_wife.png" data-video-trope="Main/RetGone" data-video-tropename="Ret-Gone" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="17" data-video-media-sources="Main/KnuckleTattoos,Main/SecondLove,Main/TheStinger,Recap/RickAndMortyS7E5Unmortricken,WesternAnimation/RickAndMorty,Main/HerHeartWillGoOn" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/ram_s07e05_slow_mobiuss_wife.png"> <p><span class="bold">Slow Mobius Erased</span></p> </a> <a href="#video-link" data-video-id="cs4nq3" data-vimeo-id="" data-video-descrip="The post-credits scene for Ed, Edd n Eddy's Big Picture Show features Jonny 2x4 plotting revenge on the Eds under his new persona of the Gourd, only to be told by Plank that the movie's already over and there's no time for him to actually get his revenge." data-video-title="The Gourd" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cs4nq3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cs4nq3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cs4nq3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cs4nq3.jpg" data-video-trope="Main/InterruptedByTheEnd" data-video-tropename="Interrupted by the End" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="20" data-video-media-sources="Main/EndOfSeriesAwareness,Main/TheStinger,WesternAnimation/EdEddNEddysBigPictureShow,Main/BreakingTheFourthWall" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cs4nq3.jpg"> <p><span class="bold">The Gourd</span></p> </a> <a href="#video-link" data-video-id="52gf3g" data-vimeo-id="" data-video-descrip="One adventure is Morty having Rick animate a churro for him to have as a friend. When Morty comes to him asking when it'll wear off, Rick explains that to bring Churrie to life without needing any internal organs he had to make him functionally immortal. Morty, not happy to learn this, abandons Churrie on a barren planet, which leads him to swear vengeance." data-video-title="Churrie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/52gf3g_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/52gf3g.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/52gf3g.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/52gf3g.jpg" data-video-trope="Main/AnimateInanimateObject" data-video-tropename="Animate Inanimate Object" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="Main/TheStinger,Recap/RickAndMortyS7E6RickfendingYourMort,WesternAnimation/RickAndMorty" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/52gf3g.jpg"> <p><span class="bold">Churrie</span></p> </a> <a href="#video-link" data-video-id="brns1w" data-vimeo-id="" data-video-descrip="The episode ends with Numbuh 5 about to tell Sector V where babies come from. What follows in The Stinger is the rest of the team reacting in either shock, horror, disgust, or a combination of the three, making us believe she actually gave them The Talk. But then Numbuh 1 breaks out of his stupor and says that babies don't come from New Jersey, they actually come from Philadelphia." data-video-title="Babies Come From..." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/brns1w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/brns1w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/brns1w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brns1w.jpg" data-video-trope="Main/BaitAndSwitch" data-video-tropename="Bait-and-Switch" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="20" data-video-media-sources="Main/TheStinger,Main/TheTalk,Recap/CodenameKidsNextDoorS5E2BOperationDIAPER,WesternAnimation/CodenameKidsNextDoor" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brns1w.jpg"> <p><span class="bold">Babies Come Fro...</span></p> </a> <a href="#video-link" data-video-id="f4yl9j" data-vimeo-id="" data-video-descrip="The Post Credits scene of Big Hero 6 has Fred discover that his millionaire father, played by the Legendary Stan Lee, was actually a superhero and embracing him upon discovery." data-video-title="Fred's Dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f4yl9j_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f4yl9j.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f4yl9j.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4yl9j.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.95" data-video-rating-count="21" data-video-media-sources="Creator/StanLee,Main/BookcasePassage,Main/CoolOldGuy,Main/CoolShades,Main/OldSuperhero,Main/RetiredBadass,Main/TheCameo,Main/WellDoneSonGuy,WesternAnimation/BigHero6,Main/UnderwearOfPower,Main/FinishDialogueInUnison" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4yl9j.jpg"> <p><span class="bold">Fred's Dad</span></p> </a> <a href="#video-link" data-video-id="3l8rwt" data-vimeo-id="" data-video-descrip="During the epilogue for Good Wilt Hunting, Wilt and the Foster's gang watch Jordan play basketball during one of his professional games, with Wilt getting a little crazy on the commentary." data-video-title="Good Wilt Hunting's Epilogue" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3l8rwt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3l8rwt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3l8rwt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3l8rwt.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.64" data-video-rating-count="11" data-video-media-sources="Main/DoesThisRemindYouOfAnything,WesternAnimation/FostersHomeForImaginaryFriends,WesternAnimation/GoodWiltHunting" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3l8rwt.jpg"> <p><span class="bold">Good Wilt Hunti...</span></p> </a> <a href="#video-link" data-video-id="d12wn3" data-vimeo-id="" data-video-descrip="A running gag in &amp;quot;Berry Scary&amp;quot; is Bloo constantly gets Berry's name wrong, often replacing it with a name that rhymes with it such as Mary, Larry, Jerry, etc." data-video-title="Bloo gets Berry's name wrong" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d12wn3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d12wn3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d12wn3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d12wn3.jpg" data-video-trope="Main/RunningGag" data-video-tropename="Running Gag" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.85" data-video-rating-count="13" data-video-media-sources="Main/TheStinger,Recap/FostersHomeForImaginaryFriendsS1E12ScaryBerry,WesternAnimation/FostersHomeForImaginaryFriends,Main/FullyAutomaticClipShow" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d12wn3.jpg"> <p><span class="bold">Bloo gets Berry...</span></p> </a> <a href="#video-link" data-video-id="79j874" data-vimeo-id="" data-video-descrip="Whithers gives a speech aimed at the Dead Three at the end of the game, mocking their failure and telling them their plan would have never worked." data-video-title="Baldur's Gate Epilogue Speech" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/79j874_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/79j874.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/79j874.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/79j874.jpg" data-video-trope="Main/TheReasonYouSuckSpeech" data-video-tropename="&quot;The Reason You Suck&quot; Speech" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="16" data-video-media-sources="Main/DidntThinkThisThrough,Main/TheStinger,VideoGame/BaldursGateIII" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/79j874.jpg"> <p><span class="bold">Baldur's Gate E...</span></p> </a> <a href="#video-link" data-video-id="podaks" data-vimeo-id="" data-video-descrip="The new Ladybug/Cat duo successfully stop one of the strongest villains yet, and Adrien and Marinette can finally be themselves around each other. Then The Stinger comes, revealing that Gabriel knows who the new heroes are thanks to their Alliance Rings." data-video-title="&quot;Transmission&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/podaks_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/podaks.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/podaks.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/podaks.jpg" data-video-trope="Main/SuddenDownerEnding" data-video-tropename="Sudden Downer Ending" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.70" data-video-rating-count="10" data-video-media-sources="Main/TheStinger,Recap/MiraculousLadybugS05E10TransmissionTheKwamisChoicePart1,WesternAnimation/MiraculousLadybug" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/podaks.jpg"> <p><span class="bold">"Transmission"</span></p> </a> <a href="#video-link" data-video-id="5i3612" data-vimeo-id="" data-video-descrip="Ian marries Butt-Massage Girl after the end credits." data-video-title="Smosh: The Movie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/5i3612_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/5i3612.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/5i3612.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5i3612.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Film/SmoshTheMovie,Main/WeddingFinale" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5i3612.jpg"> <p><span class="bold">Smosh: The Movie</span></p> </a> <a href="#video-link" data-video-id="j8rf8w" data-vimeo-id="" data-video-descrip="" data-video-title="Nightmares discover Multiverse" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j8rf8w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j8rf8w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j8rf8w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j8rf8w.jpg" data-video-trope="Main/TheMultiverse" data-video-tropename="The Multiverse" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.50" data-video-rating-count="4" data-video-media-sources="Main/TheStinger,WebAnimation/FiveNightsAtFreddysForgottenEvents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j8rf8w.jpg"> <p><span class="bold">Nightmares disc...</span></p> </a> <a href="#video-link" data-video-id="3m245q" data-vimeo-id="" data-video-descrip="Ike eats a rat in the attic." data-video-title="Ike" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3m245q_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3m245q.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3m245q.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3m245q.jpg" data-video-trope="Main/TheStinger" data-video-tropename="The Stinger" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.92" data-video-rating-count="12" data-video-media-sources="WesternAnimation/SouthParkBiggerLongerAndUncut" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3m245q.jpg"> <p><span class="bold">Ike</span></p> </a> <a href="#video-link" data-video-id="3mhoi4" data-vimeo-id="" data-video-descrip="At the end of the first season, Nhat Thi Nguyen was attacked in the sewers by the Black Knight, a supposed specter haunting Finn's dreams. With an accusing look at the BK, it seemed that she knows more about the being." data-video-title="Stabbed hard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3mhoi4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3mhoi4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3mhoi4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mhoi4.jpg" data-video-trope="Main/ImpaledWithExtremePrejudice" data-video-tropename="Impaled with Extreme Prejudice" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Anime/HighCard,Main/TheStinger,Main/RedEyesTakeWarning" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mhoi4.jpg"> <p><span class="bold">Stabbed hard</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10