CINXE.COM

Chekhov's Gun - 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>Chekhov's Gun - TV Tropes</title> <meta name="description" content="The Chekhov's Gun trope as used in popular culture. Anton Chekhov, master of the short story, gave this advice: If it's not essential, don't include it in &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/ChekhovsGun" /> <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="Chekhov's Gun - TV Tropes" /> <meta name="twitter:description" content="The Chekhov's Gun trope as used in popular culture. Anton Chekhov, master of the short story, gave this advice: If it's not essential, don't include it in &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/chekhovs_gun.jpg" /> <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="Chekhov's Gun - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/ChekhovsGun" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/chekhovs_gun.jpg" /> <meta property="og:description" content="Anton Chekhov, master of the short story, gave this advice: If it's not essential, don't include it in the story. The term has come to mean an insignificant object that later turns out to be important. For example, a character may find a &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/ChainLetter" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Film/PixelPerfect" 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/ChekhovsGun?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/ChekhovsGun"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.ChekhovsGun" 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.ChekhovsGun" 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/ChekhovsGun?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="ChekhovsGun"/> <input type="hidden" id="article_id" value="1161" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/ChekhovsGun</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"> Chekhov's Gun </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": "Chekhov's Gun", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/ChekhovsGun" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Chekhov's Gun", "headline": "Chekhov's Gun", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/ChekhovsGun", "image": "https://static.tvtropes.org/pmwiki/pub/images/chekhovs_gun.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2007-06-14T00:00:00-07:00", "dateModified": "2024-11-10T08:18:17-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/ChekhovsGun" 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/ChekhovsGun" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/ChekhovsGun" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/ChekhovsGun" 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="more-subpages"> <a href="javascript:void(0);" class="subpage-toggle-button" > <span class="wrapper more">More <i class="fa fa-chevron-down"></i></span> <span class="wrapper less"><i class="fa fa-chevron-left"></i> Less</span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);" tabindex="0"> <option value="">- More -</option> <option value="/pmwiki/pmwiki.php/De/ChekhovsGun">De</option> <option value="/pmwiki/pmwiki.php/Es/ChekhovsGun">Es</option> <option value="/pmwiki/pmwiki.php/EsLaconico/ChekhovsGun">EsLaconico</option> <option value="/pmwiki/pmwiki.php/Fr/ChekhovsGun">Fr</option> <option value="/pmwiki/pmwiki.php/Haiku/ChekhovsGun">Haiku</option> <option value="/pmwiki/pmwiki.php/Nl/ChekhovsGun">Nl</option> <option value="/pmwiki/pmwiki.php/PlayingWith/ChekhovsGun">PlayingWith</option> </select> </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/ChekhovsGun?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/ChekhovsGun?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/ChekhovsGun?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/ChekhovsGun?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/ChekhovsGun?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/ChekhovsGun?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/ChekhovsGun?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/ChekhovsGun?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/ChekhovsGun?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Headscratchers/ChekhovsGun?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/ChekhovsGun?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/ChekhovsGun?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/ChekhovsGun?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/ChekhovsGun?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/ChekhovsGun?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/ChekhovsGun?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/ChekhovsGun?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/ChekhovsGun?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/ChekhovsGun?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/ChekhovsGun?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/ChekhovsGun?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/ChekhovsGun?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/ChekhovsGun?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/ChekhovsGun?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/ChekhovsGun?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--&#010;--> <!-- This page has been alphabetized. Please add new examples in the correct order. Thanks!--> <!--&#010;--> <!--&#010;--> <!-- Images, caption, and format selected per Image Pickin' discussion: https://tvtropes.org/pmwiki/posts.php?discussion=1337621148027340100--> <!-- Format adjusted per IP thread: https://tvtropes.org/pmwiki/posts.php?discussion=1581294241002641800--> <!-- Please do not replace or remove without starting a new thread.--> <!--&#010;--> </p><p><div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ShaunOfTheDead' title='/pmwiki/pmwiki.php/Film/ShaunOfTheDead' data-format='W1tGaWxtL1NoYXVuT2ZUaGVEZWFkIGh0dHBzOi8vc3RhdGljLnR2dHJvcGVzLm9yZy9wbXdpa2kvcHViL2ltYWdlcy9jaGVraG92c19ndW4uanBnXV0='><div class="lazy_load_img_box" style="padding-top:41.14%"><img src='https://static.tvtropes.org/pmwiki/pub/images/chekhovs_gun.jpg' class='embeddedimage' border='0' alt='Chekhov&#039;s Gun (trope)' width=350 height=144></div></a></div> <div class="acaptionright" style="width:350px;" >There's a rifle above the bar because the name of the place is "The Winchester".</div> <!--&#010;--> <div class='indent'><em>"If you say in the first chapter that there is a rifle hanging on the wall, in the second or third chapter it absolutely must go off. If it's not going to be fired, it shouldn't be hanging there."</em> <div class='indent'>&#8212; <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AntonChekhov' title='/pmwiki/pmwiki.php/Creator/AntonChekhov' data-format='Q3JlYXRvci9BbnRvbkNoZWtob3Y='>Anton Chekhov</a></strong> (From S. Shchukin, Memoirs. 1911.) <!--&#010;--> <!-- One quote is sufficient -- please place additional entries on the quotes page.--> </div></div></p><p>Anton <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamers' title='/pmwiki/pmwiki.php/Main/TropeNamers' data-format='W1tUcm9wZU5hbWVycyBDaGVraG92XV0='>Chekhov</a>, master of the short story, gave this advice: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLawOfConservationOfDetail' title='/pmwiki/pmwiki.php/Main/TheLawOfConservationOfDetail' data-format='W1tUaGVMYXdPZkNvbnNlcnZhdGlvbk9mRGV0YWlsIElmIGl0JiMwMzk7cyBub3QgZXNzZW50aWFsLCBkb24mIzAzOTt0IGluY2x1ZGUgaXQgaW4gdGhlIHN0b3J5XV0='>If it's not essential, don't include it in the story</a>. </p><p>The term has come to mean an insignificant object that later turns out to be important. For example, a character may find a mysterious necklace that turns out to be the power source to the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DoomsdayDevice' title='/pmwiki/pmwiki.php/Main/DoomsdayDevice' data-format='RG9vbXNkYXlEZXZpY2U='>Doomsday Device</a>, but at the time of finding the object, it doesn't seem important. The necklace was essential to the story, but its introduction downplayed its importance. Chekhov's advice wasn't necessarily to conceal importance, but to just not spend time on things that aren't important. </p><p>A lot of people consider the phrase "Chekhov's gun" synonymous with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Foreshadowing' title='/pmwiki/pmwiki.php/Main/Foreshadowing' data-format='e3tmb3Jlc2hhZG93aW5nfX0='>foreshadowing</a>, and both terms are related. A gun that goes off in the third act but hasn't been in the play at all before, then, is going to feel like a real <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AssPull' title='/pmwiki/pmwiki.php/Main/AssPull' data-format='QXNzUHVsbA=='>Ass Pull</a>, but that's not key to the meaning of the phrase. </p><p>As a result of the success of franchises like <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Lost' title='/pmwiki/pmwiki.php/Series/Lost' data-format='U2VyaWVzL3t7TG9zdH19'>Lost</a></em> or <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HarryPotter' title='/pmwiki/pmwiki.php/Literature/HarryPotter' data-format='TGl0ZXJhdHVyZS9IYXJyeVBvdHRlcg=='>Harry Potter</a></em>, viewers and fans of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MythArc' title='/pmwiki/pmwiki.php/Main/MythArc' data-format='TXl0aEFyYw=='>Myth Arc</a>-laden and/or carefully written shows and books have become accustomed to obsessing over minuscule details and looking out for Chekhov's Guns everywhere and anywhere... whether they actually exist or not. We call these <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EpilepticTrees' title='/pmwiki/pmwiki.php/Main/EpilepticTrees' data-format='RXBpbGVwdGljVHJlZXM='>Epileptic Trees</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WildMassGuessing' title='/pmwiki/pmwiki.php/Main/WildMassGuessing' data-format='V2lsZE1hc3NHdWVzc2luZw=='>Wild Mass Guessing</a>. </p><p><h2><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperTrope' title='/pmwiki/pmwiki.php/Main/SuperTrope' data-format='W1tTdXBlclRyb3BlIENoZWtob3YmIzAzOTtzIEd1biBEZXBvdCBhbHNvIHN0b2Nrc11d'>Chekhov's Gun Depot also stocks</a>:</h2> <!&#8212;index&#8212;> </p><p>Part A: General cases <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoDVisualsThreeDEffects' title='/pmwiki/pmwiki.php/Main/TwoDVisualsThreeDEffects' data-format='VHdvRFZpc3VhbHNUaHJlZURFZmZlY3Rz'>2D Visuals, 3D Effects</a>: The analogue to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConspicuouslyLightPatch' title='/pmwiki/pmwiki.php/Main/ConspicuouslyLightPatch' data-format='Q29uc3BpY3VvdXNseUxpZ2h0UGF0Y2g='>Conspicuously Light Patch</a> for CGI, newer cartoons, and more video games. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AndroclesLion' title='/pmwiki/pmwiki.php/Main/AndroclesLion' data-format='QW5kcm9jbGVzTGlvbg=='>Androcles' Lion</a>: Basically Chekhov's good deed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovMIA' title='/pmwiki/pmwiki.php/Main/ChekhovMIA' data-format='Q2hla2hvdk1JQQ=='>Chekhov M.I.A.</a>: Remember that missing character? It's actually a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsGunman' title='/pmwiki/pmwiki.php/Main/ChekhovsGunman' data-format='Q2hla2hvdnNHdW5tYW4='>Chekhov's Gunman</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsArmoury' title='/pmwiki/pmwiki.php/Main/ChekhovsArmoury' data-format='Q2hla2hvdnNBcm1vdXJ5'>Chekhov's Armoury</a>: A whole stash of Chekhov's Guns. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsArmy' title='/pmwiki/pmwiki.php/Main/ChekhovsArmy' data-format='Q2hla2hvdnNBcm15'>Chekhov's Army</a>: A whole stash of Chekhov's Gunmen. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsBoomerang' title='/pmwiki/pmwiki.php/Main/ChekhovsBoomerang' data-format='Q2hla2hvdnNCb29tZXJhbmc='>Chekhov's Boomerang</a>: Chekhov's Gun has already been used once, then unexpectedly turns up again. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsClassroom' title='/pmwiki/pmwiki.php/Main/ChekhovsClassroom' data-format='Q2hla2hvdnNDbGFzc3Jvb20='>Chekhov's Classroom</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Series/Scrubs' title='/pmwiki/pmwiki.php/Series/Scrubs' data-format='W1tTZXJpZXMve3tTY3J1YnN9fSBSZW1lbWJlciB3aGF0IHlvdSBoZWFyZCwgd2hlbiB5b3Ugd2VyZW4mIzAzOTt0IGV2ZW4gbGlzdGVuaW5nP11d'>Remember what you heard, when you weren't even listening?</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsExhibit' title='/pmwiki/pmwiki.php/Main/ChekhovsExhibit' data-format='Q2hla2hvdnNFeGhpYml0'>Chekhov's Exhibit</a>: Chekhov's Gun will be put on display for the general public to gawk at. Before it's stolen, of course. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsGag' title='/pmwiki/pmwiki.php/Main/ChekhovsGag' data-format='Q2hla2hvdnNHYWc='>Chekhov's Gag</a>: A Chekhov's Gun that was only introduced for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfFunny' title='/pmwiki/pmwiki.php/Main/RuleOfFunny' data-format='UnVsZU9mRnVubnk='>Rule of Funny</a>, but later it <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForDrama' title='/pmwiki/pmwiki.php/Main/PlayedForDrama' data-format='W1tQbGF5ZWRGb3JEcmFtYSBnb2VzIG9mZiBkcmFtYXRpY2FsbHkuXV0='>goes off dramatically.</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsGift' title='/pmwiki/pmwiki.php/Main/ChekhovsGift' data-format='Q2hla2hvdnNHaWZ0'>Chekhov's Gift</a>: Happy birthday! Here, have a Chekhov's Gun. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsGunman' title='/pmwiki/pmwiki.php/Main/ChekhovsGunman' data-format='Q2hla2hvdnNHdW5tYW4='>Chekhov's Gunman</a>: When a character seems to be there for no reason, they must be important. In other words, the Chekhov's Gun is a character rather than an object. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsHobby' title='/pmwiki/pmwiki.php/Main/ChekhovsHobby' data-format='Q2hla2hvdnNIb2JieQ=='>Chekhov's Hobby</a>: Like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsSkill' title='/pmwiki/pmwiki.php/Main/ChekhovsSkill' data-format='Q2hla2hvdnNTa2lsbA=='>Chekhov's Skill</a>, but it is merely established that the character has the skill rather than showing them using or learning it beforehand. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsNews' title='/pmwiki/pmwiki.php/Main/ChekhovsNews' data-format='Q2hla2hvdnNOZXdz'>Chekhov's News</a>: When a news report mentions something that will be important later. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsParty' title='/pmwiki/pmwiki.php/Main/ChekhovsParty' data-format='Q2hla2hvdnNQYXJ0eQ=='>Chekhov's Party</a>: If a party happens or is mentioned, pay close attention. Something important happened there. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsSkill' title='/pmwiki/pmwiki.php/Main/ChekhovsSkill' data-format='Q2hla2hvdnNTa2lsbA=='>Chekhov's Skill</a>: What you learn along the way can be a Chekhov's Gun. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsVolcano' title='/pmwiki/pmwiki.php/Main/ChekhovsVolcano' data-format='Q2hla2hvdnNWb2xjYW5v'>Chekhov's Volcano</a>: If it wasn't going to erupt, it would have just been a mountain. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConspicuouslyLightPatch' title='/pmwiki/pmwiki.php/Main/ConspicuouslyLightPatch' data-format='Q29uc3BpY3VvdXNseUxpZ2h0UGF0Y2g='>Conspicuously Light Patch</a>: The Chekhov's Gun of old, traditional animation, where anything obviously not part of the static (and often painted) background layer will be put to use by a character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EmptyRoomPsych' title='/pmwiki/pmwiki.php/Main/EmptyRoomPsych' data-format='RW1wdHlSb29tUHN5Y2g='>Empty Room Psych</a>: In a video game, all places <em>must</em> have a purpose. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForbiddenChekhovsGun' title='/pmwiki/pmwiki.php/Main/ForbiddenChekhovsGun' data-format='Rm9yYmlkZGVuQ2hla2hvdnNHdW4='>Forbidden Chekhov's Gun</a>: Never do this. <em>Ever.</em> (Unless you've crossed the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GodzillaThreshold' title='/pmwiki/pmwiki.php/Main/GodzillaThreshold' data-format='R29kemlsbGFUaHJlc2hvbGQ='>Godzilla Threshold</a> or something...) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadacheOfDoom' title='/pmwiki/pmwiki.php/Main/HeadacheOfDoom' data-format='SGVhZGFjaGVPZkRvb20='>Headache of Doom</a>: If you have a headache, expect it to turn out to be for a very serious reason. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncurableCoughOfDeath' title='/pmwiki/pmwiki.php/Main/IncurableCoughOfDeath' data-format='SW5jdXJhYmxlQ291Z2hPZkRlYXRo'>Incurable Cough of Death</a>: The medical Chekhov's Gun. If you coughed in the first act, you can bet that you'll be dead by the third. Same for unexplained itches, unless they lead to something more... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovecraftianSuperpower' title='/pmwiki/pmwiki.php/Main/LovecraftianSuperpower' data-format='W1tMb3ZlY3JhZnRpYW5TdXBlcnBvd2VyIGludGVyZXN0aW5nXV0='>interesting</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InevitablyBrokenRule' title='/pmwiki/pmwiki.php/Main/InevitablyBrokenRule' data-format='SW5ldml0YWJseUJyb2tlblJ1bGU='>Inevitably Broken Rule</a>: If you introduce a rule for a character to follow, expect someone to break it without fail. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InfallibleBabble' title='/pmwiki/pmwiki.php/Main/InfallibleBabble' data-format='SW5mYWxsaWJsZUJhYmJsZQ=='>Infallible Babble</a>: If <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PropheciesAreAlwaysRight' title='/pmwiki/pmwiki.php/Main/PropheciesAreAlwaysRight' data-format='e3twcm9waGVjaWVzIGFyZSBhbHdheXMgcmlnaHR9fQ=='>prophecies are always right</a>, then nonsense, hearsay and barely comprehensible rumours are even moreso. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IronicEcho' title='/pmwiki/pmwiki.php/Main/IronicEcho' data-format='SXJvbmljRWNobw=='>Ironic Echo</a>: A line of dialogue early on is repeated in an ironic context, showing a change in meaning or of heart. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItMayHelpYouOnYourQuest' title='/pmwiki/pmwiki.php/Main/ItMayHelpYouOnYourQuest' data-format='SXRNYXlIZWxwWW91T25Zb3VyUXVlc3Q='>It May Help You on Your Quest</a>: Take this dull, seemingly-useless (or even mostly-useless) item. Go on, take it! You will be most definitely needing it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KidsRaidingTheWineCabinet' title='/pmwiki/pmwiki.php/Main/KidsRaidingTheWineCabinet' data-format='S2lkc1JhaWRpbmdUaGVXaW5lQ2FiaW5ldA=='>Kids Raiding the Wine Cabinet</a>: Children + Alcohol = Children will inevitably drink the alcohol. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KingIncognito' title='/pmwiki/pmwiki.php/Main/KingIncognito' data-format='S2luZ0luY29nbml0bw=='>King Incognito</a>: When Chekhov's Gunman is a famous/important person in disguise. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLegendOfChekhov' title='/pmwiki/pmwiki.php/Main/TheLegendOfChekhov' data-format='VGhlTGVnZW5kT2ZDaGVraG92'>The Legend of Chekhov</a>: If someone tells a fairy tale or legend, it'll turn out to be true, and outright disbelieving it only ups the uncomfortable nature of the truth when it hits. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulEcho' title='/pmwiki/pmwiki.php/Main/MeaningfulEcho' data-format='TWVhbmluZ2Z1bEVjaG8='>Meaningful Echo</a>: A line of idle dialogue is later repeated in a context that gives it additional significance. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='TWVhbmluZ2Z1bE5hbWU='>Meaningful Name</a>: If the character's name has a special meaning but no immediate relevance, then the relevance will come later. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoticeThis' title='/pmwiki/pmwiki.php/Main/NoticeThis' data-format='Tm90aWNlVGhpcw=='>Notice This</a>: It must be important to the plot &#8212; look where it's positioned and lighted. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotSoSmallRole' title='/pmwiki/pmwiki.php/Main/NotSoSmallRole' data-format='Tm90U29TbWFsbFJvbGU='>Not-So-Small Role</a>: Character #23 is played by <em>whom?</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NarrowedItDownToTheGuyIRecognize' title='/pmwiki/pmwiki.php/Main/NarrowedItDownToTheGuyIRecognize' data-format='W1tOYXJyb3dlZEl0RG93blRvVGhlR3V5SVJlY29nbml6ZSBUaGV5JiMwMzk7ZCBuZXZlciBoYXZlIHNpZ25lZCBvbiBmb3Igc28gc21hbGwgYSByb2xlIV1d'>They'd never have signed on for so small a role!</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlotDeviceAllAlong' title='/pmwiki/pmwiki.php/Main/PlotDeviceAllAlong' data-format='UGxvdERldmljZUFsbEFsb25n'>Plot Device All Along</a>: Something mundane that the character uses regularly and constantly turns out to have been a highly important artifact. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePromise' title='/pmwiki/pmwiki.php/Main/ThePromise' data-format='VGhlUHJvbWlzZQ=='>The Promise</a>: A verbal, visual or conceptual Chekhov's Gun where a promise is made and later comes up. Whereupon the promiser will be required to act; or, in unlucky cases, the promisee. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PupatingPeril' title='/pmwiki/pmwiki.php/Main/PupatingPeril' data-format='UHVwYXRpbmdQZXJpbA=='>Pupating Peril</a>: Basically Chekhov's Cocoon. If a cocoon, chrysalis, or pupa appears or is mentioned, whatever hatches out of it will be important and usually dangerous or aggressive. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ResolvedNoodleIncident' title='/pmwiki/pmwiki.php/Main/ResolvedNoodleIncident' data-format='UmVzb2x2ZWROb29kbGVJbmNpZGVudA=='>Resolved Noodle Incident</a>: When a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoodleIncident' title='/pmwiki/pmwiki.php/Main/NoodleIncident' data-format='Tm9vZGxlSW5jaWRlbnQ='>Noodle Incident</a> now becomes important to the plot. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SomedayThisWillComeInHandy' title='/pmwiki/pmwiki.php/Main/SomedayThisWillComeInHandy' data-format='U29tZWRheVRoaXNXaWxsQ29tZUluSGFuZHk='>Someday This Will Come in Handy</a>: Useless knowledge is always important. Compare Classroom, Skill. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorkplaceAcquiredAbilities' title='/pmwiki/pmwiki.php/Main/WorkplaceAcquiredAbilities' data-format='V29ya3BsYWNlQWNxdWlyZWRBYmlsaXRpZXM='>Workplace-Acquired Abilities</a>: When the abilities obtained in one's professional career come in handy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouWillKnowWhatToDo' title='/pmwiki/pmwiki.php/Main/YouWillKnowWhatToDo' data-format='WW91V2lsbEtub3dXaGF0VG9Ebw=='>You Will Know What to Do</a>: You are told it will be important, but you aren't told when, where, how, or why. And, you'll be lucky if you know exactly what it does before the consequences hit, too. </li></ul></p><p>Part B: You <em>know</em> what will invariably happen when you see any of these in a scene.... <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AshesToCrashes' title='/pmwiki/pmwiki.php/Main/AshesToCrashes' data-format='W1tBc2hlc1RvQ3Jhc2hlcyBGdW5lcmFsIEFzaGVzXV0='>Funeral Ashes</a> &#8212; They will be scattered inappropriately. </li><li> An assembly line &#8212; <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AssemblyLineFastForward' title='/pmwiki/pmwiki.php/Main/AssemblyLineFastForward' data-format='W1tBc3NlbWJseUxpbmVGYXN0Rm9yd2FyZCBJdCB3aWxsIHNwZWVkIHVwIGFuZCBjYXVzZSBjaGFvc11d'>It will speed up and cause chaos</a>. </li><li> A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BananaPeel' title='/pmwiki/pmwiki.php/Main/BananaPeel' data-format='QmFuYW5hUGVlbA=='>Banana Peel</a> &#8212; Someone will slip on it. </li><li> Someone <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CarryingACake' title='/pmwiki/pmwiki.php/Main/CarryingACake' data-format='Q2FycnlpbmdBQ2FrZQ=='>Carrying a Cake</a> &#8212; It will be smashed. </li><li> A chandelier &#8212; someone will <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChandelierSwing' title='/pmwiki/pmwiki.php/Main/ChandelierSwing' data-format='W1tDaGFuZGVsaWVyU3dpbmcgc3dpbmcgb24gaXRdXQ=='>swing on it</a> in a fight, and/or it will come <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FallingChandelierOfDoom' title='/pmwiki/pmwiki.php/Main/FallingChandelierOfDoom' data-format='W1tGYWxsaW5nQ2hhbmRlbGllck9mRG9vbSBjcmFzaGluZyBkb3duIHRvd2FyZHMgYSBjcm93ZCBvZiBwZW9wbGVdXQ=='>crashing down towards a crowd of people</a>. </li><li> A sign warning of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DangerThinIce' title='/pmwiki/pmwiki.php/Main/DangerThinIce' data-format='W1tEYW5nZXJUaGluSWNlIHRoaW4gaWNlIGFoZWFkXV0='>thin ice ahead</a> &#8212; Someone will fall through it. </li><li> Someone's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DoomedAutographedItem' title='/pmwiki/pmwiki.php/Main/DoomedAutographedItem' data-format='W1tEb29tZWRBdXRvZ3JhcGhlZEl0ZW0gcHJpemVkIGF1dG9ncmFwaGVkIHBvc3Nlc3Npb25dXQ=='>prized autographed possession</a> &#8212; It will get lost, stolen, or destroyed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DoomedNewClothes' title='/pmwiki/pmwiki.php/Main/DoomedNewClothes' data-format='W1tEb29tZWROZXdDbG90aGVzIFNvbWVvbmUgd2VhcmluZyBuZXcgY2xvdGhlc11d'>Someone wearing new clothes</a> &#8212; They will be dirtied, torn (often beyond repair), or drenched. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DoomedSupermarketDisplay' title='/pmwiki/pmwiki.php/Main/DoomedSupermarketDisplay' data-format='RG9vbWVkU3VwZXJtYXJrZXREaXNwbGF5'>Doomed Supermarket Display</a> &#8212; It will fall. </li><li> A soufflé &#8212; <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EndangeredSouffle' title='/pmwiki/pmwiki.php/Main/EndangeredSouffle' data-format='W1tFbmRhbmdlcmVkU291ZmZsZSBJdCB3aWxsIGNvbGxhcHNlXV0='>It will collapse</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExplodingFishTanks' title='/pmwiki/pmwiki.php/Main/ExplodingFishTanks' data-format='W1tFeHBsb2RpbmdGaXNoVGFua3MgRmlzaCBUYW5rXV0='>Fish Tank</a> &#8212; It will explode. </li><li> Someone checking a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FatalFamilyPhoto' title='/pmwiki/pmwiki.php/Main/FatalFamilyPhoto' data-format='RmF0YWxGYW1pbHlQaG90bw=='>Fatal Family Photo</a> before a fight &#8212; They will die. </li><li> An electrocardiogram &#8212; There'll be a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Flatline' title='/pmwiki/pmwiki.php/Main/Flatline' data-format='e3tGbGF0bGluZX19'>Flatline</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FruitCart' title='/pmwiki/pmwiki.php/Main/FruitCart' data-format='RnJ1aXRDYXJ0'>Fruit Cart</a> &#8212; It will be destroyed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePreciousPreciousCar' title='/pmwiki/pmwiki.php/Main/ThePreciousPreciousCar' data-format='VGhlUHJlY2lvdXNQcmVjaW91c0Nhcg=='>The Precious, Precious Car</a> &#8212; If someone who owns a nice car acts like a jerk, the car will be borrowed without permission and/or broken. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PricelessMingVase' title='/pmwiki/pmwiki.php/Main/PricelessMingVase' data-format='UHJpY2VsZXNzTWluZ1Zhc2U='>Priceless Ming Vase</a> &#8212; It will break. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RailroadTracksOfDoom' title='/pmwiki/pmwiki.php/Main/RailroadTracksOfDoom' data-format='UmFpbHJvYWRUcmFja3NPZkRvb20='>Railroad Tracks of Doom</a> &#8212; A train will show up, at the worst possible time for the characters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RippingOffTheStringOfPearls' title='/pmwiki/pmwiki.php/Main/RippingOffTheStringOfPearls' data-format='W1tSaXBwaW5nT2ZmVGhlU3RyaW5nT2ZQZWFybHMgU29tZW9uZSB3ZWFyaW5nIGEgcGVhcmwgbmVja2xhY2VdXQ=='>Someone wearing a pearl necklace</a> &#8212; The pearls will be ripped off. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RopeBridge' title='/pmwiki/pmwiki.php/Main/RopeBridge' data-format='Um9wZUJyaWRnZQ=='>Rope Bridge</a> &#8212; It will fall. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfPool' title='/pmwiki/pmwiki.php/Main/RuleOfPool' data-format='UnVsZU9mUG9vbA=='>Rule of Pool</a>: Someone <em>will</em> fall or be pushed into that pool. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SheetOfGlass' title='/pmwiki/pmwiki.php/Main/SheetOfGlass' data-format='U2hlZXRPZkdsYXNz'>Sheet of Glass</a> &#8212; It will break. </li></ul></p><p><!&#8212;/index&#8212;> </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SchrodingersGun' title='/pmwiki/pmwiki.php/Main/SchrodingersGun' data-format='U2Nocm9kaW5nZXJzR3Vu'>Schrödinger's Gun</a> for a competing dramatic weapons dealer. Contrast to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedHerring' title='/pmwiki/pmwiki.php/Main/RedHerring' data-format='UmVkSGVycmluZw=='>Red Herring</a>, where something shown early appears to be significant but was planted there just to throw you off. If there are a whole bunch of Red Herrings you might be looking at <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWalrusWasPaul' title='/pmwiki/pmwiki.php/Main/TheWalrusWasPaul' data-format='VGhlV2FscnVzV2FzUGF1bA=='>The Walrus Was Paul</a>, where a writer wants to mock fans of Chekhov's Guns by repeatedly messing with them. If there is a very long delay between the introduction of the element and its use in the story, to the point where most of the audience has long forgotten about it, you're looking at a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrickJoke' title='/pmwiki/pmwiki.php/Main/BrickJoke' data-format='QnJpY2tKb2tl'>Brick Joke</a>. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MacGuffin' title='/pmwiki/pmwiki.php/Main/MacGuffin' data-format='TWFjR3VmZmlu'>MacGuffin</a> is significant for some (possibly even plot-relevant) reason, but we never find out just what it is. If the Chekhov's Gun was hiding on the other side of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FourthWall' title='/pmwiki/pmwiki.php/Main/FourthWall' data-format='Rm91cnRoV2FsbA=='>Fourth Wall</a>, you have a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NinjaProp' title='/pmwiki/pmwiki.php/Main/NinjaProp' data-format='TmluamFQcm9w'>Ninja Prop</a>. If a Chekhov's gun is set up but dropped (but was neither intended to distract as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedHerring' title='/pmwiki/pmwiki.php/Main/RedHerring' data-format='UmVkSGVycmluZw=='>Red Herring</a> nor to be brought up later, as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrickJoke' title='/pmwiki/pmwiki.php/Main/BrickJoke' data-format='QnJpY2tKb2tl'>Brick Joke</a>), you have either an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbortedArc' title='/pmwiki/pmwiki.php/Main/AbortedArc' data-format='QWJvcnRlZEFyYw=='>Aborted Arc</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatHappenedToTheMouse' title='/pmwiki/pmwiki.php/Main/WhatHappenedToTheMouse' data-format='V2hhdEhhcHBlbmVkVG9UaGVNb3VzZQ=='>What Happened to the Mouse?</a>, depending on the importance of the gun to the overall plot. If something <em>looks</em> like a Chekhov's Gun but is really just a piece of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NarrativeFiligree' title='/pmwiki/pmwiki.php/Main/NarrativeFiligree' data-format='TmFycmF0aXZlRmlsaWdyZWU='>Narrative Filigree</a> then that's a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CowTools' title='/pmwiki/pmwiki.php/Main/CowTools' data-format='e3tDb3cgVG9vbHxzfX0='>Cow Tool</a>. </p><p>The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagneticPlotDevice' title='/pmwiki/pmwiki.php/Main/MagneticPlotDevice' data-format='TWFnbmV0aWNQbG90RGV2aWNl'>Magnetic Plot Device</a> can be a standing Chekhov's Gun to blame the plot on. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImpossibleTask' title='/pmwiki/pmwiki.php/Main/ImpossibleTask' data-format='SW1wb3NzaWJsZVRhc2s='>Impossible Task</a> may require one. Also see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Asspull' title='/pmwiki/pmwiki.php/Main/Asspull' data-format='e3tBc3NwdWxsfX0='>Ass Pull</a>, which is what the viewer can sometimes confuse this with if they miss the gun the first time (or if the gun was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EditedForSyndication' title='/pmwiki/pmwiki.php/Main/EditedForSyndication' data-format='W1tFZGl0ZWRGb3JTeW5kaWNhdGlvbiBlZGl0ZWQgb3V0XV0='>edited out</a> in an adaptation). </p><p>A reverse Chekhov's Gun is also common. Explicitly showing a normally armed character forgetting his gun when leaving the house for example. The experienced troper knows that this will become the day he needs it the most. </p><p>Also referred to as "the Indiana Jones principle" in Thomas C. Foster's <em>How to Read Literature Like a Professor,</em> named after <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/IndianaJones' title='/pmwiki/pmwiki.php/Franchise/IndianaJones' data-format='W1tGcmFuY2hpc2UvSW5kaWFuYUpvbmVzIEluZHkmIzAzOTtzXV0='>Indy's</a> early encounter with a snake at the beginning of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/RaidersOfTheLostArk' title='/pmwiki/pmwiki.php/Film/RaidersOfTheLostArk' data-format='RmlsbS9SYWlkZXJzT2ZUaGVMb3N0QXJr'>Raiders of the Lost Ark</a></em> and how it set up his much <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhyDidItHaveToBeSnakes' title='/pmwiki/pmwiki.php/Main/WhyDidItHaveToBeSnakes' data-format='W1tXaHlEaWRJdEhhdmVUb0JlU25ha2VzIGxhcmdlciBlbmNvdW50ZXIgd2l0aCB0aGVtXV0='>larger encounter with them</a> later on. Another term for this is <a class='urllink' href='http://backtothefuture.wikia.com/wiki/Setup_and_payoff'>"setup and payoff,"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> a technique used by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertZemeckis' title='/pmwiki/pmwiki.php/Creator/RobertZemeckis' data-format='Q3JlYXRvci9Sb2JlcnRaZW1lY2tpcw=='>Robert Zemeckis</a> and Bob Gale for the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/BackToTheFuture' title='/pmwiki/pmwiki.php/Franchise/BackToTheFuture' data-format='RnJhbmNoaXNlL0JhY2tUb1RoZUZ1dHVyZQ=='>Back to the Future</a></em> trilogy and regularly taught to scriptwriters nowadays. </p><p>Not to be confused with <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/ChekovsGun' title='/pmwiki/pmwiki.php/JustForFun/ChekovsGun' data-format='SnVzdEZvckZ1bi9DaGVrb3ZzR3Vu'>Chekov's Gun</a> (or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Snowclones' title='/pmwiki/pmwiki.php/Main/Snowclones' data-format='W1t7e1Nub3djbG9uZXN9fSBDaGVraG92JiMwMzk7cyBQdW5dXQ=='>Chekhov's Pun</a>, for that matter). See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CallBack' title='/pmwiki/pmwiki.php/Main/CallBack' data-format='Q2FsbEJhY2s='>Call-Back</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrickJoke' title='/pmwiki/pmwiki.php/Main/BrickJoke' data-format='QnJpY2tKb2tl'>Brick Joke</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='UnVubmluZ0dhZw=='>Running Gag</a>. </p><p><h2>Examples of this trope contain spoilers by necessity. Read at your own risk.</h2> <hr data-format='&#8212;&#8212;' /> <h2>Example subpages:</h2> <div class="quoteright" style="width:300px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ShaunOfTheDead' title='/pmwiki/pmwiki.php/Film/ShaunOfTheDead' data-format='W1tGaWxtL1NoYXVuT2ZUaGVEZWFkIGh0dHBzOi8vc3RhdGljLnR2dHJvcGVzLm9yZy9wbXdpa2kvcHViL2ltYWdlcy9TaGF1bldpbmNoZXN0ZXJCcmlnaHQyXzY1MDcucG5nXV0='><img src='https://static.tvtropes.org/pmwiki/pub/images/ShaunWinchesterBright2_6507.png' class='embeddedimage' border='0' alt='https://static.tvtropes.org/pmwiki/pub/images/ShaunWinchesterBright2_6507.png' /></a></div> <div class="acaptionright" style="width:300px;" >That's not the <em>only</em> reason, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ZombieApocalypse' title='/pmwiki/pmwiki.php/Main/ZombieApocalypse' data-format='W1tab21iaWVBcG9jYWx5cHNlIHRob3VnaC4uLl1d'>though...</a></div> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/AnimeAndManga' title='/pmwiki/pmwiki.php/ChekhovsGun/AnimeAndManga' data-format='Q2hla2hvdnNHdW4vQW5pbWVBbmRNYW5nYQ=='>Anime & Manga</a> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/OnePiece' title='/pmwiki/pmwiki.php/ChekhovsGun/OnePiece' data-format='Q2hla2hvdnNHdW4vT25lUGllY2U='>One Piece</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/PokemonAdventures' title='/pmwiki/pmwiki.php/ChekhovsGun/PokemonAdventures' data-format='Q2hla2hvdnNHdW4vUG9rZW1vbkFkdmVudHVyZXM='>Pokémon Adventures</a></em> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/ComicBooks' title='/pmwiki/pmwiki.php/ChekhovsGun/ComicBooks' data-format='Q2hla2hvdnNHdW4vQ29taWNCb29rcw=='>Comic Books</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/FanWorks' title='/pmwiki/pmwiki.php/ChekhovsGun/FanWorks' data-format='Q2hla2hvdnNHdW4vRmFuV29ya3M='>Fan Works</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/AnimatedFilms' title='/pmwiki/pmwiki.php/ChekhovsGun/AnimatedFilms' data-format='W1tDaGVraG92c0d1bi9BbmltYXRlZEZpbG1zIEZpbG1zIOKAlCBBbmltYXRpb25dXQ=='>Films — Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilms' title='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilms' data-format='W1tDaGVraG92c0d1bi9MaXZlQWN0aW9uRmlsbXMgRmlsbXMg4oCUIExpdmUtQWN0aW9uXV0='>Films — Live-Action</a> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsAToF' title='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsAToF' data-format='W1tDaGVraG92c0d1bi9MaXZlQWN0aW9uRmlsbXNBVG9GIEEgdG8gRl1d'>A to F</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsGToL' title='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsGToL' data-format='W1tDaGVraG92c0d1bi9MaXZlQWN0aW9uRmlsbXNHVG9MIEcgdG8gTF1d'>G to L</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsMToR' title='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsMToR' data-format='W1tDaGVraG92c0d1bi9MaXZlQWN0aW9uRmlsbXNNVG9SIE0gdG8gUl1d'>M to R</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsSToZ' title='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionFilmsSToZ' data-format='W1tDaGVraG92c0d1bi9MaXZlQWN0aW9uRmlsbXNTVG9aIFMgdG8gWl1d'>S to Z</a> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/Literature' title='/pmwiki/pmwiki.php/ChekhovsGun/Literature' data-format='Q2hla2hvdnNHdW4ve3tMaXRlcmF0dXJlfX0='>Literature</a> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/HarryPotter' title='/pmwiki/pmwiki.php/ChekhovsGun/HarryPotter' data-format='Q2hla2hvdnNHdW4vSGFycnlQb3R0ZXI='>Harry Potter</a></em> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionTV' title='/pmwiki/pmwiki.php/ChekhovsGun/LiveActionTV' data-format='Q2hla2hvdnNHdW4vTGl2ZUFjdGlvblRW'>Live-Action TV</a> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/DoctorWho' title='/pmwiki/pmwiki.php/ChekhovsGun/DoctorWho' data-format='Q2hla2hvdnNHdW4vRG9jdG9yV2hv'>Doctor Who</a></em> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/Theatre' title='/pmwiki/pmwiki.php/ChekhovsGun/Theatre' data-format='Q2hla2hvdnNHdW4ve3tUaGVhdHJlfX0='>Theatre</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/VideoGames' title='/pmwiki/pmwiki.php/ChekhovsGun/VideoGames' data-format='Q2hla2hvdnNHdW4vVmlkZW9HYW1lcw=='>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/VisualNovels' title='/pmwiki/pmwiki.php/ChekhovsGun/VisualNovels' data-format='Q2hla2hvdnNHdW4vVmlzdWFsTm92ZWxz'>Visual Novels</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/WebAnimation' title='/pmwiki/pmwiki.php/ChekhovsGun/WebAnimation' data-format='Q2hla2hvdnNHdW4vV2ViQW5pbWF0aW9u'>Web Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/Webcomics' title='/pmwiki/pmwiki.php/ChekhovsGun/Webcomics' data-format='Q2hla2hvdnNHdW4ve3tXZWJjb21pY3N9fQ=='>Webcomics</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/WebOriginal' title='/pmwiki/pmwiki.php/ChekhovsGun/WebOriginal' data-format='Q2hla2hvdnNHdW4vV2ViT3JpZ2luYWw='>Web Original</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/WesternAnimation' title='/pmwiki/pmwiki.php/ChekhovsGun/WesternAnimation' data-format='Q2hla2hvdnNHdW4vV2VzdGVybkFuaW1hdGlvbg=='>Western Animation</a> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ChekhovsGun/AvatarTheLastAirbender' title='/pmwiki/pmwiki.php/ChekhovsGun/AvatarTheLastAirbender' data-format='Q2hla2hvdnNHdW4vQXZhdGFyVGhlTGFzdEFpcmJlbmRlcg=='>Avatar: The Last Airbender</a></em> </li></ul></li></ul><!&#8212;/index&#8212;> </p><p><h2>Other Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Asian Animation&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/Lamput' title='/pmwiki/pmwiki.php/Animation/Lamput' data-format='QW5pbWF0aW9uL3t7TGFtcHV0fX0='>Lamput</a></em>: <ul ><li> In "Dr. Lamput", the bucket with the mop in it shows up with minimal plot relevance when Lamput ends up dodging it a couple times, but becomes plot important when he runs into it by accident, causing the water from it to wash his gray color off and expose him as Lamput. </li><li> In "Lamput &amp; the Elephant", the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PitTrap' title='/pmwiki/pmwiki.php/Main/PitTrap' data-format='W1tQaXRUcmFwIHBpdGZhbGwgdHJhcF1d'>pitfall trap</a> the docs set up for Lamput never catches him, but becomes important later since it catches someone else relevant to the episode plot - the elephant's mother. </li><li> In "Tuzki the Intern", Lamput asks if Tuzki wants to go on a roller coaster, but he declines for the moment. They do get to ride it later, in a plot-critical moment where the docs end up taking their van onto the roller coaster to chase Lamput. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Audio Plays&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' title='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' data-format='QXVkaW9QbGF5L0JpZ0ZpbmlzaERvY3Rvcldobw=='>Big Finish Doctor Who</a></em> audio play <em><a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BigFinishDoctorWho195Mistfall' title='/pmwiki/pmwiki.php/Recap/BigFinishDoctorWho195Mistfall' data-format='W1tSZWNhcC9CaWdGaW5pc2hEb2N0b3JXaG8xOTVNaXN0ZmFsbCBNaXN0ZmFsbF1d'>Mistfall</a></em>, the cobweb filled tunnel in the cave that the Doctor and the New Alzarians do not take plays a major role in the story's resolution. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Strips&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> The Transmogrifier Gun in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/CalvinAndHobbes' title='/pmwiki/pmwiki.php/ComicStrip/CalvinAndHobbes' data-format='Q29taWNTdHJpcC9DYWx2aW5BbmRIb2JiZXM='>Calvin and Hobbes</a></em>. It was first used for a story arc where Calvin introduces it and wants Hobbes to turn him into a Pterodactyl. He turns him into a <em>tiny</em> one, and a massive transmogrifying fight ensues. In a later arc, Calvin is falling down to earth because a balloon that lifted him in the sky popped. He roots for some chewing gum in his pocket, in the hopes he can blow a big bubble and use it as a parachute, when he finds the gun, transforms himself into a light particle, and zips back home. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Gamebooks&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> Many of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FightingFantasy' title='/pmwiki/pmwiki.php/Literature/FightingFantasy' data-format='TGl0ZXJhdHVyZS9GaWdodGluZ0ZhbnRhc3k='>Fighting Fantasy</a></em> gamebooks published in the United Kingdom have the reader collect all sorts of strange odds and ends, most of which seem to have no possible justification for the adventurer taking them along. Naturally, those seemingly useless items end up being just what the reader needs to get him- or herself out of trouble, or otherwise make an enemy easier to defeat. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/LoneWolf' title='/pmwiki/pmwiki.php/Literature/LoneWolf' data-format='TGl0ZXJhdHVyZS9Mb25lV29sZg=='>Lone Wolf</a></em>: <ul ><li> As a staple of Gamebooks, any item found by the protagonist (even seemingly useless trinkets) can prove surprisingly useful later in the book &#8212; or sometimes, one or two books further in the series. However, there are also plenty of random items that serve no purpose but to take up space in the backpack, and thus you must choose wisely what you keep. Also, it is quite possible to miss the specific path were any item happens to be used. </li><li> For the evil side, the Orb of Death that Zakhan Kimah demands in exchange for his allegiance to the Darklords, and receives in <em>Shadow on the Sand</em>. A savvy enough player could guess it'd show up again, since major villains are rarely left unpunished in the series; sure enough, Zakhan Kimah, armed with the artifact, is the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalBoss' title='/pmwiki/pmwiki.php/Main/FinalBoss' data-format='RmluYWxCb3Nz'>Final Boss</a> of <em>The Cauldron of Fear</em>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Mythology &amp; Religion&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='TXl0aC9DbGFzc2ljYWxNeXRob2xvZ3k='>Classical Mythology</a>: <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanFeudalism' title='/pmwiki/pmwiki.php/Main/OlderThanFeudalism' data-format='T2xkZXJUaGFuRmV1ZGFsaXNt'>Older Than Feudalism</a>: Perseus, prior to his fight against Medusa, gets a number of gifts from the Gods. Every one of them turns out to be critically useful. </li><li> And that note, Medusa's head. While he was meant to simply retrieve it, Perseus ended up using it to kill Cetus and save Andromeda. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> The Russian folk band <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/OtavaYo' title='/pmwiki/pmwiki.php/Music/OtavaYo' data-format='TXVzaWMvT3RhdmFZbw=='>Otava Yo</a></em> has a variation with Chekhov's Kazoo: <a class='urllink' href='https://www.youtube.com/watch?v=cr6Gg2mcxLg&amp;t=696s'>If a kazoo is on a musician's neck during a concert, it must be played.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Music Videos&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> The music video for <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Nickelback' title='/pmwiki/pmwiki.php/Music/Nickelback' data-format='TXVzaWMve3tOaWNrZWxiYWNrfX0='>Nickelback</a>'s song <a class='urllink' href='https://youtu.be/_JQiEs32SqQ'>"Savin' Me"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> shows the protagonist walking behind a statue being lifted by a crane at about the halfway point of the video. <span class="spoiler" title="you can set spoilers visible by default on your profile" > At the end of the song, it crashes down on the car of the woman the protagonist saves, because he can see her timer running out.</span> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Podcasts&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Firefly' title='/pmwiki/pmwiki.php/Series/Firefly' data-format='U2VyaWVzL3t7RmlyZWZseX19'>Firefly</a></em> game of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/CoolKidsTable' title='/pmwiki/pmwiki.php/Podcast/CoolKidsTable' data-format='UG9kY2FzdC9Db29sS2lkc1RhYmxl'>Cool Kids Table</a></em> has this, or rather, Chekhovs missiles. Kimmi outfitted the shuttle with them just in case. <span class="spoiler" title="you can set spoilers visible by default on your profile" > Subverted in that they don't advance the plot, Kimmi just fires them to destroy the ships at the end and because she really wanted to fire them</span>. </li><li> This trope was featured in Episode 3 of the TV Tropes podcast <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/OnTheTropes' title='/pmwiki/pmwiki.php/Podcast/OnTheTropes' data-format='UG9kY2FzdC9PblRoZVRyb3Blcw=='>On the Tropes</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/WelcomeToNightVale' title='/pmwiki/pmwiki.php/Podcast/WelcomeToNightVale' data-format='UG9kY2FzdC9XZWxjb21lVG9OaWdodFZhbGU='>Welcome to Night Vale</a></em>: <ul ><li> Taking pictures of the floating cats is deadly. Established over a year before firing in episode 48. </li><li> Also the list of seemingly random items that was given out by the Secret Police for summary memorization to grant protection from something. Fired over 2 years later in Episode 57, aptly titled "The List". <span class="spoiler" title="you can set spoilers visible by default on your profile" >It was just a drill, fortunately for everyone that forgot it.</span> </li><li> Cecil's being auctioned off in Episode 37. The gun doesn't fire until over a year later in Episode 63 when Cecil, <span class="spoiler" title="you can set spoilers visible by default on your profile" >after having saved Dana's life several times without his remembering doing so,</span> wonders if <span class="spoiler" title="you can set spoilers visible by default on your profile" >Dana was the one who bought him</span>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Pro Wrestling&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> This trope is the entire idea behind WWE's "<a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/MoneyInTheBank' title='/pmwiki/pmwiki.php/Wrestling/MoneyInTheBank' data-format='V3Jlc3RsaW5nL01vbmV5SW5UaGVCYW5r'>Money in the Bank</a>" matches, which give their winner the opportunity to exercise the right to a world title match anytime they like within the coming year&#8212;usually at a theoretically unexpected and dramatically opportune moment, like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CombatPragmatist' title='/pmwiki/pmwiki.php/Main/CombatPragmatist' data-format='W1tDb21iYXRQcmFnbWF0aXN0IHJpZ2h0IGFmdGVyIHRoZSBjdXJyZW50IGNoYW1waW9uIGhhcyBqdXN0IGJlZW4gdGhvcm91Z2hseSBiZWF0ZW4gdXAgYnkgc29tZW9uZSBlbHNlXV0='>right after the current champion has just been thoroughly beaten up by someone else</a> <span class="spoiler" title="you can set spoilers visible by default on your profile" >or at an event where they have better moral support, like <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/RobVanDam' title='/pmwiki/pmwiki.php/Wrestling/RobVanDam' data-format='V3Jlc3RsaW5nL1JvYlZhbkRhbQ=='>Rob Van Dam</a> at One Night Stand 2006, who is the only person to successfully cash in his shot after announcing it beforehand</span>. </li><li> In their classic <em><a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/WrestleMania' title='/pmwiki/pmwiki.php/Wrestling/WrestleMania' data-format='V3Jlc3RsaW5nL1dyZXN0bGVNYW5pYQ=='>WrestleMania</a> 13</em> submission match, <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/BretHart' title='/pmwiki/pmwiki.php/Wrestling/BretHart' data-format='V3Jlc3RsaW5nL0JyZXRIYXJ0'>Bret Hart</a> grabbed the timekeeper's bell from ringside midway through the match and set it on the apron without ever getting a chance to use it. Later, as <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/StoneColdSteveAustin' title='/pmwiki/pmwiki.php/Wrestling/StoneColdSteveAustin' data-format='V3Jlc3RsaW5nL1N0b25lQ29sZFN0ZXZlQXVzdGlu'>"Stone Cold" Steve Austin</a> attempted to strangle him with an extension cord by hanging him off the apron, Hart grabbed the bell and smashed Austin in the face with it, allowing him to escape, recompose himself, and lock Austin in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinishingMove' title='/pmwiki/pmwiki.php/Main/FinishingMove' data-format='W1tGaW5pc2hpbmdNb3ZlIFNoYXJwc2hvb3Rlcl1d'>Sharpshooter</a> to win the match. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/MickFoley' title='/pmwiki/pmwiki.php/Wrestling/MickFoley' data-format='V3Jlc3RsaW5nL01pY2tGb2xleQ=='>Mick Foley</a> brought a chair with him to the ring for his confrontation with <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Ryback' title='/pmwiki/pmwiki.php/Wrestling/Ryback' data-format='V3Jlc3RsaW5nL3t7UnliYWNrfX0='>Ryback</a> on the April 22, 2013 <em>Raw.</em> Mick left before the chair could be used. Then <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TheShield' title='/pmwiki/pmwiki.php/Wrestling/TheShield' data-format='V3Jlc3RsaW5nL1RoZVNoaWVsZA=='>The Shield</a> showed up and looked to be targeting <span class='esc-seq' title='non-wikiword'>Ryback</span>. <a class='urllink' href='http://www.wrestling-titles.com/wwe/wwe-h.html'>WWE Champion<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/Wrestling/JohnCena' title='/pmwiki/pmwiki.php/Wrestling/JohnCena' data-format='V3Jlc3RsaW5nL0pvaG5DZW5h'>John Cena</a> walked out and it looked like he was going to simply stand back and let the Shield beat up on Ryback in retaliation for Ryback having done the same thing the week before. Instead, Cena grabbed the chair and used it on the Shield. </li><li> Averted during <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/JerryLawler' title='/pmwiki/pmwiki.php/Wrestling/JerryLawler' data-format='V3Jlc3RsaW5nL0plcnJ5TGF3bGVy'>Jerry Lawler</a>'s first-ever WWE Championship Match against <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TheMiz' title='/pmwiki/pmwiki.php/Wrestling/TheMiz' data-format='V3Jlc3RsaW5nL1RoZU1peg=='>The Miz</a> on the November 29, 2010 <em>Raw.</em> The Miz had set up a table outside the ring for him to slam Jerry Lawler through. During the last minutes of the match, <span class="spoiler" title="you can set spoilers visible by default on your profile" > after having already disposed of Alex Riley</span>, Lawler managed to push The Miz off the top turnbuckle and through that exact table The Miz set up for him earlier. <span class="spoiler" title="you can set spoilers visible by default on your profile" > Averted as Lawler still lost the match due to <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/MichaelCole' title='/pmwiki/pmwiki.php/Wrestling/MichaelCole' data-format='V3Jlc3RsaW5nL01pY2hhZWxDb2xl'>Michael Cole</a> interfering on The Miz's behalf</span>. </li><li> Subverted during the <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/DeanAmbrose' title='/pmwiki/pmwiki.php/Wrestling/DeanAmbrose' data-format='V3Jlc3RsaW5nL0RlYW5BbWJyb3Nl'>Dean Ambrose</a>–<a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/BrockLesnar' title='/pmwiki/pmwiki.php/Wrestling/BrockLesnar' data-format='V3Jlc3RsaW5nL0Jyb2NrTGVzbmFy'>Brock Lesnar</a> match at <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/WrestleMania' title='/pmwiki/pmwiki.php/Wrestling/WrestleMania' data-format='V3Jlc3RsaW5nL1dyZXN0bGVNYW5pYQ=='>WrestleMania</a> 32 in 2016. According to <a class='urllink' href='http://www.espn.com/espn/story/_/id/15132979/the-highs-lows-wrestlemania-32'>this review<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> by an <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ESPN' title='/pmwiki/pmwiki.php/Creator/ESPN' data-format='Q3JlYXRvci97e0VTUE59fQ=='>ESPN</a> writer, "It was the match that finally put the lie to the Chekhov's Gun principle — they introduced a sea of weapons and managed to use approximately two." </li><li> The counter to <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Wrestling/MikeQuackenbush' title='/pmwiki/pmwiki.php/Wrestling/MikeQuackenbush' data-format='V3Jlc3RsaW5nL01pa2VRdWFja2VuYnVzaA=='>Mike Quackenbush</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinishingMove' title='/pmwiki/pmwiki.php/Main/FinishingMove' data-format='RmluaXNoaW5nTW92ZQ=='>Finishing Move</a> The <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/CHIKARA' title='/pmwiki/pmwiki.php/Wrestling/CHIKARA' data-format='V3Jlc3RsaW5nL3t7Q0hJS0FSQX19'>CHIKARA</a> Special, since the only reason anyone would insist on coming up with a counter to his own finisher is because it would be important to the story later, which is exactly what happened.<span class="notelabel" onclick="togglenote('note03k9o');"><sup>note&nbsp;</sup></span><span id="note03k9o" class="inlinefolder" isnote="true" onclick="togglenote('note03k9o');" style="cursor:pointer;font-size:smaller;display:none;">At <em>The Sordid Perils of Everyday Existence</em> on November 17, 2007, <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ChrisHero' title='/pmwiki/pmwiki.php/Wrestling/ChrisHero' data-format='V3Jlc3RsaW5nL0NocmlzSGVybw=='>Chris Hero</a> defeated Equinox in a Mask vs. Hair match by breaking the CHIKARA Special by kicking Equinox in the head and locking Equinox in the hold instead. Earlier that same night, Hydra, a member of <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/UltraMantisBlack' title='/pmwiki/pmwiki.php/Wrestling/UltraMantisBlack' data-format='V3Jlc3RsaW5nL3t7VWx0cmFNYW50aXMgQmxhY2t9fQ=='>UltraMantis Black</a>'s The Order of the Neo-Solar Temple, essentially sacrificed himself to end <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Wrestling/ShaneStorm' title='/pmwiki/pmwiki.php/Wrestling/ShaneStorm' data-format='V3Jlc3RsaW5nL1NoYW5lU3Rvcm0='>Shane Storm</a>'s losing streak. It would slowly be revealed that Storm had sold out the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/Face' title='/pmwiki/pmwiki.php/Main/Face' data-format='W1t7e0ZhY2V9fSB0ZWNuaWNvc11d'>tecnicos</a></em> by giving the counter to Mantis who gave it to Hero. Equinox unmasked and wrestled for the rest of his career as <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Wrestling/VinGerard' title='/pmwiki/pmwiki.php/Wrestling/VinGerard' data-format='V3Jlc3RsaW5nL1ZpbkdlcmFyZA=='>Vin Gerard</a>. At <em>Style and Substance</em> on September 7, 2008, Storm officially turned <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/Heel' title='/pmwiki/pmwiki.php/Main/Heel' data-format='W1t7e0hlZWx9fSBydWRvXV0='>rudo</a></em> and became STIGMA, forming The <span class='esc-seq' title='non-wikiword'>UnStable</span> with Gerard, later adding the returning Colin Delaney. It turned out that Mantis and CHIKARA Commissioner <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BobSaget' title='/pmwiki/pmwiki.php/Creator/BobSaget' data-format='Q3JlYXRvci9Cb2JTYWdldA=='>Bob Saget</a> (yes, Bob Saget) had made a deal to send Hero to wrestle for Dr. Cube, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/KaijuBigBattel' title='/pmwiki/pmwiki.php/Wrestling/KaijuBigBattel' data-format='V3Jlc3RsaW5nL0thaWp1QmlnQmF0dGVs'>Kaiju Big Battel</a>, in exchange for Cube giving Mantis The Eye of Tyr, a <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC97e05vcnNlIE15dGhvbG9nfHl9fWljYWw='>Norse Mythological</a> artifact that can be used to control minds. This ultimately led to the debut of <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/DieBruderschaftDesKreuzes' title='/pmwiki/pmwiki.php/Wrestling/DieBruderschaftDesKreuzes' data-format='V3Jlc3RsaW5nL0RpZUJydWRlcnNjaGFmdERlc0tyZXV6ZXM='>Die Bruderschaft des Kreuzes</a> at the end of the 2009 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SeasonFinale' title='/pmwiki/pmwiki.php/Main/SeasonFinale' data-format='U2Vhc29uRmluYWxl'>Season Finale</a> <em><span class='esc-seq' title='non-wikiword'>Three-Fisted Tales</span></em> on November 22, 2009, which was the night that Mantis' two years of machinations completely blew up in his face.</span> </li><li> Averted at <em><a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/RingOfHonor' title='/pmwiki/pmwiki.php/Wrestling/RingOfHonor' data-format='W1tXcmVzdGxpbmcvUmluZ09mSG9ub3IgUk9IIEZpZ2h0IG9mIHRoZSBDZW50dXJ5XV0='>ROH Fight of the Century</a></em>, August 5, 2006. <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ClaudioCastagnoli' title='/pmwiki/pmwiki.php/Wrestling/ClaudioCastagnoli' data-format='V3Jlc3RsaW5nL0NsYXVkaW9DYXN0YWdub2xp'>Claudio Castagnoli</a> brought a briefcase with him to the four-corner survival match against winner <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/NigelMcGuinness' title='/pmwiki/pmwiki.php/Wrestling/NigelMcGuinness' data-format='V3Jlc3RsaW5nL3t7TmlnZWwgTWNHdWlubmVzc319'>Nigel McGuinness</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ChristopherDaniels' title='/pmwiki/pmwiki.php/Wrestling/ChristopherDaniels' data-format='V3Jlc3RsaW5nL0NocmlzdG9waGVyRGFuaWVscw=='>Christopher Daniels</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/JayLethal' title='/pmwiki/pmwiki.php/Wrestling/JayLethal' data-format='V3Jlc3RsaW5nL0pheUxldGhhbA=='>Jay Lethal</a> that never came into play. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Radio&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> In an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/Gunsmoke1952' title='/pmwiki/pmwiki.php/Radio/Gunsmoke1952' data-format='UmFkaW8vR3Vuc21va2UxOTUy'>Gunsmoke (1952)</a></em> titled "Last Fling", specific mention is made of a woman's big, fancy hatpin. Later in the story, <span class="spoiler" title="you can set spoilers visible by default on your profile" >her estranged husband attacks her and she stabs him to death with it</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/IntergalacticalMagicalRadio' title='/pmwiki/pmwiki.php/Radio/IntergalacticalMagicalRadio' data-format='W1tSYWRpby9JbnRlcmdhbGFjdGljYWxNYWdpY2FsUmFkaW8gVGhlIFdhY2t5IE11c2ljYWwgQWR2ZW50dXJlcyBvZiBSb25hbGQgTWNEb25hbGQ6IEludGVyZ2FsYWN0aWNhbCBNYWdpY2FsIFJhZGlvXV0='>The Wacky Musical Adventures of Ronald McDonald: Intergalactical Magical Radio</a></em> has Ronald and friends at one point obtain some cubic zirconia, which comes in handy when they turn out to be the fuel required for the spaceship of the aliens they arrive to rescue. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Roleplay&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/DestroyTheGodmodder' title='/pmwiki/pmwiki.php/Roleplay/DestroyTheGodmodder' data-format='Um9sZXBsYXkvRGVzdHJveVRoZUdvZG1vZGRlcg=='>Destroy the Godmodder</a></em>: <ul ><li> Slightly more notable that these are often times accidental examples, as their use as a Chekhov's Gun wasn't intended up until becoming such. </li><li> The Anti-Chuck Norris Turret in both games. It originally popped up a few times in the beginning of the first game, just as a counter to all Chuck Norris attacks, and was forgotten for a while. <span class="spoiler" title="you can set spoilers visible by default on your profile" > However, it reappeared later on, in an upgraded form, as the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalBoss' title='/pmwiki/pmwiki.php/Main/FinalBoss' data-format='RmluYWxCb3Nz'>Final Boss</a> of the game. It was so powerful that only the intervention of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='W1tCaWdHb29kIFNlY3JldCBvZiB0aGUgVm9pZF1d'>Secret of the Void</a> were the players able to defeat it.</span> It later reappeared in <span class='esc-seq' title='non-wikiword'>DTG2</span>, resuming its original role of the Godmodder's counter to Chuck Norris-based attacks, until <span class="spoiler" title="you can set spoilers visible by default on your profile" > Trial 6, when the Godmodder used it to break through the Bedrock underneath the Nether and freeing the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='W1tFbGRyaXRjaEFib21pbmF0aW9uIFJlZCBEcmFnb25dXQ=='>Red Dragon</a></span>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/DinoAttackRPG' title='/pmwiki/pmwiki.php/Roleplay/DinoAttackRPG' data-format='Um9sZXBsYXkvRGlub0F0dGFja1JQRw=='>Dino Attack RPG</a></em>: <ul ><li> The T-1 Typhoon that was left in the desert after Zenna and George were attacked by <span class='esc-seq' title='non-wikiword'>TumTum</span> Tribesmen ended up having a brief but important role in driving an invading army of Mutant Dinosaurs out of the Dino Attack Team's camp on Adventurers' Island. </li><li> Shortly before the Goo Caverns mission, it was established that Dino Attack Team began developing a weapon powerful enough to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InstantWinCondition' title='/pmwiki/pmwiki.php/Main/InstantWinCondition' data-format='W1tJbnN0YW50V2luQ29uZGl0aW9uIGRlc3Ryb3kgYW4gZW50aXJlIGFybXldXQ=='>destroy an entire army</a> without leveling a city. Think this is going to be important sometime in the future? </li><li> Hotwire's PDA malfunctioned after Kat's death. Turns out that's what happens when a human consciousness stores itself in a pocket-sized communication device. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/TheMurderverse' title='/pmwiki/pmwiki.php/Roleplay/TheMurderverse' data-format='Um9sZXBsYXkvVGhlTXVyZGVydmVyc2U='>The Murderverse</a></em>: Early in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/AGameOfMafia' title='/pmwiki/pmwiki.php/Roleplay/AGameOfMafia' data-format='Um9sZXBsYXkvQUdhbWVPZk1hZmlh'>A Game of Mafia</a> 2</em>, <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ShinMegamiTenseiIIINocturne' title='/pmwiki/pmwiki.php/VideoGame/ShinMegamiTenseiIIINocturne' data-format='W1tWaWRlb0dhbWUvU2hpbk1lZ2FtaVRlbnNlaUlJSU5vY3R1cm5lIHRoZSBEZW1pLWZpZW5kXV0='>the Demi-fiend</a> takes a cheap shot at Timeline Master Awe with an agility-reducing debuff skill, which goes entirely unnoticed and unmentioned by the other characters. Much, much later, <span class="spoiler" title="you can set spoilers visible by default on your profile" > during the climax, the agility reduction results in him <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotSoInvincibleAfterAll' title='/pmwiki/pmwiki.php/Main/NotSoInvincibleAfterAll' data-format='W1tOb3RTb0ludmluY2libGVBZnRlckFsbCB0YWtpbmcgdmlzaWJsZSBkYW1hZ2UgZm9yIHRoZSBmaXJzdCB0aW1lIGluIHRoZSBlbnRpcmUgc2VyaWVzXV0='>taking visible damage for the first time in the entire series</a>.</span> </li><li> Subverted in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/NanQuest' title='/pmwiki/pmwiki.php/Roleplay/NanQuest' data-format='Um9sZXBsYXkvTmFuUXVlc3Q='>Nan Quest</a></em>. After Nan's memories start to fade, the paycheck she receives at the start of the story allows her to remember she was an electrician... but the paper is an ominous note rather than a paycheck, which just throws Nan's state of mind even more into question. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Tabletop Games&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DragonlanceShadowOfTheDragonQueen' title='/pmwiki/pmwiki.php/TabletopGame/DragonlanceShadowOfTheDragonQueen' data-format='VGFibGV0b3BHYW1lL0RyYWdvbmxhbmNlU2hhZG93T2ZUaGVEcmFnb25RdWVlbg=='>Dragonlance: Shadow of the Dragon Queen</a></em>, the players can obtain a rusty spearhead from the sarcophagus of a disgraced Knight of Solamnia. This spearhead is all that remains of a corrupted dragonlance, which can be purified and restored to its former glory much later in the campaign. Should the party restore it, they can then use the dragonlance to disrupt the villains' ritual. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Exalted' title='/pmwiki/pmwiki.php/TabletopGame/Exalted' data-format='VGFibGV0b3BHYW1lL3t7RXhhbHRlZH19'>Exalted</a></em>: <ul ><li> It mentions in the first edition that one of the daughters of the Scarlet Empress had followed her into the Imperial Manse one night and simply disappeared. It would only be deep into Second Edition when Lillun returned. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BodyHorror' title='/pmwiki/pmwiki.php/Main/BodyHorror' data-format='W1tCb2R5SG9ycm9yIFVuZm9ydHVuYXRlbHkuXV0='>Unfortunately.</a> </li><li> Also worth mentioning was the AI "Eyem," named for the first thing it said to those who discovered it, a throwaway mention of a wonder of the First Age, or at least the Shogunate. Again, fast forward to the second edition, where the First Age version of the internet is a sentient network known as I AM. </li></ul></li><li> In a game module in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/StarWarsRoleplayingGame' title='/pmwiki/pmwiki.php/TabletopGame/StarWarsRoleplayingGame' data-format='VGFibGV0b3BHYW1lL1N0YXJXYXJzUm9sZXBsYXlpbmdHYW1l'>Star Wars: Roleplaying Game</a></em>, a couple of Squib merchants arguing with another group of merchants near the entrance to a ruined Jedi Academy have a burned out lightsaber for sale. This lightsaber allows you to interact with an important NPC later on, finding out some key info. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Theme Parks&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLegoMovie4DANewAdventure' title='/pmwiki/pmwiki.php/WesternAnimation/TheLegoMovie4DANewAdventure' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMZWdvTW92aWU0REFOZXdBZHZlbnR1cmU='>The LEGO Movie: 4D — A New Adventure</a></em> at <a class='twikilink' href='/pmwiki/pmwiki.php/Ride/Legoland' title='/pmwiki/pmwiki.php/Ride/Legoland' data-format='UmlkZS97e0xlZ29sYW5kfX0='>LEGOLAND</a>, Risky Business's Micro Manager replica sprays lemon water, which he mentions is only harmful to electronic devices. Emmet and Wyldstyle later get the idea to use it to short-circuit the mind control devices brainwashing their friends. </li><li> In the now-closed <em><a class='twikilink' href='/pmwiki/pmwiki.php/Ride/StarWarsGalaxysEdge' title='/pmwiki/pmwiki.php/Ride/StarWarsGalaxysEdge' data-format='W1tSaWRlL1N0YXJXYXJzR2FsYXh5c0VkZ2UgU3RhciBXYXJzIEdhbGFjdGljIFN0YXIgQ3J1aXNlcl1d'>Star Wars Galactic Star Cruiser</a></em>, there is a video at the entrance that explains the difference between the alarms that play during an actual emergency versus an in-universe "emergency" that is part of the immersive storyline. Knowing this fictional alarm exists means it's going to go off some time during the cruise... </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Web Videos&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/AtopTheFourthWall' title='/pmwiki/pmwiki.php/WebVideo/AtopTheFourthWall' data-format='V2ViVmlkZW8vQXRvcFRoZUZvdXJ0aFdhbGw='>Atop the Fourth Wall</a></em>: <ul ><li> Linkara's Magic Gun, which he's been wielding since the beginning, turns out to be rather important in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Comicbook/SilentHill' title='/pmwiki/pmwiki.php/Comicbook/SilentHill' data-format='Q29taWNib29rL1NpbGVudEhpbGw='>Silent Hill</a>: Dead/Alive</em> review, going from prop to plot point and <em>character</em>. </li><li> In his review of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WorldOfWarcraftComic' title='/pmwiki/pmwiki.php/ComicBook/WorldOfWarcraftComic' data-format='Q29taWNCb29rL1dvcmxkT2ZXYXJjcmFmdENvbWlj'>World of Warcraft (Comic)</a></em>, Linkara finds a working pokeball. He later uses it to capture a pyramid head </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheCartoonMan' title='/pmwiki/pmwiki.php/WebVideo/TheCartoonMan' data-format='V2ViVmlkZW8vVGhlQ2FydG9vbk1hbg=='>The Cartoon Man</a></em>, Roy and Karen find a number of random objects in a hollowed-out tree, including a pen, a feather, and a glove. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The pen turns out to be a "transponder" that opens a portal to an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlternateTooniverse' title='/pmwiki/pmwiki.php/Main/AlternateTooniverse' data-format='QWx0ZXJuYXRlVG9vbml2ZXJzZQ=='>Alternate Tooniverse</a>, and in the sequel, the feather magically turns a man into a talking piece of paper.</span> </li><li> In <a class='urllink' href='http://www.collegehumor.com/video:1944834/'>this episode<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Website/CollegeHumor' title='/pmwiki/pmwiki.php/Website/CollegeHumor' data-format='V2Vic2l0ZS9Db2xsZWdlSHVtb3I='>CollegeHumor</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/HardlyWorking' title='/pmwiki/pmwiki.php/WebVideo/HardlyWorking' data-format='V2ViVmlkZW8vSGFyZGx5V29ya2luZw=='>Hardly Working</a></em>, David casually references a book that <span class="spoiler" title="you can set spoilers visible by default on your profile" >Sam</span> borrowed, and never returned. This is largely ignored until the end of the episode, when David realizes that <span class="spoiler" title="you can set spoilers visible by default on your profile" >Sam was trying to kill him so he wouldn't have to return the book.</span> He even goes so far as to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakTheFourthWall' title='/pmwiki/pmwiki.php/Main/BreakTheFourthWall' data-format='QnJlYWtUaGVGb3VydGhXYWxs'>Break the Fourth Wall</a> by looking at the camera and saying "Remember? From the beginning?" </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DrHorriblesSingAlongBlog' title='/pmwiki/pmwiki.php/WebVideo/DrHorriblesSingAlongBlog' data-format='V2ViVmlkZW8vRHJIb3JyaWJsZXNTaW5nQWxvbmdCbG9n'>Dr. Horrible's Sing-Along Blog</a></em> has the Freeze Ray, mentioned throughout Act I and II as something of a joke, comes back with a vengeance in Act III. <ul ><li> Penny sings, "So keep your head up Billy buddy" to Dr. Horrible in Act II. Later, when Dr. Horrible gate-crashes the Captain Hammer statue unveiling at the end of Act III, he pep-talks himself into killing Hammer, singing, "head up Billy buddy," thus cluing in Penny that her friend Billy is the villain. </li></ul></li><li> The web series <em><a class='urllink' href='http://loadingreadyrun.com/videos/archive/cHustle/date/desc'>commodoreHustle<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> (by the guys at <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/LoadingReadyRun' title='/pmwiki/pmwiki.php/WebVideo/LoadingReadyRun' data-format='V2ViVmlkZW8vTG9hZGluZ1JlYWR5UnVu'>LoadingReadyRun</a></em>) introduced Mr. Ballsmatron in episode 7, and other than a few cameos, it never played a role until the season finale, with an ultimate ball kick and its destruction. Making it possibly the first appearance of a Chekhov's Ball-kicking robot. </li><li> Mocked in <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheNostalgiaChick' title='/pmwiki/pmwiki.php/WebVideo/TheNostalgiaChick' data-format='V2ViVmlkZW8vVGhlTm9zdGFsZ2lhQ2hpY2s='>The Nostalgia Chick</a>'s review of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Showgirls' title='/pmwiki/pmwiki.php/Film/Showgirls' data-format='RmlsbS97e1Nob3dnaXJsc319'>Showgirls</a></em>. During Nella's song at the end, she mentions the Chekhov's Stairs (that the lead pushed someone down at the climax of the film) that have been there since Act One. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/ImAMarvelAndImADC' title='/pmwiki/pmwiki.php/WebVideo/ImAMarvelAndImADC' data-format='V2ViVmlkZW8vSW1BTWFydmVsQW5kSW1BREM='>I'm a Marvel... And I'm a DC</a></em>, Spider-Man telling Batman that he thinks he might have been married once would help Batman realize how Spiderman was immune to the Joker's brainwashing. </li><li> Both subverted and parodied in <a class='urllink' href='https://www.youtube.com/watch?v=G19jSMFtURI'>one episode<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> of <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/StuartAshen' title='/pmwiki/pmwiki.php/WebVideo/StuartAshen' data-format='W1tXZWJWaWRlby9TdHVhcnRBc2hlbiBBc2hlbiYjMDM5O3MgVGVjaCBEdW1wXV0='>Ashen's Tech Dump</a> when, after showing off a highly toxic action figure sealed in a glass case with a biohazard sticker on it, he blatantly sticks it so that it's balancing precariously on the front of the desk and continues with the episode. When the case spends the whole episode without falling off, he finally just reaches out and pushes it off the desk himself. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/LetsPlay/Mahu' title='/pmwiki/pmwiki.php/LetsPlay/Mahu' data-format='TGV0c1BsYXkve3tNYWh1fX0='>Mahu</a></em>, in this case uses a "Chekhov's Game Bug". During his narrative let's play of "The Crownless Eagle", for some odd reason Istanbul makes the game turns go at a snail's pace. In his next series, "Second Chance", it is discovered the reason for this: The hidden portal which will allow humanity to flee their doomed planet. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TVTrash' title='/pmwiki/pmwiki.php/WebVideo/TVTrash' data-format='V2ViVmlkZW8vVFZUcmFzaA=='>TV Trash</a></em>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMightyDucks' title='/pmwiki/pmwiki.php/Film/TheMightyDucks' data-format='RmlsbS9UaGVNaWdodHlEdWNrcw=='>The Mighty Ducks</a></em> review begins with Hewy Toonmore (from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/HewysAnimatedMovieReviews' title='/pmwiki/pmwiki.php/WebVideo/HewysAnimatedMovieReviews' data-format='V2ViVmlkZW8vSGV3eXNBbmltYXRlZE1vdmllUmV2aWV3cw=='>Hewy's Animated Movie Reviews</a></em>) breaking into Chris's show by using a remote, mentioning that all online reviewers have this. This is used as a chekov's gun twice. Chris would later obtain a remote, and used it to team up with <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheCartoonHero' title='/pmwiki/pmwiki.php/WebVideo/TheCartoonHero' data-format='V2ViVmlkZW8vVGhlQ2FydG9vbkhlcm8='>The Cartoon Hero</a> to review the animated adaptation of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/CtrlAltDel' title='/pmwiki/pmwiki.php/Webcomic/CtrlAltDel' data-format='V2ViY29taWMvQ3RybEFsdERlbA=='>Ctrl+Alt+Del</a></em>. On a much more serious note, <span class="spoiler" title="you can set spoilers visible by default on your profile" > <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='W1tCaWdCYWQgTWFsaWNpYV1d'>Malicia</a> was able to track down the remote's frequency to find Chris and attack him after his review of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MaskedRider' title='/pmwiki/pmwiki.php/Series/MaskedRider' data-format='U2VyaWVzL01hc2tlZFJpZGVy'>Masked Rider</a></em></span>. </li><li> Inverted and played for laughs in the 15th <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/FiveSecondFilms' title='/pmwiki/pmwiki.php/WebVideo/FiveSecondFilms' data-format='V2ViVmlkZW8vRml2ZVNlY29uZEZpbG1z'>5 Second Films</a>}</em> Kickstarter sketch. </li><li> During the 2012 campaign of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/D20Live' title='/pmwiki/pmwiki.php/WebVideo/D20Live' data-format='V2ViVmlkZW8vRDIwTGl2ZQ=='>D20 Live</a></em>, <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheSpoonyExperiment' title='/pmwiki/pmwiki.php/WebVideo/TheSpoonyExperiment' data-format='W1tXZWJWaWRlby9UaGVTcG9vbnlFeHBlcmltZW50IFNwb29ueV1d'>Spoony</a> makes sure to have his character, Tandem, put a piece of glassware in a small sack and crush it to chunks. Later on in the game, when the party encounters a mutated man-giant, Tandem's first action is to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EyeScream' title='/pmwiki/pmwiki.php/Main/EyeScream' data-format='W1tFeWVTY3JlYW0gdGhyb3cgdGhlIGNydXNoZWQgZ2xhc3MgaW4gaGlzIGZhY2VdXQ=='>throw the crushed glass in his face</a>. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=aqKAzGadmYo'>Boat Comedy<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> did a sketch where people at an antiques show <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtisticLicenseGunSafety' title='/pmwiki/pmwiki.php/Main/ArtisticLicenseGunSafety' data-format='W1tBcnRpc3RpY0xpY2Vuc2VHdW5TYWZldHkgZ3Jvc3NseSBtaXNoYW5kbGVdXQ=='>grossly mishandle</a> a fancy loaded flintlock pistol "owned by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AntonChekhov' title='/pmwiki/pmwiki.php/Creator/AntonChekhov' data-format='Q3JlYXRvci9BbnRvbkNoZWtob3Y='>Anton Chekhov</a>" with various gunshot-like noises happening over and over again as incidental events. It plays on the trope by deliberately averting it again and again. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The gun <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedHerring' title='/pmwiki/pmwiki.php/Main/RedHerring' data-format='W1tSZWRIZXJyaW5nIG5ldmVyIGZpcmVzXV0='>never fires</a></span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Petscop' title='/pmwiki/pmwiki.php/WebVideo/Petscop' data-format='V2ViVmlkZW8ve3tQZXRzY29wfX0='>Petscop</a></em>: In Petscop 1, Paul follows some introductions telling him to "walk downstairs and, in the bottom, turn right instead of proceeding to become a shadow monster man" (actually, access the menu and press Down several times, then Right). This allows him to enter the Newmaker Plane. Much later, in Petscop 9, Paul follows the same instructions, this time more literally, and becomes temporarily a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LivingShadow' title='/pmwiki/pmwiki.php/Main/LivingShadow' data-format='TGl2aW5nU2hhZG93'>Living Shadow</a>, something that gives him access to the windmill. </li></ul></div> <hr data-format='&#8212;&#8212;' /> <div class='indent'>"<a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/Rifftrax' title='/pmwiki/pmwiki.php/Podcast/Rifftrax' data-format='W1tQb2RjYXN0L3t7UmlmZnRyYXh9fSBBcyBDaGVraG92IHNhaWQsIGlmIHlvdSBzaG93IGNvbmRpbWVudHMgb24gdGhlIHRhYmxlIGluIHRoZSBmaXJzdCBhY3QsIHRoZXkgbXVzdCBiZSBzbGF0aGVyZWQgb24gY2hpcHMgaW4gdGhlIHRoaXJkLl1d'>As Chekhov said, if you show condiments on the table in the first act, they must be slathered on chips in the third.</a>" </div></p><p><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="4nsngm" data-video-descrip="Near the start of Allan's adventure, the elderly sales clerk at the run-down store mentions that the paperclips are really good for tinkering with machines when bent in a certain shape. Near the end, Allan bends one paperclip in that exact shape so that he can disable Mr. Landlord's explosive vest, which lead to him to commit Seppuku." data-video-title="Paperclip Tinkering" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4nsngm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4nsngm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4nsngm.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/control_v_2_738.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="Main/DraggedOffToHell,Main/DrivenToSuicide,Main/Seppuku,Recap/SmilingFriendsS2E3AAllanAdventure,WesternAnimation/SmilingFriends" 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://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/control_v_2_738.png" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4nsngm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4nsngm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4nsngm.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">Paperclip Tinkering</h2> <p class="_pmvv-vidbox-descTxt"> Near the start of Allan's adventure, the elderly sales clerk at the run-down store mentions that the paperclips are really good for tinkering with machines when bent in a certain shape. Near the end, Allan bends one paperclip in that exact shape so that he can disable Mr. Landlord's explosive vest, which lead to him to commit Seppuku. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="s93vkx" data-video-descrip="Caramel Arrow Cookie, No!!!" data-video-title="Jelly Bees" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/s93vkx_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/s93vkx.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/s93vkx.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s93vkx.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigNo,Main/BreakThemByTalking,Main/EvilLaugh,Main/ManipulativeBastard,Main/OhCrap,VideoGame/CookieRunKingdom,WebAnimation/CookieRunKingdomLastCookieStanding" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s93vkx.jpg"> <p><span class="bold">Jelly Bees</span></p> </a> <a href="#video-link" data-video-id="dev2gy" data-video-descrip="Matthew gives a gold-plated derringer to Mickey, who gives it to his wife Ros, who uses it against Dry-Eye's henchmen. Spoiler: She's a crack shot." data-video-title="It's a &quot;paperweight.&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dev2gy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dev2gy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dev2gy.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/the_gentlemen_chekhovs_gun_frame_at_0m9s.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/TheGentlemen,Main/BlingBlingBang,Main/InsistentTerminology,Main/LittleUselessGun" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/the_gentlemen_chekhovs_gun_frame_at_0m9s.jpg"> <p><span class="bold">It's a "paperwe...</span></p> </a> <a href="#video-link" data-video-id="i0t0az" data-video-descrip="This book that Twilight refused to read because the title was &amp;quot;just a bunch of hooey&amp;quot; turned out to be the exact one needed to get rid of the girls' &amp;quot;curse&amp;quot;." data-video-title="Supernaturals" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/i0t0az_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/i0t0az.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/i0t0az.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/i0t0az.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CouldHaveAvoidedThisPlot,Main/ItWasWithYouAllAlong,Main/LiteralMetaphor,Main/TheProblemWithPenIsland,Recap/MyLittlePonyFriendshipIsMagicS1E9BridleGossip,WesternAnimation/MyLittlePonyFriendshipIsMagic" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/i0t0az.jpg"> <p><span class="bold">Supernaturals</span></p> </a> <a href="#video-link" data-video-id="ba9jxp" data-video-descrip="As the gang was going to be ground up into chunks, they realized that the only way out was with &amp;quot;The answer to all life's problems&amp;quot;." data-video-title="Popcorn" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ba9jxp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ba9jxp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ba9jxp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ba9jxp.jpg" data-video-trope="Main/OutOfControlPopcorn" data-video-tropename="Out-of-Control Popcorn" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ChekhovsGun,Main/EurekaMoment,Main/SolarPoweredMagnifyingGlass,WesternAnimation/ChickenRunDawnOfTheNugget" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ba9jxp.jpg"> <p><span class="bold">Popcorn</span></p> </a> <a href="#video-link" data-video-id="vg4yzn" data-video-descrip="Earlier in the episode, Thomas travels quickly and bumpily, causing his load of milk to almost turn into butter. Those milk churns later come in handy when the bakery needs butter to make their party cakes." data-video-title="Thomas' Milkshake Muddle" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vg4yzn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vg4yzn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vg4yzn.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vg4yzn.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/EurekaMoment,Recap/ThomasAndFriendsS9E4ThomasMilkshakeMuddle,WesternAnimation/ThomasAndFriends" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vg4yzn.jpg"> <p><span class="bold">Thomas' Milksha...</span></p> </a> <a href="#video-link" data-video-id="ae3ghg" data-video-descrip="At the beginning of Roger van der Weide's Sonic Heroes parody, Tails and Knuckles jump off the Tornado 2 as it spirals out of control, with Knuckles assuring that it'll land fine and is mostly forgotten about for the rest of the animation, until it comes back in the climax and hits one of Metal Overlord's eyes, proving Knuckles right in the end." data-video-title="Heroes in Minutes: Tornado 2" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ae3ghg_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ae3ghg.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ae3ghg.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ae3ghg.jpg" data-video-trope="Main/BrickJoke" data-video-tropename="Brick Joke" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ChekhovsGun,VideoGame/SonicHeroes,WebAnimation/SonicInXMinutes" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ae3ghg.jpg"> <p><span class="bold">Heroes in Minut...</span></p> </a> <a href="#video-link" data-video-id="q7x37b" data-video-descrip="Locarno threatens to use the Genesis Device as a weapon to make sure the other galactic powers don't attack his nascent organization. " data-video-title="Ferengi Genesis Device" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/q7x37b_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/q7x37b.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/q7x37b.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/stld_s4e10_ferengi_genesis_device.png" data-video-trope="Main/DoomsdayDevice" data-video-tropename="Doomsday Device" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CashGate,Main/ChekhovsGun,Main/FailsafeFailure,Main/HoistByHisOwnPetard,Main/KilledMidSentence,Main/NoMacGuffinNoWinner,Main/SaveTheVillain,Main/TeleportationRescue,Recap/StarTrekLowerDecksS4E10OldFriendsNewPlanets,WesternAnimation/StarTrekLowerDecks" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/stld_s4e10_ferengi_genesis_device.png"> <p><span class="bold">Ferengi Genesis...</span></p> </a> <a href="#video-link" data-video-id="xfy41z" data-video-descrip="Janet tells her friend Steve that she's reduced her boyfriend standards from a list of positive traits to just one; a guy who will &amp;quot;bless&amp;quot; her when she sneezes. When her current boyfriend Cliff fails to do so, she breaks up with him and resists his efforts to win her back. When he &amp;quot;blesses&amp;quot; her at the end she realizes that he has changed, and they get back together." data-video-title="Chekhov's Sneeze" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/xfy41z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/xfy41z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/xfy41z.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/singles_checkovs_gun_moment.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/Singles,Main/LoveEpiphany" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/singles_checkovs_gun_moment.jpg"> <p><span class="bold">Chekhov's Sneeze</span></p> </a> <a href="#video-link" data-video-id="37wpmc" data-video-descrip="JGSDF forces pursue, ambush, and destroy a tank Labor that went berserk during testing and was headed towards a populated area while the opening credits roll on Patlabor: The Movie. The tank turns out to be empty, setting up the core mystery of the film." data-video-title="The JGSDF Fights the Tank" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/37wpmc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/37wpmc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/37wpmc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/37wpmc.jpg" data-video-trope="Main/ActionPrologue" data-video-tropename="Action Prologue" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/PatlaborTheMovie,Main/ChekhovsGun,Main/MoreDakka,Main/SpiderTank" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/37wpmc.jpg"> <p><span class="bold">The JGSDF Fight...</span></p> </a> <a href="#video-link" data-video-id="sa9dh1" data-video-descrip="Kevin accidentally steps on Liam's SwordStorm figurine and warns him to stop leaving his sharp figurines on the floor. His sharp figurines comes in handy when the Tall Poppy accidentally steps on a larger version of the figurine which hurts his foot and he falls over." data-video-title="SwordStorm Figurine" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/sa9dh1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/sa9dh1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/sa9dh1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sa9dh1.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/KoalaManS1E01BinDay,WesternAnimation/KoalaMan,Main/AgonyOfTheFeet" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sa9dh1.jpg"> <p><span class="bold">SwordStorm Figu...</span></p> </a> <a href="#video-link" data-video-id="l64gii" data-video-descrip="While fighting O'Malley, Donut throws a grenade, which apparently goes wide. A couple minutes later, it turns out he'd tossed it so that he could later intercept it with a time portal, bringing it back into the fight." data-video-title="Donut didn't miss" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l64gii_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l64gii.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l64gii.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l64gii.jpg" data-video-trope="Main/ExactlyWhatIAimedAt" data-video-tropename="Exactly What I Aimed At" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ChekhovsGun,Main/TeleportGun,Main/WeaponizedTeleportation,Recap/RedVsBlueS16E15Paradox,WebAnimation/RedVsBlue,WebAnimation/RedVsBlueTheShisnoTrilogy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l64gii.jpg"> <p><span class="bold">Donut didn't miss</span></p> </a> <a href="#video-link" data-video-id="e7o2ou" data-video-descrip="Silver Fist is shown playing around with his magnetic fishing game during his investigation. He would later find the Cat's hideout by tying one of the fish to his tail in order to track him." data-video-title="Silver Fist Going Fishing" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e7o2ou_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e7o2ou.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e7o2ou.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cotc_4x25_silver_fist_goes_fishing.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/CraigOfTheCreekS4E25SilverFistReturns,WesternAnimation/CraigOfTheCreek" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cotc_4x25_silver_fist_goes_fishing.png"> <p><span class="bold">Silver Fist Goi...</span></p> </a> <a href="#video-link" data-video-id="iol5l9" data-video-descrip="Prior to ditching class, Mrs. Puff hands SpongeBob a bathroom key which he must return once he comes back. Later, SpongeBob remembers he never returned the bathroom key, which saves him from his Disney Death in the tar pits." data-video-title="The bathroom key" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/iol5l9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/iol5l9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/iol5l9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iol5l9.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/DisneyDeath,Main/PottyEmergency,Recap/SpongeBobSquarePantsS6E14DearVikingsDitchin,WesternAnimation/SpongeBobSquarePants,Main/QuicksandSucks" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iol5l9.jpg"> <p><span class="bold">The bathroom key</span></p> </a> <a href="#video-link" data-video-id="hljqp5" data-video-descrip="The &amp;quot;Let's Watch Food Rot&amp;quot; segment on iCarly becomes an important plot point when Gibby is about to fight Freddie; the camera used to record the rotting sandwich also recorded Tasha tripping and plowing Freddie to the ground, and Freddie uses this footage to prove to Gibby that he's innocent." data-video-title="Rotting Sandwich Cam" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hljqp5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hljqp5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hljqp5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hljqp5.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Series/ICarly,Main/JerkassRealization,Main/WhamLine,Main/EurekaMoment,Main/CaughtOnTape" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hljqp5.jpg"> <p><span class="bold">Rotting Sandwic...</span></p> </a> <a href="#video-link" data-video-id="v4w7ke" data-video-descrip="Paige is willing to offer Helen her jowl tightener to give to Bitsy if she lets her look through Bitsy phone for incriminating evidences, but despite Bitsy's being awful to her and is more than happy to get back at her, Helen sacrificed too much happiness to risk losing Bitsy's trust in her and getting a chance to be in her will." data-video-title="Paige Meets Helen" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/v4w7ke_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/v4w7ke.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/v4w7ke.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e13_paige_meets_helen.png" data-video-trope="Main/MyMasterRightOrWrong" data-video-tropename="My Master, Right or Wrong" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ChekhovsGun,Recap/CentralParkS2E13CelesteWeForget,WesternAnimation/CentralPark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e13_paige_meets_helen.png"> <p><span class="bold">Paige Meets Helen</span></p> </a> <a href="#video-link" data-video-id="kypry6" data-video-descrip="After thoroughly thrashing Tai Lung, Po defeats the leopard with the legendary Wuxi Finger Hold." data-video-title="I'm THE Big Fat Panda" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/kypry6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/kypry6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/kypry6.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kypry6.jpg" data-video-trope="Main/FingerPokeOfDoom" data-video-tropename="Finger Poke of Doom" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ChekhovsGun,Main/DistantReactionShot,Main/IAmWhatIAm,Main/InsultBackfire,Main/SpellMyNameWithAThe,Main/ThisCannotBe,WesternAnimation/KungFuPanda1,Main/TouchOfDeath" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kypry6.jpg"> <p><span class="bold">I'm THE Big Fat...</span></p> </a> <a href="#video-link" data-video-id="ozx0qu" data-video-descrip="Among the things Wolf has at Tusk's bachelor party include a cake that Ham baked with a special surprise inside for Tusk, an inflatable bouncy slide for Moon, and laser light dubstep show for the finale. These things would later help them out when smugglers take over Beef's boat." data-video-title="Important Party Stuff" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ozx0qu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ozx0qu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ozx0qu.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/tgn_2x09_important_party_stuff.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/TheGreatNorthS2E09FromTuskTilDawnAdventure,WesternAnimation/TheGreatNorth" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/tgn_2x09_important_party_stuff.png"> <p><span class="bold">Important Party...</span></p> </a> <a href="#video-link" data-video-id="lmpgmm" data-video-descrip="The leftover shard of the Moonstone from Rapunzel's battle with Cassandra gives her just enough power to take down Zhan Tiri." data-video-title="The Moonstone Shard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lmpgmm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lmpgmm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lmpgmm.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lmpgmm.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/TangledTheSeries,Recap/TangledTheSeriesS3E17PlusEstEnVous" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lmpgmm.jpg"> <p><span class="bold">The Moonstone S...</span></p> </a> <a href="#video-link" data-video-id="761xl4" data-video-descrip="The friendship medallion Jack gave Kyle at the beginning of the episode is what protects Kyle from the burglar's gun-shot, being made of bullet-proof lead." data-video-title="Friendship Medallion" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/761xl4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/761xl4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/761xl4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/761xl4.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/TenaciousDS1E1TheSearchForInspiradoAngelInDisgui,Series/TenaciousD" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/761xl4.jpg"> <p><span class="bold">Friendship Meda...</span></p> </a> <a href="#video-link" data-video-id="f4kpnf" data-video-descrip="The seashell, or &amp;quot;best friend rock&amp;quot;, that Arlo shares with Bertie as a friendship present, is what allows her to find him later on when he undergoes a Heroic BSOD." data-video-title="Arlo's &quot;Best Friend Rock&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f4kpnf_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f4kpnf.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f4kpnf.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4kpnf.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/ArloTheAlligatorBoy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4kpnf.jpg"> <p><span class="bold">Arlo's "Best Fr...</span></p> </a> <a href="#video-link" data-video-id="hvo32d" data-video-descrip="Qwark shows off the Groovitron when he, Ratchet, and Clank go to the weapons vault. Later, Ratchet uses it to subdue the attacking pizza toppings and Nefarious' minions." data-video-title="The Groovitron" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hvo32d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hvo32d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hvo32d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvo32d.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/RatchetAndClankLifeOfPie" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvo32d.jpg"> <p><span class="bold">The Groovitron</span></p> </a> <a href="#video-link" data-video-id="fnatvk" data-video-descrip="All of the gifts given to the Mane Six minus Twilight over the course of the season are revealed to be the keys to the crystal chest." data-video-title="The first five keys" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fnatvk_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fnatvk.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fnatvk.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fnatvk.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/MyLittlePonyFriendshipIsMagicS4E25TwilightsKingdomPart1,WesternAnimation/MyLittlePonyFriendshipIsMagic" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fnatvk.jpg"> <p><span class="bold">The first five ...</span></p> </a> <a href="#video-link" data-video-id="2o8g6c" data-video-descrip="Remember the fish that Fly examined at the beginning of the movie? Well, it manages Aunt Anna stepped on it by accident." data-video-title="Californian Flyfish" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2o8g6c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2o8g6c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2o8g6c.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2o8g6c.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/HelpImAFish" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2o8g6c.jpg"> <p><span class="bold">Californian Fly...</span></p> </a> <a href="#video-link" data-video-id="rx7nbz" data-video-descrip="Aeon's Ring is established as the only thing capable of defeating Malachite. it is later revealed to be Ma-Ti's Heart Ring." data-video-title="Aeon's Ring" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rx7nbz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rx7nbz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rx7nbz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rx7nbz.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/SuburbanKnights" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rx7nbz.jpg"> <p><span class="bold">Aeon's Ring</span></p> </a> <a href="#video-link" data-video-id="srnwwv" data-video-descrip="While a hotel staff brings Paige and Molly to their room, the staff explains what a dumbwaiter. Later on when Anya runs away from her wedding, Molly walks past the dumbwaiter and hears Anya calling out for help when she gets stuck inside and Molly frees her." data-video-title="Important Dumbwaiter" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/srnwwv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/srnwwv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/srnwwv.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cp_important_dumbwaiter.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/CentralParkS1E6RivalBusker,WesternAnimation/CentralPark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cp_important_dumbwaiter.png"> <p><span class="bold">Important Dumbw...</span></p> </a> <a href="#video-link" data-video-id="135tjg" data-video-descrip="Cole takes a sausage from his father's plate, and Birdie tells the audience to follow the sausage because it's a link to something." data-video-title="Follow the Sausage" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/135tjg_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/135tjg.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/135tjg.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/135tjg.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/CentralParkS1E1EpisodeOne,WesternAnimation/CentralPark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/135tjg.jpg"> <p><span class="bold">Follow the Sausage</span></p> </a> <a href="#video-link" data-video-id="e8tnsa" data-video-descrip="Both lampshaded and parodied throughout Season 3. Mr. Peanutbutter buys several boxes filled with spaghetti strainers, for a show, he never makes. Despite this, and the strainers taking up space all over his house, he keeps them around, for a huge payoff he knows will happen eventually. Sure enough, when Pacific Ocean City, is about to be destroyed by tons of spaghetti, guess what ends up saving the day?" data-video-title="The Spaghetti Strainers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e8tnsa_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e8tnsa.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e8tnsa.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8tnsa.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/BojackHorseman" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8tnsa.jpg"> <p><span class="bold">The Spaghetti S...</span></p> </a> <a href="#video-link" data-video-id="g4mvtc" data-video-descrip="Lampshaded &amp;amp; subverted. When Gaz first pulls out the ham, a sudden narrator instructs the audience to remember it, as it'll make a return later. It does indeed return during the climax, in epic fashion...but only to be nonchalantly thrown at Zim." data-video-title="HAAAAAM!" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/g4mvtc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/g4mvtc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/g4mvtc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g4mvtc.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/InvaderZimEnterTheFlorpus" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g4mvtc.jpg"> <p><span class="bold">HAAAAAM!</span></p> </a> <a href="#video-link" data-video-id="0k54yz" data-video-descrip="The bundle of fireworks Luz was planning to use in her crazy book report comes in handy during her fight against Warden Wrath." data-video-title="Luz's Firecrackers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0k54yz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0k54yz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0k54yz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0k54yz.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/TheOwlHouse,Recap/TheOwlHouseS1E1ALyingWitchAndAWarden" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0k54yz.jpg"> <p><span class="bold">Luz's Firecrackers</span></p> </a> <a href="#video-link" data-video-id="9w9oz4" data-video-descrip="Not wanting to get his hands cut, the thief uses some backscratchers he stole early in the film to fool the guards and the public into thinking that his actual hands were cut" data-video-title="The Thief's backscratchers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9w9oz4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9w9oz4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9w9oz4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9w9oz4.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/TheThiefAndTheCobbler" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9w9oz4.jpg"> <p><span class="bold">The Thief's bac...</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>This Will Be A Plot Point Later</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/CardiovascularLove">Cardiovascular Love</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/UniversalTropes">Universal Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ClosedCircle">Closed Circle</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BerserkButton">Berserk Button</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexMeansTrouble">This Index Means Trouble</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ContaminationSituation">Contamination Situation</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CanonWelding">Canon Welding</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorSpeak">Creator Speak</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Corpsing">Corpsing</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BugsHeraldEvil">Bugs Herald Evil</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexWillBeImportantLater">This Index Will Be Important Later</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovsArmoury">Chekhov's Armoury</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterFocus">Character Focus</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LitClassTropes">Lit. Class Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ClassicalAntihero">Classical Anti-Hero</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovsGift">Chekhov's Gift</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas">Laws and Formulas</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovsGunman">Chekhov's Gunman</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterCatchphrase">Character Catchphrase</a> </li> <li> <a href="/pmwiki/pmwiki.php/Pt/IndiceDeTraducao">Pt/Índice de Tradução</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChickMagnet">Chick Magnet</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CharlesAtlasSuperpower">Charles Atlas Superpower</a> </li> <li> <a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">JustForFun/Tropes of Legend</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheChessmaster">The Chessmaster</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterNameAndTheNounPhrase">Character Name and the Noun Phrase</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SelfDemonstratingArticle">Self-Demonstrating Article</a> </li> <li> <a href="/pmwiki/pmwiki.php/WebVideo/CinemaSins">CinemaSins</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CheatedDeathDiedAnyway">Cheated Death, Died Anyway</a> </li> <li> <a href="/pmwiki/pmwiki.php/TruthInTelevision/AToC">TruthInTelevision/A to C</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovsClassroom">Chekhov's Classroom</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Creator/AntonChekhov">Anton Chekhov</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Creators">QuoteSource/Creators</a> </li> <li> <a href="/pmwiki/pmwiki.php/TabletopGame/Chess">Chess</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CheckPlease">Check, Please!</a> </li> <li> <a href="/pmwiki/pmwiki.php/TimeImmemorial/TropesAToG">TimeImmemorial/Tropes A to G</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovsGunman">Chekhov's Gunman</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CheesyMoon">Cheesy Moon</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesZeroToD">WeAreNotAlone/Tropes 0 to D</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChewbaccaDefense">Chewbacca Defense</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ArtifactOfHope">Artifact of Hope</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PlotDevice">Plot Device</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ConvenientEclipse">Convenient Eclipse</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ActionSurvivor">Action Survivor</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/LiveActionFilmsMToZ">ImageSource/Live-Action Films (M to Z)</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PretendWereDead">Pretend We're Dead</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BoomStick">Boom Stick</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexIsNotAnExample">This Index Is Not an Example</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovMIA">Chekhov M.I.A.</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-4nsngm" data-video-image="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/control_v_2_738.png" data-video-title="Paperclip Tinkering" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4nsngm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4nsngm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4nsngm.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">Paperclip Tinkering</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Near the start of Allan's adventure, the elderly sales clerk at the run-down store mentions that the paperclips are really good for tinkering with machines when bent in a certain shape. Near the end, Allan bends one paperclip in that exact shape so that he can disable Mr. Landlord's explosive vest, which lead to him to commit Seppuku. </p> <div class="rating-row" data-video-id="4nsngm" > <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"> 5 (13 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / ChekhovsGun</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="4nsngm" data-vimeo-id="" data-video-descrip="Near the start of Allan's adventure, the elderly sales clerk at the run-down store mentions that the paperclips are really good for tinkering with machines when bent in a certain shape. Near the end, Allan bends one paperclip in that exact shape so that he can disable Mr. Landlord's explosive vest, which lead to him to commit Seppuku." data-video-title="Paperclip Tinkering" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4nsngm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4nsngm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4nsngm.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_738.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="Main/DraggedOffToHell,Main/DrivenToSuicide,Main/Seppuku,Recap/SmilingFriendsS2E3AAllanAdventure,WesternAnimation/SmilingFriends" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/control_v_2_738.png"> <p><span class="bold">Paperclip Tinke...</span></p> </a> <a href="#video-link" data-video-id="s93vkx" data-vimeo-id="" data-video-descrip="Caramel Arrow Cookie, No!!!" data-video-title="Jelly Bees" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/s93vkx_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/s93vkx.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/s93vkx.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s93vkx.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Main/BigNo,Main/BreakThemByTalking,Main/EvilLaugh,Main/ManipulativeBastard,Main/OhCrap,VideoGame/CookieRunKingdom,WebAnimation/CookieRunKingdomLastCookieStanding" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s93vkx.jpg"> <p><span class="bold">Jelly Bees</span></p> </a> <a href="#video-link" data-video-id="dev2gy" data-vimeo-id="" data-video-descrip="Matthew gives a gold-plated derringer to Mickey, who gives it to his wife Ros, who uses it against Dry-Eye's henchmen. Spoiler: She's a crack shot." data-video-title="It's a &quot;paperweight.&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dev2gy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dev2gy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dev2gy.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/the_gentlemen_chekhovs_gun_frame_at_0m9s.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Film/TheGentlemen,Main/BlingBlingBang,Main/InsistentTerminology,Main/LittleUselessGun" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/the_gentlemen_chekhovs_gun_frame_at_0m9s.jpg"> <p><span class="bold">It's a "paperwe...</span></p> </a> <a href="#video-link" data-video-id="i0t0az" data-vimeo-id="" data-video-descrip="This book that Twilight refused to read because the title was &amp;quot;just a bunch of hooey&amp;quot; turned out to be the exact one needed to get rid of the girls' &amp;quot;curse&amp;quot;." data-video-title="Supernaturals" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/i0t0az_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/i0t0az.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/i0t0az.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/i0t0az.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="3.75" data-video-rating-count="8" data-video-media-sources="Main/CouldHaveAvoidedThisPlot,Main/ItWasWithYouAllAlong,Main/LiteralMetaphor,Main/TheProblemWithPenIsland,Recap/MyLittlePonyFriendshipIsMagicS1E9BridleGossip,WesternAnimation/MyLittlePonyFriendshipIsMagic" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/i0t0az.jpg"> <p><span class="bold">Supernaturals</span></p> </a> <a href="#video-link" data-video-id="ba9jxp" data-vimeo-id="" data-video-descrip="As the gang was going to be ground up into chunks, they realized that the only way out was with &amp;quot;The answer to all life's problems&amp;quot;." data-video-title="Popcorn" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ba9jxp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ba9jxp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ba9jxp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ba9jxp.jpg" data-video-trope="Main/OutOfControlPopcorn" data-video-tropename="Out-of-Control Popcorn" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="15" data-video-media-sources="Main/ChekhovsGun,Main/EurekaMoment,Main/SolarPoweredMagnifyingGlass,WesternAnimation/ChickenRunDawnOfTheNugget" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ba9jxp.jpg"> <p><span class="bold">Popcorn</span></p> </a> <a href="#video-link" data-video-id="vg4yzn" data-vimeo-id="" data-video-descrip="Earlier in the episode, Thomas travels quickly and bumpily, causing his load of milk to almost turn into butter. Those milk churns later come in handy when the bakery needs butter to make their party cakes." data-video-title="Thomas' Milkshake Muddle" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vg4yzn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vg4yzn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vg4yzn.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vg4yzn.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="2.50" data-video-rating-count="4" data-video-media-sources="Main/EurekaMoment,Recap/ThomasAndFriendsS9E4ThomasMilkshakeMuddle,WesternAnimation/ThomasAndFriends" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vg4yzn.jpg"> <p><span class="bold">Thomas' Milksha...</span></p> </a> <a href="#video-link" data-video-id="ae3ghg" data-vimeo-id="" data-video-descrip="At the beginning of Roger van der Weide's Sonic Heroes parody, Tails and Knuckles jump off the Tornado 2 as it spirals out of control, with Knuckles assuring that it'll land fine and is mostly forgotten about for the rest of the animation, until it comes back in the climax and hits one of Metal Overlord's eyes, proving Knuckles right in the end." data-video-title="Heroes in Minutes: Tornado 2" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ae3ghg_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ae3ghg.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ae3ghg.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ae3ghg.jpg" data-video-trope="Main/BrickJoke" data-video-tropename="Brick Joke" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/ChekhovsGun,VideoGame/SonicHeroes,WebAnimation/SonicInXMinutes" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ae3ghg.jpg"> <p><span class="bold">Heroes in Minut...</span></p> </a> <a href="#video-link" data-video-id="q7x37b" data-vimeo-id="" data-video-descrip="Locarno threatens to use the Genesis Device as a weapon to make sure the other galactic powers don't attack his nascent organization. " data-video-title="Ferengi Genesis Device" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/q7x37b_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/q7x37b.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/q7x37b.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/stld_s4e10_ferengi_genesis_device.png" data-video-trope="Main/DoomsdayDevice" data-video-tropename="Doomsday Device" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.88" data-video-rating-count="16" data-video-media-sources="Main/CashGate,Main/ChekhovsGun,Main/FailsafeFailure,Main/HoistByHisOwnPetard,Main/KilledMidSentence,Main/NoMacGuffinNoWinner,Main/SaveTheVillain,Main/TeleportationRescue,Recap/StarTrekLowerDecksS4E10OldFriendsNewPlanets,WesternAnimation/StarTrekLowerDecks" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/stld_s4e10_ferengi_genesis_device.png"> <p><span class="bold">Ferengi Genesis...</span></p> </a> <a href="#video-link" data-video-id="xfy41z" data-vimeo-id="" data-video-descrip="Janet tells her friend Steve that she's reduced her boyfriend standards from a list of positive traits to just one; a guy who will &amp;quot;bless&amp;quot; her when she sneezes. When her current boyfriend Cliff fails to do so, she breaks up with him and resists his efforts to win her back. When he &amp;quot;blesses&amp;quot; her at the end she realizes that he has changed, and they get back together." data-video-title="Chekhov's Sneeze" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/xfy41z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/xfy41z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/xfy41z.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/singles_checkovs_gun_moment.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Film/Singles,Main/LoveEpiphany" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/singles_checkovs_gun_moment.jpg"> <p><span class="bold">Chekhov's Sneeze</span></p> </a> <a href="#video-link" data-video-id="37wpmc" data-vimeo-id="" data-video-descrip="JGSDF forces pursue, ambush, and destroy a tank Labor that went berserk during testing and was headed towards a populated area while the opening credits roll on Patlabor: The Movie. The tank turns out to be empty, setting up the core mystery of the film." data-video-title="The JGSDF Fights the Tank" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/37wpmc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/37wpmc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/37wpmc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/37wpmc.jpg" data-video-trope="Main/ActionPrologue" data-video-tropename="Action Prologue" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Anime/PatlaborTheMovie,Main/ChekhovsGun,Main/MoreDakka,Main/SpiderTank" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/37wpmc.jpg"> <p><span class="bold">The JGSDF Fight...</span></p> </a> <a href="#video-link" data-video-id="sa9dh1" data-vimeo-id="" data-video-descrip="Kevin accidentally steps on Liam's SwordStorm figurine and warns him to stop leaving his sharp figurines on the floor. His sharp figurines comes in handy when the Tall Poppy accidentally steps on a larger version of the figurine which hurts his foot and he falls over." data-video-title="SwordStorm Figurine" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/sa9dh1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/sa9dh1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/sa9dh1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sa9dh1.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Recap/KoalaManS1E01BinDay,WesternAnimation/KoalaMan,Main/AgonyOfTheFeet" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sa9dh1.jpg"> <p><span class="bold">SwordStorm Figu...</span></p> </a> <a href="#video-link" data-video-id="l64gii" data-vimeo-id="" data-video-descrip="While fighting O'Malley, Donut throws a grenade, which apparently goes wide. A couple minutes later, it turns out he'd tossed it so that he could later intercept it with a time portal, bringing it back into the fight." data-video-title="Donut didn't miss" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l64gii_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l64gii.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l64gii.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l64gii.jpg" data-video-trope="Main/ExactlyWhatIAimedAt" data-video-tropename="Exactly What I Aimed At" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="Main/ChekhovsGun,Main/TeleportGun,Main/WeaponizedTeleportation,Recap/RedVsBlueS16E15Paradox,WebAnimation/RedVsBlue,WebAnimation/RedVsBlueTheShisnoTrilogy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l64gii.jpg"> <p><span class="bold">Donut didn't miss</span></p> </a> <a href="#video-link" data-video-id="e7o2ou" data-vimeo-id="" data-video-descrip="Silver Fist is shown playing around with his magnetic fishing game during his investigation. He would later find the Cat's hideout by tying one of the fish to his tail in order to track him." data-video-title="Silver Fist Going Fishing" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e7o2ou_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e7o2ou.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e7o2ou.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cotc_4x25_silver_fist_goes_fishing.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="Recap/CraigOfTheCreekS4E25SilverFistReturns,WesternAnimation/CraigOfTheCreek" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cotc_4x25_silver_fist_goes_fishing.png"> <p><span class="bold">Silver Fist Goi...</span></p> </a> <a href="#video-link" data-video-id="iol5l9" data-vimeo-id="" data-video-descrip="Prior to ditching class, Mrs. Puff hands SpongeBob a bathroom key which he must return once he comes back. Later, SpongeBob remembers he never returned the bathroom key, which saves him from his Disney Death in the tar pits." data-video-title="The bathroom key" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/iol5l9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/iol5l9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/iol5l9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iol5l9.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.80" data-video-rating-count="10" data-video-media-sources="Main/DisneyDeath,Main/PottyEmergency,Recap/SpongeBobSquarePantsS6E14DearVikingsDitchin,WesternAnimation/SpongeBobSquarePants,Main/QuicksandSucks" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iol5l9.jpg"> <p><span class="bold">The bathroom key</span></p> </a> <a href="#video-link" data-video-id="hljqp5" data-vimeo-id="" data-video-descrip="The &amp;quot;Let's Watch Food Rot&amp;quot; segment on iCarly becomes an important plot point when Gibby is about to fight Freddie; the camera used to record the rotting sandwich also recorded Tasha tripping and plowing Freddie to the ground, and Freddie uses this footage to prove to Gibby that he's innocent." data-video-title="Rotting Sandwich Cam" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hljqp5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hljqp5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hljqp5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hljqp5.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="6" data-video-media-sources="Series/ICarly,Main/JerkassRealization,Main/WhamLine,Main/EurekaMoment,Main/CaughtOnTape" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hljqp5.jpg"> <p><span class="bold">Rotting Sandwic...</span></p> </a> <a href="#video-link" data-video-id="v4w7ke" data-vimeo-id="" data-video-descrip="Paige is willing to offer Helen her jowl tightener to give to Bitsy if she lets her look through Bitsy phone for incriminating evidences, but despite Bitsy's being awful to her and is more than happy to get back at her, Helen sacrificed too much happiness to risk losing Bitsy's trust in her and getting a chance to be in her will." data-video-title="Paige Meets Helen" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/v4w7ke_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/v4w7ke.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/v4w7ke.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e13_paige_meets_helen.png" data-video-trope="Main/MyMasterRightOrWrong" data-video-tropename="My Master, Right or Wrong" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/ChekhovsGun,Recap/CentralParkS2E13CelesteWeForget,WesternAnimation/CentralPark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e13_paige_meets_helen.png"> <p><span class="bold">Paige Meets Helen</span></p> </a> <a href="#video-link" data-video-id="kypry6" data-vimeo-id="" data-video-descrip="After thoroughly thrashing Tai Lung, Po defeats the leopard with the legendary Wuxi Finger Hold." data-video-title="I'm THE Big Fat Panda" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/kypry6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/kypry6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/kypry6.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kypry6.jpg" data-video-trope="Main/FingerPokeOfDoom" data-video-tropename="Finger Poke of Doom" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="47" data-video-media-sources="Main/ChekhovsGun,Main/DistantReactionShot,Main/IAmWhatIAm,Main/InsultBackfire,Main/SpellMyNameWithAThe,Main/ThisCannotBe,WesternAnimation/KungFuPanda1,Main/TouchOfDeath" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kypry6.jpg"> <p><span class="bold">I'm THE Big Fat...</span></p> </a> <a href="#video-link" data-video-id="ozx0qu" data-vimeo-id="" data-video-descrip="Among the things Wolf has at Tusk's bachelor party include a cake that Ham baked with a special surprise inside for Tusk, an inflatable bouncy slide for Moon, and laser light dubstep show for the finale. These things would later help them out when smugglers take over Beef's boat." data-video-title="Important Party Stuff" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ozx0qu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ozx0qu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ozx0qu.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/tgn_2x09_important_party_stuff.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/TheGreatNorthS2E09FromTuskTilDawnAdventure,WesternAnimation/TheGreatNorth" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/tgn_2x09_important_party_stuff.png"> <p><span class="bold">Important Party...</span></p> </a> <a href="#video-link" data-video-id="lmpgmm" data-vimeo-id="" data-video-descrip="The leftover shard of the Moonstone from Rapunzel's battle with Cassandra gives her just enough power to take down Zhan Tiri." data-video-title="The Moonstone Shard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lmpgmm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lmpgmm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lmpgmm.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lmpgmm.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="WesternAnimation/TangledTheSeries,Recap/TangledTheSeriesS3E17PlusEstEnVous" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lmpgmm.jpg"> <p><span class="bold">The Moonstone S...</span></p> </a> <a href="#video-link" data-video-id="761xl4" data-vimeo-id="" data-video-descrip="The friendship medallion Jack gave Kyle at the beginning of the episode is what protects Kyle from the burglar's gun-shot, being made of bullet-proof lead." data-video-title="Friendship Medallion" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/761xl4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/761xl4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/761xl4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/761xl4.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="1" data-video-media-sources="Recap/TenaciousDS1E1TheSearchForInspiradoAngelInDisgui,Series/TenaciousD" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/761xl4.jpg"> <p><span class="bold">Friendship Meda...</span></p> </a> <a href="#video-link" data-video-id="f4kpnf" data-vimeo-id="" data-video-descrip="The seashell, or &amp;quot;best friend rock&amp;quot;, that Arlo shares with Bertie as a friendship present, is what allows her to find him later on when he undergoes a Heroic BSOD." data-video-title="Arlo's &quot;Best Friend Rock&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f4kpnf_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f4kpnf.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f4kpnf.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4kpnf.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/ArloTheAlligatorBoy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f4kpnf.jpg"> <p><span class="bold">Arlo's "Best Fr...</span></p> </a> <a href="#video-link" data-video-id="hvo32d" data-vimeo-id="" data-video-descrip="Qwark shows off the Groovitron when he, Ratchet, and Clank go to the weapons vault. Later, Ratchet uses it to subdue the attacking pizza toppings and Nefarious' minions." data-video-title="The Groovitron" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hvo32d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hvo32d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hvo32d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvo32d.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="WesternAnimation/RatchetAndClankLifeOfPie" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvo32d.jpg"> <p><span class="bold">The Groovitron</span></p> </a> <a href="#video-link" data-video-id="fnatvk" data-vimeo-id="" data-video-descrip="All of the gifts given to the Mane Six minus Twilight over the course of the season are revealed to be the keys to the crystal chest." data-video-title="The first five keys" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fnatvk_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fnatvk.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fnatvk.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fnatvk.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.00" data-video-rating-count="14" data-video-media-sources="Recap/MyLittlePonyFriendshipIsMagicS4E25TwilightsKingdomPart1,WesternAnimation/MyLittlePonyFriendshipIsMagic" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fnatvk.jpg"> <p><span class="bold">The first five ...</span></p> </a> <a href="#video-link" data-video-id="2o8g6c" data-vimeo-id="" data-video-descrip="Remember the fish that Fly examined at the beginning of the movie? Well, it manages Aunt Anna stepped on it by accident." data-video-title="Californian Flyfish" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2o8g6c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2o8g6c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2o8g6c.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2o8g6c.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="WesternAnimation/HelpImAFish" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2o8g6c.jpg"> <p><span class="bold">Californian Fly...</span></p> </a> <a href="#video-link" data-video-id="rx7nbz" data-vimeo-id="483229704" data-video-descrip="Aeon's Ring is established as the only thing capable of defeating Malachite. it is later revealed to be Ma-Ti's Heart Ring." data-video-title="Aeon's Ring" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rx7nbz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rx7nbz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rx7nbz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rx7nbz.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.27" data-video-rating-count="11" data-video-media-sources="WebVideo/SuburbanKnights" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rx7nbz.jpg"> <p><span class="bold">Aeon's Ring</span></p> </a> <a href="#video-link" data-video-id="srnwwv" data-vimeo-id="443128909" data-video-descrip="While a hotel staff brings Paige and Molly to their room, the staff explains what a dumbwaiter. Later on when Anya runs away from her wedding, Molly walks past the dumbwaiter and hears Anya calling out for help when she gets stuck inside and Molly frees her." data-video-title="Important Dumbwaiter" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/srnwwv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/srnwwv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/srnwwv.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cp_important_dumbwaiter.png" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.00" data-video-rating-count="3" data-video-media-sources="Recap/CentralParkS1E6RivalBusker,WesternAnimation/CentralPark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cp_important_dumbwaiter.png"> <p><span class="bold">Important Dumbw...</span></p> </a> <a href="#video-link" data-video-id="135tjg" data-vimeo-id="429092557" data-video-descrip="Cole takes a sausage from his father's plate, and Birdie tells the audience to follow the sausage because it's a link to something." data-video-title="Follow the Sausage" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/135tjg_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/135tjg.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/135tjg.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/135tjg.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Recap/CentralParkS1E1EpisodeOne,WesternAnimation/CentralPark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/135tjg.jpg"> <p><span class="bold">Follow the Sausage</span></p> </a> <a href="#video-link" data-video-id="e8tnsa" data-vimeo-id="416299961" data-video-descrip="Both lampshaded and parodied throughout Season 3. Mr. Peanutbutter buys several boxes filled with spaghetti strainers, for a show, he never makes. Despite this, and the strainers taking up space all over his house, he keeps them around, for a huge payoff he knows will happen eventually. Sure enough, when Pacific Ocean City, is about to be destroyed by tons of spaghetti, guess what ends up saving the day?" data-video-title="The Spaghetti Strainers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e8tnsa_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e8tnsa.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e8tnsa.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8tnsa.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="WesternAnimation/BojackHorseman" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8tnsa.jpg"> <p><span class="bold">The Spaghetti S...</span></p> </a> <a href="#video-link" data-video-id="g4mvtc" data-vimeo-id="405516522" data-video-descrip="Lampshaded &amp;amp; subverted. When Gaz first pulls out the ham, a sudden narrator instructs the audience to remember it, as it'll make a return later. It does indeed return during the climax, in epic fashion...but only to be nonchalantly thrown at Zim." data-video-title="HAAAAAM!" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/g4mvtc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/g4mvtc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/g4mvtc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g4mvtc.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="28" data-video-media-sources="WesternAnimation/InvaderZimEnterTheFlorpus" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g4mvtc.jpg"> <p><span class="bold">HAAAAAM!</span></p> </a> <a href="#video-link" data-video-id="0k54yz" data-vimeo-id="384302385" data-video-descrip="The bundle of fireworks Luz was planning to use in her crazy book report comes in handy during her fight against Warden Wrath." data-video-title="Luz's Firecrackers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0k54yz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0k54yz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0k54yz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0k54yz.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.46" data-video-rating-count="24" data-video-media-sources="WesternAnimation/TheOwlHouse,Recap/TheOwlHouseS1E1ALyingWitchAndAWarden" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0k54yz.jpg"> <p><span class="bold">Luz's Firecrackers</span></p> </a> <a href="#video-link" data-video-id="9w9oz4" data-vimeo-id="356057393" data-video-descrip="Not wanting to get his hands cut, the thief uses some backscratchers he stole early in the film to fool the guards and the public into thinking that his actual hands were cut" data-video-title="The Thief's backscratchers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9w9oz4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9w9oz4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9w9oz4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9w9oz4.jpg" data-video-trope="Main/ChekhovsGun" data-video-tropename="Chekhov's Gun" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.67" data-video-rating-count="18" data-video-media-sources="WesternAnimation/TheThiefAndTheCobbler" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9w9oz4.jpg"> <p><span class="bold">The Thief's bac...</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