CINXE.COM
Trope Finder - 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" : "no", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "unknown", // 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 : "2ee58fb49f74484952c2d172f55c446e74ca485c", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Query", 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>Trope Finder - TV Tropes</title> <meta name="description" content="" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/query.php?type=lnf" /> <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="Trope Finder - TV Tropes" /> <meta name="twitter:description" content="" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/logo_light.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content=" - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/query.php?type=lnf" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/logo_light.png" /> <meta property="og:description" content="" /> <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=2ee58fb49f74484952c2d172f55c446e74ca485c" /> <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="" /> <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/UsefulBook" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Creator/NatashaRichardson" 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="" /> <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-att"><a href="/pmwiki/query.php?type=att"> <i class="io icon-question"></i> Ask Tropers</a></li><li class="link-lnf"><a href="/pmwiki/query.php?type=tf"> <i class="io icon-bin2"></i> Trope Finder</a></li><li class="link-ykts"><a href="/pmwiki/query.php?type=ykts"> <i class="io icon-tv"></i> Media Finder</a></li><li class="link-wishlist"><a href="/pmwiki/query.php?type=wl"> <i class="io icon-magic-wand"></i> Tech Wishlist</a></li><li class="link-bugs"><a href="/pmwiki/query.php?type=bug"> <i class="io icon-bug"></i> Bugs</a></li> </ul> <ul id="top_more_list" class="more_menu hidden_more_list"> </ul> </nav> <div class="WikiWordModalStub"></div> <div class="ImgUploadModalStub" data-page-type="Query"></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-Query class-query-page"> <div id="main-entry" class="with-sidebar"> <!-- $url_query_array - Query Param Array --> <!-- HIDDEN INPUTS FOR JS --> <input type="hidden" id="groupname-hidden" value="Main"/> <input type="hidden" id="title-hidden" value="TropeFinder"/> <h1 itemprop="headline" class="entry-title">Trope Finder</h1> <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> <div id="main-article" class="article-content"> <p>The TVTropes Trope Finder is where you can come to ask questions like "Do we have this one?" and "What's the trope about...?" Trying to rediscover a long lost show or other medium but need a little help? Head to <a href="/pmwiki/query.php?type=ykts">Media Finder</a> and try your luck there. Want to propose a new trope? You should be over at the <a href="/pmwiki/yk_activity.php">Trope Launch Pad.</a></p> <div class="two-column gutter-top"> <div class="column-box left"> <a href="#" class="button blue full-width text-center create-post-btn" data-modal-target="login" > Find a Trope </a> </div> <div class="column-box right"> <form class="search-threads" method="POST" action="query.php"> <input type="hidden" name="qtype" value="lnf" /> <input type="hidden" name="sort" value="activity" /> <input type="hidden" name="status" value="all" /> <input type="text" class="form-control" id="thread-search-query" name="sparam" placeholder="Search Questions" value="" > <button type="submit" class="search-submit"><i class="fa fa-search"></i></button> </form> </div> </div> <div id="create-post-form" class="two-column section-block hidden-until-active gutter-top"> <p class="separator font-s text-light">Find a Trope:</p> <form class="no-style" method="post" action="/ajax/query-handler.php"> <div class="column-box left"> <input type="text" class="form-control" id="discussion-title" name="title" placeholder="Title" maxlength="100" required> </div> <div class="column-box right"> <select name="category" class="form-control"> <option value="">Select Medium</option> <option value="Anime">Anime</option> <option value="Film">Film</option> <option value="Literature">Literature</option> <option value="Live Action TV">Live Action TV</option> <option value="Music">Music</option> <option value="Print Comic">Print Comic</option> <option value="Radio">Radio</option> <option value="Videogame">Videogame</option> <option value="Web Original">Web Original</option> <option value="Webcomic">Webcomic</option> <option value="Western Animation">Western Animation</option> </select> </div> <div class="column-box"> <p class="font-s text-light">Describe the Trope:</p> <textarea class="form-control auto-height" id="discussion-text" name="remark" style="margin-top:3px;" required></textarea> </div> <div class="column-box text-center"> <button type="submit" id="submit-button" class="btn-submit blue" >Submit</button> </div> <input type="hidden" name="action" value="postNewQuery"> <input type="hidden" name="qtype" value="lnf"> </form> </div> <hr class="solid gutter-top"/> <div class="list-controls two-column gutter-top text-right query_filter_cont mobile_buttons_order"> <div class="first_row_buttons"> <span class="inline-block position-relative query_dropdown_filters"> <a data-modal-target="login" class="font-s button skinny" title="Filter by your queries">Mine</a> </span> <span class="inline-block position-relative query_dropdown_filters"> <a data-modal-target="login" class="font-s button skinny" title="Filter by your replies">Replies</a> </span> </div> <div class="second_row_buttons"> <span class="inline-block gutter-left position-relative query_dropdown_filters"> <a href="#" class="gutter-left font-s button skinny" data-hover-menu-target="status-filter-menu">Filter By Status <i class="fa fa-angle-down"></i></a> <div id="status-filter-menu" class="hover-menu text-left right" data-arrow="right" style="margin-top:4px;"> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity">All</a> <a href="/pmwiki/query.php?type=lnf&status=open&sort=activity">Open</a> <a href="/pmwiki/query.php?type=lnf&status=resolved&sort=activity">Resolved</a> </div> </span> <span class="inline-block position-relative query_dropdown_filters"> <a href="#" class=" font-s button skinny" data-hover-menu-target="filter-menu">Filter By Medium <i class="fa fa-angle-down"></i></a> <div id="filter-menu" class="hover-menu text-left right" data-arrow="right" style="margin-top:4px;"> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=all">All</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Anime">Anime</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Film">Film</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Literature">Literature</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Live Action TV">Live Action TV</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Music">Music</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Print Comic">Print Comic</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Radio">Radio</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Videogame">Videogame</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Web Original">Web Original</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Webcomic">Webcomic</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Western Animation">Western Animation</a> </div> </span> <span class="inline-block position-relative query_dropdown_filters"> <a href="#" class=" font-s button skinny" data-hover-menu-target="sort-menu"> By Recent Activity <i class="fa fa-angle-down"></i></a> <div id="sort-menu" class="hover-menu text-left right" data-arrow="right" style="margin-top:4px;"> <a href="/pmwiki/query.php?type=lnf&status=all&sort=date_asc"><i class="fa fa-sort-numeric-asc"></i> Date Ascending</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=date_desc"><i class="fa fa-sort-numeric-desc"></i> Date Descending</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=pop"><i class="fa fa-sort-amount-desc"></i> Popularity</a> <a href="/pmwiki/query.php?type=lnf&status=all&sort=activity"><i class="fa fa-commenting"></i> Recent Activity</a> </div> </span> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139358"></a> <div id="comment-139358" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/Rachel4732" class="troper-name">Rachel4732</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Feb, 2024</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Rachel4732"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139358" class="troper-post-time"> 25th Nov, 2024 11:44:05 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139358&type=lnf' class='title bold'>Hair</a> <a href='/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Live Action TV' class='bubble blue'>Live Action TV</a></h2> <p>When a woman's hair moves in slow motion when she shakes her head back and forth. </p><p>Example: A woman takes off her motorcycle helmet and moves her head around as her hair spills out. This sequence is almost always presented in slow motion. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139358"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139358&type=lnf'>0 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139357"></a> <div id="comment-139357" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/FatherGay" class="troper-name">FatherGay</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> May, 2020</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/FatherGay"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139357" class="troper-post-time"> 25th Nov, 2024 11:28:20 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139357&type=lnf' class='title bold'>(pain) wheel</a></h2> <p>A villain or group of villains has a wheel they spin, usually with different ways to die or be tortured on it, and often with their unwilling victim tied to the centre. Do we have this one? Or something similar? </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139357"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139357&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139344"></a> <div id="comment-139344" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/Chabal2" class="troper-name">Chabal2</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Jan, 2010</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Chabal2"> <img src="https://static.tvtropes.org/pmwiki/pub/images/boss_god2.jpg_100.jpeg"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139344" class="troper-post-time"> 24th Nov, 2024 10:43:08 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139344&type=lnf' class='title bold'>Oblivious To The Distraction</a></h2> <p>A character is talking and is so into their speech or whathever they're doing that they don't notice their audience is staring at something behind/next to them. Can overlap with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FailedASpotCheck' title='/pmwiki/pmwiki.php/Main/FailedASpotCheck' data-format='RmFpbGVkQVNwb3RDaGVjaw=='>Failed a Spot Check</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RightBehindMe' title='/pmwiki/pmwiki.php/Main/RightBehindMe' data-format='UmlnaHRCZWhpbmRNZQ=='>Right Behind Me</a>, but it's not necessarily the person they're talking about. </p><p><ul ><li> In <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/GodzillaVsKong' title='/pmwiki/pmwiki.php/Main/GodzillaVsKong' data-format='R29kemlsbGFWc0tvbmc='>Godzilla Vs Kong</a>, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> is talking to the heroes, completely unaware that Mechagodzilla is reactivating right behind him, and only when he realizes the heroes are looking horrified does he turn around. </li><li> In <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/TheOffice' title='/pmwiki/pmwiki.php/Main/TheOffice' data-format='VGhlT2ZmaWNl'>The Office</a>, Michael Scott tries to give a presentation next to a TV with a screensaver bouncing around, with everyone looking at the logo instead of him, and when he thinks they're reacting to his ideas it's actually to the logo <em>just</em> missing the corner of the screen. </li><li> In <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/DawnOfWar2' title='/pmwiki/pmwiki.php/Main/DawnOfWar2' data-format='RGF3bk9mV2FyMg=='>Dawn Of War 2</a>, Kaptain Bluddflagg is beating on an Eldar corpse until his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NumberTwo' title='/pmwiki/pmwiki.php/Main/NumberTwo' data-format='TnVtYmVyVHdv'>Number Two</a> manages to tell him there's a small army behind him. </li></ul></p> <span class="edited-by">Edited by Chabal2</span> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139344"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139344&type=lnf'>3 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139355"></a> <div id="comment-139355" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/Toko90s" class="troper-name">Toko90s</a> <span class="troper-avatar-tagline mobile-on">Previously <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TokoWH' title='/pmwiki/pmwiki.php/Main/TokoWH' data-format='VG9rb1dI'>Toko WH</a> </span> </span> <span class="member_join_date"><strong>Since:</strong> Jun, 2022</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Toko90s"> <img src="https://static.tvtropes.org/pmwiki/pub/images/spyro.png"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">Previously <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TokoWH' title='/pmwiki/pmwiki.php/Main/TokoWH' data-format='VG9rb1dI'>Toko WH</a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139355" class="troper-post-time"> 25th Nov, 2024 09:58:55 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139355&type=lnf' class='title bold'>People won't check out a series for fear of it going on to long</a></h2> <p>Similar to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArchivePanic' title='/pmwiki/pmwiki.php/Main/ArchivePanic' data-format='QXJjaGl2ZVBhbmlj'>Archive Panic</a>, but the series is still young but can be guessed to go on for a <em>very</em> long time. This came to me when I noticed some people saying they don't wanna check out <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PokemonHorizons' title='/pmwiki/pmwiki.php/Anime/PokemonHorizons' data-format='QW5pbWUvUG9rZW1vbkhvcml6b25z'>Pok茅mon Horizons</a></em> for sake of a potential 'nother 30+ year ride happening. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139355"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139355&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139349"></a> <div id="comment-139349" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/gramarie" class="troper-name">gramarie</a> <span class="troper-avatar-tagline mobile-on">miss archer </span> </span> <span class="member_join_date"><strong>Since:</strong> Aug, 2020</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/gramarie"> <img src="https://static.tvtropes.org/pmwiki/pub/images/megan_thee_stallion_blonde_hair.png"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">miss archer </span> </div> <div class="troper-comment has-title"> <a href="#comment-139349" class="troper-post-time"> 25th Nov, 2024 04:21:06 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139349&type=lnf' class='title bold'>Does this example fall under Grey And Gray Morality?</a></h2> <p>From a certain point of view, Lyle and Erik are victims of abuse who are capable of murder, while Jos茅 and Kitty are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbusiveParents' title='/pmwiki/pmwiki.php/Main/AbusiveParents' data-format='QWJ1c2l2ZVBhcmVudHM='>Abusive Parents</a> who went through their own struggles and are links in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChainOfHarm' title='/pmwiki/pmwiki.php/Main/ChainOfHarm' data-format='Q2hhaW5PZkhhcm0='>Chain of Harm</a>. </p><p>- Or is there a better or more specific trope for this? </p> <span class="edited-by">Edited by gramarie</span> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139349"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139349&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139164"></a> <div id="comment-139164" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/Theharbo" class="troper-name">Theharbo</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Oct, 2011</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Theharbo"> <img src="https://static.tvtropes.org/pmwiki/pub/images/sci_fi_integration.jpg"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139164" class="troper-post-time"> 18th Nov, 2024 04:54:02 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139164&type=lnf' class='title bold'>A trope for being robbed of a win at the finish line.</a></h2> <p>You know that feeling of "I did everything right and still lost because <em>insert thing</em> happened at the exact moment where it could screw everything up"? </p><p>That. Do we have a trope for that feeling of being denied a win at a critical juncture despite everything going right up until then? </p><p>Think: </p><p><ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Videogame/MarioKart' title='/pmwiki/pmwiki.php/Videogame/MarioKart' data-format='W1tWaWRlb2dhbWUvTWFyaW9LYXJ0IEJsdWUgc2hlbGxdXQ=='>Blue shell</a> at the finish line. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=7vzfeyh-ow8&t=571s'>A medic in TF2 landing a clutch healing dart from across the map to keep your opponent alive<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li></ul></p><p></p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139164"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139164&type=lnf'>3 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139353"></a> <div id="comment-139353" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/AwkbutTVT" class="troper-name">AwkbutTVT</a> <span class="troper-avatar-tagline mobile-on">Uber Bard </span> </span> <span class="member_join_date"><strong>Since:</strong> Nov, 2023</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/AwkbutTVT"> <img src="https://static.tvtropes.org/pmwiki/pub/images/screenshot_2024_10_03_052328.png"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">Uber Bard </span> </div> <div class="troper-comment has-title"> <a href="#comment-139353" class="troper-post-time"> 25th Nov, 2024 08:53:42 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139353&type=lnf' class='title bold'>Creature who is mainly a mouth</a></h2> <p>I know we have Oculothorax for creatures that are mainly an eye and Cephalothorax for creatures that are mainly a head, but do we have one for a mouth? </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139353"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139353&type=lnf'>0 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139352"></a> <div id="comment-139352" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/sohibil" class="troper-name">sohibil</a> <span class="troper-avatar-tagline mobile-on">pragmatic scientist </span> </span> <span class="member_join_date"><strong>Since:</strong> Dec, 2020</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/sohibil"> <img src="https://static.tvtropes.org/pmwiki/pub/images/frank_5.png"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">pragmatic scientist </span> </div> <div class="troper-comment has-title"> <a href="#comment-139352" class="troper-post-time"> 25th Nov, 2024 08:46:16 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139352&type=lnf' class='title bold'>Significant insignificant place.</a></h2> <p>Whatever this place is (town, building, e.t.c.) it is an ass-end of nowhere and very little people know about it. Despite that some of the most important events, deciding the fate of humankind, took place here. </p><p>To be specific, I'm talking about the <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DayOfTheTentacle' title='/pmwiki/pmwiki.php/VideoGame/DayOfTheTentacle' data-format='W1tWaWRlb0dhbWUvRGF5T2ZUaGVUZW50YWNsZSBFZGlzb24gTWFuc2lvbl1d'>Edison Mansion</a> where supposedly the U.S. Constitution was drafted, and 400 years later it became Purple Tentacle's base of operations. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139352"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139352&type=lnf'>0 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139343"></a> <div id="comment-139343" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/JacobyInvestigative" class="troper-name">JacobyInvestigative</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Aug, 2021</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/JacobyInvestigative"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139343" class="troper-post-time"> 24th Nov, 2024 09:29:42 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139343&type=lnf' class='title bold'>A second player is required for a video game mission</a></h2> <p>In short, the mission can only be done if there is a second human player playing with the 1st player. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139343"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139343&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139337"></a> <div id="comment-139337" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/SpectacularRain" class="troper-name">SpectacularRain</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date">(Pilot)</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/SpectacularRain"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139337" class="troper-post-time"> 24th Nov, 2024 06:24:41 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139337&type=lnf' class='title bold'>Guy wrestles Girl plot</a> <a href='/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Live Action TV' class='bubble blue'>Live Action TV</a></h2> <p>An episode of a series where either gender challenges the other to a wrestling match or a fight. </p> <span class="edited-by">Edited by SpectacularRain</span> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139337"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139337&type=lnf'>2 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139339"></a> <div id="comment-139339" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/Stouca" class="troper-name">Stouca</a> <span class="troper-avatar-tagline mobile-on">Ignore the username, call me Stoutlyn. </span> </span> <span class="member_join_date">(Apprentice)</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Stouca"> <img src="https://static.tvtropes.org/pmwiki/pub/images/65ee7457_ad89_4dc7_9b6e_4a793fc3617e.png"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">Ignore the username, call me Stoutlyn. </span> </div> <div class="troper-comment has-title"> <a href="#comment-139339" class="troper-post-time"> 24th Nov, 2024 08:03:28 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status resolved'>resolved</div><a href='/pmwiki/query.php?parent_id=139339&type=lnf' class='title bold'><i class='fa fa-lock'></i> Unhelpful Suspect Description</a></h2> <p>Mainly when a character describes a suspect, but their description isn鈥檛 easy to figure out. </p> <span class="edited-by">Edited by Stouca</span> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139339"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139339&type=lnf'>0 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139335"></a> <div id="comment-139335" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/Aazkaal" class="troper-name">Aazkaal</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Sep, 2019</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Aazkaal"> <img src="https://static.tvtropes.org/pmwiki/pub/images/jeh2vh8w_400x400.jpg"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139335" class="troper-post-time"> 24th Nov, 2024 04:56:07 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status resolved'>resolved</div><a href='/pmwiki/query.php?parent_id=139335&type=lnf' class='title bold'><i class='fa fa-lock'></i> Atrocious phone contact name</a></h2> <p>Someone sees under what name they or someone else are recorded in the phone's contact list, and find it funny, offensive and/or confusing. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139335"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139335&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139333"></a> <div id="comment-139333" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/Pyotr" class="troper-name">Pyotr</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Nov, 2024</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Pyotr"> <img src="https://static.tvtropes.org/pmwiki/pub/images/pyotr.jpg"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139333" class="troper-post-time"> 24th Nov, 2024 03:31:01 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139333&type=lnf' class='title bold'>Hypothesis: Once Popular, now forgotten</a></h2> <p>A series that was popular in its time but is now forgotten or doesn鈥檛 have the same audience compared to its golden era. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139333"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139333&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139334"></a> <div id="comment-139334" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/BlueBlazes" class="troper-name">BlueBlazes</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Dec, 2019</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/BlueBlazes"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139334" class="troper-post-time"> 24th Nov, 2024 03:52:04 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139334&type=lnf' class='title bold'>Unusual crime</a></h2> <p>Someone is arrested or charged with committing an incredibly specific/odd crime </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139334"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139334&type=lnf'>0 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139331"></a> <div id="comment-139331" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/hazelnutpie" class="troper-name">hazelnutpie</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> May, 2013</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/hazelnutpie"> <img src="https://static.tvtropes.org/pmwiki/pub/images/img20200605125634657961.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139331" class="troper-post-time"> 24th Nov, 2024 01:42:51 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status resolved'>resolved</div><a href='/pmwiki/query.php?parent_id=139331&type=lnf' class='title bold'><i class='fa fa-lock'></i> ambiguous salvation</a> <a href='/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Literature' class='bubble blue'>Literature</a></h2> <p>It's not like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceJobBreakingItHero' title='/pmwiki/pmwiki.php/Main/NiceJobBreakingItHero' data-format='TmljZUpvYkJyZWFraW5nSXRIZXJv'>Nice Job Breaking It, Hero</a>, where the protagonist unambiguously makes things worse, but rather, it's more unclear whether they are actually saving someone or dooming them to an even more terrible fate. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139331"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139331&type=lnf'>2 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139325"></a> <div id="comment-139325" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/lunartemis" class="troper-name">lunartemis</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date">(Pilot)</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/lunartemis"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139325" class="troper-post-time"> 24th Nov, 2024 08:37:15 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139325&type=lnf' class='title bold'>Simple mistake causes disastrous effects</a></h2> <p>Example: An engineer making a multi-billion dollar spacecraft forgot to screw in one tiny bolt, and now the entire spacecraft just broke up during launch. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139325"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139325&type=lnf'>2 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139326"></a> <div id="comment-139326" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/MarqFJA" class="troper-name">MarqFJA</a> <span class="troper-avatar-tagline mobile-on">The Cosmopolitan Fictioneer </span> </span> <span class="member_join_date">(Before Recorded History)</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/MarqFJA"> <img src="https://static.tvtropes.org/pmwiki/pub/images/black_hand_of_nod_by_jarmenkell_7.jpg"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">The Cosmopolitan Fictioneer </span> </div> <div class="troper-comment has-title"> <a href="#comment-139326" class="troper-post-time"> 24th Nov, 2024 09:32:20 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139326&type=lnf' class='title bold'>Multiple randomly chosen models</a> <a href='/pmwiki/query.php?type=lnf&status=all&sort=activity&f=Videogame' class='bubble blue'>Videogame</a></h2> <p>In many video games, the norm is for character/unit models to be all identical within a given "class"; such is the case for first-person shooters, where a given character type (e.g. common infantry from a particular faction in a military shooter, or units in strategy games) has the exact same appearance between all instances. Some video games, however, break from this pattern by having a range of visually distinct models that the character/unit can be randomly assigned, even though the equipment, stats, abilities, etc. are identical regardless of the model. </p><p>Examples: <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CommandAndConquerGenerals' title='/pmwiki/pmwiki.php/VideoGame/CommandAndConquerGenerals' data-format='VmlkZW9HYW1lL0NvbW1hbmRBbmRDb25xdWVyR2VuZXJhbHM='>Command & Conquer: Generals</a></em>, the GLA's Technical has three different models, one of which is randomly assigned when a Technical is produced. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CallOfDuty' title='/pmwiki/pmwiki.php/VideoGame/CallOfDuty' data-format='VmlkZW9HYW1lL0NhbGxPZkR1dHk='>Call of Duty</a></em>, the soldiers of certain factions (typically those considered as "irregular military") have a wide range of randomly assigned models; these include the <a class='urllink' href='https://callofduty.fandom.com/wiki/Brazilian_Militia'>Brazilian Militia<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and the <a class='urllink' href='https://callofduty.fandom.com/wiki/Czech_Resistance'>Czech Resistance<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li></ul></p><p>Is there a trope for this? </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139326"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139326&type=lnf'>0 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139309"></a> <div id="comment-139309" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/SharkToast" class="troper-name">SharkToast</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Mar, 2013</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/SharkToast"> <img src="https://static.tvtropes.org/user-lamp-160x160.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139309" class="troper-post-time"> 23rd Nov, 2024 01:56:40 PM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139309&type=lnf' class='title bold'>Work gets wackier as it goes on</a></h2> <p>A work that starts off as relatively grounded becomes wackier by the end. </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139309"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139309&type=lnf'>2 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139301"></a> <div id="comment-139301" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper has-tag"> <a href="pmwiki.php/Tropers/TMH-Sir-Iron-Vomit" class="troper-name">TMH-Sir-Iron-Vomit</a> <span class="troper-avatar-tagline mobile-on">The clown of STEEL </span> </span> <span class="member_join_date"><strong>Since:</strong> Mar, 2024</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/TMH-Sir-Iron-Vomit"> <img src="https://static.tvtropes.org/pmwiki/pub/images/archerschaubskeleton.jpg"/> </a> </span> <span class="troper-avatar-tagline text-center mobile-off">The clown of STEEL </span> </div> <div class="troper-comment has-title"> <a href="#comment-139301" class="troper-post-time"> 23rd Nov, 2024 10:03:34 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139301&type=lnf' class='title bold'>World Of Mayflies/Past People Died Young</a></h2> <p>I've noticed that some people interpret life expentacy statistics as "you will live exactly this number of years". So, when a certain time and place is described as having a low life expentancy (like, for exmaple, an expentancy of 30 years for the Middle Ages), people will assume that 30 years was considered old in the Middle Ages (in real life, life expantancy also keeps track of child mortality, which was way higher in the past; so people in the Middle Ages <em>did</em> die young, but in the sense of "you either die at 7 months or 70 years", instead of literally living up to 30 years). </p><p>Is this a common stereotype of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDungAges' title='/pmwiki/pmwiki.php/Main/TheDungAges' data-format='VGhlRHVuZ0FnZXM='>The Dung Ages</a>? Whether the author legitmately believed it, or is parodying it, or implementing it for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Fantasy' title='/pmwiki/pmwiki.php/Main/Fantasy' data-format='e3tGYW50YXN5fX0='>Fantasy</a> or other fictional setting, the setting portrayed is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrapsackWorld' title='/pmwiki/pmwiki.php/Main/CrapsackWorld' data-format='Q3JhcHNhY2tXb3JsZA=='>Crapsack World</a> where people are lucky to reach even 30 years, whether for mundande reasons (like violence or disease), something more esoteric (as if people literally aged faster), or outright supernatural (some force that is culling individuals older than a certain age). </p><p>In terms of actual works, it was parodied in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KingdomOfLoathing' title='/pmwiki/pmwiki.php/VideoGame/KingdomOfLoathing' data-format='VmlkZW9HYW1lL0tpbmdkb21PZkxvYXRoaW5n'>Kingdom of Loathing</a></em>'s Monster Manuel, which justifies the very vulgar <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FictionalConstellations' title='/pmwiki/pmwiki.php/Main/FictionalConstellations' data-format='RmljdGlvbmFsQ29uc3RlbGxhdGlvbnM='>Fictional Constellations</a> with claiming that in the past, life expentancy was lower, and the people that named the constellations were younger as well— in this case, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HormoneAddledTeenager' title='/pmwiki/pmwiki.php/Main/HormoneAddledTeenager' data-format='e3tIb3Jtb25lIEFkZGxlZCBUZWVuYWdlcn19cw=='>Hormone Addled Teenagers</a>. </p><p>Do we have a trope to describe this? </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139301"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139301&type=lnf'>10 replies <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <style> .member_join_date { font-size: 0.9em; color: #9299a3; } </style> <a name="139323"></a> <div id="comment-139323" class="comment-box has-footer "> <div class="comment-head"> <span class="troper-handle-wrapper "> <a href="pmwiki.php/Tropers/Jerry" class="troper-name">Jerry</a> <span class="troper-avatar-tagline mobile-on"></span> </span> <span class="member_join_date"><strong>Since:</strong> Aug, 2013</span> </div> <div class="comment-body"> <div class="troper-avatar-wrapper"> <span class="troper-avatar"> <a href="pmwiki.php/Tropers/Jerry"> <img src="https://static.tvtropes.org/pmwiki/pub/images/jerry_ava_ki.png"/> </a> </span> </div> <div class="troper-comment has-title"> <a href="#comment-139323" class="troper-post-time"> 24th Nov, 2024 05:37:37 AM </a> <div class="comment"> <h2 class='comment-title'><div class='status-alert float-right bug-status open'>open</div><a href='/pmwiki/query.php?parent_id=139323&type=lnf' class='title bold'>Drive through wedding</a></h2> <p>A wedding conducted in a drive through without leaving the car, commonly associated with the city of Las Vegas - is this a trope, and if so, does it have a page here? </p> <div class='footer'><div class='button-group skinny font-s float-right'><a href="#upvote" data-modal-target="login" data-query-id="139323"><i class="fa fa-thumbs-up"></i> <span class="count">0</span></a><a href='/pmwiki/query.php?parent_id=139323&type=lnf'>1 reply <i class='fa fa-chevron-right font-xs'></i></a></div></div> </div> </div> </div> </div> <nav class="pagination-box button-group text-center gutter-topx2" data-total-pages="100" data-url-prefix="/pmwiki/query.php?type=lnf&page="> <span class="pagination-jump-box-wrapper mobile-on"> <form class="pagination-jump-box hidden-until-active font-m"> <input value="1" type="tel"> <a href="#jump-to-page" title="Jump to page" class="color-white dead-button" onClick="activate_jump_menu(this);return false;">GO <i class="fa fa-angle-right"></i></a> </form> </span> <a href="/pmwiki/query.php?type=lnf&page=1" class="mobile-off "> <span class="current-page"> 1 </span> </a> <a href="/pmwiki/query.php?type=lnf&page=2" class="mobile-off "> 2 </a> <a href="/pmwiki/query.php?type=lnf&page=3" class="mobile-off "> 3 </a> <a href="#jump-to-page" title="Jump to page" class="pagination-jump-box-toggle mobile-on dead-button" onClick="toggle_jump_menu(this);return false;"> <span class="font-s">page 1 of 100</span> </a> <a href="/pmwiki/query.php?type=lnf&page=2"> <span class="mobile-on"><i class="fa fa-angle-right"></i></span> <span class="mobile-off">Next</span> </a> <a href="/pmwiki/query.php?type=lnf&page=100"> <i class="fa fa-angle-double-right"></i> </a> </nav> <script type="text/javascript"> function toggle_jump_menu(e){ $(e).siblings('.pagination-jump-box-wrapper').children('.pagination-jump-box').toggle('active'); } function activate_jump_menu(e){ var p = $(e).siblings('input').val(); var t = $(e).closest('.pagination-box').data('total-pages'); if(p > 0 && p <= t){ window.location.href = $(e).closest('.pagination-box').data('url-prefix') + p; }else{ show_modal('alert',encodeURIComponent('Whoops, that page might be out of range.')); } } </script> </div> </div> <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 & 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> </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=2ee58fb49f74484952c2d172f55c446e74ca485c'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=2ee58fb49f74484952c2d172f55c446e74ca485c'; } elem.onload = function() { var elem2 = document.createElement('script'); elem2.async = false; elem2.src = "/design/js/query-page.js?rev=2ee58fb49f74484952c2d172f55c446e74ca485c"; document.getElementsByTagName('head')[0].appendChild(elem2); } 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&c2=38282685&cv=3.6.0&cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>