CINXE.COM

Pre-emptive Declaration - 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 || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } 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 : "34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4", 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; </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>Pre-emptive Declaration - TV Tropes</title> <meta name="description" content="The Pre-emptive Declaration trope as used in popular culture. Someone says something seemingly out of the blue, causing just enough pause to allow the &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/PreemptiveDeclaration" /> <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="Pre-emptive Declaration - TV Tropes" /> <meta name="twitter:description" content="The Pre-emptive Declaration trope as used in popular culture. Someone says something seemingly out of the blue, causing just enough pause to allow the &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/preemptive.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="Pre-emptive Declaration - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/PreemptiveDeclaration" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/preemptive.png" /> <meta property="og:description" content="Someone says something seemingly out of the blue, causing just enough pause to allow the statement to be true (if it isn't true already; if it's not true, it's gonna be true very soon). There are three types to this trope: When a character &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=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4" /> <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/TomboynessUpgrade" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/WebAnimation/TheRaidenSaga" 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, fb_token, 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) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (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]'); 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 toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).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/PreemptiveDeclaration?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/PreemptiveDeclaration"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.PreemptiveDeclaration" 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.PreemptiveDeclaration" 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/PreemptiveDeclaration?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="PreemptiveDeclaration"/> <input type="hidden" id="article_id" value="330818" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/PreemptiveDeclaration</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"> Pre-emptive Declaration </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": "Pre-emptive Declaration", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/PreemptiveDeclaration" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Pre-emptive Declaration", "headline": "Pre-emptive Declaration", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/PreemptiveDeclaration", "image": "https://static.tvtropes.org/pmwiki/pub/images/preemptive.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2012-02-13T00:00:00-08:00", "dateModified": "2024-11-28T19:24:27-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/PreemptiveDeclaration" 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/PreemptiveDeclaration" 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/VideoExamples/PreemptiveDeclaration" 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/PreemptiveDeclaration?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/PreemptiveDeclaration?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/PreemptiveDeclaration?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/PreemptiveDeclaration?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/PreemptiveDeclaration?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/PreemptiveDeclaration?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/PreemptiveDeclaration?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/PreemptiveDeclaration?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/PreemptiveDeclaration?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/PreemptiveDeclaration?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/PreemptiveDeclaration?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/PreemptiveDeclaration?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/PreemptiveDeclaration?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/PreemptiveDeclaration?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/PreemptiveDeclaration?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/PreemptiveDeclaration?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/PreemptiveDeclaration?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/PreemptiveDeclaration?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/PreemptiveDeclaration?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Quotes/PreemptiveDeclaration?action=edit">Quotes</option> <option value="/pmwiki/pmwiki.php/Recap/PreemptiveDeclaration?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/PreemptiveDeclaration?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/PreemptiveDeclaration?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/PreemptiveDeclaration?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/PreemptiveDeclaration?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/PreemptiveDeclaration?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/PreemptiveDeclaration?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/PreemptiveDeclaration?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><div class="quoteright" style="width:227px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ThatDeafGuy' title='/pmwiki/pmwiki.php/Webcomic/ThatDeafGuy' data-format='W1tXZWJjb21pYy9UaGF0RGVhZkd1eSBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvcHJlZW1wdGl2ZS5wbmddXQ=='><div class="lazy_load_img_box" style="padding-top:201.76%"><img src='https://static.tvtropes.org/pmwiki/pub/images/preemptive.png' class='embeddedimage' border='0' alt='Pre-emptive Declaration (trope)' width=227 height=458></div></a></div> </p><p>Someone says something seemingly out of the blue, causing just enough pause to allow the statement to be true (if it isn't true already; if it's not true, it's gonna be true very soon). There are three types to this trope: </p><p><ol ><li> When a character announces something he is about to do, much to the surprise of everyone else. Very often, it's a very indirect, off-hand remark, an unnatural segue in the conversation. Bonus points if the confusing line is also mumbled. Example:<span class="notelabel" onclick="togglenote('note0ztt6');"><sup>note&nbsp;</sup></span><span id="note0ztt6" class="inlinefolder" isnote="true" onclick="togglenote('note0ztt6');" style="cursor:pointer;font-size:smaller;display:none;">Edited for space.</span> <div class='indent'><em>[The Master puts on a facial gas mask]</em><br data-format="\\" /><strong>Albert Dumfries:</strong> Excuse me, Prime Minister, but do you mind my asking, what is that?<br data-format="\\" /><strong>The Master:</strong> It's a gas mask.<br data-format="\\" /><strong>Albert Dumfries:</strong> Yes, but why are you wearing it?<br data-format="\\" /><strong>The Master:</strong> Well, because of the gas.<br data-format="\\" /><strong>Albert Dumfries:</strong> What gas?<br data-format="\\" /><strong>The Master:</strong> <em>[leans back in his chair]</em> This gas.<br data-format="\\" /><em>[the speakers on the two table phones pop up and immediately spray toxic gas around the room]</em><br data-format="\\" /><strong>Albert Dumfries:</strong> <em>[sputtering]</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YoureInsane' title='/pmwiki/pmwiki.php/Main/YoureInsane' data-format='W1tZb3VyZUluc2FuZSBZT1UmIzAzOTtSRSBJTlNBTkVdXQ=='>YOU'RE INSANE</a>! <em>[drops dead on the table]</em> <div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em>, <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS29E12TheSoundOfDrums' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS29E12TheSoundOfDrums' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMjlFMTJUaGVTb3VuZE9mRHJ1bXMgIlRoZSBTb3VuZCBvZiBEcnVtcyJdXQ=='>"The Sound of Drums"</a> </div></div></p><p><dl ><dt></dt><dd> This might also happen when the person says something, realizes afterwards it isn't true, and then makes steps to fix it<span class='esc-seq' title='non-wikiword'>:</span> <div class='indent'><strong>Swamp King:</strong> For, since the tragic death of her father&#8212;<br data-format="\\" /><strong>Courtier:</strong> <em>[tending to said father]</em> He's not quite dead!<br data-format="\\" /><strong>Swamp King:</strong> Since the near fatal wounding of her father&#8212;<br data-format="\\" /><strong>Courtier:</strong> He's getting better!<br data-format="\\" /><em>[the Swamp King nods to one of his guards, who draws his sword, walks over to the father, and stabs him in the chest]</em><br data-format="\\" /><strong>Swamp King:</strong> For since her own father who, when he seemed about to recover, suddenly felt the cold hand of death upon him. </div><div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MontyPythonAndTheHolyGrail' title='/pmwiki/pmwiki.php/Film/MontyPythonAndTheHolyGrail' data-format='RmlsbS9Nb250eVB5dGhvbkFuZFRoZUhvbHlHcmFpbA=='>Monty Python and the Holy Grail</a></em> </div></dd></dl></p><p></li><li> A character pulls a weapon or insult on another character. The attacked shrugs it off, quips something like "How will you do that with a broken sword?" and promptly snaps the sword in half. <div class='indent'><strong>Gandalf:</strong> Saruman, your staff is broken!<br data-format="\\" /><em>[Saruman's staff is firmly in his hands... then suddenly, <strong>Kerboom!</strong> it goes.]</em> <div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheLordOfTheRingsTheReturnOfTheKing' title='/pmwiki/pmwiki.php/Film/TheLordOfTheRingsTheReturnOfTheKing' data-format='RmlsbS9UaGVMb3JkT2ZUaGVSaW5nc1RoZVJldHVybk9mVGhlS2luZw=='>The Lord of the Rings: The Return of the King</a></em> </div></div></p><p><dl ><dt></dt><dd> Specific subtrope<span class='esc-seq' title='non-wikiword'>:</span> Character is pulled over by a sheriff<span class='esc-seq' title='non-wikiword'>:</span> <div class='indent'><strong>Guy:</strong> What seems to be the problem, officer?<br data-format="\\" /><strong>Sheriff:</strong> Busted tail light.<br data-format="\\" /><strong>Guy:</strong> Which one?<br data-format="\\" /><em>[perfectly functional tail light is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnsoundEffect' title='/pmwiki/pmwiki.php/Main/UnsoundEffect' data-format='W1tVbnNvdW5kRWZmZWN0IEJBVE9OJiMwMzk7RF1d'>BATON'D</a><span class='esc-seq' title='non-wikiword'>]</span></em><br data-format="\\" /><strong>Sheriff:</strong> That one. </div></dd></dl></p><p></li><li> The trope is not used in a confrontation, but as a backhanded joke where perhaps the joker was confused, or hiding something a bit. <div class='indent'><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/AliceAndBob' title='/pmwiki/pmwiki.php/Main/AliceAndBob' data-format='W1tBbGljZUFuZEJvYiBBbGljZV1d'>Alice</a>:</strong> How did you get in?<br data-format="\\" /><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/AliceAndBob' title='/pmwiki/pmwiki.php/Main/AliceAndBob' data-format='W1tBbGljZUFuZEJvYiBCb2JdXQ=='>Bob</a>:</strong> I used your back door.<br data-format="\\" /><strong>Alice:</strong> I don't have a back door!<br data-format="\\" /><strong>Bob:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BulletholeDoor' title='/pmwiki/pmwiki.php/Main/BulletholeDoor' data-format='W1tCdWxsZXRob2xlRG9vciAuLi55b3UgZG8gbm93Ll1d'>...you do now.</a> </div></li></ol></p><p>Contrast <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InstantlyProvenWrong' title='/pmwiki/pmwiki.php/Main/InstantlyProvenWrong' data-format='SW5zdGFudGx5UHJvdmVuV3Jvbmc='>Instantly Proven Wrong</a>. See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreemptiveApology' title='/pmwiki/pmwiki.php/Main/PreemptiveApology' data-format='UHJlZW1wdGl2ZUFwb2xvZ3k='>Preemptive Apology</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreemptiveShutUp' title='/pmwiki/pmwiki.php/Main/PreemptiveShutUp' data-format='UHJlZW1wdGl2ZVNodXRVcA=='>Preemptive "Shut Up"</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreMortemOneLiner' title='/pmwiki/pmwiki.php/Main/PreMortemOneLiner' data-format='UHJlTW9ydGVtT25lTGluZXI='>Pre-Mortem One-Liner</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouAreAlreadyDead' title='/pmwiki/pmwiki.php/Main/YouAreAlreadyDead' data-format='WW91QXJlQWxyZWFkeURlYWQ='>You Are Already Dead</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JokeAndReceive' title='/pmwiki/pmwiki.php/Main/JokeAndReceive' data-format='Sm9rZUFuZFJlY2VpdmU='>Joke and Receive</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlreadyTheCase' title='/pmwiki/pmwiki.php/Main/AlreadyTheCase' data-format='QWxyZWFkeVRoZUNhc2U='>Already the Case</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImprobablyPredictable' title='/pmwiki/pmwiki.php/Main/ImprobablyPredictable' data-format='SW1wcm9iYWJseVByZWRpY3RhYmxl'>Improbably Predictable</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReminderOfImpossibility' title='/pmwiki/pmwiki.php/Main/ReminderOfImpossibility' data-format='UmVtaW5kZXJPZkltcG9zc2liaWxpdHk='>Reminder of Impossibility</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThisIsThePartWhere' title='/pmwiki/pmwiki.php/Main/ThisIsThePartWhere' data-format='VGhpc0lzVGhlUGFydFdoZXJl'>This Is the Part Where...</a>, the fact that your monitor is smashed in... <hr data-format='&#8212;&#8212;' /> <h2>Foreshadowed listings:</h2> <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;Anime and Manga&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Baccano' title='/pmwiki/pmwiki.php/Literature/Baccano' data-format='TGl0ZXJhdHVyZS97e0JhY2Nhbm99fQ=='>Baccano!</a>!</em> <div class='indent'><strong>Jacuzzi:</strong> Please, lower your guns! I don't want anyone to die!<br data-format="\\" /><strong>Thug:</strong> You mean <em>you</em> don't want to be killed, right?<br data-format="\\" /><strong>Jacuzzi:</strong> No, you're wrong, I don't want you to be killed! So Donny, please wait a little longer! I'm sure they'll lower their guns. Please!<br data-format="\\" /><strong>Thug:</strong> Who the hell are you talkin' tooaaaAAAAAAHHHHGH! <em>[Immediately has his hand broken by aforementioned and insanely huge <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigGuy' title='/pmwiki/pmwiki.php/Main/TheBigGuy' data-format='W1tUaGVCaWdHdXkgRG9ubnkuXV0='>Donny.</a>]</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Hellsing' title='/pmwiki/pmwiki.php/Manga/Hellsing' data-format='TWFuZ2Eve3tIZWxsc2luZ319'>Hellsing</a></em> (paraphrased) <div class='indent'><strong>Recruit:</strong> I heard there's a vampire in this unit, that true?<br data-format="\\" /><em>(laughter from other recruits)</em><br data-format="\\" /><strong>Seras:</strong> <em>(steps close to the recruit)</em> Oh dear, it seems there's something wrong with your gun.<br data-format="\\" /><strong>Recruit:</strong> What?<br data-format="\\" /><strong>Seras:</strong> <em>(Bends barrel)</em> Oh, it seems your barrel is bent, you might want to get that looked at. </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureBattleTendency' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureBattleTendency' data-format='W1tNYW5nYS9Kb0pvc0JpemFycmVBZHZlbnR1cmVCYXR0bGVUZW5kZW5jeSBKb3NlcGggSm9lc3Rhcl1d'>Joseph Joestar</a> likes telling people what their next words will be. It pretty much always plays out like this: <div class='indent'><strong>Joseph</strong>: Whammu, your next line is: "Don't dishonor our battle, Jojo!"<br data-format="\\" /><strong>Whammu</strong>: Don't dishonor our battle Joj&#8212; hm!? </div></li><li> This style of attack is how Brook from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/OnePiece' title='/pmwiki/pmwiki.php/Manga/OnePiece' data-format='TWFuZ2EvT25lUGllY2U='>One Piece</a></em> got the nickname "The Humming Swordsman". He tends to make quips along the lines of "Sorry for defeating you", and then hums as he sheaths his sword. It is not until the sword is sheathed that the opponent realizes they have already been defeated. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Bleach' title='/pmwiki/pmwiki.php/Manga/Bleach' data-format='TWFuZ2Eve3tCbGVhY2h9fQ=='>Bleach</a></em>, Ichigo and Chad became friends when Ichigo came across Chad being beaten up by a gang of bullies and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MartialPacifist' title='/pmwiki/pmwiki.php/Main/MartialPacifist' data-format='W1tNYXJ0aWFsUGFjaWZpc3QgcmVmdXNpbmcgdG8gZGVmZW5kIGhpbXNlbGYuXV0='>refusing to defend himself.</a> Ichigo promptly pulls out his cell phone and calls for emergency services, telling them a bunch of guys have been beaten up and they need to send ambulances. For how many people? "One...two...three..four..." </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Books&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheUltimates' title='/pmwiki/pmwiki.php/ComicBook/TheUltimates' data-format='Q29taWNCb29rL1RoZVVsdGltYXRlcw=='>The Ultimates</a></em>: <div class='indent'><strong>Captain America:</strong> C'mere, let me get a closer look at that big gash on your cheek...<br data-format="\\" /><strong>Bruce Banner:</strong> But I haven't got a gash on my cheek.<br data-format="\\" />[Cap kicks Bruce in the head]<br data-format="\\" /><strong>Captain America:</strong> You do now, son. </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Watchmen' title='/pmwiki/pmwiki.php/ComicBook/Watchmen' data-format='Q29taWNCb29rL3t7V2F0Y2htZW59fQ=='>Watchmen</a></em>, as Dr. Manhattan puts an end to a police riot: <div class='indent'><strong>Dr. Manhattan:</strong> Pay attention. You will all return to your homes.<br data-format="\\" /><strong>Rioter:</strong> Oh yeah? And what if we don't, ya big blue fruit?<br data-format="\\" /><strong>Dr. Manhattan:</strong> You misunderstand me. It was not a request.<br data-format="\\" /><em>[He teleports the rioters en masse, each to his home.]</em> </div></li><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/XForce' title='/pmwiki/pmwiki.php/ComicBook/XForce' data-format='Q29taWNCb29rL1hGb3JjZQ=='>X-Force</a></em> #20: <div class='indent'><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoForHire' title='/pmwiki/pmwiki.php/Main/PsychoForHire' data-format='W1tQc3ljaG9Gb3JIaXJlIEtpbXVyYV1d'>Kimura</a>:</strong> X-23 has killed three facility heads. She has to die.<br data-format="\\" /><strong>Third facility head:</strong> Three? That's not right, she only killed&#8212; <em>[is shot in the head by Kimura]</em> </div></li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PointyHairedBoss' title='/pmwiki/pmwiki.php/Main/PointyHairedBoss' data-format='UG9pbnR5SGFpcmVkQm9zcw=='>Pointy-Haired Boss</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/Dilbert' title='/pmwiki/pmwiki.php/ComicStrip/Dilbert' data-format='Q29taWNTdHJpcC97e0RpbGJlcnR9fQ=='>Dilbert</a></em> is fond of setting these up during performance reviews. <div class='indent'><strong>Dilbert:</strong> What do you mean by "Doesn't handle criticism well"?<br data-format="\\" /><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/PointyHairedBoss' title='/pmwiki/pmwiki.php/Main/PointyHairedBoss' data-format='UG9pbnR5SGFpcmVkQm9zcw=='>Pointy-Haired Boss</a>:</strong> This is a perfect example. I say one little thing and you go all nuts on me. (to himself) And the trap is set. </div></li><li> Non-verbal example: A fortune teller in an <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Iznogoud' title='/pmwiki/pmwiki.php/ComicBook/Iznogoud' data-format='Q29taWNCb29rL3t7SXpub2dvdWR9fQ=='>Iznogoud</a></em> story annoyed him by always knowing what he was going to say next. Suddenly she jumps back, looking startled. <div class='indent'><strong>Iznogoud:</strong> Why did you jump?<br data-format="\\" /><strong>Fortune teller:</strong> Because you're going to scream!<br data-format="\\" /><strong>Iznogoud:</strong> ENOUGH! </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Fan Works&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='urllink' href='https://www.fanfiction.net/s/10080850/'>Devil You Know (High School DxD/Dresden Files<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>: Harry is accosted by a local gang member and called a "giant red-neck yankee thug", to which he replies "At least my nose wasn't broken." <div class='indent'><strong>Harry's narration</strong>: "The punch line didn't hit him until a few seconds later when I did." </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DragonBallZAbridged' title='/pmwiki/pmwiki.php/WebVideo/DragonBallZAbridged' data-format='V2ViVmlkZW8vRHJhZ29uQmFsbFpBYnJpZGdlZA=='>DragonBall Z Abridged</a></em>: <ul ><li> Early in the Namek arc: <div class='indent'><strong>Namekian:</strong> Come on! Bring it! There's three of us and one of you!<br data-format="\\" /><strong>Dodoria:</strong> Man, you must suck at math even worse than me.<br data-format="\\" /><strong>Namekian:</strong> What do you mean?<br data-format="\\" /><strong>Dodoria:</strong> There's only <em>two</em> of you.<br data-format="\\" /><strong>Namekian:</strong> That's not right- <em>(gets punched through)</em> Aargh!<br data-format="\\" /><strong>Dodoria:</strong> <em>(after killing the Namekian warriors)</em> Whoops, looks like I miscounted. I must be having an off day. </div></li><li> Later: <div class='indent'><strong>Guru:</strong> Nail. Gather the rest of the dragon balls and wish for a plasma TV.<br data-format="\\" /><strong>Nail:</strong> Lord Guru, that would be a grievous misuse of their power.<br data-format="\\" /><strong>Guru:</strong> I'm about to misuse my hand <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DopeSlap' title='/pmwiki/pmwiki.php/Main/DopeSlap' data-format='W1tEb3BlU2xhcCB1cHNpZGUgeW91ciBoZWFkLl1d'>upside your head.</a> </div></li><li> Gets better with the disclaimers in the outtakes. <div class='indent'><strong>Announcer</strong>: Warning! The following contains language unsuitable for minors! So if you are under the age of 18 and have not heard the word fuck before... well... you have now. </div></li><li> Vegeta walks right into one too. <div class='indent'><strong>Android 18:</strong> So who's got two broken arms and is a total bitch?<br data-format="\\" /><strong>Vegeta:</strong> You... stupid bint. You only broke one a-(<em>crack</em>)-AAAAAAAAAAHHHH!<br data-format="\\" /><strong>Android 18:</strong> <em>This</em> guy. </div></li></ul></li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MarvelCinematicUniverse' title='/pmwiki/pmwiki.php/Franchise/MarvelCinematicUniverse' data-format='RnJhbmNoaXNlL01hcnZlbENpbmVtYXRpY1VuaXZlcnNl'>Marvel Cinematic Universe</a></em> fic <em><a class='urllink' href='https://archiveofourown.org/works/31564853'>A Little Red and Blue<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, Sharon is inadvertently sent to the year 1944 by Wanda and is later found by the past Steve and Bucky, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WithholdingTheirName' title='/pmwiki/pmwiki.php/Main/WithholdingTheirName' data-format='W1tXaXRoaG9sZGluZ1RoZWlyTmFtZSBjbGFpbWluZyB0aGF0IGhlciBuYW1lIGlzICJLYXRlIiBpbiBvcmRlciB0byBoaWRlIHRoZSBmYWN0IHRoYXQgc2hlJiMwMzk7cyBmcm9tIHRoZSBmdXR1cmVdXQ=='>claiming that her name is "Kate" in order to hide the fact that she's from the future</a>. At one point, when advising Steve and Bucky that they should better help the common people, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HyperAwareness' title='/pmwiki/pmwiki.php/Main/HyperAwareness' data-format='W1tIeXBlckF3YXJlbmVzcyBTaGFyb24gcG9pbnRzIG91dCBhIG1hbiB3aG8gaXMgYmVhdGluZyBoaXMgd2lmZSwgYSBjaGlsZCB3aG8gaXMgYmVpbmcgYWJ1c2VkIGJ5IGhpcyBtb3RoZXImIzAzOTtzIGJveWZyaWVuZCxdXQ=='>Sharon points out a man who is beating his wife, a child who is being abused by his mother's boyfriend,</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArsonMurderAndJaywalking' title='/pmwiki/pmwiki.php/Main/ArsonMurderAndJaywalking' data-format='W1tBcnNvbk11cmRlckFuZEpheXdhbGtpbmcgYW5kIGFuIG92ZXJ3ZWlnaHQgbWFuIHdpdGggaGVhcnQgcHJvYmxlbXMgZWF0aW5nIGEgc2FuZHdpY2hdXQ=='>and an overweight man with heart problems eating a sandwich</a> and tells Steve and Bucky that she's going to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WifeBasherBasher' title='/pmwiki/pmwiki.php/Main/WifeBasherBasher' data-format='W1tXaWZlQmFzaGVyQmFzaGVyIGJlYXQgdXAgdGhlIGFidXNlcl1d'>beat up the abuser</a>, tell the woman off for willingly being in a relationship with someone who abuses children, and take the man's sandwich for herself before proceeding to do just that. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/SwordArtOnlineAbridged' title='/pmwiki/pmwiki.php/WebVideo/SwordArtOnlineAbridged' data-format='V2ViVmlkZW8vU3dvcmRBcnRPbmxpbmVBYnJpZGdlZA=='>Sword Art Online Abridged</a></em>: In the <em>Alfheim Online</em> arc, Yui tries to explain that Kirito is on a rescue mission, but Leafa is convinced her brother is only logging into the game to mess with her and refuses to believe Yui. Then Leafa learns that it's a bad idea to antagonize <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VirtualRealityWarper' title='/pmwiki/pmwiki.php/Main/VirtualRealityWarper' data-format='W1tWaXJ0dWFsUmVhbGl0eVdhcnBlciBhbiBBSSB3aXRoIGFkbWluIHByaXZpbGVnZXNdXQ=='>an AI with admin privileges</a>. <div class='indent'><strong>Yui:</strong> (<em>sigh</em>) A pity. If you will not listen to reason, perhaps more... <em>drastic</em> methods will be necessary.<br data-format="\\" /><strong>Leafa:</strong> Ha! Nice try, kid, but you've got a <em>terrible</em> poker face.<br data-format="\\" /><strong>Yui:</strong> At least I still <em>have</em> a face. (<em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/DissonantLaughter' title='/pmwiki/pmwiki.php/Main/DissonantLaughter' data-format='W1tEaXNzb25hbnRMYXVnaHRlciBnaWdnbGVzXV0='>giggles</a></em>)<br data-format="\\" /><strong>Leafa:</strong> What's that supposed to mean&#8212;? (<em>her avatar distorts, leaving her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBlank' title='/pmwiki/pmwiki.php/Main/TheBlank' data-format='VGhlQmxhbms='>The Blank</a></em>) </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/YuGiOhTheAbridgedSeries' title='/pmwiki/pmwiki.php/WebVideo/YuGiOhTheAbridgedSeries' data-format='V2ViVmlkZW8vWXVHaU9oVGhlQWJyaWRnZWRTZXJpZXM='>Yu-Gi-Oh! The Abridged Series</a></em> has a moment, after Weevil bluffs about tearing apart a card containing Yugi's soul. <div class='indent'><strong>Yami:</strong> You know, it really is a shame. If Yugi <em>were</em> here, he might have been able to prevent me.<br data-format="\\" /><strong>Weevil:</strong> Prevent you from what?<br data-format="\\" /><strong>Yami:</strong> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoHoldsBarredBeatdown' title='/pmwiki/pmwiki.php/Main/NoHoldsBarredBeatdown' data-format='W1tOb0hvbGRzQmFycmVkQmVhdGRvd24gRnJvbSBkb2luZyB0aGlzLl1d'>From doing this.</a></em> </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Films — Animated&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Futurama' title='/pmwiki/pmwiki.php/WesternAnimation/Futurama' data-format='V2VzdGVybkFuaW1hdGlvbi97e0Z1dHVyYW1hfX0='>Futurama</a></em> movie "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FuturamaM1BendersBigScore' title='/pmwiki/pmwiki.php/Recap/FuturamaM1BendersBigScore' data-format='W1tSZWNhcC9GdXR1cmFtYU0xQmVuZGVyc0JpZ1Njb3JlIEJlbmRlcnMgQmlnIFNjb3JlXV0='>Benders Big Score</a>", when the Planet Express company is taken over by scammers, one of the things the scammers do is repossess their television, claiming they can't afford it due to being unemployed. <div class='indent'><strong>Zoidberg:</strong> We're not unemploy-<br data-format="\\" /><em>(<a class='twikilink' href='/pmwiki/pmwiki.php/Main/SmashCut' title='/pmwiki/pmwiki.php/Main/SmashCut' data-format='U21hc2hDdXQ='>Smash Cut</a> to the entire company outside their building, holding their things)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/RiseOfTheGuardians' title='/pmwiki/pmwiki.php/WesternAnimation/RiseOfTheGuardians' data-format='V2VzdGVybkFuaW1hdGlvbi9SaXNlT2ZUaGVHdWFyZGlhbnM='>Rise of the Guardians</a></em>: Just so you know, if the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BewareTheNiceOnes' title='/pmwiki/pmwiki.php/Main/BewareTheNiceOnes' data-format='W1tCZXdhcmVUaGVOaWNlT25lcyBUb290aCBGYWlyeV1d'>Tooth Fairy</a> gives you a quarter, then <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TeethFlying' title='/pmwiki/pmwiki.php/Main/TeethFlying' data-format='W1tUZWV0aEZseWluZyB5b3Ugb3dlIGhlciBhIHRvb3RoXV0='>you owe her a tooth</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheEmperorsNewGroove' title='/pmwiki/pmwiki.php/WesternAnimation/TheEmperorsNewGroove' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVFbXBlcm9yc05ld0dyb292ZQ=='>The Emperor's New Groove</a></em>, after Pacha informs Kuzco where on his village's hill has the most sun, Kuzco thanks him, saying he needed some insight for his pool. <div class='indent'><strong>Pacha</strong>: Your pool?<br data-format="\\" /><em>(Kuzco then drops <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ModelPlanning' title='/pmwiki/pmwiki.php/Main/ModelPlanning' data-format='W1tNb2RlbFBsYW5uaW5nIGhpcyBLdXpjb3RvcGlhIG1vZGVsIG9uIHRoZSBtb2RlbCBvZiB0aGUgdmlsbGFnZV1d'>his Kuzcotopia model on the model of the village</a>)</em> </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Films — Live-Action&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheDarkKnight' title='/pmwiki/pmwiki.php/Film/TheDarkKnight' data-format='RmlsbS9UaGVEYXJrS25pZ2h0'>The Dark Knight</a></em>: <ul ><li> The Joker's goons take one another out in the opening bank robbery. Eventually it's just Grumpy and Bozo (actually the Joker posing as one of his own henchmen). <div class='indent'><strong>Grumpy:</strong> <em>[gun drawn on "Bozo"]</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouHaveOutLivedYourUsefulness' title='/pmwiki/pmwiki.php/Main/YouHaveOutLivedYourUsefulness' data-format='W1tZb3VIYXZlT3V0TGl2ZWRZb3VyVXNlZnVsbmVzcyBJJiMwMzk7bSBiZXR0aW4mIzAzOTsgdGhlIEpva2VyIHRvbGQgeW91IHRvIGtpbGwgbWUgYXMgc29vbiBhcyB3ZSBsb2FkZWQgdGhlIGNhc2guXV0='>I'm bettin' the Joker told you to kill me as soon as we loaded the cash.</a><br data-format="\\" /><strong>The Joker:</strong> <em>[scoffs]</em> No-no-no-no. I kill the bus driver.<br data-format="\\" /><strong>Grumpy:</strong> <em>[confused]</em> Bus driver? <em>["Bozo" glares back at him]</em> What bus dri-<em>[The back end of a school bus bursts through the bank doors and runs over him]</em> </div></li><li> In addition to the example above: <div class='indent'><strong>Joker:</strong> You wanna know how I got these scars?<br data-format="\\" /><strong>Batman:</strong> No, but I know how you got these. <em>(fires shurikens)</em> </div></li><li> Two-Face's way of dealing with Sal Maroni. He flips the coin for Maroni, and lands with the unscarred side up. <div class='indent'><strong>Two-Face:</strong> You're a lucky man. <em>(flips the coin again; lands with the scarred side up)</em> But he's not. <br data-format="\\" /><strong>Maroni:</strong> Who?<br data-format="\\" /><strong>Two-Face:</strong> <em>(buckles seatbelt)</em> Your driver. <em>(shoots the driver)</em> </div></li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ChristopherNolan' title='/pmwiki/pmwiki.php/Creator/ChristopherNolan' data-format='Q3JlYXRvci9DaHJpc3RvcGhlck5vbGFu'>Christopher Nolan</a> must be a fan of this, as it also shows up in his first feature film, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Following' title='/pmwiki/pmwiki.php/Film/Following' data-format='RmlsbS97e0ZvbGxvd2luZ319'>Following</a></em>: <div class='indent'><strong>Cobb:</strong> Nice suit. Shame about the bloodstains, though.<br data-format="\\" /><strong>"Bill":</strong> What bloodstains?<br data-format="\\" /><em>[Cobb headbutts Bill, and proceeds to beat the tar out of him.]</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BatmanReturns' title='/pmwiki/pmwiki.php/Film/BatmanReturns' data-format='RmlsbS9CYXRtYW5SZXR1cm5z'>Batman Returns</a></em> has one from Penguin, responding to a crack from one of his image consultants which has everyone laughing (including Penguin, who laughs right along with them). <div class='indent'><strong>Penguin:</strong> Still, could be worse! My nose could be gushing blood!<br data-format="\\" />[<em>Everyone laughs except Josh, who looks mystified</em>]<br data-format="\\" /><strong>Josh:</strong> Your nose could be...what do you mean by that &#8212; !<br data-format="\\" />[<em>The Penguin proceeds to viciously bite Josh's nose and draw blood.</em>] </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheMatrix' title='/pmwiki/pmwiki.php/Franchise/TheMatrix' data-format='RnJhbmNoaXNlL1RoZU1hdHJpeA=='>The Matrix</a></em> franchise: <dl><dd><ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMatrix' title='/pmwiki/pmwiki.php/Film/TheMatrix' data-format='RmlsbS9UaGVNYXRyaXg='>The Matrix</a></em> (original): <div class='indent'><strong>Agent Smith:</strong> What use is a phone call <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WipeThatSmileOffYourFace' title='/pmwiki/pmwiki.php/Main/WipeThatSmileOffYourFace' data-format='W1tXaXBlVGhhdFNtaWxlT2ZmWW91ckZhY2UgaWYgeW91IGFyZSB1bmFibGUgdG8gc3BlYWs/XV0='>if you are unable to speak?</a> </div></li><li> And, of course, the original Oracle scene. <div class='indent'><strong>Oracle</strong>: Oh, and don't worry about the vase.<br data-format="\\" /><strong>Neo</strong>: What vase? [<em>looks around, knocking over a vase in the process</em>]<br data-format="\\" /><strong>Oracle</strong>: <em>That</em> vase.<br data-format="\\" /><strong>Neo</strong>: I'm sorry, I&#8212;-<br data-format="\\" /><strong>Oracle</strong>: I said, don't worry about it.<br data-format="\\" /><strong>Neo</strong>: You knew I would do that?<br data-format="\\" /><strong>Oracle</strong>: What's really gonna bake your noodle later on is: would you still have broken it if I hadn't said anything? </div></li></ul></dd></dl><ul ><li> Combined with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ApologeticAttacker' title='/pmwiki/pmwiki.php/Main/ApologeticAttacker' data-format='QXBvbG9nZXRpY0F0dGFja2Vy'>Apologetic Attacker</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMatrixReloaded' title='/pmwiki/pmwiki.php/Film/TheMatrixReloaded' data-format='RmlsbS9UaGVNYXRyaXhSZWxvYWRlZA=='>The Matrix Reloaded</a></em>. <div class='indent'><strong>Seraph:</strong> You seek the Oracle.<br data-format="\\" /><strong>Neo:</strong> Who are you?<br data-format="\\" /><strong>Seraph:</strong> I am Seraph. I can take you to her, but first I must <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreemptiveApology' title='/pmwiki/pmwiki.php/Main/PreemptiveApology' data-format='W1tQcmVlbXB0aXZlQXBvbG9neSBhcG9sb2dpemVdXQ=='>apologize</a>.<br data-format="\\" /><strong>Neo:</strong> Apologize for what?<br data-format="\\" /><strong>Seraph:</strong> For this. [<em>attacks Neo</em>] </div></li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DieAnotherDay' title='/pmwiki/pmwiki.php/Film/DieAnotherDay' data-format='RmlsbS9EaWVBbm90aGVyRGF5'>Die Another Day</a></em>, <a class='twikilink' href='/pmwiki/pmwiki.php/Film/JamesBond' title='/pmwiki/pmwiki.php/Film/JamesBond' data-format='RmlsbS9KYW1lc0JvbmQ='>James Bond</a> enters a room with a wheelchair. <div class='indent'><strong>Patient:</strong> What the hell do you want? I don't need a goddamn wheelchair.<br data-format="\\" /><strong>James Bond:</strong> No? <br data-format="\\" />(punches him)<br data-format="\\" /><strong>James Bond:</strong> You do now. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AViewToAKill' title='/pmwiki/pmwiki.php/Film/AViewToAKill' data-format='RmlsbS9BVmlld1RvQUtpbGw='>A View to a Kill</a></em>. <a class='urllink' href='https://www.youtube.com/watch?v=_E0yxgdkneE'>Zorin informs a corrupt crony of his in San Francisco City Hall<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> how he intends to stage Bond and Stacy Sutton's deaths. <div class='indent'><strong>Howe:</strong> What have they done? <em>[gestures to Bond and Stacy]</em> </div><div class='indent'><strong>Zorin:</strong> You discharged her, hmmm? So she and her accomplice came here to kill you. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FieryCoverup' title='/pmwiki/pmwiki.php/Main/FieryCoverup' data-format='W1tGaWVyeUNvdmVydXAgVGhlbiB0aGV5IHNldCBmaXJlIHRvIHRoZSBvZmZpY2UsIHRvIGNvbmNlYWwgdGhlIGNyaW1lXV0='>Then they set fire to the office, to conceal the crime</a>. But they were trapped in the elevator, and perished in the flames. </div><div class='indent'><strong>Howe:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LateToTheRealization' title='/pmwiki/pmwiki.php/Main/LateToTheRealization' data-format='W1tMYXRlVG9UaGVSZWFsaXphdGlvbiBCdXQgdGhhdCBtZWFucy4uLkkgd291bGQgaGF2ZSB0byBiZS1dXQ=='>But that means...I would have to be-</a> </div><div class='indent'><strong>Zorin:</strong> Dead! <em>(shoots him in the chest)</em> That's rather neat, don't you think? </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FightClub' title='/pmwiki/pmwiki.php/Film/FightClub' data-format='RmlsbS9GaWdodENsdWI='>Fight Club</a></em>: <div class='indent'><strong>Narrator:</strong> What is this?<br data-format="\\" /><strong>Tyler:</strong> This...<br data-format="\\" /><em>(pours lye on the Narrator's hand)</em><br data-format="\\" /><strong>Tyler:</strong> ...is a chemical burn. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ArmyOfDarkness' title='/pmwiki/pmwiki.php/Film/ArmyOfDarkness' data-format='RmlsbS9Bcm15T2ZEYXJrbmVzcw=='>Army of Darkness</a></em> has Ash's famous "Hey, what's that on your face?" line, just as he begins burying his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnemyWithout' title='/pmwiki/pmwiki.php/Main/EnemyWithout' data-format='RW5lbXlXaXRob3V0'>Enemy Without</a> alive. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/WalkingTall2004' title='/pmwiki/pmwiki.php/Film/WalkingTall2004' data-format='RmlsbS9XYWxraW5nVGFsbDIwMDQ='>Walking Tall (2004)</a></em> remake with <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/DwayneJohnson' title='/pmwiki/pmwiki.php/Wrestling/DwayneJohnson' data-format='W1tXcmVzdGxpbmcvRHdheW5lSm9obnNvbiBUaGUgUm9ja11d'>The Rock</a>: <div class='indent'><strong>Vaughn:</strong> Get your taillights fixed, sir.<br data-format="\\" /><strong>Hamilton:</strong> What's wrong with my taillights?<br data-format="\\" /><em>(smash)</em><br data-format="\\" /><strong>Vaughn:</strong> They're broken. </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DeathToSmoochy' title='/pmwiki/pmwiki.php/Film/DeathToSmoochy' data-format='RmlsbS9EZWF0aFRvU21vb2NoeQ=='>Death to Smoochy</a></em>, after Sheldon interrupts Nora in her office: <div class='indent'><strong>Sheldon</strong>: Oh, you didn't have to get off the phone.<br data-format="\\" /><strong>Nora</strong>: If I didn't you'd still be here.<br data-format="\\" /><strong>Sheldon</strong>: I am still here.<br data-format="\\" /><strong>Nora</strong>: I'm hoping to correct that. </div></li><li> William "D-Fens" Foster in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FallingDown' title='/pmwiki/pmwiki.php/Film/FallingDown' data-format='RmlsbS9GYWxsaW5nRG93bg=='>Falling Down</a></em>: <div class='indent'><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/InnocentBystander' title='/pmwiki/pmwiki.php/Main/InnocentBystander' data-format='SW5ub2NlbnRCeXN0YW5kZXI='>Innocent Bystander</a></strong>: If you haven't noticed, others are waiting to use the phone.<br data-format="\\" /><strong>Foster</strong>: Others want the phone?<br data-format="\\" /><strong>IB</strong>: Right, asshole!<br data-format="\\" /><strong>Foster</strong>: Jeez, that's too bad, because you know what?<br data-format="\\" /><em>[shoots the phone down]</em><br data-format="\\" /><strong>Foster</strong>: I think it's out of order. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarTrek2009' title='/pmwiki/pmwiki.php/Film/StarTrek2009' data-format='RmlsbS9TdGFyVHJlazIwMDk='>Star Trek (2009)</a></em> <span class="spoiler" title="you can set spoilers visible by default on your profile" >"I've got your gun."</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Dogma' title='/pmwiki/pmwiki.php/Film/Dogma' data-format='RmlsbS97e0RvZ21hfX0='>Dogma</a></em> <div class='indent'><strong>Metatron</strong>: What are you gonna do? Hit me with that...fish?<br data-format="\\" /><em>(cut back to Bethany, whose baseball bat has miraculously transformed into a big fish)</em> </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/FrankCapra' title='/pmwiki/pmwiki.php/Creator/FrankCapra' data-format='Q3JlYXRvci9GcmFua0NhcHJh'>Frank Capra</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/PocketfulOfMiracles' title='/pmwiki/pmwiki.php/Film/PocketfulOfMiracles' data-format='RmlsbS9Qb2NrZXRmdWxPZk1pcmFjbGVz'>Pocketful of Miracles</a></em>: <div class='indent'>- <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScrewThisImOuttaHere' title='/pmwiki/pmwiki.php/Main/ScrewThisImOuttaHere' data-format='W1tTY3Jld1RoaXNJbU91dHRhSGVyZSBJJiMwMzk7bSBvZmYgdG8gSGF2YW5hXV0='>I'm off to Havana</a>, sir.<br data-format="\\" />- With two broken legs?<br data-format="\\" />- My legs, sir? Oh, they're quite... Oh! Very cleverly put, sir. </div></li><li> A confrontation between the title character of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MajorPayne' title='/pmwiki/pmwiki.php/Film/MajorPayne' data-format='RmlsbS9NYWpvclBheW5l'>Major Payne</a></em> and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BadassBiker' title='/pmwiki/pmwiki.php/Main/BadassBiker' data-format='QmFkYXNzQmlrZXI='>Badass Biker</a>: the former claims to be about to deliver a kick to the latter's head, but then goes for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GroinAttack' title='/pmwiki/pmwiki.php/Main/GroinAttack' data-format='R3JvaW5BdHRhY2s='>Groin Attack</a>. Writhing in pain on the ground, the biker protests: <div class='indent'><strong>Biker:</strong> You said you were gonna kick me in the head! </div><div class='indent'><strong>Maj. Payne:</strong> You callin' me a liar? <em>(Kicks biker in head)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheDeadPool' title='/pmwiki/pmwiki.php/Film/TheDeadPool' data-format='RmlsbS9UaGVEZWFkUG9vbA=='>The Dead Pool</a></em> has this during the Chinatown restaurant robbery scene: <div class='indent'><strong>Harry Callahan:</strong> You forgot your fortune cookie. </div><div class='indent'><strong>Lead Robber:</strong> <em>[turns]</em> WHAT? </div><div class='indent'><em>[Harry gives a smug grin, and pulls out a fortune]</em> </div><div class='indent'><strong>Harry Callahan:</strong> It says, "You're shit out of luck." <em>[shoots the lead robber]</em> </div><ul ><li> Callahan gets two mafia mooks to back off by asking a woman to call for an ambulance, describing the mooks and listing their potential injuries. </li><li> The same tactic is used in the 1972 movie <em>The New Centurions</em> to make a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScaryBlackMan' title='/pmwiki/pmwiki.php/Main/ScaryBlackMan' data-format='U2NhcnlCbGFja01hbg=='>Scary Black Man</a> come along quietly &#8212; he regards it as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActuallyPrettyFunny' title='/pmwiki/pmwiki.php/Main/ActuallyPrettyFunny' data-format='QWN0dWFsbHlQcmV0dHlGdW5ueQ=='>Actually Pretty Funny</a> when he realises the cops never called for the ambulance. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MarvelCinematicUniverse' title='/pmwiki/pmwiki.php/Franchise/MarvelCinematicUniverse' data-format='RnJhbmNoaXNlL01hcnZlbENpbmVtYXRpY1VuaXZlcnNl'>Marvel Cinematic Universe</a></em> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/IronMan1' title='/pmwiki/pmwiki.php/Film/IronMan1' data-format='RmlsbS9Jcm9uTWFuMQ=='>Iron Man</a></em> <div class='indent'><strong>Iron Monger</strong>: You had a great idea, Tony, but my suit is advanced in every way! </div><div class='indent'><strong>Iron Man</strong>: How'd you solve that icing problem? </div><div class='indent'><strong>Iron Monger</strong>: Icing problem? </div><div class='indent'><em>Surely enough, Iron Monger's suit ices over and begins to fail</em> </div><div class='indent'><strong>Iron Man</strong>: Might want to look into it. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AvengersInfinityWar' title='/pmwiki/pmwiki.php/Film/AvengersInfinityWar' data-format='RmlsbS9BdmVuZ2Vyc0luZmluaXR5V2Fy'>Avengers: Infinity War</a>:</em> <div class='indent'><strong>Doctor Strange:</strong> I think you'll find our will equal to yours. </div><div class='indent'><strong>Thanos:</strong> "Our"? </div><div class='indent'><em>(Iron Man propels a giant piece of debris into Thanos from above)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AvengersEndgame' title='/pmwiki/pmwiki.php/Film/AvengersEndgame' data-format='RmlsbS9BdmVuZ2Vyc0VuZGdhbWU='>Avengers: Endgame</a>:</em> <div class='indent'><strong>Thanos:</strong> I don't even know who you are. </div><div class='indent'><strong>Scarlet Witch:</strong> You will. </div><div class='indent'><em>(proceeds to beat him so severely he is willing to sacrifice his own troops to get her off him)</em> </div></li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/IndianaJonesAndTheTempleOfDoom' title='/pmwiki/pmwiki.php/Film/IndianaJonesAndTheTempleOfDoom' data-format='RmlsbS9JbmRpYW5hSm9uZXNBbmRUaGVUZW1wbGVPZkRvb20='>Indiana Jones and the Temple of Doom</a></em>: <div class='indent'><strong>Willie:</strong> What's that?<br data-format="\\" /><strong>Lau:</strong> Antidote.<br data-format="\\" /><strong>Indiana:</strong> To what?<br data-format="\\" /><strong>Lau:</strong> The poison you just drank, Dr. Jones. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/VictorVictoria' title='/pmwiki/pmwiki.php/Film/VictorVictoria' data-format='RmlsbS9WaWN0b3JWaWN0b3JpYQ=='>Victor/Victoria</a></em> uses this trope for slapstick, practically citing it by name. <div class='indent'><strong>Club owner:</strong> Be careful. </div><div class='indent'><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/ButtMonkey' title='/pmwiki/pmwiki.php/Main/ButtMonkey' data-format='W1tCdXR0TW9ua2V5IFByaXZhdGUgZXllXV0='>Private eye</a>:</strong> I am <em>always</em> careful. </div><div class='indent'><strong>Club owner:</strong> That chair is broken. </div><div class='indent'><strong>Private eye:</strong> It is? <em>(chair collapses)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Serenity' title='/pmwiki/pmwiki.php/Film/Serenity' data-format='RmlsbS97e1NlcmVuaXR5fX0='>Serenity</a></em>: <div class='indent'><strong>The Operative</strong>: You are fooling yourself, Captain. Nothing here is what it seems. You are not the plucky hero, the Alliance is not an evil empire, and this is not the grand arena. </div><div class='indent'><strong>Inara</strong>: And that's not incense. </div><div class='indent'><em>[A flash bomb goes off, allowing Mal and Inara to escape]</em> </div></li><li> At the end of the Tollywood movie <em>Pokiri</em>, Mahesh Babu's character has just taken out the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a>, but there's one more loose end to take care of... <div class='indent'><strong>Pandu</strong> (on the phone): Sir, it's me. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DamselInDistress' title='/pmwiki/pmwiki.php/Main/DamselInDistress' data-format='W1tEYW1zZWxJbkRpc3RyZXNzIFlvdXIgZGF1Z2h0ZXJdXQ=='>Your daughter</a> is safe. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='W1tCaWdCYWQgQWxpIEJoYWldXQ=='>Ali Bhai</a> is dead. Bad luck...our SI<span class="notelabel" onclick="togglenote('note1a6qk');"><sup>note&nbsp;</sup></span><span id="note1a6qk" class="inlinefolder" isnote="true" onclick="togglenote('note1a6qk');" style="cursor:pointer;font-size:smaller;display:none;">Sub-Inspector</span> too is dead. </div><div class='indent'>[<em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCop' title='/pmwiki/pmwiki.php/Main/DirtyCop' data-format='W1tEaXJ0eUNvcCBTdWItSW5zcGVjdG9yIFBhc2h1cGF0aHldXQ=='>Sub-Inspector Pashupathy</a> gets an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OhCrap' title='/pmwiki/pmwiki.php/Main/OhCrap' data-format='T2hDcmFw'>Oh, Crap!</a> face as Pandu hangs up.</em>] </div><div class='indent'><strong>Pashupathy</strong>: What are you saying, sir? </div><div class='indent'>[<em>Pashupathy tries to kill Pandu, but is gunned down without mercy.</em>] </div></li><li> When Jason tries to stop Buddy Love from taking over Sherman Klump in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1996' title='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1996' data-format='RmlsbS97e1RoZSBOdXR0eSBQcm9mZXNzb3J8MTk5Nn19'>The Nutty Professor</a></em>: <div class='indent'><strong>Buddy</strong>: I have a date at the Alumni Ball, and you have a date with linoleum! </div><div class='indent'><strong>Jason</strong>: What? [Buddy knocks him out] </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SonOfTheMask' title='/pmwiki/pmwiki.php/Film/SonOfTheMask' data-format='RmlsbS9Tb25PZlRoZU1hc2s='>Son of the Mask</a></em>, during the climactic fight between Tim and Loki: <div class='indent'><strong>Tim:</strong> You can't fight me if you're locked in a trunk.<br data-format="\\" /><strong>Loki:</strong> Huh?<br data-format="\\" /><em>(Tim punches Loki into a trunk and throws him into the sea, though being a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityWarper' title='/pmwiki/pmwiki.php/Main/RealityWarper' data-format='UmVhbGl0eVdhcnBlcg=='>Reality Warper</a> god Loki quickly recovers)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheChroniclesOfRiddick' title='/pmwiki/pmwiki.php/Film/TheChroniclesOfRiddick' data-format='RmlsbS9UaGVDaHJvbmljbGVzT2ZSaWRkaWNr'>The Chronicles of Riddick</a></em> contains the following exchange: <div class='indent'><strong>Inmate:</strong> What, you'll kill me with your soup cup?<br data-format="\\" /><strong>Riddick:</strong> Tea, actually.<br data-format="\\" /><strong>Inmate:</strong> What?<br data-format="\\" /><strong>Riddick:</strong> I'll kill you with my tea cup. </div><div class='indent'> <em>[kills him with the tea cup]</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Riddick' title='/pmwiki/pmwiki.php/Film/Riddick' data-format='RmlsbS97e1JpZGRpY2t9fQ=='>Riddick</a></em>. Riddick is chained up and about to be decapitated by mercenaries. He predicts they're about to take off his chains, whereupon he'll kill the mercenary leader with his own machete and fuck <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSquadette' title='/pmwiki/pmwiki.php/Main/TheSquadette' data-format='VGhlU3F1YWRldHRl'>The Squadette</a>. Sure enough... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TrueLies' title='/pmwiki/pmwiki.php/Film/TrueLies' data-format='RmlsbS9UcnVlTGllcw=='>True Lies</a></em> has this scene with Harry pumped full of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthSerum' title='/pmwiki/pmwiki.php/Main/TruthSerum' data-format='VHJ1dGhTZXJ1bQ=='>Truth Serum</a>: <div class='indent'><strong>Harry Tasker:</strong> First I'm gonna use you as a human shield, then I gonna kill this guard over there, with the Patterson trocar on the table. Then I was thinking about breaking your neck.<br data-format="\\" /><strong>Samir</strong> : And how are you going to do all that?<br data-format="\\" /><strong>Harry</strong>: You know my handcuffs? [hold his hands up] <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakingTheBonds' title='/pmwiki/pmwiki.php/Main/BreakingTheBonds' data-format='W1tCcmVha2luZ1RoZUJvbmRzIEkgcGlja2VkIHRoZW0uXV0='>I picked them.</a> <em>(proceeds to exactly as he foretold!)</em> </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CharliesAngels2000' title='/pmwiki/pmwiki.php/Film/CharliesAngels2000' data-format='RmlsbS9DaGFybGllc0FuZ2VsczIwMDA='>Charlie's Angels (2000)</a></em>, Dylan is tied up in a chair by the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Mook' title='/pmwiki/pmwiki.php/Main/Mook' data-format='e3tNb29rfX1z'>Mooks</a> who are about to pounce on her. She gets her legs free and yells for the mooks to stop. <div class='indent'><strong>Dylan:</strong> Wait, wait, wait! I have something to tell you! By the time this is over, every one of you is gonna be face-down on the floor, and I'm gonna moonwalk out of here. <em>(the mooks scoff and start to rush her again)</em> No, no no! You're not listening to me. First, <em>you're</em> going to help me out of my chair. Then I'll leapfrog over <em>you</em>...before I break <em>his</em> nose. And since my trusty lighter isn't working I'm gonna do all of this <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WithMyHandsTied' title='/pmwiki/pmwiki.php/Main/WithMyHandsTied' data-format='W1tXaXRoTXlIYW5kc1RpZWQgd2l0aCBteSBoYW5kcyB0aWVkIGJlaGluZCBteSBiYWNrXV0='>with my hands tied behind my back</a>. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMiracleOfMorgansCreek' title='/pmwiki/pmwiki.php/Film/TheMiracleOfMorgansCreek' data-format='RmlsbS9UaGVNaXJhY2xlT2ZNb3JnYW5zQ3JlZWs='>The Miracle of Morgan's Creek</a></em>: On the porch with her father, Emmy mentions that she heard a police siren. The father notes that there are no sirens in town. Seconds later, her prediction comes true as a convoy delivers Trudy and Norval to their doorstops. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Literature&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the second <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BetweenWorlds' title='/pmwiki/pmwiki.php/Literature/BetweenWorlds' data-format='TGl0ZXJhdHVyZS9CZXR3ZWVuV29ybGRz'>Between Worlds</a></em> novel, Jason Linford is being hunted through Hela's spaceship by her security force, while she threatens him over the comm with vengeance for all the things he's done to piss her off. Jason replies that there's one thing she left out of her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ListOfTransgressions' title='/pmwiki/pmwiki.php/Main/ListOfTransgressions' data-format='TGlzdE9mVHJhbnNncmVzc2lvbnM='>List of Transgressions</a>. "I also shot you in the leg." Having just entered <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBridge' title='/pmwiki/pmwiki.php/Main/TheBridge' data-format='VGhlQnJpZGdl'>The Bridge</a> via an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AirVentInfiltration' title='/pmwiki/pmwiki.php/Main/AirVentInfiltration' data-format='QWlyVmVudEluZmlsdHJhdGlvbg=='>Air Vent Infiltration</a>, Jason then gives her a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KneeCapping' title='/pmwiki/pmwiki.php/Main/KneeCapping' data-format='S25lZUNhcHBpbmc='>Knee Capping</a>. </li><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLongDarkTeaTimeOfTheSoul' title='/pmwiki/pmwiki.php/Literature/TheLongDarkTeaTimeOfTheSoul' data-format='TGl0ZXJhdHVyZS9UaGVMb25nRGFya1RlYVRpbWVPZlRoZVNvdWw='>The Long Dark Tea-Time of the Soul</a></em>, Kate Schechter has just caught Dirk Gently following her car. <div class='indent'><strong>Kate:</strong> I'm not letting go of your tie until you tell me why you were following me.<br data-format="\\" /><strong>Dirk:</strong> You haven't got hold of &#8212;<br data-format="\\" /><strong>Kate:</strong> I have now, mister!<br data-format="\\" /><strong>Dirk:</strong> Unhand me! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Discworld' title='/pmwiki/pmwiki.php/Literature/Discworld' data-format='TGl0ZXJhdHVyZS97e0Rpc2N3b3JsZH19'>Discworld</a></em> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MovingPictures' title='/pmwiki/pmwiki.php/Literature/MovingPictures' data-format='TGl0ZXJhdHVyZS9Nb3ZpbmdQaWN0dXJlcw=='>Moving Pictures</a></em> Silverfish offers Victor Tugelbend a job in moving pictures after he saves him from muggers, but when Victor arrives at the studio, he tries to get out of it. <div class='indent'><strong>Victor</strong>: I did save your life twice.<br data-format="\\" /><strong>Silverfish</strong>: Twice?<br data-format="\\" /><strong>Victor</strong> Yes, sir. Then. <em>(deep breath)</em> And now. </div></li><li> Used as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoodleIncident' title='/pmwiki/pmwiki.php/Main/NoodleIncident' data-format='Tm9vZGxlSW5jaWRlbnQ='>Noodle Incident</a> in another Discworld novel. According to Sam Vimes, Nobby's way of informing the family of murder victims is something along the lines of "I'll bet you a dollar you're the widow Johnson." </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Pyramids' title='/pmwiki/pmwiki.php/Literature/Pyramids' data-format='e3tMaXRlcmF0dXJlL1B5cmFtaWRzfX0='>Pyramids</a></em>, Pteppic is trying to buy a camel but has no money. <div class='indent'><strong>Teppic</strong>: I could give you this knife.<br data-format="\\" /><strong>Camel Dealer</strong>: What use do I have for a knife?<br data-format="\\" /><strong>Teppic</strong>: I could give it to you point first. </div></li><li> Used as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrickJoke' title='/pmwiki/pmwiki.php/Main/BrickJoke' data-format='QnJpY2tKb2tl'>Brick Joke</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SmallGods' title='/pmwiki/pmwiki.php/Literature/SmallGods' data-format='TGl0ZXJhdHVyZS9TbWFsbEdvZHM='>Small Gods</a></em>. A footnote refers to a religious leader who was regarded as a prophet because he correctly predicted that his group would be victorious in battle- while they were clearly winning said battle. Later, Brutha issues the same kind of technical prophecy when he sees a tortoise plummeting toward Vorbis' head and informs him that he's about to die. </li></ul></li><li> Obi Wan Kenobi from the novelization of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RevengeOfTheSith' title='/pmwiki/pmwiki.php/Literature/RevengeOfTheSith' data-format='TGl0ZXJhdHVyZS9SZXZlbmdlT2ZUaGVTaXRo'>Revenge of the Sith</a></em>: <div class='indent'><strong>Kenobi:</strong>: (riding on Boga, the giant battle-lizard) I hope you have another vehicle, General! I believe there's some damage to your sublights!<br data-format="\\" /><strong>Grevious:</strong> You're insane! There's no&#8212;<br data-format="\\" /><strong>Kenobi:</strong> Show him, Boga.<br data-format="\\" /><em>(KRUNCH)</em> </div></li><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ASongOfIceAndFire' title='/pmwiki/pmwiki.php/Literature/ASongOfIceAndFire' data-format='TGl0ZXJhdHVyZS9BU29uZ09mSWNlQW5kRmlyZQ=='>A Song of Ice and Fire</a></em>: <div class='indent'><strong>Jaime Lannister:</strong> <em>(to Ryman Frey)</em> Only a fool makes threats he's not prepared to carry out. If I were to threaten to hit you unless you shut your mouth, and you presumed to speak, what do you think I'd do?<br data-format="\\" /><strong>Ryamn:</strong> Ser, you do not unders- <em>(cut off by Jaime backhanding him in the face)</em> </div></li><li> Used by <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FatherBrown' title='/pmwiki/pmwiki.php/Literature/FatherBrown' data-format='TGl0ZXJhdHVyZS9GYXRoZXJCcm93bg=='>Father Brown</a> in <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GKChesterton' title='/pmwiki/pmwiki.php/Creator/GKChesterton' data-format='Q3JlYXRvci9HS0NoZXN0ZXJ0b24='>G. K. Chesterton</a>'s story "The Blue Cross." The priest was trying to <span class="spoiler" title="you can set spoilers visible by default on your profile" >get police detectives to follow him <em>before</em> any crime has been committed</span>. <div class='indent'><strong>Waiter:</strong> The parson at the door he says all serene, 'Sorry to confuse your accounts, but it'll pay for the window.' 'What window?' I says. 'The one I'm going to break,' he says, and smashed that blessed pane with his umbrella. </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStainlessSteelRat' title='/pmwiki/pmwiki.php/Literature/TheStainlessSteelRat' data-format='TGl0ZXJhdHVyZS9UaGVTdGFpbmxlc3NTdGVlbFJhdA=='>The Stainless Steel Rat</a> for President</em>, Jim <span class='esc-seq' title='non-wikiword'>DiGriz</span> is gambling with several card sharps who initially mistake him for a naive offworld tourist. However when he goes to his bag for more money they draw guns on him, having now become convinced he's an agent of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretPolice' title='/pmwiki/pmwiki.php/Main/SecretPolice' data-format='U2VjcmV0UG9saWNl'>Secret Police</a> going for a hidden weapon. Given that he's a card sharp himself, <span class='esc-seq' title='non-wikiword'>DiGriz</span> explains that he was actually going to clean them out, then demonstrates. And <em>then</em> shoots them with a hidden weapon while they're gaping at his hand. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WarOfTheWorldsGlobalDispatches' title='/pmwiki/pmwiki.php/Literature/WarOfTheWorldsGlobalDispatches' data-format='TGl0ZXJhdHVyZS9XYXJPZlRoZVdvcmxkc0dsb2JhbERpc3BhdGNoZXM='>War of the Worlds: Global Dispatches</a> </em>. In "Foreign Devils", the Guangxu Emperor is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PuppetKing' title='/pmwiki/pmwiki.php/Main/PuppetKing' data-format='UHVwcGV0S2luZw=='>Puppet King</a> for his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilChancellor' title='/pmwiki/pmwiki.php/Main/EvilChancellor' data-format='RXZpbENoYW5jZWxsb3I='>Evil Chancellor</a>, but eventually gains enough confidence to regain control, which he does by offering to demonstrate a sword move for the Chancellor called <em>The Dragon moves from Low to High</em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Live-Action TV&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BetterCallSaul' title='/pmwiki/pmwiki.php/Series/BetterCallSaul' data-format='U2VyaWVzL0JldHRlckNhbGxTYXVs'>Better Call Saul</a></em>: Before provoking Tuco into a fight to get him arrested and sent to prison, Mike calls 9-1-1 from a payphone across the street and describes what the cops are going to catch Tuco in the act of doing. <div class='indent'><strong>Mike:</strong> Uh, uh, y-yes, I would like to report a fight going on at the El Michoacano Restaurant in the 5000 block of the Isleta Boulevard. There is a man threatening another man with a gun. It looks to be some sort of gang thing. Oh, uh, uh, uh, sorry. I-I-I'm a passerby. I-I don't want to get involved. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Blackadder' title='/pmwiki/pmwiki.php/Series/Blackadder' data-format='U2VyaWVzL3t7QmxhY2thZGRlcn19'>Blackadder</a></em> <div class='indent'><strong>Blackadder</strong>: He'd better watch out. One more insult and the contract between us will be as broken as this milk-jug.<br data-format="\\" /><strong>Baldrick</strong>: But that milk-jug isn't broken.<br data-format="\\" /><strong>Blackadder</strong>: You really do walk into these things, don't you? <em>[Smashes the jug over Baldrick's head]</em> </div><ul ><li> And, from <em>Blackadder Goes Forth:</em> <div class='indent'><strong>Capt. Darling</strong> <em>[explaining why he didn't bother rescuing Blackadder]</em>: ...we weighed up the pros and cons, and decided it wasn't a reasonable use of our time and resources.<br data-format="\\" /><strong>Lord Flasheart</strong> <em>[argumentatively]</em>: Well, <em>this</em> isn't a reasonable use of <em>my</em> time and resources, but I'm going to do it anyway!<br data-format="\\" /><strong>Darling</strong>: What?<br data-format="\\" /><strong>Flasheart</strong>: This! <em>[head-butts Darling into unconsciousness]</em> </div></li><li> In <em>Blackadder the Third</em>: <div class='indent'><strong>Blackadder</strong> Does your father know?<br data-format="\\" /><strong>Amy</strong>: He had to go.<br data-format="\\" /><strong>Blackadder</strong>: You mean he's dead?<br data-format="\\" /><strong>Amy</strong>: Yes, as dead as that squirrel.<br data-format="\\" /><strong>Blackadder</strong>: Which squirrel?<br data-format="\\" /><em>Bang!</em><br data-format="\\" /><em>Squeak!</em> </div></li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BoardwalkEmpire' title='/pmwiki/pmwiki.php/Series/BoardwalkEmpire' data-format='U2VyaWVzL0JvYXJkd2Fsa0VtcGlyZQ=='>Boardwalk Empire</a></em>: In "La Belle Femme", Prohibition agent Eric Sebso is driving Billy Winslow out of Atlantic City, after Van Alden has gotten Winslow to implicate Jimmy Darmody in the Woods Massacre. On the road outside Atlantic City, Sebso pulls over so he can relieve himself, and lets Winslow out of the car to stretch his legs. But as soon as he's finished his business, he reveals that he's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCop' title='/pmwiki/pmwiki.php/Main/DirtyCop' data-format='W1tEaXJ0eUNvcCBjb3JydXB0XV0='>corrupt</a> and in Nucky's pocket. <div class='indent'><strong>Eric Sebso:</strong> You shouldn't have done that.<br data-format="\\" /><strong>Billy Winslow:</strong> <em>[confused]</em> Done what?<br data-format="\\" /><strong>Eric Sebso:</strong> Tried to lunge for my weapon.<br data-format="\\" /><strong>Billy Winslow:</strong> What are you talking about?<br data-format="\\" /><strong>Eric Sebso:</strong> <em>[unholsters his gun]</em> You lunged at me, tried to commandeer my gun.<br data-format="\\" /><strong>Billy Winslow:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooDumbToLive' title='/pmwiki/pmwiki.php/Main/TooDumbToLive' data-format='W1tUb29EdW1iVG9MaXZlIFdoYXQ/XV0='>What?</a><br data-format="\\" /><strong>Eric Sebso:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreMortemOneLiner' title='/pmwiki/pmwiki.php/Main/PreMortemOneLiner' data-format='W1tQcmVNb3J0ZW1PbmVMaW5lciBUaGF0JiMwMzk7cyB3aHkgSSBraWxsZWQgeW91Ll1d'>That's why I killed you.</a> <em>[Sebso shoots Winslow dead, then proceeds to hit himself in the head with a rock to make it look like Winslow attacked him]</em> </div></li><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' title='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' data-format='U2VyaWVzL0J1ZmZ5VGhlVmFtcGlyZVNsYXllcg=='>Buffy the Vampire Slayer</a></em>: <div class='indent'><strong>Xander</strong>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackmailIsSuchAnUglyWord' title='/pmwiki/pmwiki.php/Main/BlackmailIsSuchAnUglyWord' data-format='QmxhY2ttYWlsSXNTdWNoQW5VZ2x5V29yZA=='>"Blackmail" Is Such an Ugly Word</a>.<br data-format="\\" /><strong>Amy</strong>: I didn't say blackmail.<br data-format="\\" /><strong>Xander</strong>: Yeah, but I'm about to blackmail you, so I thought I'd bring it up. </div><ul ><li> Also: <div class='indent'><strong>Buffy:</strong> You ever heard the expression, "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/MuggingTheMonster' title='/pmwiki/pmwiki.php/Main/MuggingTheMonster' data-format='W1tNdWdnaW5nVGhlTW9uc3RlciBiaXRpbmcgb2ZmIG1vcmUgdGhhbiB5b3UgY2FuIGNoZXddXQ=='>biting off more than you can chew</a>"? ...Okay, um, how about the expression "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/NamesToRunAwayFromReallyFast' title='/pmwiki/pmwiki.php/Main/NamesToRunAwayFromReallyFast' data-format='W1tOYW1lc1RvUnVuQXdheUZyb21SZWFsbHlGYXN0IFZhbXBpcmUgU2xheWVyXV0='>Vampire Slayer</a>"? <br data-format="\\" /><strong>Vampire:</strong> What the hell are you talking about? <br data-format="\\" /><strong>Buffy:</strong> Wow. Never heard that one? Okay... How about, "Oh God, my leg, my leg"? <em>[breaks his leg]</em><br data-format="\\" /><strong>Vampire:</strong> Oh God, my leg! </div></li></ul></li><li> In an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Castle2009' title='/pmwiki/pmwiki.php/Series/Castle2009' data-format='e3tTZXJpZXMvQ2FzdGxlfDIwMDl9fQ=='>Castle</a></em>, Esposito requests a bag of ice from a bartender. The bartender barely has time to ask why when Esposito pulls a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GroinAttack' title='/pmwiki/pmwiki.php/Main/GroinAttack' data-format='R3JvaW5BdHRhY2s='>Groin Attack</a> on the killer's bodyguard. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Coupling' title='/pmwiki/pmwiki.php/Series/Coupling' data-format='U2VyaWVzL3t7Q291cGxpbmd9fQ=='>Coupling</a></em>: <div class='indent'><strong>Sally</strong>: "I didn't marry <em>her</em>!" How do you think that makes me look?<br data-format="\\" /><strong>Patrick</strong>: I had to say something, you slapped me!<br data-format="\\" /><strong>Sally</strong>: Twice!<br data-format="\\" /><strong>Patrick</strong>: Once.<br data-format="\\" /><strong>Sally</strong>: (slaps him) Don't argue! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CriminalMinds' title='/pmwiki/pmwiki.php/Series/CriminalMinds' data-format='U2VyaWVzL0NyaW1pbmFsTWluZHM='>Criminal Minds</a></em>: In one episode, after the chief of police realizes one of her officers is the serial killer they're hunting, he kills her and frames the leader of a local gang. He and another officer go to arrest the leader, whereupon the unsub unceremoniously kills him too. As the innocent officer protests and demands to know why he did it, the unsub explains that he had to do it, since the gang leader "killed two cops." He then promptly shoots the other officer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em>: <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS28E5RiseOfTheCybermen' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS28E5RiseOfTheCybermen' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMjhFNVJpc2VPZlRoZUN5YmVybWVuICJSaXNlIG9mIHRoZSBDeWJlcm1lbiJdXQ=='>"Rise of the Cybermen"</a>: <div class='indent'><strong>Dr. Kendrick:</strong> I'm sorry, sir, but it's my duty. I shall have to inform them.<br data-format="\\" /><strong>John Lumic:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeKnowsTooMuch' title='/pmwiki/pmwiki.php/Main/HeKnowsTooMuch' data-format='W1tIZUtub3dzVG9vTXVjaCBBbmQgaG93IHdpbGwgeW91IGRvIHRoYXQgZnJvbSBiZXlvbmQgdGhlIGdyYXZlXV0='>And how will you do that from beyond the grave</a>?<br data-format="\\" /><strong>Dr. Kendrick:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooDumbToLive' title='/pmwiki/pmwiki.php/Main/TooDumbToLive' data-format='W1tUb29EdW1iVG9MaXZlIEkgZG9uJiMwMzk7dCBxdWl0ZSB1bmRlcnN0YW5kLi4uXV0='>I don't quite understand...</a><br data-format="\\" /><strong>John Lumic:</strong> <em>[to Cyberman]</em> Kill him. <em>[the creature electrocutes and kills Dr. Kendrick]</em> </div></li><li> The Master gassing the Cabinet in <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS29E12TheSoundOfDrums' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS29E12TheSoundOfDrums' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMjlFMTJUaGVTb3VuZE9mRHJ1bXMgIlRoZSBTb3VuZCBvZiBEcnVtcyJdXQ=='>"The Sound of Drums"</a> is quoted above. </li><li> A sort of example from <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS31E12ThePandoricaOpens' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS31E12ThePandoricaOpens' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMzFFMTJUaGVQYW5kb3JpY2FPcGVucyAiVGhlIFBhbmRvcmljYSBPcGVucyJdXQ=='>"The Pandorica Opens"</a>: <div class='indent'><strong>River Song:</strong> This is a Callisto Pulse. It can disarm micro-explosives from up to twenty feet.<br data-format="\\" /><strong>Dorium Maldovar:</strong> What kind of micro-explosives? <em>[drinks]</em><br data-format="\\" /><strong>River Song:</strong> The kind I just put in your wine. </div></li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ComicRelief' title='/pmwiki/pmwiki.php/UsefulNotes/ComicRelief' data-format='VXNlZnVsTm90ZXMvQ29taWNSZWxpZWY='>Comic Relief</a> two-parter <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWho2011RNDSSpaceAndTime' title='/pmwiki/pmwiki.php/Recap/DoctorWho2011RNDSSpaceAndTime' data-format='W1tSZWNhcC9Eb2N0b3JXaG8yMDExUk5EU1NwYWNlQW5kVGltZSAiU3BhY2UiLyJUaW1lIl1d'>"Space"/"Time"</a> has a version. The cast get stuck in a time loop and are instructed by a future Amy on what to do. <div class='indent'><strong>The Doctor:</strong> When does this Amy step into the box? We need to maintain the timeline.<br data-format="\\" /><strong>Amy:</strong> Ah. As soon as she's slapped Rory.<br data-format="\\" /><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/ButtMonkey' title='/pmwiki/pmwiki.php/Main/ButtMonkey' data-format='W1tCdXR0TW9ua2V5IFJvcnldXQ=='>Rory</a>:</strong> OK... No. Why do I get slapped?<br data-format="\\" /><strong>The Doctor:</strong> Because we have to stick to the established chain of events. One mistake and the whole timeline could collapse. We'd end up with two Amy Ponds forever, and then what would you do?<br data-format="\\" /><em>[Rory gives Amy a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwinThreesomeFantasy' title='/pmwiki/pmwiki.php/Main/TwinThreesomeFantasy' data-format='W1tUd2luVGhyZWVzb21lRmFudGFzeSBzdWdnZXN0aXZlXV0='>suggestive</a> look, she slaps him]</em> </div></li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS34E12DeathInHeaven' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS34E12DeathInHeaven' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMzRFMTJEZWF0aEluSGVhdmVuICJEZWF0aCBpbiBIZWF2ZW4iXV0='>"Death in Heaven"</a>, Missy tells Osgood she will kill her in a minute. And she does too, even counting down the time <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForTheEvulz' title='/pmwiki/pmwiki.php/Main/ForTheEvulz' data-format='Rm9yVGhlRXZ1bHo='>For the Evulz</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWho2015CSTheHusbandsOfRiverSong' title='/pmwiki/pmwiki.php/Recap/DoctorWho2015CSTheHusbandsOfRiverSong' data-format='W1tSZWNhcC9Eb2N0b3JXaG8yMDE1Q1NUaGVIdXNiYW5kc09mUml2ZXJTb25nICJUaGUgSHVzYmFuZHMgb2YgUml2ZXIgU29uZyJdXQ=='>"The Husbands of River Song"</a>: While seemingly cornered by Hydroflax's body and several other psychopaths on the <em>Harmony and Redemption</em>, River and the Doctor <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LikeAnOldMarriedCouple' title='/pmwiki/pmwiki.php/Main/LikeAnOldMarriedCouple' data-format='W1tMaWtlQW5PbGRNYXJyaWVkQ291cGxlIGRpc2N1c3NdXQ=='>discuss</a> where would be the best place to stand in the event of a meteor strike. <div class='indent'><strong>Scratch:</strong> What meteor strike? <br data-format="\\" /><strong>Ship's Computer:</strong> Alert. Meteor storm imminent.<br data-format="\\" /><strong>River:</strong> That meteor strike. <br data-format="\\" /><strong>Flemming:</strong> How could you know? <br data-format="\\" /><strong>River:</strong> I'm an archaeologist from the future. I dug you up. See you in four hundred years. </div></li></ul></li><li> From the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Eureka' title='/pmwiki/pmwiki.php/Series/Eureka' data-format='e3tTZXJpZXMvRXVyZWthfX0='>Eureka</a></em> episode "Momstrocity": <div class='indent'><strong>Carter</strong>: It's only a matter of time before Allison sees you for what you really are, which is a smug, selfish, Einstein wannabe with no moral compass and only one functioning kidney.<br data-format="\\" /><strong>Grant</strong>: Both my kidneys function fine, thank you.<br data-format="\\" /><strong>Carter</strong>: Well. The day's not over, is it. </div></li><li> Happens in an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Friends' title='/pmwiki/pmwiki.php/Series/Friends' data-format='U2VyaWVzL3t7RnJpZW5kc319'>Friends</a></em>. When Rachel doesn't want to run with Phoebe because of the...erm, interesting manner in which Phoebe runs, she tells Phoebe that Monica tripped her and hurt her ankle. <div class='indent'><strong>Monica</strong>: Rachel, I'm sorry about your ankles.<br data-format="\\" /><strong>Rachel</strong>: Ankle.<br data-format="\\" /><strong>Monica</strong>: We'll see. </div></li><li> From the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Fringe' title='/pmwiki/pmwiki.php/Series/Fringe' data-format='e3tTZXJpZXMvRnJpbmdlfX0='>Fringe</a></em> S4/E9 episode "Enemy of my Enemy", An agent of <span class="spoiler" title="you can set spoilers visible by default on your profile" > David Robert Jones</span> is a doctor in an Emergency Room. She calls up Fringe Division, asks them to listen closely, and walks out the ER (leaving a canister behind her): <div class='indent'><strong>Orderly:</strong> <em>[to the exiting Dr. Samuels]</em> Doctor Samuels, do you want me to give that little girl with the bike injury a Tetanus?<br data-format="\\" /><strong>Dr. Samuels:</strong> Not necessary. I don't think she's gonna make it. <em>[orderly gives her a confused look as the canister begins to release a gas that kills everyone in the ER]</em> </div></li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GreysAnatomy' title='/pmwiki/pmwiki.php/Series/GreysAnatomy' data-format='U2VyaWVzL0dyZXlzQW5hdG9teQ=='>Grey's Anatomy</a></em> episode "What Is It About Men", this exchange occurs as Dr. Hunt approaches the ER, where a very large, angry patient is beating up a guy in crutches. <div class='indent'><strong>Dr. Hunt:</strong> <em>[to nurse]</em> Book OR<span class="notelabel" onclick="togglenote('note20pez');"><sup>note&nbsp;</sup></span><span id="note20pez" class="inlinefolder" isnote="true" onclick="togglenote('note20pez');" style="cursor:pointer;font-size:smaller;display:none;">operating room</span> 2 for a possible concussion and a broken jaw.<br data-format="\\" /><strong>Nurse:</strong> We have a patient with a broken jaw?<br data-format="\\" /><strong>Dr. Hunt:</strong> We're about to. <em>[Knocks the large patient out with a punch to the jaw]</em> </div></li><li> From early in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Heroes' title='/pmwiki/pmwiki.php/Series/Heroes' data-format='U2VyaWVzL3t7SGVyb2VzfX0='>Heroes</a></em> third volume, when Hiro meets <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperSpeed' title='/pmwiki/pmwiki.php/Main/SuperSpeed' data-format='W1tTdXBlclNwZWVkIERhcGhuZV1d'>Daphne</a> after she compromises his time-stop: <div class='indent'><strong>Daphne:</strong> This whole time-stopping thing, how does it work, exactly? I mean, if you chase me to <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Bangkok' title='/pmwiki/pmwiki.php/UsefulNotes/Bangkok' data-format='VXNlZnVsTm90ZXMve3tCYW5na29rfX0='>Bangkok</a>, will time stay frozen in <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Tokyo' title='/pmwiki/pmwiki.php/UsefulNotes/Tokyo' data-format='VXNlZnVsTm90ZXMve3tUb2t5b319'>Tokyo</a>?<br data-format="\\" /><strong>Hiro:</strong> I don't know.<br data-format="\\" /><strong>Daphne:</strong> Well, something to think about when you get back on your feet.<br data-format="\\" /><strong>Hiro:</strong> But... I <em>am</em> on my feet. </div></li><li> In an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HowIMetYourMother' title='/pmwiki/pmwiki.php/Series/HowIMetYourMother' data-format='U2VyaWVzL0hvd0lNZXRZb3VyTW90aGVy'>How I Met Your Mother</a></em>, after Ted's girlfriend embarrasses her on air, Robin announces "In other news, later today a Manhattan architect gets punched in the throat". One <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GilliganCut' title='/pmwiki/pmwiki.php/Main/GilliganCut' data-format='R2lsbGlnYW5DdXQ='>Gilligan Cut</a> later... </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ICarly' title='/pmwiki/pmwiki.php/Series/ICarly' data-format='U2VyaWVzL0lDYXJseQ=='>iCarly</a></em> episode <span class='esc-seq' title='non-wikiword'>iFind Lewbert's Lost Love</span>, when Spencer discovers that <span class="spoiler" title="you can set spoilers visible by default on your profile" > Chuck</span> is the one who stole all of the TV remotes from the apartments, we get this exchange: <div class='indent'><strong>Spencer:</strong> I'm calling the police<br data-format="\\" /><strong><span class="spoiler" title="you can set spoilers visible by default on your profile" > Chuck</span>:</strong> Then you'd better tell them you need a new <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlandNameProduct' title='/pmwiki/pmwiki.php/Main/BlandNameProduct' data-format='W1tCbGFuZE5hbWVQcm9kdWN0IFBlYXJQaG9uZV1d'>PearPhone</a><br data-format="\\" /><strong>Spencer:</strong> Why, this is the new G5, what's wrong with it? <em>(<span class="spoiler" title="you can set spoilers visible by default on your profile" > Chuck</span> smashes it against the wall.)</em> </div></li><li> The original run of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KnightRider' title='/pmwiki/pmwiki.php/Series/KnightRider' data-format='U2VyaWVzL0tuaWdodFJpZGVy'>Knight Rider</a></em> subverts a Type 2a: corrupt cop pulls over Michael and tries to bring him to his corrupt judge boss on charges of having a broken tail light. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HilarityEnsues' title='/pmwiki/pmwiki.php/Main/HilarityEnsues' data-format='W1tIaWxhcml0eUVuc3VlcyBLSVRUJiMwMzk7cyB0YWlsIGxpZ2h0cyBhcmUganVzdCBhcyBhcm1vcmVkIGFzIHRoZSByZXN0IG9mIGhpbS5dXQ=='>KITT's tail lights are just as armored as the rest of him.</a> <ul ><li> Played straight in another episode where Michael's boss Devon Miles is pulled over in his Mercedes by a hick sheriff and his deputy for running a concealed stop sign and the deputy promptly busts one of his tail lights to add to the ticket. </li></ul></li><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Lost' title='/pmwiki/pmwiki.php/Series/Lost' data-format='U2VyaWVzL3t7TG9zdH19'>Lost</a></em>: <div class='indent'><strong>Jones:</strong> Unless you're answering my questions, don't speak. I want you to tell me everything or I'll cut off her other hand.<br data-format="\\" /><strong>Juliet:</strong> What?!<br data-format="\\" /><strong>Sawyer:</strong> Other?<br data-format="\\" /><strong>Jones:</strong> The first one isn't negotiable. It's just to illustrate how serious I am. </div><ul ><li> Jones proceeds to yell "Do it!" at his henchman with a machete as Sawyer desperately promises to tell him everything. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MarvelCinematicUniverse' title='/pmwiki/pmwiki.php/Franchise/MarvelCinematicUniverse' data-format='RnJhbmNoaXNlL01hcnZlbENpbmVtYXRpY1VuaXZlcnNl'>Marvel Cinematic Universe</a>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Daredevil2015' title='/pmwiki/pmwiki.php/Series/Daredevil2015' data-format='U2VyaWVzL0RhcmVkZXZpbDIwMTU='>Daredevil (2015)</a></em>: In "Condemned", a crooked NYPD Emergency Service Unit team working for Wilson Fisk storms an abandoned building where Matt Murdock is holed up with Vladimir Ranskahov and a rookie police officer who stumbled upon him. One group of four ESU officers sweeping the second floor comes upon the rookie cop, tied to a column and gagged with duct tape. <div class='indent'><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/CopKiller' title='/pmwiki/pmwiki.php/Main/CopKiller' data-format='W1tDb3BLaWxsZXIgRVNVIE9mZmljZXJdXQ=='>ESU Officer</a>:</strong> <em>[into radio]</em> Officer Sullivan is dead.<br data-format="\\" /><strong>Officer Sullivan:</strong> <em>[muffled]</em> <em><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OhCrap' title='/pmwiki/pmwiki.php/Main/OhCrap' data-format='W1tPaENyYXAgSE1NPyFdXQ=='>HMM?!</a></strong></em><br data-format="\\" /><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/KillerCop' title='/pmwiki/pmwiki.php/Main/KillerCop' data-format='W1tLaWxsZXJDb3AgRVNVIE9mZmljZXJdXQ=='>ESU Officer</a>:</strong> I say again, Officer Sullivan is dead.<br data-format="\\" /><strong>Officer Sullivan:</strong> NO, I'M FINE! <em><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigNo' title='/pmwiki/pmwiki.php/Main/BigNo' data-format='W1tCaWdObyBOTyFdXQ=='>NO!</a></strong></em> <em>[The ESU officer produces a small knife and stabs the officer in the neck]</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/IronFist2017' title='/pmwiki/pmwiki.php/Series/IronFist2017' data-format='U2VyaWVzL0lyb25GaXN0MjAxNw=='>Iron Fist (2017)</a></em>: Danny Rand has been brought before the board to deliver a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InsistentTerminology' title='/pmwiki/pmwiki.php/Main/InsistentTerminology' data-format='W1tJbnNpc3RlbnRUZXJtaW5vbG9neSBzdGF0ZW1lbnRdXQ=='>statement</a> regarding his actions, when he was caught on camera apologizing to the mother of a plaintiff in a lawsuit against one of Rand's Staten Island chemical plants. Danny announces that he's shutting down the plant until a proper investigation can be done, but keeping the workers on payroll. Which earns disapproval from the other board members, who are intent on dragging their feet and keeping the plant open: <div class='indent'><strong>Maria Rodriguez:</strong> Danny, you may have a voice on this board. But it's only a voice.<br data-format="\\" /><strong>Lawrence Wilkins:</strong> Don't expect anyone here to be listening to a kid who got his MBA from a Himalayan monastery.<br data-format="\\" /><strong>Joy Meachum:</strong> Lawrence, you don't have to attack him. Danny's plan is...<br data-format="\\" /><strong>Lawrence Wilkins:</strong> The idiotic dream of a child.<br data-format="\\" /><strong>Danny Rand:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Series/Daredevil2015' title='/pmwiki/pmwiki.php/Series/Daredevil2015' data-format='W1tTZXJpZXMvRGFyZWRldmlsMjAxNSBLYXJlbiBQYWdlXV0='>Karen Page</a> at the <em>Bulletin</em> seemed to like it.<br data-format="\\" /><strong>Donald Hooper:</strong> You already went to the press?<br data-format="\\" /><strong>Danny Rand:</strong> She seems to think it's gonna make the front page tomorrow. <em>[Everyone grabs their phones and opens the </em>Bulletin<em> app to find an article headlined "BREAKING NEWS: Rand Shutters Staten Island Chemical Plant, Keeps Workers on Payroll", By Karen Page]</em> </div></li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Monk' title='/pmwiki/pmwiki.php/Series/Monk' data-format='U2VyaWVzL3t7TW9ua319'>Monk</a></em>: <ul ><li> In "Mr. Monk and the Earthquake", Stottlemeyer and Disher capture their suspect, Darryl Wright, as he and his accomplice are trying to kill Sharona. <div class='indent'><strong>Darryl Wright:</strong> Son of a bitch!<br data-format="\\" /><strong>Captain Stottlemeyer:</strong> I'm surprised you can talk with a broken jaw.<br data-format="\\" /><strong>Darryl Wright:</strong> I don't have a broken jaw!<br data-format="\\" /><em>[Stottlemeyer punches him in the face]</em> </div></li><li> This one from "Mr. Monk and the Birds and the Bees", when Dewey Jordan and Rob Sherman are staging a burglary of the latter's house. <div class='indent'><strong>Dewey Jordan:</strong> <em>[seeing Sherman pulling a revolver]</em> What's that?<br data-format="\\" /><strong>Rob Sherman:</strong> This, uh, this is your gun, Dewey.<br data-format="\\" /><strong>Dewey Jordan:</strong> My gun? <em>[Sherman promptly conjures a nickel-plated pistol in his right hand]</em><br data-format="\\" /><strong>Rob Sherman:</strong> This one's mine. This is the one that I'm gonna kill the intruder with.<br data-format="\\" /><strong>Dewey Jordan:</strong> Intruder? <em>[Sherman shoots and kills Dewey with the pistol. His wife comes downstairs, and he shoots her with the revolver, that he then plants in Dewey Jordan's right hand to make it look like he killed the burglar in self-defense]</em> </div></li></ul></li><li> <a class='urllink' href='https://www.youtube.com/watch?v=RkP_OGDCLY0'>One skit<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MrShow' title='/pmwiki/pmwiki.php/Series/MrShow' data-format='U2VyaWVzL01yU2hvdw=='>Mr. Show</a></em> has a two-fold example: The skit in question concerned a group of mobsters getting into an extended conversation about numbers, in particular how <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooDumbToLive' title='/pmwiki/pmwiki.php/Main/TooDumbToLive' data-format='W1tUb29EdW1iVG9MaXZlIDI0IGlzIHRoZSBoaWdoZXN0IG51bWJlcl1d'>24 is the highest number</a>. The don gets infuriated the longer the conversation goes on, especially as numbers higher than 24 (inevitably) get brought up, leading him to threaten to shoot them <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HypocriticalHumor' title='/pmwiki/pmwiki.php/Main/HypocriticalHumor' data-format='W1tIeXBvY3JpdGljYWxIdW1vciB3aXRoIGhpcyAuNDVdXQ=='>with his .45</a> if they keep it up. When one mobster, Frankie, tries his luck by mentioning "46", the don forces him into a confrontation while another, Danny, mentions "47", prompting the don to snap "I'll deal with you in a minute". And then, when the don tries getting Frankie to say 24 is the largest, Frankie starts panicking in confusion: <div class='indent'><strong>Frankie</strong>: (near tears) I'm so confused anymore! Danny said 47, and I- </div><div class='indent'><strong>Don</strong>: Danny's dead. </div><div class='indent'><strong>Danny</strong>: (stands up) I'm right here, boss- (is shot) </div></li><li> New Zealand drama <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OutrageousFortune' title='/pmwiki/pmwiki.php/Series/OutrageousFortune' data-format='U2VyaWVzL091dHJhZ2VvdXNGb3J0dW5l'>Outrageous Fortune</a></em> <div class='indent'><strong>Monica</strong>: How about I don't book you for the broken tail light? Call it a warning.<br data-format="\\" /><strong>Cheryl</strong>: I don't have a broken tail light.<br data-format="\\" /><strong>Monica smashes the tail light out with the breathalyzer.</strong> </div></li><li> In an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Oz' title='/pmwiki/pmwiki.php/Series/Oz' data-format='U2VyaWVzL3t7T3p9fQ=='>Oz</a></em> Clayton Hughes walks up to undercover cop Johnny Basil while he's lifting weights and says, "Your son, do you think he's gonna be okay growing up without a father?" When a nonplussed Basil replies "What?" Hughes stabs him to death. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PersonOfInterest' title='/pmwiki/pmwiki.php/Series/PersonOfInterest' data-format='U2VyaWVzL1BlcnNvbk9mSW50ZXJlc3Q='>Person of Interest</a></em>. <ul ><li> In the pilot episode, John Reese is being taken off to be killed by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCop' title='/pmwiki/pmwiki.php/Main/DirtyCop' data-format='RGlydHlDb3A='>Dirty Cop</a> Fusco. Reese not only tells Fusco he's going to escape, but that Fusco will be working for him from now on. Fusco bursts out laughing...until <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OhCrap' title='/pmwiki/pmwiki.php/Main/OhCrap' data-format='W1tPaENyYXAgUmVlc2UgcHJvZHVjZXMgYSBncmVuYWRlXV0='>Reese produces a grenade</a>. </li><li> In "Lady Killer", Root spells out to a psychiatrist exactly how she's going to escape from the mental hospital. And then does so. </li><li> When about to make her own escape in "Reassortment", Sameen Shaw tells a prison nurse, "It's not like I'm gonna spill a glass of water on the nightstand, stomp on your foot, throw an elbow to your chin, and stick you with that sedative." She takes down the nurse, then realises the glass of water is undisturbed so knocks it to the floor as well. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Sherlock' title='/pmwiki/pmwiki.php/Series/Sherlock' data-format='U2VyaWVzL3t7U2hlcmxvY2t9fQ=='>Sherlock</a></em> comes home to find a CIA agent holding Mrs Hudson hostage. He rescues her, ties up the agent, then helpfully explains to the police over the phone that the man has a lot of horribly graphic injuries that have not yet been inflicted. <div class='indent'><strong>Sherlock:</strong> Lestrade? We've had a break-in at Baker Street. Send your least irritating officers, and an ambulance. Oh, no-no-no-no, we're fine. No, it's the, uh, it's the burglar. He's got himself rather badly injured. Oh, a few broken ribs, fractured skull. Suspected punctured lung. He fell out of a window. <em>[Cut to Mrs Hudson's downstairs flat, where John is cleaning her face]</em><br data-format="\\" /><strong>Mrs. Hudson:</strong> Oh, it stings. <em>[The shadow of the CIA agent falls past the window and crashes on top of a dumpster]</em> Oh! That was right on my bins!<br data-format="\\" /><em>[Cut to the agent being driven away in an ambulance as Sherlock stands by Lestrade on the sidewalk]</em><br data-format="\\" /><strong>Lestrade:</strong> And exactly how many times <em>did</em> he fall out the window?<br data-format="\\" /><strong>Sherlock:</strong> Oh, it's all a bit of a blur, Detective Inspector. I lost count. </div></li><li> This happens in an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/That70sShow' title='/pmwiki/pmwiki.php/Series/That70sShow' data-format='U2VyaWVzL1RoYXQ3MHNTaG93'>That '70s Show</a></em> when Kelso, Hyde and Jackie fight over who Donna gets to take to a <a class='twikilink' href='/pmwiki/pmwiki.php/Music/LedZeppelin' title='/pmwiki/pmwiki.php/Music/LedZeppelin' data-format='TXVzaWMvTGVkWmVwcGVsaW4='>Led Zeppelin</a> concert. Kelso brings a batch of cookies to persuade Donna into taking him: <div class='indent'><strong>Kelso</strong>: Don't touch. Those are for Donna.<br data-format="\\" /><strong>Hyde</strong>: Kelso, Donna doesn't want a bunch of dirty cookies.<br data-format="\\" /><strong>Kelso</strong>: They're not dirty.<br data-format="\\" /><em>[Hyde kicks them off the table]</em><br data-format="\\" /><strong>Hyde</strong>: They are now. </div></li><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TrueBlood' title='/pmwiki/pmwiki.php/Series/TrueBlood' data-format='U2VyaWVzL1RydWVCbG9vZA=='>True Blood</a></em>: <div class='indent'><strong>Luke <span class='esc-seq' title='non-wikiword'>McDonald</span></strong>: How's that lip?<br data-format="\\" /><strong>Jason Stackhouse</strong>: It's okay. How's your nose?<br data-format="\\" /><strong>Luke <span class='esc-seq' title='non-wikiword'>McDonald</span></strong>: Huh? <em>[Jason punches him in the nose.]</em> </div></li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheUmbrellaAcademy2019S01E02' title='/pmwiki/pmwiki.php/Recap/TheUmbrellaAcademy2019S01E02' data-format='W1tSZWNhcC9UaGVVbWJyZWxsYUFjYWRlbXkyMDE5UzAxRTAyIHRoZSBzZWNvbmQgZXBpc29kZV1d'>the second episode</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheUmbrellaAcademy2019' title='/pmwiki/pmwiki.php/Series/TheUmbrellaAcademy2019' data-format='U2VyaWVzL1RoZVVtYnJlbGxhQWNhZGVteTIwMTk='>The Umbrella Academy (2019)</a></em>, Five tries to get information about a glass eye he found from a doctor at the lab where it was made. However, Five <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanTheyLook' title='/pmwiki/pmwiki.php/Main/OlderThanTheyLook' data-format='W1tPbGRlclRoYW5UaGV5TG9vayBjdXJyZW50bHkgaGFzIHRoZSBib2R5IG9mIGEgdGhpcnRlZW4teWVhci1vbGRdXQ=='>currently has the body of a thirteen-year-old</a>, so things don't go well. He gets his brother, Klaus, to pretend to be his father and tries again. The doctor is still uncooperative, so <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IndyPloy' title='/pmwiki/pmwiki.php/Main/IndyPloy' data-format='W1tJbmR5UGxveSBLbGF1cyBpbXByb3Zpc2VzOl1d'>Klaus improvises:</a> <div class='indent'><strong>Klaus:</strong> Who gave you permission to lay your hands on my son? </div><div class='indent'><strong>Doctor and Five:</strong> What? </div><div class='indent'><strong>Klaus:</strong> You heard me. </div><div class='indent'><strong>Doctor:</strong> I didn't touch your son. </div><div class='indent'><strong>Klaus:</strong> Oh, really? Well, then how did he get that swollen lip, then? </div><div class='indent'><strong>Doctor:</strong> He doesn't have a swollen&#8212; </div><div class='indent'><em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/WoundedGazelleGambit' title='/pmwiki/pmwiki.php/Main/WoundedGazelleGambit' data-format='W1tXb3VuZGVkR2F6ZWxsZUdhbWJpdCAoS2xhdXMgcHVuY2hlcyBGaXZlIGluIHRoZSBmYWNlLildXQ=='>(Klaus punches Five in the face.)</a></em> </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Music/RayStevens' title='/pmwiki/pmwiki.php/Music/RayStevens' data-format='TXVzaWMvUmF5U3RldmVucw=='>Ray Stevens</a>'s song "<a class='urllink' href='https://www.youtube.com/watch?v=0FJNZyhRfA4'>Sitting Up With the Dead<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>", a man who died with a crooked back "sits up" during a nocturnal wake. The song amusingly describes the ensuing mass panic. In one passage: <div class='indent'>The preacher nearly knocked me down, he said<br data-format="\\" />"I'm headed out that kitchen door over there."<br data-format="\\" />I said "Rev, that kitchen ain't got no door in it!"<br data-format="\\" />He said "Don't worry son, it will have in a minute!" </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Theatre&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> From <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/SweeneyToddTheDemonBarberOfFleetStreet' title='/pmwiki/pmwiki.php/Theatre/SweeneyToddTheDemonBarberOfFleetStreet' data-format='VGhlYXRyZS9Td2VlbmV5VG9kZFRoZURlbW9uQmFyYmVyT2ZGbGVldFN0cmVldA=='>Sweeney Todd: The Demon Barber of Fleet Street</a></em>, during the tooth-pulling section of the contest between Todd and Pirelli: <div class='indent'><strong>Pirelli:</strong> You, boy! Get on that chair!<br data-format="\\" /><strong>Toby:</strong> Me, sir?! I haven't got a twinge! Not the slightest pain!<br data-format="\\" /><strong>Pirelli:</strong> <em>(smack)</em> You do now. </div></li><li> <em>Holy Musical Batman!</em> Batman is beating up two hoods, calling out each damage as he inflicts it. <div class='indent'><strong>Batman:</strong> Shattered tibia! </div><div class='indent'><strong>Hoodlum:</strong> What's a tibia? [crack!] My fucking tibia! </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Video Games&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BatmanArkhamKnight' title='/pmwiki/pmwiki.php/VideoGame/BatmanArkhamKnight' data-format='VmlkZW9HYW1lL0JhdG1hbkFya2hhbUtuaWdodA=='>Batman: Arkham Knight</a></em>: Early on in the game, Batman is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackBauerInterrogationTechnique' title='/pmwiki/pmwiki.php/Main/JackBauerInterrogationTechnique' data-format='W1tKYWNrQmF1ZXJJbnRlcnJvZ2F0aW9uVGVjaG5pcXVlIGludGVycm9nYXRpbmddXQ=='>interrogating</a> a thug on Scarecrow's whereabouts; the thug informs him that Scarecrow is working out of a penthouse in Chinatown. <div class='indent'><strong>Batman</strong>: If you're lying, I'll break the other one.<br data-format="\\" /><strong>Thug</strong>: The other wha- [<em>Screams as Batman breaks his wrist</em>] </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CostumeQuest' title='/pmwiki/pmwiki.php/VideoGame/CostumeQuest' data-format='VmlkZW9HYW1lL0Nvc3R1bWVRdWVzdA=='>Costume Quest</a></em>: The first meeting with Dorsilla, where she summons a tornado to get rid of the player: <div class='indent'><strong>Dorsilla:</strong> "What's that? I couldn't hear you over that sudden tornado." *<em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/BadassFingersnap' title='/pmwiki/pmwiki.php/Main/BadassFingersnap' data-format='W1tCYWRhc3NGaW5nZXJzbmFwIFNuYXBzIGZpbmdlcnNdXQ=='>Snaps fingers</a></em>*<br data-format="\\" /><strong>Player:</strong> "What sudden t&#8212;" *<em>Blown away</em>* </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Hearthstone' title='/pmwiki/pmwiki.php/VideoGame/Hearthstone' data-format='VmlkZW9HYW1lL3t7SGVhcnRoc3RvbmV9fQ=='>Hearthstone</a></em>, Medivh's Valet says "Excuse me, you are on fire" when summoned. If his battlecry activates, he will then toss a flame at a designated target. </li><li> On the Crimson Flower route of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FireEmblemThreeHouses' title='/pmwiki/pmwiki.php/VideoGame/FireEmblemThreeHouses' data-format='VmlkZW9HYW1lL0ZpcmVFbWJsZW1UaHJlZUhvdXNlcw=='>Fire Emblem: Three Houses</a></em>, the leader of "those who slither in the dark" arrives after the Black Eagle Strike Force captures a strategic Kingdom fortress. When he learns that one of his generals (Edelgard's real target, though she half-heartedly tries to convince him it was a sad case of mis-identification in the chaos of battle and the like) was killed in the raid, he warns that such rash decisions would imperil the future of her unified Empire, sarcastically praying that it doesn't turn into "another Arianrhod". Just a few moments after he says this, his forces destroy the fortress she just captured, killing everyone inside, including a significant number of Imperial troops. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Webcomics&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SluggyFreelance' title='/pmwiki/pmwiki.php/Webcomic/SluggyFreelance' data-format='V2ViY29taWMvU2x1Z2d5RnJlZWxhbmNl'>Sluggy Freelance</a></em>: <div class='indent'><a class='urllink' href='http://www.sluggy.com/daily.php?date=990920'>Nerd-boy, I'm sorry for pulling the plug on you while you were dying in the hospital.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </div></li><li> When Xykon breaks Roy's sword in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' title='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' data-format='V2ViY29taWMvVGhlT3JkZXJPZlRoZVN0aWNr'>The Order of the Stick</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheAdventuresOfDrMcNinja' title='/pmwiki/pmwiki.php/Webcomic/TheAdventuresOfDrMcNinja' data-format='V2ViY29taWMvVGhlQWR2ZW50dXJlc09mRHJNY05pbmph'>The Adventures of Dr. McNinja</a></em>: <div class='indent'>"<a class='urllink' href='http://drmcninja.com/page.php?pageNum=3&amp;issue=4'>It's got a higher alcohol content than most American beers. And maybe that will help sterilize the cuts on your face.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>"<br data-format="\\" />"Uh, what cuts, my man?"<br data-format="\\" /><em>(SMASH)</em><br data-format="\\" />"I have no idea". </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SchlockMercenary' title='/pmwiki/pmwiki.php/Webcomic/SchlockMercenary' data-format='V2ViY29taWMvU2NobG9ja01lcmNlbmFyeQ=='>Schlock Mercenary</a></em>: <ul ><li> During the negotiations for repairs to the <em>Touch And Go</em>: <div class='indent'><strong>Daysun-Tingo Robot</strong>: Agreed, but [the amount due] must be adjusted back up a bit to account for the two Daysun-Tingo robots you've destroyed.<br data-format="\\" /><strong>Captain Tagon</strong>: You can take my terms as they are, or you can adjust the payment up to account for the destruction of <em>three</em> Daysun-Tingo robots.<br data-format="\\" /><strong>Daysun-Tingo Robot</strong>: But you've only... <em>oh</em>. Your terms are fine as-is. </div></li><li> Also, Doctor Bunnigus <a class='urllink' href='http://www.schlockmercenary.com/2010-02-10'>predicting her Captain is about to fall down<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. <div class='indent'><strong>Doctor Bunnigus</strong>: Also, you're about to fall down.<br data-format="\\" /><strong>Captain Tagon</strong>: Again, how do you know that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonSequiturThud' title='/pmwiki/pmwiki.php/Main/NonSequiturThud' data-format='W1tOb25TZXF1aXR1clRodWQgZm8gc2hpenpsZW1waF1d'>fo shizzlemph</a>.<br data-format="\\" /><strong>Doctor Bunnigus</strong>: A strong hunch and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InstantSedation' title='/pmwiki/pmwiki.php/Main/InstantSedation' data-format='W1tJbnN0YW50U2VkYXRpb24gZmFzdCBzZWRhdGl2ZV1d'>fast sedative</a>. </div></li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Homestuck' title='/pmwiki/pmwiki.php/Webcomic/Homestuck' data-format='V2ViY29taWMve3tIb21lc3R1Y2t9fQ=='>Homestuck</a></em>: "Don't bleed on the suits." "<a class='urllink' href='http://www.mspaintadventures.com/?s=6&amp;p=003160'>Huh?"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <ul ><li> <a class='urllink' href='http://www.mspaintadventures.com/?s=6&amp;p=003167'>Hold still, Slick.<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/Main/EyeScream' title='/pmwiki/pmwiki.php/Main/EyeScream' data-format='W1tFeWVTY3JlYW0gU29tZXRoaW5nIGluIHlvdXIgZXllLl1d'>Something in your eye.</a> </li></ul></li><li> <em>Lyra-Lyra's Bizarre Adventure</em> gives us how Queen Chrysalis' fight with Rainbow Dash's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialNumbersFiledOff' title='/pmwiki/pmwiki.php/Main/SerialNumbersFiledOff' data-format='W1tTZXJpYWxOdW1iZXJzRmlsZWRPZmYgVmFuZ3VhcmRpYW5dXQ=='>Vanguardian</a> ends. <div class='indent'> <strong>Robo Dash</strong>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnyLastWords' title='/pmwiki/pmwiki.php/Main/AnyLastWords' data-format='W1tBbnlMYXN0V29yZHMgWW91ciBsYXN0IHdvcmRzP11d'>Your last words?</a> </div><div class='indent'> <strong>Chrysalis</strong>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AreYouSureYouWantToDoThat' title='/pmwiki/pmwiki.php/Main/AreYouSureYouWantToDoThat' data-format='W1tBcmVZb3VTdXJlWW91V2FudFRvRG9UaGF0IEFyZSB5b3Ugc3VyZSBhYm91dCB0aGlzP11d'>Are you sure about this?</a> If I speak now... you'll end up letting go... and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KneelBeforeZod' title='/pmwiki/pmwiki.php/Main/KneelBeforeZod' data-format='W1tLbmVlbEJlZm9yZVpvZCBrbmVlbGluZyBiZWZvcmUgbWVdXQ=='>kneeling before me</a>. </div><div class='indent'> <strong>Robo Dash</strong>: Is that supposed to be a joke? <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BloodKnight' title='/pmwiki/pmwiki.php/Main/BloodKnight' data-format='W1tCbG9vZEtuaWdodCBJJiMwMzk7bSBhYm91dCB0byByaXAgeW91IHRvIHNocmVkcy5dXQ=='>I'm about to rip you to shreds.</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakThemByTalking' title='/pmwiki/pmwiki.php/Main/BreakThemByTalking' data-format='W1tCcmVha1RoZW1CeVRhbGtpbmcgQW5kIHlvdSB0aGluayB3b3JkcyBjYW4gZGVmZWF0IG1lP11d'>And you think words can defeat me?</a> Go ahead! </div><div class='indent'>*Chrysalis <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheUnreveal' title='/pmwiki/pmwiki.php/Main/TheUnreveal' data-format='W1tUaGVVbnJldmVhbCB3aGlzcGVyc11d'>whispers</a> the six words, and Dash does release Chrysalis* </div><div class='indent'> <strong>Chrysalis</strong>: Better. But didn't you forget something? </div><div class='indent'> *Dash kneels* </div><div class='indent'> <strong>Chrysalis</strong>: Good girl. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SequentialArt' title='/pmwiki/pmwiki.php/Webcomic/SequentialArt' data-format='V2ViY29taWMvU2VxdWVudGlhbEFydA=='>Sequential Art</a></em> <a class='urllink' href='http://www.collectedcurios.com/sequentialart.php?s=111'>has<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClothingDamage' title='/pmwiki/pmwiki.php/Main/ClothingDamage' data-format='W1tDbG90aGluZ0RhbWFnZSB2YXJpYXRpb25dXQ=='>variation</a> when <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CatGirl' title='/pmwiki/pmwiki.php/Main/CatGirl' data-format='W1tDYXRHaXJsIEthdF1d'>Kat</a> wanted to go shopping: <div class='indent'><strong>Art</strong>: My wardrobe is fine. I don't need any new&#8212; </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> Someone within the impenetrable depths of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoundRobin' title='/pmwiki/pmwiki.php/Main/RoundRobin' data-format='Um91bmRSb2Jpbg=='>Round Robin</a> website <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Addventure' title='/pmwiki/pmwiki.php/Website/Addventure' data-format='V2Vic2l0ZS97e0FkZHZlbnR1cmV9fQ=='>Addventure</a></em>, there is a part where your character is dealing with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Jerkass' title='/pmwiki/pmwiki.php/Main/Jerkass' data-format='e3tKZXJrYXNzfX0='>Jerkass</a> Ronald <span class='esc-seq' title='non-wikiword'>McDonald</span> in a restaurant. At one point, you find a coupon in your Happy Meal which makes you eligible to become king of the world. When you show it off, Ronald promptly declares that tickets snapped in two are not accepted. When you protest that it isn't snapped, Ronald immediately tears it. "Well, now it IS!" </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/WheezyWaiter' title='/pmwiki/pmwiki.php/WebVideo/WheezyWaiter' data-format='V2ViVmlkZW8vV2hlZXp5V2FpdGVy'>Wheezy Waiter</a> episode <a class='urllink' href='https://www.youtube.com/watch?v=33wlr3ZFbq4'>"The Poe Toaster"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. <div class='indent'><strong>Clone:</strong> I miss the Poe Toaster. </div><div class='indent'><strong>Craig:</strong> I miss it when you explode. </div><div class='indent'><strong>Clone:</strong> But I've never exploded. Oh, I see what you're getting at- (Explodes.) </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HomestarRunner' title='/pmwiki/pmwiki.php/WebAnimation/HomestarRunner' data-format='V2ViQW5pbWF0aW9uL0hvbWVzdGFyUnVubmVy'>Homestar Runner</a></em> managed to invert this one: <div class='indent'><strong>Bubs:</strong> Saying 'sbu' makes me lose my super power.<br data-format="\\" /><strong>Strong Bad:</strong> What's your super power?<br data-format="\\" /><strong>Bubs:</strong> Being able to fly.<br data-format="\\" /><strong>Strong Bad</strong>: <em>(excitedly)</em> You can fly?<br data-format="\\" /><strong>Bubs:</strong> Not anymore. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/ASDFMovie' title='/pmwiki/pmwiki.php/WebAnimation/ASDFMovie' data-format='V2ViQW5pbWF0aW9uL0FTREZNb3ZpZQ=='>ASDF Movie</a></em> <ul ><li> From 3 </li></ul><div class='indent'><strong>Man:</strong> <em>(points to another man's face and gasps)</em> There's something on your face! <em>(punches him)</em> It was pain! </div><ul ><li> From 7 </li></ul><div class='indent'><strong>Brian:</strong> Hey, Stacey, do you wanna go to the Prom with me?<br data-format="\\" /><strong>Stacey:</strong> Uhh... I'm sorry, but I'm a ghost.<br data-format="\\" /><strong>Brian:</strong> But, you're not de- <em>(Gunshot offscreen, blood splatters over Brian)</em><br data-format="\\" /><strong>Stacey's ghost:</strong> <em>(floats upwards)</em> Bye, Brian... </div></li><li> In <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 13, Felix has this exchange after he is picked up by a military prisoner transport ship. <div class='indent'><strong>Mayers:</strong> Truth be told, no one gives a rat's ass about the people on this ship. Anybody out there really wanted 'em, they could have 'em.<br data-format="\\" /><strong>Felix:</strong> Alright. I'll take 'em.<br data-format="\\" /><strong>Stassney:</strong> What, uh... what'cha mean?<br data-format="\\" /><strong>Felix:</strong> I mean, I'm going to kill you... and take your prisoners. </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Western Animation&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheNewAdventuresOfWinnieThePooh' title='/pmwiki/pmwiki.php/WesternAnimation/TheNewAdventuresOfWinnieThePooh' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVOZXdBZHZlbnR1cmVzT2ZXaW5uaWVUaGVQb29o'>The New Adventures of Winnie the Pooh</a></em>; the gang try to open a treasure chest by dropping it on an anvil at Piglet's house: <div class='indent'><strong>Piglet:</strong> Where'd it go?<br data-format="\\" /><strong>Tigger:</strong> In the basement.<br data-format="\\" /><strong>Piglet:</strong> But I don't have a basement.<br data-format="\\" /><strong>Tigger:</strong> You do now. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheAmazingWorldOfGumball' title='/pmwiki/pmwiki.php/WesternAnimation/TheAmazingWorldOfGumball' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVBbWF6aW5nV29ybGRPZkd1bWJhbGw='>The Amazing World of Gumball</a></em>: During "The Words", Darwin becomes far too assertive and gets utterly tired of Teri's hypochondria and fear of germs flaring up: <div class='indent'><strong>Darwin:</strong> Oh my gosh! Your hand, it's covered in germs!<br data-format="\\" /><strong>Teri:</strong> What!? WHERE!?<br data-format="\\" /><em>(Darwin slowly licks Teri's hand)</em><br data-format="\\" /><strong>Darwin:</strong> <em>There.</em><br data-format="\\" /><strong>Teri:</strong> ....nnnyyyaaaaaaaAAAAAAAA<strong>AAAAAAAAAH</strong>! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/AmericanDad' title='/pmwiki/pmwiki.php/WesternAnimation/AmericanDad' data-format='V2VzdGVybkFuaW1hdGlvbi9BbWVyaWNhbkRhZA=='>American Dad!</a></em>: "<a class='urllink' href='http://www.hulu.com/watch/1027/american-dad-run-nathan-run#s-p6-n1-sr-i1'>Rough Trade<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>" <div class='indent'><strong>Stan:</strong> Mad? Why would I be mad? Just because I'm being held without bail for domestic abuse, animal cruelty, child pornography, and attempted murder?<br data-format="\\" /><strong>Roger:</strong> Attempted murder?<br data-format="\\" /><strong>Stan:</strong> I'LL KILL YOU! </div><ul ><li> In "100 A.D.": <div class='indent'><strong>Stan:</strong> Jeff, you're not good enough for our daughter. You have no job, no home and no future! Plus you're always wiping your face.<br data-format="\\" /><strong>Jeff:</strong> No, I'm not...<br data-format="\\" /><strong>Stan:</strong> <em>sprays Jeff with a hose</em> </div></li><li> "Familyland": <div class='indent'><strong>Roger:</strong> They all ditched you. Not me, though! I just rudely walked away while you were talking.<br data-format="\\" /><strong>Francine:</strong> What? When did you &#8212; oh, I get it. </div></li><li> "Introducing the Naughty Stewardesses": Steve and Roger have switched faces so that Roger can make a girl Steve likes be interested in him. Roger decides that he would rather just keep dating her, but Steve demands they switch faces. <div class='indent'><strong>Roger:</strong> Yeah, yeah, you make a good point. Okay, we'll switch faces just as soon as I fix this lamp.<br data-format="\\" /><strong>Steve:</strong> What's wrong with it?<br data-format="\\" /><strong>Roger:</strong> It's broken. <em>(smashes the lamp over Steve's head)</em> </div></li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Arthur' title='/pmwiki/pmwiki.php/WesternAnimation/Arthur' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FydGh1cn19'>Arthur</a></em>. <div class='indent'><strong>D.W.</strong>: Speaking of birthdays...<br data-format="\\" /><strong>Arthur</strong>: Who's speaking of birthdays?<br data-format="\\" /><strong>D.W.</strong>: No one, but now that you mention it, my birthday is coming up. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' title='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' data-format='V2VzdGVybkFuaW1hdGlvbi9GYW1pbHlHdXk='>Family Guy</a></em>: <ul ><li> In the episode "Road to Rhode Island": <div class='indent'><strong>Brian</strong>: I just need some time to think. Alright?<br data-format="\\" /><strong>Stewie</strong>: Oh, yes. You have got lots to think about, haven't you? Public drunkenness, grand theft auto...<br data-format="\\" /><strong>Brian</strong>: You left out the part where I made you smash your head against the windshield.<br data-format="\\" /><strong>Stewie</strong>: Huh, I don't recall&#8212;<br data-format="\\" />(Brian slams on the brakes, which propels Stewie forward into the windshield)<br data-format="\\" /><strong>Stewie</strong>: Well, I suppose I walked right into that one. </div></li><li> In "Cool Hand Peter", a Southern sheriff breaks the guys' headlight. <a class='twikilink' href='/pmwiki/pmwiki.php/SugarWiki/MomentOfAwesome' title='/pmwiki/pmwiki.php/SugarWiki/MomentOfAwesome' data-format='W1tTdWdhcldpa2kvTW9tZW50T2ZBd2Vzb21lIExhdGVyLCBKb2UgcmV0dXJucyB0aGUgZmF2b3IgdG8gaGltLl1d'>Later, Joe returns the favor to him.</a> <div class='indent'><strong>Joe:</strong> And I see you've got a flesh wound. <em>(shoots him in the leg)</em> </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeconstructedTrope' title='/pmwiki/pmwiki.php/Main/DeconstructedTrope' data-format='e3tEZWNvbnN0cnVjdGVkfFRyb3BlfX0='>Deconstructed</a> in the episode, "Brian's a Bad Father": <div class='indent'><strong>Security Guard</strong> (at the studio where Brian's son Dylan works): Sorry, Brian, Dylan says he doesn't want to see you anymore. We're not allowed to let you in.<br data-format="\\" /><strong>Brian:</strong> Well, you know what? I'm sorry, too.<br data-format="\\" /><strong>Security Guard:</strong> For what?<br data-format="\\" /><strong>Brian:</strong> For this!<br data-format="\\" />(Brian takes a swing at the security guard, but the guard catches Brian's arm and then hits Brian with his baton)<br data-format="\\" /><strong>Stewie:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LampshadeHanging' title='/pmwiki/pmwiki.php/Main/LampshadeHanging' data-format='W1tMYW1wc2hhZGVIYW5naW5nIFllYWgsIHlvdSBrbm93LCB5b3UgcHJvYmFibHkgd291bGQmIzAzOTt2ZSBoYWQgYSBiZXR0ZXIgc2hvdCBpZiB5b3UgaGFkbiYjMDM5O3QgeWVsbGVkICJGb3IgdGhpcyEiIFlvdSBrbm93LCB0aGF0Li4udGhhdCBraW5kIG9mIHRlbGVncmFwaGVkIHdoYXQgeW91IHdlcmUgZ29ubmEgZG9dXQ=='>Yeah, you know, you probably would've had a better shot if you hadn't yelled "For this!" You know, that...that kind of telegraphed what you were gonna do</a>. </div></li><li> In one scene, Meg asks a boy out on a date while they're in shop class. He says, "Sorry, but I'll be in the hospital" and then shoots himself with his nail gun. </li></ul></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>: <div class='indent'><strong>Stan:</strong> Kid, if you're trying to see my tattoo, you're going to have to try harder than that.<br data-format="\\" /><strong>Dipper:</strong> A-ha! I thought you said you didn't have a tattoo!<br data-format="\\" /><strong>Stan:</strong> I don't, but you do. <em>(pulls out a marker)</em><br data-format="\\" /><strong>Dipper:</strong> What do you mean I&#8212; <em>(yells as Stan reaches for him)</em><br data-format="\\" /><em>(cut to later; shows that Stan wrote "GOOBER" on Dipper's forehead)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MegaManRubySpears' title='/pmwiki/pmwiki.php/WesternAnimation/MegaManRubySpears' data-format='V2VzdGVybkFuaW1hdGlvbi9NZWdhTWFuUnVieVNwZWFycw=='>Mega Man (Ruby-Spears)</a></em>, "Ice Age": <div class='indent'><strong>Ice Man:</strong> We just came by to get out of the storm.<br data-format="\\" /><strong>Guard robot:</strong> There's no storm.<br data-format="\\" /><strong>Ice Man:</strong> There is <em>now! (freezes the guard)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/RobotChicken' title='/pmwiki/pmwiki.php/WesternAnimation/RobotChicken' data-format='V2VzdGVybkFuaW1hdGlvbi9Sb2JvdENoaWNrZW4='>Robot Chicken</a></em>: In their <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TwentyFour' title='/pmwiki/pmwiki.php/Series/TwentyFour' data-format='U2VyaWVzL1R3ZW50eUZvdXI='>24</a></em> parody featuring Dracula as Jack Bauer, Drac drains several terrorists to figure out which plane they've planted a bomb on. After he deals with them, he calls his superiors and announces that he stopped the terrorists, "but all the passengers are dead." The flight attendant cheerfully points out that no one is dead, and her smile fades as Dracula hangs up the call and she realizes his plan. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ScrewySquirrel' title='/pmwiki/pmwiki.php/WesternAnimation/ScrewySquirrel' data-format='V2VzdGVybkFuaW1hdGlvbi9TY3Jld3lTcXVpcnJlbA=='>Screwy Squirrel</a> vs. the asylum guard dog: <div class='indent'><strong>Squirrel:</strong> Here, take this aspirin.<br data-format="\\" /><em>(dog complies)</em><br data-format="\\" /><strong>Dog:</strong> Wait, I don't have a headache!<br data-format="\\" /><strong>Squirrel:</strong> Oh, yes, you have! <em>(<a class='twikilink' href='/pmwiki/pmwiki.php/Main/HyperspaceMallet' title='/pmwiki/pmwiki.php/Main/HyperspaceMallet' data-format='W1tIeXBlcnNwYWNlTWFsbGV0IHB1bGxzIG91dCBhIG1hbGxldF1d'>pulls out a mallet</a>)</em> </div></li><li> More than once, <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DaffyDuck' title='/pmwiki/pmwiki.php/WesternAnimation/DaffyDuck' data-format='V2VzdGVybkFuaW1hdGlvbi9EYWZmeUR1Y2s='>Daffy Duck</a> would pull a similar stunt, claiming he was performing phrenology. <div class='indent'><strong>Daffy Duck</strong>: <em>(impersonating Jerry Colonna)</em> Let me read the bumps on your head. No bumps. We make some! <em>(cue baseball bat)</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' title='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTaW1wc29ucw=='>The Simpsons</a></em>: <ul ><li> Chief Wiggum tears down Bart's T-shirt stand since he doesn't have a license to do so. Then he busts one of the lights on Bart's sneakers. </li><li> From "White Christmas Blues", when Martin Prince notices that Comic Book Guy's robot standee is wearing mittens. <div class='indent'><strong>Martin:</strong> Why would a robot need to wear mittens?<br data-format="\\" /><strong>Comic Book Guy:</strong> Why would a nerd need aspirin?<br data-format="\\" /><strong>Martin:</strong> I don't know. <em>(gets hit on the head with a rolled-up comic book)</em> </div></li><li> From the episode "She Used To Be My Girl", when Lisa and Bart are sneaking out of the house on the tree outside their bedrooms: <div class='indent'><strong>Lisa:</strong> Thanks for helping me make up my mind.<br data-format="\\" /><strong>Bart:</strong> Thanks for cushioning my fall.<br data-format="\\" /><strong>Lisa:</strong> I didn't cushion your&#8212;<br data-format="\\" />(Bart lands on her) </div></li><li> In "Burns' Heir", Mr. Burns dares Lenny to come up with a good excuse not to be fired <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConstrainedWriting' title='/pmwiki/pmwiki.php/Main/ConstrainedWriting' data-format='W1tDb25zdHJhaW5lZFdyaXRpbmcgd2l0aG91dCB1c2luZyB0aGUgbGV0dGVyIEVdXQ=='>without using the letter E</a>: <div class='indent'><strong>Lenny:</strong> Uh, I'm a... good... work... guy...<br data-format="\\" /><strong>Mr. Burns:</strong> You're fired.<br data-format="\\" /><strong>Lenny:</strong> But I didn't say...<br data-format="\\" /><strong>Mr. Burns:</strong> You will. <em>(presses a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrapDoor' title='/pmwiki/pmwiki.php/Main/TrapDoor' data-format='VHJhcERvb3I='>Trap Door</a> button)</em><br data-format="\\" /><strong>Lenny:</strong> <em>(falling)</em> <span class='esc-seq' title='non-wikiword'>EEEEEEEEEeeeeeeeeeeeee</span>! </div></li></ul></li><li> Happened to the girls on <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotallySpies' title='/pmwiki/pmwiki.php/WesternAnimation/TotallySpies' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbGx5U3BpZXM='>Totally Spies!</a></em>, when the villain of the week opted for the "leave them stranded in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SharkPool' title='/pmwiki/pmwiki.php/Main/SharkPool' data-format='W1tTaGFya1Bvb2wgc2hhcmstaW5mZXN0ZWQgd2F0ZXJdXQ=='>shark-infested water</a>" <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathTrap' title='/pmwiki/pmwiki.php/Main/DeathTrap' data-format='RGVhdGhUcmFw'>Death Trap</a>. <div class='indent'><strong>Henchman:</strong> if I were you, I'd be concerned about that hole in your boat.<br data-format="\\" /><strong>Sam:</strong> There's no hole in this boat.<br data-format="\\" /><strong>Henchman:</strong> You're right. <em>(punctures the bottom with a two-pronged pitchfork)</em> There's <em>two</em> holes. </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Real Life&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the law of contract, the doctrine of anticipatory repudiation works kind of like this: Suppose a baker and a flour wholesaler have an ongoing contract for the sale of flour: <div class='indent'><strong>Baker</strong>: I can't buy your flour anymore. <br data-format="\\" /><strong>Wholesaler</strong>: Wait, what? <br data-format="\\" /><strong>Baker</strong>: I'm going out of business. I'm not buying your flour. Bye! </div><dl ><dt> </dt><dd> What makes this similar to the trope is that whether or not the repudiating party (here, the baker) has breached the contract depends entirely on what the non-repudiating party (here, the wholesaler) chooses&#8212;they have the option of treating the repudiation as a breach and suing for damages, or treating it as a threat and simply demanding performance (so the wholesaler can choose to either sue the baker for the contract price of the flour the wholesaler never got to sell, or it can simply tell the baker, "Cool story, bro, but I'm still gonna send you flour next week and you'd better pay for it"). </dd></dl></li></ul></div> </p><p><em>It's OK, by the way, you can put the monitor down.</em> <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="rarjsq" data-video-descrip="Bond enters a room with a wheelchair." data-video-title="Bond with a Wheelchair" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rarjsq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rarjsq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rarjsq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rarjsq.jpg" data-video-trope="Main/PreemptiveDeclaration" data-video-tropename="Pre-emptive Declaration" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.80" data-video-rating-count="5" data-video-media-sources="Film/DieAnotherDay" 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/rarjsq.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rarjsq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rarjsq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rarjsq.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">Bond with a Wheelchair</h2> <p class="_pmvv-vidbox-descTxt"> Bond enters a room with a wheelchair. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="bsxu59" data-video-descrip="Brian brings up the time he smashed Stewie's head against the windshield." data-video-title="Road to Rhode Island" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/bsxu59_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/bsxu59.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/bsxu59.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bsxu59.jpg" data-video-trope="Main/PreemptiveDeclaration" data-video-tropename="Pre-emptive Declaration" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/FamilyGuyS2E13RoadToRhodeIsland,WesternAnimation/FamilyGuy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bsxu59.jpg"> <p><span class="bold">Road to Rhode I...</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>Your Blank Is Broken</span>, <span>Your X Is Broken</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/PortentOfDoom">Portent of Doom</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes">Fate and Prophecy Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PrescienceIsPredictable">Prescience Is Predictable</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Webcomic/ThatDeafGuy">That Deaf Guy</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/WebcomicsMToZ">ImageSource/Webcomics M To Z</a> </li> <li> <a href="/pmwiki/pmwiki.php/ShipperOnDeck/FanWorks">Fan Works</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/PredatoryBusiness">Predatory Business</a> </li> <li> <a href="/pmwiki/pmwiki.php/RenamedTropes/LToP">RenamedTropes/L to P</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PrefersGoingBarefoot">Prefers Going Barefoot</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-rarjsq" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rarjsq.jpg" data-video-title="Bond with a Wheelchair" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rarjsq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rarjsq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rarjsq.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">Bond with a Wheelchair</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Bond enters a room with a wheelchair. </p> <div class="rating-row" data-video-id="rarjsq" > <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.8 (5 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / PreemptiveDeclaration</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="rarjsq" data-vimeo-id="" data-video-descrip="Bond enters a room with a wheelchair." data-video-title="Bond with a Wheelchair" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rarjsq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rarjsq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rarjsq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rarjsq.jpg" data-video-trope="Main/PreemptiveDeclaration" data-video-tropename="Pre-emptive Declaration" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.80" data-video-rating-count="5" data-video-media-sources="Film/DieAnotherDay" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rarjsq.jpg"> <p><span class="bold">Bond with a Whe...</span></p> </a> <a href="#video-link" data-video-id="bsxu59" data-vimeo-id="" data-video-descrip="Brian brings up the time he smashed Stewie's head against the windshield." data-video-title="Road to Rhode Island" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/bsxu59_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/bsxu59.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/bsxu59.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bsxu59.jpg" data-video-trope="Main/PreemptiveDeclaration" data-video-tropename="Pre-emptive Declaration" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.79" data-video-rating-count="24" data-video-media-sources="Recap/FamilyGuyS2E13RoadToRhodeIsland,WesternAnimation/FamilyGuy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bsxu59.jpg"> <p><span class="bold">Road to Rhode I...</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=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } 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