CINXE.COM

Love Tropes - 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" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "a5265f07b49555f4b93516383e35851804c79c99", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; // Check to see if this page is isolated, if so, run BCLighthouseTag.disableGoogleAdManager(); if(window.site_htl_settings.adx == "no"){ console.log("disabling google"); BCLighthouseTag.cmd.push(() => { BCLighthouseTag.disableGoogleAdManager(); }); } </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Love Tropes - TV Tropes</title> <meta name="description" content="An index page listing Love Tropes content. Ah, love. One of the fundamental forces of drama, and a key component in Heartwarming Moments. Love comes in many &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/LoveTropes" /> <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="Love Tropes - TV Tropes" /> <meta name="twitter:description" content="An index page listing Love Tropes content. Ah, love. One of the fundamental forces of drama, and a key component in Heartwarming Moments. Love comes in many &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/lisforlovetropes.jpg" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Love Tropes - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/LoveTropes" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/lisforlovetropes.jpg" /> <meta property="og:description" content="Ah, love. One of the fundamental forces of drama, and a key component in Heartwarming Moments. Love comes in many forms, but this index lists virtually all Tropes concerning the most recognizable form, romantic love. For tropes about familial &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=a5265f07b49555f4b93516383e35851804c79c99" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/ManekiNeko" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/WesternAnimation/ShrekForeverAfter" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, oauth_finalize, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (oauth_finalize ? '&oauth_finalize=' + encodeURIComponent(oauth_finalize) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]:not(#signup-form-toggles a)'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTargetId = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); const isExclusive = targetWithToggleTarget.getAttribute('data-click-toggle-exclusive') === 'true'; if (isExclusive) { // Exclusive mode: toggle target and clear siblings const toggleTarget = document.getElementById(toggleTargetId); if (toggleTarget) { // Remove the toggle class from all siblings const siblings = Array.from(toggleTarget.parentNode.children); for (let sibling of siblings) { if (sibling !== toggleTarget) { sibling.classList.remove(toggleClass); } } // Add the toggle class to the target element toggleTarget.classList.add(toggleClass); } } else { // Non-exclusive mode: toggle targets normally if (toggleTargetId.indexOf(',') > -1) { const targets = toggleTargetId.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTargetId).forEach(el => { el.classList.toggle(toggleClass); }); } } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/LoveTropes?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/LoveTropes"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.LoveTropes" data-modal-target="login" rel="nofollow"> <i class="fa fa-history"></i> History</a></li><li class="link-discussion"><a href="/pmwiki/remarks.php?trope=Main.LoveTropes" data-modal-target="login" rel="nofollow"> <i class="fa fa-comment"></i> Discussion</a></li><li class="link-todo tuck-always"><a href="#todo" data-modal-target="login" rel="nofollow"><i class="fa fa-check-circle"></i> To Do</a></li> </ul> <button id="top_more_button" onclick="toggle_more_menu('top');" type="button" class="nav__dropdown-toggle">More</button> <ul id="top_more_list" class="more_menu hidden_more_list"> <li class="link-pageSource tuck-always more_list_item"><a href="/pmwiki/pmwiki.php/Main/LoveTropes?action=source" target="_blank" rel="nofollow"data-modal-target= "login"><i class="fa fa-code"></i> Page Source</a></li> </ul> </nav> <div class="WikiWordModalStub"></div> <div class="ImgUploadModalStub" data-page-type="Article"></div> <div class="login-alert" style="display: none;"> You need to <a href="/pmwiki/login.php" style="color:#21A0E8">login</a> to do this. <a href="/pmwiki/login.php?tab=register_account" style="color:#21A0E8">Get Known</a> if you don't have an account </div> </div> <div id="main-content" class="page-Article "> <article id="main-entry" class="with-sidebar"> <!-- HIDDEN INPUTS FOR JS --> <input type="hidden" id="groupname-hidden" value="Main"/> <input type="hidden" id="title-hidden" value="LoveTropes"/> <input type="hidden" id="article_id" value="3923" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/LoveTropes</p> <meta itemprop="datePublished" content=""/> <meta itemprop="articleSection" content="" /> <meta itemprop="image" content=""> <div class="watch_rank_wrap"> <a href="#watch" class="watch-button " data-modal-target="login" >Follow<span>ing</span></a> </div> <h1 itemprop="headline" class="entry-title"> Love Tropes </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Love Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/LoveTropes" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Love Tropes", "headline": "Love Tropes", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/LoveTropes", "image": "https://static.tvtropes.org/pmwiki/pub/images/lisforlovetropes.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2007-06-20T00:00:00-07:00", "dateModified": "2025-01-16T02:36:41-08:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/LoveTropes" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/LoveTropes" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/LoveTropes?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/LoveTropes?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/LoveTropes?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/LoveTropes?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/LoveTropes?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/LoveTropes?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/LoveTropes?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/LoveTropes?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/LoveTropes?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/LoveTropes?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/LoveTropes?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/LoveTropes?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/LoveTropes?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/LoveTropes?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/Laconic/LoveTropes?action=edit">Laconic</option> <option value="/pmwiki/pmwiki.php/MediaNotes/LoveTropes?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/LoveTropes?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/LoveTropes?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/LoveTropes?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/LoveTropes?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/LoveTropes?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/LoveTropes?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/LoveTropes?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/LoveTropes?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/LoveTropes?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/LoveTropes?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/LoveTropes?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/LoveTropes?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=16881492010.98688500--> <!-- Please don't change or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:300px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLoudHouse' title='/pmwiki/pmwiki.php/WesternAnimation/TheLoudHouse' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1RoZUxvdWRIb3VzZSBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvbGlzZm9ybG92ZXRyb3Blcy5qcGddXQ=='><div class="lazy_load_img_box" style="padding-top:130.26%"><img src='https://static.tvtropes.org/pmwiki/pub/images/lisforlovetropes.jpg' class='embeddedimage' border='0' alt='Love Tropes' width=499 height=650></div></a></div> <div class="acaptionright" style="width:300px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Music/NatKingCole' title='/pmwiki/pmwiki.php/Music/NatKingCole' data-format='W1tNdXNpYy9OYXRLaW5nQ29sZSAiTCBpcyBmb3IgdGhlIHdheSB5b3UgbG9vayBhdCBtZSxPIGlzIGZvciB0aGUgb25seSBvbmUgSSBzZWUsIFYgaXMgdmVyeSwgdmVyeSBleHRyYW9yZGluYXJ5LEUgaXMgZXZlbiBtb3JlIHRoYW4gYW55b25lIHRoYXQgeW91IGFkb3JlIGNhbi4uLiJdXQ=='>"L is for the way you look at me,<br data-format="\\" />O is for the only one I see, <br data-format="\\" />V is very, very extraordinary,<br data-format="\\" />E is even more than anyone that you adore can..."</a></div> <!--&#010;--> <!-- Caption selected per above IP thread. Please do not replace or remove without discussion in the Caption Repair thread:--> <!-- https://tvtropes.org/pmwiki/posts.php?discussion=1404492079030138900--> <!--&#010;--> </p><p><div class='indent'><em>"Love is not love<br data-format="\\" />Which alters when it alteration finds,<br data-format="\\" />Or bends with the remover to remove:<br data-format="\\" />O no! it is an ever-fixed mark<br data-format="\\" />That looks on tempests and is never shaken"</em> <div class='indent'> &#8212; <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' title='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' data-format='Q3JlYXRvci9XaWxsaWFtU2hha2VzcGVhcmU='>William Shakespeare</a></strong>, "Sonnet 116" </div></div></p><p>Ah, love. One of the fundamental forces of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfDrama' title='/pmwiki/pmwiki.php/Main/RuleOfDrama' data-format='W1tSdWxlT2ZEcmFtYSBkcmFtYV1d'>drama</a>, and a key component in <a class='twikilink' href='/pmwiki/pmwiki.php/SugarWiki/HeartwarmingMoments' title='/pmwiki/pmwiki.php/SugarWiki/HeartwarmingMoments' data-format='U3VnYXJXaWtpL0hlYXJ0d2FybWluZ01vbWVudHM='>Heartwarming Moments</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFourLoves' title='/pmwiki/pmwiki.php/Main/TheFourLoves' data-format='W1tUaGVGb3VyTG92ZXMgTG92ZSBjb21lcyBpbiBtYW55IGZvcm1zXV0='>Love comes in many forms</a>, but this index lists virtually all <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Tropes' title='/pmwiki/pmwiki.php/Main/Tropes' data-format='e3t0cm9wZXN9fQ=='>Tropes</a> concerning the most recognizable form, romantic love. For tropes about familial love and platonic love, see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FamilyTropes' title='/pmwiki/pmwiki.php/Main/FamilyTropes' data-format='RmFtaWx5VHJvcGVz'>Family Tropes</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendshipTropes' title='/pmwiki/pmwiki.php/Main/FriendshipTropes' data-format='RnJpZW5kc2hpcFRyb3Blcw=='>Friendship Tropes</a>, respectively. For the unconditional love felt for everyone, see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllLovingHero' title='/pmwiki/pmwiki.php/Main/AllLovingHero' data-format='QWxsTG92aW5nSGVybw=='>All-Loving Hero</a>. </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceNovel' title='/pmwiki/pmwiki.php/Main/RomanceNovel' data-format='Um9tYW5jZU5vdmVs'>Romance Novel</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdmirationTropes' title='/pmwiki/pmwiki.php/Main/AdmirationTropes' data-format='QWRtaXJhdGlvblRyb3Blcw=='>Admiration Tropes</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KissingTropes' title='/pmwiki/pmwiki.php/Main/KissingTropes' data-format='S2lzc2luZ1Ryb3Blcw=='>Kissing Tropes</a>. Contrast <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HatredTropes' title='/pmwiki/pmwiki.php/Main/HatredTropes' data-format='SGF0cmVkVHJvcGVz'>Hatred Tropes</a>... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' title='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' data-format='W1tCZWxsaWdlcmVudFNleHVhbFRlbnNpb24gdXN1YWxseV1d'>usually</a>. <hr data-format='&#8212;&#8212;' /> <h2>Tropes:</h2> <!&#8212;index&#8212;> <div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;<strong>Related indexes and subcategories</strong>&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <span class="asscaps" >Love in general (including non-romantic love)</span> <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FamilyTropes' title='/pmwiki/pmwiki.php/Main/FamilyTropes' data-format='RmFtaWx5VHJvcGVz'>Family Tropes</a>: Tropes about the affection and bonds between people who are related to each other by blood, marriage, or adoption. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendshipTropes' title='/pmwiki/pmwiki.php/Main/FriendshipTropes' data-format='RnJpZW5kc2hpcFRyb3Blcw=='>Friendship Tropes</a>: Tropes about the affection and bonds between people who just simply enjoy each other's company. <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PetAndAnimalCompanionTropes' title='/pmwiki/pmwiki.php/Main/PetAndAnimalCompanionTropes' data-format='UGV0QW5kQW5pbWFsQ29tcGFuaW9uVHJvcGVz'>Pet and Animal Companion Tropes</a>: Tropes about the affection and bonds between people and their domestic animal friends. </li></ul></li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HugTropes' title='/pmwiki/pmwiki.php/Main/HugTropes' data-format='SHVnVHJvcGVz'>Hug Tropes</a>: Embracement is a common way for any people who really care about each other to show affection, regardless of whatever type of interpersonal relationship they have. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KissingTropes' title='/pmwiki/pmwiki.php/Main/KissingTropes' data-format='S2lzc2luZ1Ryb3Blcw=='>Kissing Tropes</a>: While kissing usually has a romantic context, it can also be done between family or even friends. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReunionTropes' title='/pmwiki/pmwiki.php/Main/ReunionTropes' data-format='UmV1bmlvblRyb3Blcw=='>Reunion Tropes</a>: When two or more people who were close to each other meet again after being separated for a while. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThisIndexBrokeUp' title='/pmwiki/pmwiki.php/Main/ThisIndexBrokeUp' data-format='VGhpc0luZGV4QnJva2VVcA=='>This Index Broke Up</a>: When two or more people who were close to each other have a falling out. <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReconciliationTropes' title='/pmwiki/pmwiki.php/Main/ReconciliationTropes' data-format='UmVjb25jaWxpYXRpb25Ucm9wZXM='>Reconciliation Tropes</a>: But then they make up with each other and reunite. </li></ul></li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThisIndexIsNotMyGirlfriend' title='/pmwiki/pmwiki.php/Main/ThisIndexIsNotMyGirlfriend' data-format='VGhpc0luZGV4SXNOb3RNeUdpcmxmcmllbmQ='>This Index Is Not My Girlfriend</a>: Are these two people in a platonic or romantic relationship? It's hard to tell. </li></ul><br data-format="\\" /><span class="asscaps" >Romantic love and sexual lust</span> <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttractionTropes' title='/pmwiki/pmwiki.php/Main/AttractionTropes' data-format='QXR0cmFjdGlvblRyb3Blcw=='>Attraction Tropes</a>: Tropes about physical attraction between people, be it mutual or one-sided. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DatingTropes' title='/pmwiki/pmwiki.php/Main/DatingTropes' data-format='RGF0aW5nVHJvcGVz'>Dating Tropes</a>: Tropes about activities between unmarried lovers. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DysfunctionalRomanceIndex' title='/pmwiki/pmwiki.php/Main/DysfunctionalRomanceIndex' data-format='RHlzZnVuY3Rpb25hbFJvbWFuY2VJbmRleA=='>Dysfunctional Romance Index</a>: Tropes about "love" gone horribly wrong. <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheExIndex' title='/pmwiki/pmwiki.php/Main/TheExIndex' data-format='VGhlRXhJbmRleA=='>The Ex Index</a>: Tropes about ex-lovers and former spouses, and why they split in the first place. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InfidelityIndex' title='/pmwiki/pmwiki.php/Main/InfidelityIndex' data-format='SW5maWRlbGl0eUluZGV4'>Infidelity Index</a>: Tropes about adultery and infidelity, or the act of cheating on one's (monogamous) partner by secretly engaging in a romantic/sexual affair with another person. </li></ul></li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlirtingAndCourtship' title='/pmwiki/pmwiki.php/Main/FlirtingAndCourtship' data-format='RmxpcnRpbmdBbmRDb3VydHNoaXA='>Flirting and Courtship</a>: Ways of expressing romantic or sexual attraction to another person. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForbiddenLove' title='/pmwiki/pmwiki.php/Main/ForbiddenLove' data-format='Rm9yYmlkZGVuTG92ZQ=='>Forbidden Love</a>: When a pair of lovers are kept separated from each other due to familial or social pressures. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IndexOfRomanticCouples' title='/pmwiki/pmwiki.php/Main/IndexOfRomanticCouples' data-format='SW5kZXhPZlJvbWFudGljQ291cGxlcw=='>Index of Romantic Couples</a>: Types of lover duos. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterracialAndInterspeciesLoveIndex' title='/pmwiki/pmwiki.php/Main/InterracialAndInterspeciesLoveIndex' data-format='SW50ZXJyYWNpYWxBbmRJbnRlcnNwZWNpZXNMb3ZlSW5kZXg='>Interracial and Interspecies Love Index</a>: Love and sex between two people from (very) different backgrounds. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterests' title='/pmwiki/pmwiki.php/Main/LoveInterests' data-format='TG92ZUludGVyZXN0cw=='>Love Interests</a>: A classic character archetype of people who are meant to fall in love with the protagonist. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveIsACrapshoot' title='/pmwiki/pmwiki.php/Main/LoveIsACrapshoot' data-format='TG92ZUlzQUNyYXBzaG9vdA=='>Love Is a Crapshoot</a>: Love can be good, but it can also go bad, or complicate things. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MarriageTropes' title='/pmwiki/pmwiki.php/Main/MarriageTropes' data-format='TWFycmlhZ2VUcm9wZXM='>Marriage Tropes</a>: Tropes about the legal union of spouses. <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeddingAndEngagementTropes' title='/pmwiki/pmwiki.php/Main/WeddingAndEngagementTropes' data-format='V2VkZGluZ0FuZEVuZ2FnZW1lbnRUcm9wZXM='>Wedding and Engagement Tropes</a>: Tropes about ritual ceremonies that initiate marriage. </li></ul></li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/QueerAsTropes' title='/pmwiki/pmwiki.php/Main/QueerAsTropes' data-format='UXVlZXJBc1Ryb3Blcw=='>Queer as Tropes</a>: Tropes about non-heterosexual romance. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceArc' title='/pmwiki/pmwiki.php/Main/RomanceArc' data-format='Um9tYW5jZUFyYw=='>Romance Arc</a>: An arc of two characters becoming lovers. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceNovelTropes' title='/pmwiki/pmwiki.php/Main/RomanceNovelTropes' data-format='Um9tYW5jZU5vdmVsVHJvcGVz'>Romance Novel Tropes</a>: Tropes common to romance novels. <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceNovelPlots' title='/pmwiki/pmwiki.php/Main/RomanceNovelPlots' data-format='Um9tYW5jZU5vdmVsUGxvdHM='>Romance Novel Plots</a>: Common plots in romance novels. </li></ul></li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticResolutions' title='/pmwiki/pmwiki.php/Main/RomanticResolutions' data-format='Um9tYW50aWNSZXNvbHV0aW9ucw=='>Romantic Resolutions</a>: Common endings to love stories. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfRomantic' title='/pmwiki/pmwiki.php/Main/RuleOfRomantic' data-format='UnVsZU9mUm9tYW50aWM='>Rule of Romantic</a>: Unrealistic stuff is fine, so long as it's romantic. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexTropes' title='/pmwiki/pmwiki.php/Main/SexTropes' data-format='U2V4VHJvcGVz'>Sex Tropes</a>: Tropes about sexual lust, which is closely related to (but not quite the same thing as) romantic love. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShippingTropes' title='/pmwiki/pmwiki.php/Main/ShippingTropes' data-format='U2hpcHBpbmdUcm9wZXM='>Shipping Tropes</a>: Some fans are really rooting for their preferred pair of characters to fall in love with each other. </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSinglesIndex' title='/pmwiki/pmwiki.php/Main/TheSinglesIndex' data-format='VGhlU2luZ2xlc0luZGV4'>The Singles Index</a>: Tropes about individuals without romantic partners. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Tropes (A-G)&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbductionIsLove' title='/pmwiki/pmwiki.php/Main/AbductionIsLove' data-format='QWJkdWN0aW9uSXNMb3Zl'>Abduction Is Love</a>: Kidnapping your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> guarantees they'll fall in love with you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbortedDeclarationOfLove' title='/pmwiki/pmwiki.php/Main/AbortedDeclarationOfLove' data-format='QWJvcnRlZERlY2xhcmF0aW9uT2ZMb3Zl'>Aborted Declaration of Love</a>: You're about to confess your love for somebody, but then decide not to. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AccidentalAdultery' title='/pmwiki/pmwiki.php/Main/AccidentalAdultery' data-format='QWNjaWRlbnRhbEFkdWx0ZXJ5'>Accidental Adultery</a>: Cheating on your lover/spouse by mistake, e.g. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReportsOfMyDeathWereGreatlyExaggerated' title='/pmwiki/pmwiki.php/Main/ReportsOfMyDeathWereGreatlyExaggerated' data-format='W1tSZXBvcnRzT2ZNeURlYXRoV2VyZUdyZWF0bHlFeGFnZ2VyYXRlZCB0aGlua2luZyB0aGV5IHdlcmUgZGVhZF1d'>thinking they were dead</a> when they were actually alive. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AccidentalDeclarationOfLove' title='/pmwiki/pmwiki.php/Main/AccidentalDeclarationOfLove' data-format='QWNjaWRlbnRhbERlY2xhcmF0aW9uT2ZMb3Zl'>Accidental Declaration of Love</a>: A moment that has one character confess his feelings to another by accident. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AccidentalHandHold' title='/pmwiki/pmwiki.php/Main/AccidentalHandHold' data-format='QWNjaWRlbnRhbEhhbmRIb2xk'>Accidental Hand-Hold</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where two characters end up locking hands with each other when they reach for the same item. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActOfTrueLove' title='/pmwiki/pmwiki.php/Main/ActOfTrueLove' data-format='QWN0T2ZUcnVlTG92ZQ=='>Act of True Love</a>: An action done to prove one's love for another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActionGirlfriend' title='/pmwiki/pmwiki.php/Main/ActionGirlfriend' data-format='QWN0aW9uR2lybGZyaWVuZA=='>Action Girlfriend</a>: Badass girlfriend. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdaptationalSexuality' title='/pmwiki/pmwiki.php/Main/AdaptationalSexuality' data-format='QWRhcHRhdGlvbmFsU2V4dWFsaXR5'>Adaptational Sexuality</a>: A character's sexual orientation is changed in an adaptation of a story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdrenalineMakeover' title='/pmwiki/pmwiki.php/Main/AdrenalineMakeover' data-format='QWRyZW5hbGluZU1ha2VvdmVy'>Adrenaline Makeover</a>: The heat of adventure turns a frumpy, uncool character into <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s attractive <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AfterActionPatchUp' title='/pmwiki/pmwiki.php/Main/AfterActionPatchUp' data-format='QWZ0ZXJBY3Rpb25QYXRjaFVw'>After Action Patch Up</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a character gets their wounds patched up by their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AgentsDating' title='/pmwiki/pmwiki.php/Main/AgentsDating' data-format='QWdlbnRzRGF0aW5n'>Agents Dating</a>: Secret agents fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AgeGapAlgebra' title='/pmwiki/pmwiki.php/Main/AgeGapAlgebra' data-format='QWdlR2FwQWxnZWJyYQ=='>Age-Gap Algebra</a>: Calculating age difference between partners in order to determine compatibility. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AgeGapRomance' title='/pmwiki/pmwiki.php/Main/AgeGapRomance' data-format='QWdlR2FwUm9tYW5jZQ=='>Age-Gap Romance</a>: Romance where one partner is notably older or younger than the other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AirplaneOfLove' title='/pmwiki/pmwiki.php/Main/AirplaneOfLove' data-format='QWlycGxhbmVPZkxvdmU='>Airplane of Love</a>: An airplane takes off to symbolize unrequited love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllAmazonsWantHercules' title='/pmwiki/pmwiki.php/Main/AllAmazonsWantHercules' data-format='QWxsQW1hem9uc1dhbnRIZXJjdWxlcw=='>All Amazons Want Hercules</a>: A strong, tough woman falls in love with a man who is stronger than or just as strong as her. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllGaysArePromiscuous' title='/pmwiki/pmwiki.php/Main/AllGaysArePromiscuous' data-format='QWxsR2F5c0FyZVByb21pc2N1b3Vz'>All Gays are Promiscuous</a>: Homosexual men are depicted as being incapable of committing themselves to one partner. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllGirlsWantBadBoys' title='/pmwiki/pmwiki.php/Main/AllGirlsWantBadBoys' data-format='QWxsR2lybHNXYW50QmFkQm95cw=='>All Girls Want Bad Boys</a>: Girls fall for guys who are moody or outright criminal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllGrownUpRemark' title='/pmwiki/pmwiki.php/Main/AllGrownUpRemark' data-format='QWxsR3Jvd25VcFJlbWFyaw=='>"All Grown Up" Remark</a>: The old childhood friend who grows into a real beauty, thus a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildhoodFriendRomance' title='/pmwiki/pmwiki.php/Main/ChildhoodFriendRomance' data-format='Q2hpbGRob29kRnJpZW5kUm9tYW5jZQ=='>Childhood Friend Romance</a> ensues. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllGuysWantCheerleaders' title='/pmwiki/pmwiki.php/Main/AllGuysWantCheerleaders' data-format='QWxsR3V5c1dhbnRDaGVlcmxlYWRlcnM='>All Guys Want Cheerleaders</a>: Guys tend to fall in love with cheerleaders. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllGuysWantSororityWomen' title='/pmwiki/pmwiki.php/Main/AllGuysWantSororityWomen' data-format='QWxsR3V5c1dhbnRTb3Jvcml0eVdvbWVu'>All Guys Want Sorority Women</a>: Much like cheerleaders, men tend to fall for women in sororities. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllLovingHero' title='/pmwiki/pmwiki.php/Main/AllLovingHero' data-format='QWxsTG92aW5nSGVybw=='>All-Loving Hero</a>: A heroic character who has unlimited love and compassion for others. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllergicToLove' title='/pmwiki/pmwiki.php/Main/AllergicToLove' data-format='QWxsZXJnaWNUb0xvdmU='>Allergic to Love</a>: Love makes you feel sick. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlmostKiss' title='/pmwiki/pmwiki.php/Main/AlmostKiss' data-format='QWxtb3N0S2lzcw=='>Almost Kiss</a>: Two characters come close to kissing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AloneAmongTheCouples' title='/pmwiki/pmwiki.php/Main/AloneAmongTheCouples' data-format='QWxvbmVBbW9uZ1RoZUNvdXBsZXM='>Alone Among the Couples</a>: One character is single while everyone else around them is in a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlwaysSaveTheGirl' title='/pmwiki/pmwiki.php/Main/AlwaysSaveTheGirl' data-format='QWx3YXlzU2F2ZVRoZUdpcmw='>Always Save the Girl</a>: Saving your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> before anyone else. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmIJustAToyToYou' title='/pmwiki/pmwiki.php/Main/AmIJustAToyToYou' data-format='QW1JSnVzdEFUb3lUb1lvdQ=='>Am I Just a Toy to You?</a>: Person A confronts Person B about how serious their relationship is. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmazonChaser' title='/pmwiki/pmwiki.php/Main/AmazonChaser' data-format='QW1hem9uQ2hhc2Vy'>Amazon Chaser</a>: A guy who falls in love with tough girls. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmicableExes' title='/pmwiki/pmwiki.php/Main/AmicableExes' data-format='QW1pY2FibGVFeGVz'>Amicable Exes</a>: Former lovers who have remained on good terms with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmnesiacLover' title='/pmwiki/pmwiki.php/Main/AmnesiacLover' data-format='QW1uZXNpYWNMb3Zlcg=='>Amnesiac Lover</a>: The protagonist's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> gets amnesia and can't remember their own lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnchoredShip' title='/pmwiki/pmwiki.php/Main/AnchoredShip' data-format='QW5jaG9yZWRTaGlw'>Anchored Ship</a>: A potential romantic pairing that's been put on hold. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AngelDevilShipping' title='/pmwiki/pmwiki.php/Main/AngelDevilShipping' data-format='QW5nZWxEZXZpbFNoaXBwaW5n'>Angel/Devil Shipping</a>: Romance between a heroic, sweet-natured character and a darker, more devilish character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AngerBornOfWorry' title='/pmwiki/pmwiki.php/Main/AngerBornOfWorry' data-format='QW5nZXJCb3JuT2ZXb3JyeQ=='>Anger Born of Worry</a>: When you love someone, you get angry at them for endangering themselves. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnguishedDeclarationOfLove' title='/pmwiki/pmwiki.php/Main/AnguishedDeclarationOfLove' data-format='QW5ndWlzaGVkRGVjbGFyYXRpb25PZkxvdmU='>Anguished Declaration of Love</a>: Confessing your love for somebody during a moment of angst. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnimalSweetOnObject' title='/pmwiki/pmwiki.php/Main/AnimalSweetOnObject' data-format='QW5pbWFsU3dlZXRPbk9iamVjdA=='>Animal Sweet on Object</a>: An animal has a crush on an inanimate object. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntiLoveSong' title='/pmwiki/pmwiki.php/Main/AntiLoveSong' data-format='QW50aUxvdmVTb25n'>Anti-Love Song</a>: A not so sweet song about love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtistsAreAttractive' title='/pmwiki/pmwiki.php/Main/ArtistsAreAttractive' data-format='QXJ0aXN0c0FyZUF0dHJhY3RpdmU='>Artists Are Attractive</a>: Many folks can't help but fall for a poet, painter, musician, etc. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttractiveZombie' title='/pmwiki/pmwiki.php/Main/AttractiveZombie' data-format='QXR0cmFjdGl2ZVpvbWJpZQ=='>Attractive Zombie</a>: Even the undead find love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttractivenessIsolation' title='/pmwiki/pmwiki.php/Main/AttractivenessIsolation' data-format='QXR0cmFjdGl2ZW5lc3NJc29sYXRpb24='>Attractiveness Isolation</a>: A conventionally attractive person has trouble finding love due to people being scared to talk to them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AwLookTheyReallyDoLoveEachOther' title='/pmwiki/pmwiki.php/Main/AwLookTheyReallyDoLoveEachOther' data-format='QXdMb29rVGhleVJlYWxseURvTG92ZUVhY2hPdGhlcg=='>Aw, Look! They Really Do Love Each Other</a>: No matter how much they fight, they really do care about each other very much. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BalancedHarem' title='/pmwiki/pmwiki.php/Main/BalancedHarem' data-format='QmFsYW5jZWRIYXJlbQ=='>Balanced Harem</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HaremGenre' title='/pmwiki/pmwiki.php/Main/HaremGenre' data-format='SGFyZW1HZW5yZQ=='>Harem Genre</a> story where each haremette is given equal screentime and a shot at being with the lead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BalconyWooingScene' title='/pmwiki/pmwiki.php/Main/BalconyWooingScene' data-format='QmFsY29ueVdvb2luZ1NjZW5l'>Balcony Wooing Scene</a>: A lover courts his maiden from below her window or balcony. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BattleCouple' title='/pmwiki/pmwiki.php/Main/BattleCouple' data-format='QmF0dGxlQ291cGxl'>Battle Couple</a>: Lovers who kick ass together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeachKiss' title='/pmwiki/pmwiki.php/Main/BeachKiss' data-format='QmVhY2hLaXNz'>Beach Kiss</a>: A couple share a passionate kiss on the beach. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBeard' title='/pmwiki/pmwiki.php/Main/TheBeard' data-format='VGhlQmVhcmQ='>The Beard</a>: A character who pretends to be someone's lover to hide someone's sexuality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeastAndBeauty' title='/pmwiki/pmwiki.php/Main/BeastAndBeauty' data-format='QmVhc3RBbmRCZWF1dHk='>Beast and Beauty</a>: A couple involving a beautiful girl and a monstrous man (literal or not). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeautifulDreamer' title='/pmwiki/pmwiki.php/Main/BeautifulDreamer' data-format='QmVhdXRpZnVsRHJlYW1lcg=='>Beautiful Dreamer</a>: Lovingly watching your lover sleep. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BecomingTheMask' title='/pmwiki/pmwiki.php/Main/BecomingTheMask' data-format='QmVjb21pbmdUaGVNYXNr'>Becoming the Mask</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMole' title='/pmwiki/pmwiki.php/Main/TheMole' data-format='VGhlTW9sZQ=='>The Mole</a> genuinely comes to fall in love with the person they were stringing along. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BelatedLoveEpiphany' title='/pmwiki/pmwiki.php/Main/BelatedLoveEpiphany' data-format='QmVsYXRlZExvdmVFcGlwaGFueQ=='>Belated Love Epiphany</a>: Realizing that you love someone when they're no longer there with you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' title='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' data-format='QmVsbGlnZXJlbnRTZXh1YWxUZW5zaW9u'>Belligerent Sexual Tension</a>: Two people are in love, but they mask their feelings behind arguments. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BestHerToBedHer' title='/pmwiki/pmwiki.php/Main/BestHerToBedHer' data-format='QmVzdEhlclRvQmVkSGVy'>Best Her to Bed Her</a>: A man must defeat a strong woman in combat if he wishes to romance her. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBet' title='/pmwiki/pmwiki.php/Main/TheBet' data-format='VGhlQmV0'>The Bet</a>: Love is involved in a wager. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BetaCouple' title='/pmwiki/pmwiki.php/Main/BetaCouple' data-format='QmV0YUNvdXBsZQ=='>Beta Couple</a>: A secondary couple who acts as the more stable foil to the main couple. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BetterAsFriends' title='/pmwiki/pmwiki.php/Main/BetterAsFriends' data-format='QmV0dGVyQXNGcmllbmRz'>Better as Friends</a>: Two people were in love for a while, but then decided it was better that they were <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustFriends' title='/pmwiki/pmwiki.php/Main/JustFriends' data-format='SnVzdEZyaWVuZHM='>Just Friends</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BetterPartnerAssertion' title='/pmwiki/pmwiki.php/Main/BetterPartnerAssertion' data-format='QmV0dGVyUGFydG5lckFzc2VydGlvbg=='>Better Partner Assertion</a>: Someone tries to convince the person they love that they would be a better lover than their romantic rival. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BettyAndVeronica' title='/pmwiki/pmwiki.php/Main/BettyAndVeronica' data-format='QmV0dHlBbmRWZXJvbmljYQ=='>Betty and Veronica</a>: A love triangle where the lead's prospective <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a> are the sweet, reliable <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GirlNextDoor' title='/pmwiki/pmwiki.php/Main/GirlNextDoor' data-format='R2lybE5leHREb29y'>Girl Next Door</a> and the more daring, sultry <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MsFanservice' title='/pmwiki/pmwiki.php/Main/MsFanservice' data-format='TXNGYW5zZXJ2aWNl'>Ms. Fanservice</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BickeringCouplePeacefulCouple' title='/pmwiki/pmwiki.php/Main/BickeringCouplePeacefulCouple' data-format='Qmlja2VyaW5nQ291cGxlUGVhY2VmdWxDb3VwbGU='>Bickering Couple, Peaceful Couple</a>: One couple are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SickeningSweethearts' title='/pmwiki/pmwiki.php/Main/SickeningSweethearts' data-format='U2lja2VuaW5nU3dlZXRoZWFydHM='>Sickening Sweethearts</a> while another is very argumentative. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigDamnKiss' title='/pmwiki/pmwiki.php/Main/TheBigDamnKiss' data-format='VGhlQmlnRGFtbktpc3M='>The Big Damn Kiss</a>: A grandiose kiss scene. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BirdsOfAFeather' title='/pmwiki/pmwiki.php/Main/BirdsOfAFeather' data-format='QmlyZHNPZkFGZWF0aGVy'>Birds of a Feather</a>: A couple share similarities with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BiteOfAffection' title='/pmwiki/pmwiki.php/Main/BiteOfAffection' data-format='Qml0ZU9mQWZmZWN0aW9u'>Bite of Affection</a>: Love for somebody is shown through the form of biting them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BiWildered' title='/pmwiki/pmwiki.php/Main/BiWildered' data-format='QmlXaWxkZXJlZA=='>Bi-Wildered</a>: Confusion about one's own or another's bisexuality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackGalOnWhiteGuyDrama' title='/pmwiki/pmwiki.php/Main/BlackGalOnWhiteGuyDrama' data-format='QmxhY2tHYWxPbldoaXRlR3V5RHJhbWE='>Black Gal on White Guy Drama</a>: Relationships between black women and white men tend to be stigmatized. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlindDate' title='/pmwiki/pmwiki.php/Main/BlindDate' data-format='QmxpbmREYXRl'>Blind Date</a>: Going on a date with someone you never met. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BodyguardCrush' title='/pmwiki/pmwiki.php/Main/BodyguardCrush' data-format='Qm9keWd1YXJkQ3J1c2g='>Bodyguard Crush</a>: Falling in love with somebody hired to protect you or vice versa. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BoyMeetsGhoul' title='/pmwiki/pmwiki.php/Main/BoyMeetsGhoul' data-format='Qm95TWVldHNHaG91bA=='>Boy Meets Ghoul</a>: Romance between the living and the undead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BoyMeetsGirl' title='/pmwiki/pmwiki.php/Main/BoyMeetsGirl' data-format='Qm95TWVldHNHaXJs'>Boy Meets Girl</a>: A boy and a girl meet, lose each other, then find each other again. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakHisHeartToSaveHim' title='/pmwiki/pmwiki.php/Main/BreakHisHeartToSaveHim' data-format='QnJlYWtIaXNIZWFydFRvU2F2ZUhpbQ=='>Break His Heart to Save Him</a>: You must break up with your lover in order to protect them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakUpBonfire' title='/pmwiki/pmwiki.php/Main/BreakUpBonfire' data-format='QnJlYWtVcEJvbmZpcmU='>Break-Up Bonfire</a>: Things that remind you of your former lover are thrown into a fire. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakfastInBed' title='/pmwiki/pmwiki.php/Main/BreakfastInBed' data-format='QnJlYWtmYXN0SW5CZWQ='>Breakfast in Bed</a>: Showing appreciation and affection for another by preparing them a meal served upon their waking in bed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BridalCarry' title='/pmwiki/pmwiki.php/Main/BridalCarry' data-format='QnJpZGFsQ2Fycnk='>Bridal Carry</a>: A character carries his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> in his arms and/or vice versa. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BromanticFoil' title='/pmwiki/pmwiki.php/Main/BromanticFoil' data-format='QnJvbWFudGljRm9pbA=='>Bromantic Foil</a>: The romantic male lead's foil who's unlucky in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BroodingBoyGentleGirl' title='/pmwiki/pmwiki.php/Main/BroodingBoyGentleGirl' data-format='QnJvb2RpbmdCb3lHZW50bGVHaXJs'>Brooding Boy, Gentle Girl</a>: A moody bad boy and a sweet, kind girl fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrotherSisterIncest' title='/pmwiki/pmwiki.php/Main/BrotherSisterIncest' data-format='QnJvdGhlclNpc3RlckluY2VzdA=='>Brother–Sister Incest</a>: Romance between siblings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BusinessTripAdultery' title='/pmwiki/pmwiki.php/Main/BusinessTripAdultery' data-format='QnVzaW5lc3NUcmlwQWR1bHRlcnk='>Business Trip Adultery</a>: Using a business trip (one's own or another's) to have an affair. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CannotTalkToWomen' title='/pmwiki/pmwiki.php/Main/CannotTalkToWomen' data-format='Q2Fubm90VGFsa1RvV29tZW4='>Cannot Talk to Women</a>: A guy who has trouble talking to girls. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CantActPervertedTowardALoveInterest' title='/pmwiki/pmwiki.php/Main/CantActPervertedTowardALoveInterest' data-format='Q2FudEFjdFBlcnZlcnRlZFRvd2FyZEFMb3ZlSW50ZXJlc3Q='>Can't Act Perverted Toward a Love Interest</a>: Refusing to do anything lewd when in the presence of the one you love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CantHaveSexEver' title='/pmwiki/pmwiki.php/Main/CantHaveSexEver' data-format='Q2FudEhhdmVTZXhFdmVy'>Can't Have Sex, Ever</a>: You and your lover can't have sex or something bad will happen. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CantLiveWithThemCantLiveWithoutThem' title='/pmwiki/pmwiki.php/Main/CantLiveWithThemCantLiveWithoutThem' data-format='Q2FudExpdmVXaXRoVGhlbUNhbnRMaXZlV2l0aG91dFRoZW0='>Can't Live with Them, Can't Live Without Them</a>: When you prefer to be alone but find yourself oddly attached to another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CantTieHisTie' title='/pmwiki/pmwiki.php/Main/CantTieHisTie' data-format='Q2FudFRpZUhpc1RpZQ=='>Can't Tie His Tie</a>: A man allows a woman (who he may or may not be romantic with yet) to tie his tie, showing their closeness. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CaptiveDate' title='/pmwiki/pmwiki.php/Main/CaptiveDate' data-format='Q2FwdGl2ZURhdGU='>Captive Date</a>: Being forced to go on a date against your will. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CardiovascularLove' title='/pmwiki/pmwiki.php/Main/CardiovascularLove' data-format='Q2FyZGlvdmFzY3VsYXJMb3Zl'>Cardiovascular Love</a>: Hearts always represent love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CareBearStare' title='/pmwiki/pmwiki.php/Main/CareBearStare' data-format='Q2FyZUJlYXJTdGFyZQ=='>Care-Bear Stare</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfLove' title='/pmwiki/pmwiki.php/Main/ThePowerOfLove' data-format='VGhlUG93ZXJPZkxvdmU='>The Power of Love</a> literally weaponized. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CartwrightCurse' title='/pmwiki/pmwiki.php/Main/CartwrightCurse' data-format='Q2FydHdyaWdodEN1cnNl'>Cartwright Curse</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s lovers tend to die once involved with him/her. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CasualKink' title='/pmwiki/pmwiki.php/Main/CasualKink' data-format='Q2FzdWFsS2luaw=='>Casual Kink</a>: BDSM and other fetishes are seen as normal expressions of love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CaughtInTheRain' title='/pmwiki/pmwiki.php/Main/CaughtInTheRain' data-format='Q2F1Z2h0SW5UaGVSYWlu'>Caught in the Rain</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a couple seek shelter from the rain and they get intimate with each other as a result. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CaughtTheHeartOnHisSleeve' title='/pmwiki/pmwiki.php/Main/CaughtTheHeartOnHisSleeve' data-format='Q2F1Z2h0VGhlSGVhcnRPbkhpc1NsZWV2ZQ=='>Caught the Heart on His Sleeve</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where one partner grabs the other partner's arm/sleeve. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CelebrityPowerCouple' title='/pmwiki/pmwiki.php/Main/CelebrityPowerCouple' data-format='Q2VsZWJyaXR5UG93ZXJDb3VwbGU='>Celebrity Power Couple</a>: Two famous people in a romantic relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CelibateHero' title='/pmwiki/pmwiki.php/Main/CelibateHero' data-format='Q2VsaWJhdGVIZXJv'>Celibate Hero</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> who understands romantic love, yet forgoes it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChangingYourselfForLove' title='/pmwiki/pmwiki.php/Main/ChangingYourselfForLove' data-format='Q2hhbmdpbmdZb3Vyc2VsZkZvckxvdmU='>Changing Yourself for Love</a>: Changing your image to impress a love interest. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChastityCouple' title='/pmwiki/pmwiki.php/Main/ChastityCouple' data-format='Q2hhc3RpdHlDb3VwbGU='>Chastity Couple</a>: They're in love, but they're not physically intimate with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CherryBlossoms' title='/pmwiki/pmwiki.php/Main/CherryBlossoms' data-format='Q2hlcnJ5Qmxvc3NvbXM='>Cherry Blossoms</a>: Japanese cherry blossoms are used to symbolize love and romance. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChicAndAwe' title='/pmwiki/pmwiki.php/Main/ChicAndAwe' data-format='Q2hpY0FuZEF3ZQ=='>Chic and Awe</a>: One character assumes that another will be unattractive, but, upon seeing them in person for the first time, discovers that they're incredibly good-looking. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildOfForbiddenLove' title='/pmwiki/pmwiki.php/Main/ChildOfForbiddenLove' data-format='Q2hpbGRPZkZvcmJpZGRlbkxvdmU='>Child of Forbidden Love</a>: The child from a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForbiddenLove' title='/pmwiki/pmwiki.php/Main/ForbiddenLove' data-format='W1tGb3JiaWRkZW5Mb3ZlIGZvcmJpZGRlbiByZWxhdGlvbnNoaXBdXQ=='>forbidden relationship</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildhoodFriendRomance' title='/pmwiki/pmwiki.php/Main/ChildhoodFriendRomance' data-format='Q2hpbGRob29kRnJpZW5kUm9tYW5jZQ=='>Childhood Friend Romance</a>: People who have been friends since childhood get a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' title='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' data-format='UmVsYXRpb25zaGlwVXBncmFkZQ=='>Relationship Upgrade</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildhoodMarriagePromise' title='/pmwiki/pmwiki.php/Main/ChildhoodMarriagePromise' data-format='Q2hpbGRob29kTWFycmlhZ2VQcm9taXNl'>Childhood Marriage Promise</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildhoodFriends' title='/pmwiki/pmwiki.php/Main/ChildhoodFriends' data-format='Q2hpbGRob29kRnJpZW5kcw=='>Childhood Friends</a> promise to get married when they grow up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChocolateOfRomance' title='/pmwiki/pmwiki.php/Main/ChocolateOfRomance' data-format='Q2hvY29sYXRlT2ZSb21hbmNl'>Chocolate of Romance</a>: Chocolate makes a good gift for your lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClaimedByTheSupernatural' title='/pmwiki/pmwiki.php/Main/ClaimedByTheSupernatural' data-format='Q2xhaW1lZEJ5VGhlU3VwZXJuYXR1cmFs'>Claimed by the Supernatural</a>: A supernatural being falls in love with a regular person and "claims" them with some sort of "mark". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CleaningUpRomanticLooseEnds' title='/pmwiki/pmwiki.php/Main/CleaningUpRomanticLooseEnds' data-format='Q2xlYW5pbmdVcFJvbWFudGljTG9vc2VFbmRz'>Cleaning Up Romantic Loose Ends</a>: When the lead hooks up with their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneTrueLove' title='/pmwiki/pmwiki.php/Main/OneTrueLove' data-format='T25lVHJ1ZUxvdmU='>One True Love</a>, their other suitors are, often out of nowhere, paired off with other characters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClingyJealousGirl' title='/pmwiki/pmwiki.php/Main/ClingyJealousGirl' data-format='Q2xpbmd5SmVhbG91c0dpcmw='>Clingy Jealous Girl</a>: She tends to be very possessive of her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClosetKey' title='/pmwiki/pmwiki.php/Main/ClosetKey' data-format='Q2xvc2V0S2V5'>Closet Key</a>: A character who makes a person realize that they're actually gay/bi, often they end up hooking up with that character in return. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CluelessChickMagnet' title='/pmwiki/pmwiki.php/Main/CluelessChickMagnet' data-format='Q2x1ZWxlc3NDaGlja01hZ25ldA=='>Clueless Chick-Magnet</a>: This guy has no clue how popular he is with the ladies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CockFight' title='/pmwiki/pmwiki.php/Main/CockFight' data-format='Q29ja0ZpZ2h0'>Cock Fight</a>: Two guys fight for the affections of a girl. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComfortingComforter' title='/pmwiki/pmwiki.php/Main/ComfortingComforter' data-format='Q29tZm9ydGluZ0NvbWZvcnRlcg=='>Comforting Comforter</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where someone covers their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> with a blanket when they start to get cold. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComingOfAgeQueerRomance' title='/pmwiki/pmwiki.php/Main/ComingOfAgeQueerRomance' data-format='Q29taW5nT2ZBZ2VRdWVlclJvbWFuY2U='>Coming Of Age Queer Romance</a>: A character realizes they are queer and falls for (and ends up in a relationship with) another queer character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CommitmentIssues' title='/pmwiki/pmwiki.php/Main/CommitmentIssues' data-format='Q29tbWl0bWVudElzc3Vlcw=='>Commitment Issues</a>: Fear of settling down with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CommonLawMarriage' title='/pmwiki/pmwiki.php/Main/CommonLawMarriage' data-format='Q29tbW9uTGF3TWFycmlhZ2U='>Common Law Marriage</a>: A couple live together for a very long time but aren't married. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CompetingWithACorpse' title='/pmwiki/pmwiki.php/Main/CompetingWithACorpse' data-format='Q29tcGV0aW5nV2l0aEFDb3Jwc2U='>Competing with a Corpse</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTriangle' title='/pmwiki/pmwiki.php/Main/LoveTriangle' data-format='TG92ZVRyaWFuZ2xl'>Love Triangle</a> where one party is already dead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConcertClimax' title='/pmwiki/pmwiki.php/Main/ConcertClimax' data-format='Q29uY2VydENsaW1heA=='>Concert Climax</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrandRomanticGesture' title='/pmwiki/pmwiki.php/Main/GrandRomanticGesture' data-format='R3JhbmRSb21hbnRpY0dlc3R1cmU='>Grand Romantic Gesture</a> occurs at a climatic event. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConfessionTriggersConsummation' title='/pmwiki/pmwiki.php/Main/ConfessionTriggersConsummation' data-format='Q29uZmVzc2lvblRyaWdnZXJzQ29uc3VtbWF0aW9u'>Confession Triggers Consummation</a>: The first confession of love between two characters immediately leads to sex. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConverseWithTheUnconscious' title='/pmwiki/pmwiki.php/Main/ConverseWithTheUnconscious' data-format='Q29udmVyc2VXaXRoVGhlVW5jb25zY2lvdXM='>Converse with the Unconscious</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a character talks to their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> while they're unconscious, often in a very angsty way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConvertingForLove' title='/pmwiki/pmwiki.php/Main/ConvertingForLove' data-format='Q29udmVydGluZ0ZvckxvdmU='>Converting for Love</a>: Converting to a religion to be with your lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CoupledCouples' title='/pmwiki/pmwiki.php/Main/CoupledCouples' data-format='Q291cGxlZENvdXBsZXM='>Coupled Couples</a>: Two couples who are good friends. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CourtlyLove' title='/pmwiki/pmwiki.php/Main/CourtlyLove' data-format='Q291cnRseUxvdmU='>Courtly Love</a>: Medieval style romance where characters love each other from afar. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrazyInTheHeadCrazyInTheBed' title='/pmwiki/pmwiki.php/Main/CrazyInTheHeadCrazyInTheBed' data-format='Q3JhenlJblRoZUhlYWRDcmF6eUluVGhlQmVk'>Crazy in the Head, Crazy in the Bed</a>: A character is eccentric or outright insane, which makes them more appealing in the romantic and sexual sense. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrazyJealousGuy' title='/pmwiki/pmwiki.php/Main/CrazyJealousGuy' data-format='Q3JhenlKZWFsb3VzR3V5'>Crazy Jealous Guy</a>: He can't stand seeing his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> be with anyone else. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CriminallyAttractive' title='/pmwiki/pmwiki.php/Main/CriminallyAttractive' data-format='Q3JpbWluYWxseUF0dHJhY3RpdmU='>Criminally Attractive</a>: A criminal falls in love with either their victim or an official who would normally bring them into custody. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrushBlush' title='/pmwiki/pmwiki.php/Main/CrushBlush' data-format='Q3J1c2hCbHVzaA=='>Crush Blush</a>: Love causes you to blush. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrushFilter' title='/pmwiki/pmwiki.php/Main/CrushFilter' data-format='Q3J1c2hGaWx0ZXI='>Crush Filter</a>: Someone's crush is shown in a beautiful, ethereal light from their perspective. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CryIntoChest' title='/pmwiki/pmwiki.php/Main/CryIntoChest' data-format='Q3J5SW50b0NoZXN0'>Cry into Chest</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where one partner cries into the other partner's chest. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CuckoldHorns' title='/pmwiki/pmwiki.php/Main/CuckoldHorns' data-format='Q3Vja29sZEhvcm5z'>Cuckold Horns</a>: A pair of horns used to show that a man's lover has been unfaithful. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CupidsArrow' title='/pmwiki/pmwiki.php/Main/CupidsArrow' data-format='Q3VwaWRzQXJyb3c='>Cupid's Arrow</a>: Falling in love personified by the love god, Cupid. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DanceOfRomance' title='/pmwiki/pmwiki.php/Main/DanceOfRomance' data-format='RGFuY2VPZlJvbWFuY2U='>Dance of Romance</a>: A couple dances together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DatingBestFriendsSiblingDrama' title='/pmwiki/pmwiki.php/Main/DatingBestFriendsSiblingDrama' data-format='RGF0aW5nQmVzdEZyaWVuZHNTaWJsaW5nRHJhbWE='>"Dating Best Friend's Sibling" Drama</a>: For better or for worse, the love interests are tied together by one of them being the best friend of the other's sibling. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DatingCatwoman' title='/pmwiki/pmwiki.php/Main/DatingCatwoman' data-format='RGF0aW5nQ2F0d29tYW4='>Dating Catwoman</a>: Enemies who are also lovers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DatingDoSiDo' title='/pmwiki/pmwiki.php/Main/DatingDoSiDo' data-format='RGF0aW5nRG9TaURv'>Dating Do-Si-Do</a>: Characters in a long-running show all date each other at some point. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeadSparks' title='/pmwiki/pmwiki.php/Main/DeadSparks' data-format='RGVhZFNwYXJrcw=='>Dead Sparks</a>: They were once in love, but the romance died out a long time ago. <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RekindledSparks' title='/pmwiki/pmwiki.php/Main/RekindledSparks' data-format='UmVraW5kbGVkU3Bhcmtz'>Rekindled Sparks</a>: The long dead romance is brought back to life. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ADeadlyAffair' title='/pmwiki/pmwiki.php/Main/ADeadlyAffair' data-format='QURlYWRseUFmZmFpcg=='>A Deadly Affair</a>: When an affair turns into a crime scene. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnyoneCanDie' title='/pmwiki/pmwiki.php/Main/AnyoneCanDie' data-format='W1tBbnlvbmVDYW5EaWUgVmljdGltKHMpIGNhbiB2YXJ5Ll1d'>Victim(s) can vary.</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DearJohnLetter' title='/pmwiki/pmwiki.php/Main/DearJohnLetter' data-format='RGVhckpvaG5MZXR0ZXI='>&quot;Dear John&quot; Letter</a>: A romantic relationship is broken off through mail. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathAndTheMaiden' title='/pmwiki/pmwiki.php/Main/DeathAndTheMaiden' data-format='RGVhdGhBbmRUaGVNYWlkZW4='>Death and the Maiden</a>: A personification of death falls in love with a woman. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathOfTheHypotenuse' title='/pmwiki/pmwiki.php/Main/DeathOfTheHypotenuse' data-format='RGVhdGhPZlRoZUh5cG90ZW51c2U='>Death of the Hypotenuse</a>: A love triangle is resolved when one of the prospective <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a> dies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DecemberDecemberRomance' title='/pmwiki/pmwiki.php/Main/DecemberDecemberRomance' data-format='RGVjZW1iZXJEZWNlbWJlclJvbWFuY2U='>December–December Romance</a>: Elders in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeclarationOfProtection' title='/pmwiki/pmwiki.php/Main/DeclarationOfProtection' data-format='RGVjbGFyYXRpb25PZlByb3RlY3Rpb24='>Declaration of Protection</a>: Making a vow to protect the one you love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeconfirmedBachelor' title='/pmwiki/pmwiki.php/Main/DeconfirmedBachelor' data-format='RGVjb25maXJtZWRCYWNoZWxvcg=='>Deconfirmed Bachelor</a>: He vowed to never be in a relationship, but then he met "her". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DefenestrateAndBerate' title='/pmwiki/pmwiki.php/Main/DefenestrateAndBerate' data-format='RGVmZW5lc3RyYXRlQW5kQmVyYXRl'>Defenestrate and Berate</a>: Throwing out or destroying your ex-lover's belongings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemotedToSatelliteLoveInterest' title='/pmwiki/pmwiki.php/Main/DemotedToSatelliteLoveInterest' data-format='RGVtb3RlZFRvU2F0ZWxsaXRlTG92ZUludGVyZXN0'>Demoted to Satellite Love Interest</a>: A character is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemotedToExtra' title='/pmwiki/pmwiki.php/Main/DemotedToExtra' data-format='RGVtb3RlZFRvRXh0cmE='>Demoted to Extra</a> once they hook up with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DerailingLoveInterests' title='/pmwiki/pmwiki.php/Main/DerailingLoveInterests' data-format='RGVyYWlsaW5nTG92ZUludGVyZXN0cw=='>Derailing Love Interests</a>: Getting the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a> together by making the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticFalseLead' title='/pmwiki/pmwiki.php/Main/RomanticFalseLead' data-format='Um9tYW50aWNGYWxzZUxlYWQ='>Romantic False Lead</a> look bad. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DestructiveRomance' title='/pmwiki/pmwiki.php/Main/DestructiveRomance' data-format='RGVzdHJ1Y3RpdmVSb21hbmNl'>Destructive Romance</a>: A deeply unhappy and dysfunctional romantic relationship (sometimes to the point of being abusive). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DestructoNookie' title='/pmwiki/pmwiki.php/Main/DestructoNookie' data-format='RGVzdHJ1Y3RvTm9va2ll'>Destructo-Nookie</a>: Lovers have sex so rough, stuff gets wrecked. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DevotedToYou' title='/pmwiki/pmwiki.php/Main/DevotedToYou' data-format='RGV2b3RlZFRvWW91'>Devoted to You</a>: A character who inspires obsessive devotion in those around them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DidNotGetTheGirl' title='/pmwiki/pmwiki.php/Main/DidNotGetTheGirl' data-format='RGlkTm90R2V0VGhlR2lybA=='>Did Not Get the Girl</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> doesn't win their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DidYouJustRomanceCthulhu' title='/pmwiki/pmwiki.php/Main/DidYouJustRomanceCthulhu' data-format='RGlkWW91SnVzdFJvbWFuY2VDdGh1bGh1'>Did You Just Romance Cthulhu?</a>: Romance between a human and an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='RWxkcml0Y2hBYm9taW5hdGlvbg=='>Eldritch Abomination</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DifferingPrioritiesBreakup' title='/pmwiki/pmwiki.php/Main/DifferingPrioritiesBreakup' data-format='RGlmZmVyaW5nUHJpb3JpdGllc0JyZWFrdXA='>Differing Priorities Breakup</a>: Despite still loving each other, breaking up because you know you will be unhappy together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiscountLesbians' title='/pmwiki/pmwiki.php/Main/DiscountLesbians' data-format='RGlzY291bnRMZXNiaWFucw=='>Discount Lesbians</a>: Nonhuman characters used to represent a homosexual relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DismissingACompliment' title='/pmwiki/pmwiki.php/Main/DismissingACompliment' data-format='RGlzbWlzc2luZ0FDb21wbGltZW50'>Dismissing a Compliment</a>: A character (often a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Tsundere' title='/pmwiki/pmwiki.php/Main/Tsundere' data-format='e3tUc3VuZGVyZX19'>Tsundere</a> or an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InsecureLoveInterest' title='/pmwiki/pmwiki.php/Main/InsecureLoveInterest' data-format='SW5zZWN1cmVMb3ZlSW50ZXJlc3Q='>Insecure Love Interest</a>) doesn't believe something nice their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> tells them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DisposableFiance' title='/pmwiki/pmwiki.php/Main/DisposableFiance' data-format='RGlzcG9zYWJsZUZpYW5jZQ=='>Disposable Fiancé</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticFalseLead' title='/pmwiki/pmwiki.php/Main/RomanticFalseLead' data-format='Um9tYW50aWNGYWxzZUxlYWQ='>Romantic False Lead</a> character whose role is to get dumped by the lead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DivineDate' title='/pmwiki/pmwiki.php/Main/DivineDate' data-format='RGl2aW5lRGF0ZQ=='>Divine Date</a>: Romance between a mortal and a god. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DivorceRequiresDeath' title='/pmwiki/pmwiki.php/Main/DivorceRequiresDeath' data-format='RGl2b3JjZVJlcXVpcmVzRGVhdGg='>Divorce Requires Death</a>: Wanting to leave your spouse means one of you will have to die. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DontYouDarePityMe' title='/pmwiki/pmwiki.php/Main/DontYouDarePityMe' data-format='RG9udFlvdURhcmVQaXR5TWU='>Don't You Dare Pity Me!</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where one partner tries to comfort the other, only to be turned away. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DowntimeDowngrade' title='/pmwiki/pmwiki.php/Main/DowntimeDowngrade' data-format='RG93bnRpbWVEb3duZ3JhZGU='>Downtime Downgrade</a>: Two characters hook up at the end of the story, only to have broken up by the sequel. <!--* Driven By A Love Interest: Character's entire life revolves around their love interest.--> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrowningOurRomanticSorrows' title='/pmwiki/pmwiki.php/Main/DrowningOurRomanticSorrows' data-format='RHJvd25pbmdPdXJSb21hbnRpY1NvcnJvd3M='>Drowning Our Romantic Sorrows</a>: Romantic rivals get drunk together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DuetBonding' title='/pmwiki/pmwiki.php/Main/DuetBonding' data-format='RHVldEJvbmRpbmc='>Duet Bonding</a>: Two people fall in love when they play music together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDulcineaEffect' title='/pmwiki/pmwiki.php/Main/TheDulcineaEffect' data-format='VGhlRHVsY2luZWFFZmZlY3Q='>The Dulcinea Effect</a>: A character falls for someone and instantly wants to protect them with their life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DumpThemAll' title='/pmwiki/pmwiki.php/Main/DumpThemAll' data-format='RHVtcFRoZW1BbGw='>Dump Them All</a>: The lead chooses not to be with any of their prospective <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DyingDeclarationOfLove' title='/pmwiki/pmwiki.php/Main/DyingDeclarationOfLove' data-format='RHlpbmdEZWNsYXJhdGlvbk9mTG92ZQ=='>Dying Declaration of Love</a>: Confessing your love for somebody when you're dying. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EatingTheEyeCandy' title='/pmwiki/pmwiki.php/Main/EatingTheEyeCandy' data-format='RWF0aW5nVGhlRXllQ2FuZHk='>Eating the Eye Candy</a>: Eyeing up your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>'s gorgeous body. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElectricLove' title='/pmwiki/pmwiki.php/Main/ElectricLove' data-format='RWxlY3RyaWNMb3Zl'>Electric Love</a>: Love represented by literal sparks. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EliteManCourtesanRomance' title='/pmwiki/pmwiki.php/Main/EliteManCourtesanRomance' data-format='RWxpdGVNYW5Db3VydGVzYW5Sb21hbmNl'>Elite Man–Courtesan Romance</a>: Romance between a sex worker and a person of high class. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnterStageWindow' title='/pmwiki/pmwiki.php/Main/EnterStageWindow' data-format='RW50ZXJTdGFnZVdpbmRvdw=='>Enter Stage Window</a>: A character visits their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> via climbing through their window. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EqualizingTheInterspeciesRomance' title='/pmwiki/pmwiki.php/Main/EqualizingTheInterspeciesRomance' data-format='RXF1YWxpemluZ1RoZUludGVyc3BlY2llc1JvbWFuY2U='>Equalizing the Interspecies Romance</a>: Lovers from different species are brought together when one of them is turned into another's species. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EternalLove' title='/pmwiki/pmwiki.php/Main/EternalLove' data-format='RXRlcm5hbExvdmU='>Eternal Love</a>: Immortal lovers who have been together for eons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvenEvilCanBeLoved' title='/pmwiki/pmwiki.php/Main/EvenEvilCanBeLoved' data-format='RXZlbkV2aWxDYW5CZUxvdmVk'>Even Evil Can Be Loved</a>: Villains are humanized by being loved, especially from a heroic character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvenEvilHasLovedOnes' title='/pmwiki/pmwiki.php/Main/EvenEvilHasLovedOnes' data-format='RXZlbkV2aWxIYXNMb3ZlZE9uZXM='>Even Evil Has Loved Ones</a>: Bad guys love someone, romantically or not. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EveryoneCanSeeIt' title='/pmwiki/pmwiki.php/Main/EveryoneCanSeeIt' data-format='RXZlcnlvbmVDYW5TZWVJdA=='>Everyone Can See It</a>: It's obvious that these two are meant to be together, if only they themselves saw it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EveryoneMustBePaired' title='/pmwiki/pmwiki.php/Main/EveryoneMustBePaired' data-format='RXZlcnlvbmVNdXN0QmVQYWlyZWQ='>Everyone Must Be Paired</a>: The work insists that every single character must end up with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExiledToTheCouch' title='/pmwiki/pmwiki.php/Main/ExiledToTheCouch' data-format='RXhpbGVkVG9UaGVDb3VjaA=='>Exiled to the Couch</a>: When a couple fight, one partner is forced to sleep away from the bed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FakeOutMakeOut' title='/pmwiki/pmwiki.php/Main/FakeOutMakeOut' data-format='RmFrZU91dE1ha2VPdXQ='>Fake-Out Make-Out</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where two characters kiss each other as a way to distract someone. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FakeRelationship' title='/pmwiki/pmwiki.php/Main/FakeRelationship' data-format='RmFrZVJlbGF0aW9uc2hpcA=='>Fake Relationship</a>: Pretending to be in a romantic relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FallenCupid' title='/pmwiki/pmwiki.php/Main/FallenCupid' data-format='RmFsbGVuQ3VwaWQ='>Fallen Cupid</a>: Cupid turned evil! </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FallingInLoveMontage' title='/pmwiki/pmwiki.php/Main/FallingInLoveMontage' data-format='RmFsbGluZ0luTG92ZU1vbnRhZ2U='>Falling-in-Love Montage</a>: A couple is shown spending time together as they fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FalseSoulmate' title='/pmwiki/pmwiki.php/Main/FalseSoulmate' data-format='RmFsc2VTb3VsbWF0ZQ=='>False Soulmate</a>: This person seemed perfect for you at first, but they later turn out to be a mismatch. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FanPreferredCouple' title='/pmwiki/pmwiki.php/Main/FanPreferredCouple' data-format='RmFuUHJlZmVycmVkQ291cGxl'>Fan-Preferred Couple</a>: The audience supports this couple more than the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasticRomance' title='/pmwiki/pmwiki.php/Main/FantasticRomance' data-format='RmFudGFzdGljUm9tYW5jZQ=='>Fantastic Romance</a>: A romance only possible in speculative fiction. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FatalAttractor' title='/pmwiki/pmwiki.php/Main/FatalAttractor' data-format='RmF0YWxBdHRyYWN0b3I='>Fatal Attractor</a>: This character always seems to fall in love with evil/mentally unstable people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FateDrivesUsTogether' title='/pmwiki/pmwiki.php/Main/FateDrivesUsTogether' data-format='RmF0ZURyaXZlc1VzVG9nZXRoZXI='>Fate Drives Us Together</a>: If two people keep encountering each other, it means they're meant to be together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FatherIWantToMarryMyBrother' title='/pmwiki/pmwiki.php/Main/FatherIWantToMarryMyBrother' data-format='RmF0aGVySVdhbnRUb01hcnJ5TXlCcm90aGVy'>Father, I Want to Marry My Brother</a>: A child expresses an innocent desire to marry a family member, oblivious to the incestuous context. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FauxInterracialRelationship' title='/pmwiki/pmwiki.php/Main/FauxInterracialRelationship' data-format='RmF1eEludGVycmFjaWFsUmVsYXRpb25zaGlw'>Faux Interracial Relationship</a>: They initially seem like a biracial couple, but then they turn out to actually be of the same race. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FerrisWheelDateMoment' title='/pmwiki/pmwiki.php/Main/FerrisWheelDateMoment' data-format='RmVycmlzV2hlZWxEYXRlTW9tZW50'>Ferris Wheel Date Moment</a>: A couple has a romantic moment on a Ferris wheel. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FidelityTest' title='/pmwiki/pmwiki.php/Main/FidelityTest' data-format='RmlkZWxpdHlUZXN0'>Fidelity Test</a>: Testing your lover to see just how faithful they are to you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinishingEachOthersSentences' title='/pmwiki/pmwiki.php/Main/FinishingEachOthersSentences' data-format='RmluaXNoaW5nRWFjaE90aGVyc1NlbnRlbmNlcw=='>Finishing Each Other's Sentences</a>: People who are so in love know what their partner is gonna say before they do. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FireAndIceLoveTriangle' title='/pmwiki/pmwiki.php/Main/FireAndIceLoveTriangle' data-format='RmlyZUFuZEljZUxvdmVUcmlhbmdsZQ=='>Fire and Ice Love Triangle</a>: A love triangle where the lead's two <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> choices make up a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedOniBlueOni' title='/pmwiki/pmwiki.php/Main/RedOniBlueOni' data-format='UmVkT25pQmx1ZU9uaQ=='>Red Oni, Blue Oni</a> duo. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FireworksOfLove' title='/pmwiki/pmwiki.php/Main/FireworksOfLove' data-format='RmlyZXdvcmtzT2ZMb3Zl'>Fireworks of Love</a>: Fireworks that go off when a couple is kissing, having sex, or otherwise having an intimate moment. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFirstCutIsTheDeepest' title='/pmwiki/pmwiki.php/Main/TheFirstCutIsTheDeepest' data-format='VGhlRmlyc3RDdXRJc1RoZURlZXBlc3Q='>The First Cut Is the Deepest</a>: Being unable to love again due to emotional wounds from a previous relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FirstGirlAfterAll' title='/pmwiki/pmwiki.php/Main/FirstGirlAfterAll' data-format='Rmlyc3RHaXJsQWZ0ZXJBbGw='>First Girl After All</a>: She knew the lead long before they met their other prospective <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a> and therefore hooks up with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FirstGirlWins' title='/pmwiki/pmwiki.php/Main/FirstGirlWins' data-format='Rmlyc3RHaXJsV2lucw=='>First Girl Wins</a>: The lead hooks up with the first person they meet in the story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FirstLove' title='/pmwiki/pmwiki.php/Main/FirstLove' data-format='Rmlyc3RMb3Zl'>First Love</a>: The first person that you've ever fallen in love with. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlamesOfLove' title='/pmwiki/pmwiki.php/Main/FlamesOfLove' data-format='RmxhbWVzT2ZMb3Zl'>Flames of Love</a>: Fire represents the passion in a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlightOfRomance' title='/pmwiki/pmwiki.php/Main/FlightOfRomance' data-format='RmxpZ2h0T2ZSb21hbmNl'>Flight of Romance</a>: Flying with your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> makes for a good romantic moment. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlirtingUnderFire' title='/pmwiki/pmwiki.php/Main/FlirtingUnderFire' data-format='RmxpcnRpbmdVbmRlckZpcmU='>Flirting Under Fire</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BattleCouple' title='/pmwiki/pmwiki.php/Main/BattleCouple' data-format='QmF0dGxlQ291cGxl'>Battle Couple</a> flirt while in the middle of combat. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlirtyStepsiblings' title='/pmwiki/pmwiki.php/Main/FlirtyStepsiblings' data-format='RmxpcnR5U3RlcHNpYmxpbmdz'>Flirty Stepsiblings</a>: Teenage stepsiblings tend to have romantic subtext with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlorenceNightingaleEffect' title='/pmwiki/pmwiki.php/Main/FlorenceNightingaleEffect' data-format='RmxvcmVuY2VOaWdodGluZ2FsZUVmZmVjdA=='>Florence Nightingale Effect</a>: A doctor/nurse falls in love with the person under their care. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlowersOfRomance' title='/pmwiki/pmwiki.php/Main/FlowersOfRomance' data-format='Rmxvd2Vyc09mUm9tYW5jZQ=='>Flowers of Romance</a>: Flowers are a great gift for your lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoeCooties' title='/pmwiki/pmwiki.php/Main/FoeCooties' data-format='Rm9lQ29vdGllcw=='>Foe Cooties</a>: Wanting nothing to do with your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> upon knowing they were once involved with your enemy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoolForLove' title='/pmwiki/pmwiki.php/Main/FoolForLove' data-format='Rm9vbEZvckxvdmU='>Fool for Love</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCynic' title='/pmwiki/pmwiki.php/Main/TheCynic' data-format='VGhlQ3luaWM='>The Cynic</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KnightInSourArmor' title='/pmwiki/pmwiki.php/Main/KnightInSourArmor' data-format='S25pZ2h0SW5Tb3VyQXJtb3I='>Knight in Sour Armor</a> falls in love despite emotional wounds from past love relationships. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForbiddenLove' title='/pmwiki/pmwiki.php/Main/ForbiddenLove' data-format='Rm9yYmlkZGVuTG92ZQ=='>Forbidden Love</a>: Romantic relationships which are considered taboo. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForgottenFirstMeeting' title='/pmwiki/pmwiki.php/Main/ForgottenFirstMeeting' data-format='Rm9yZ290dGVuRmlyc3RNZWV0aW5n'>Forgotten First Meeting</a>: Forgetting that you first met your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> long ago. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForeverFling' title='/pmwiki/pmwiki.php/Main/ForeverFling' data-format='Rm9yZXZlckZsaW5n'>Forever Fling</a>: A short-lived, youthful, passionate romance is the yardstick by which all the couple's subsequent romances are measured and fail. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFourLoves' title='/pmwiki/pmwiki.php/Main/TheFourLoves' data-format='VGhlRm91ckxvdmVz'>The Four Loves</a>: Romance is not the only form of love there is. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FreeLoveFuture' title='/pmwiki/pmwiki.php/Main/FreeLoveFuture' data-format='RnJlZUxvdmVGdXR1cmU='>Free-Love Future</a>: In the future, everyone has sex with whoever they want without committing to each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendVersusLover' title='/pmwiki/pmwiki.php/Main/FriendVersusLover' data-format='RnJpZW5kVmVyc3VzTG92ZXI='>Friend Versus Lover</a>: A character is fought over by their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> and best friend. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendlyWar' title='/pmwiki/pmwiki.php/Main/FriendlyWar' data-format='RnJpZW5kbHlXYXI='>Friendly War</a>: Fighting done out of love rather than malice. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendsWithBenefits' title='/pmwiki/pmwiki.php/Main/FriendsWithBenefits' data-format='RnJpZW5kc1dpdGhCZW5lZml0cw=='>Friends with Benefits</a>: Two people who have sex with each other in a non-romantic relationship without falling in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendshipOnTheSet' title='/pmwiki/pmwiki.php/Main/FriendshipOnTheSet' data-format='RnJpZW5kc2hpcE9uVGhlU2V0'>Friendship on the Set</a>: Actors become good friends while working on a production together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FromRoommatesToRomance' title='/pmwiki/pmwiki.php/Main/FromRoommatesToRomance' data-format='RnJvbVJvb21tYXRlc1RvUm9tYW5jZQ=='>From Roommates to Romance</a>: Love blossoms between two people who live together as a result of their close contact. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GardenOfLove' title='/pmwiki/pmwiki.php/Main/GardenOfLove' data-format='R2FyZGVuT2ZMb3Zl'>Garden of Love</a>: Gardens as a setting for love to take root, grow, and blossom. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GaussianGirl' title='/pmwiki/pmwiki.php/Main/GaussianGirl' data-format='R2F1c3NpYW5HaXJs'>Gaussian Girl</a>: A visual effect where the (usually female) <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> is given a blurry, ethereal look. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GayGuySeeksPopularJock' title='/pmwiki/pmwiki.php/Main/GayGuySeeksPopularJock' data-format='R2F5R3V5U2Vla3NQb3B1bGFySm9jaw=='>Gay Guy Seeks Popular Jock</a>: A gay male is in love with the star quarterback of the school. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GayOption' title='/pmwiki/pmwiki.php/Main/GayOption' data-format='R2F5T3B0aW9u'>Gay Option</a>: A dating game gives you the option to hook up with someone of the same sex. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBenderFriendship' title='/pmwiki/pmwiki.php/Main/GenderBenderFriendship' data-format='R2VuZGVyQmVuZGVyRnJpZW5kc2hpcA=='>Gender-Bender Friendship</a>: Character befriends their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> while masquerading as the opposite sex. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGentlemanOrTheScoundrel' title='/pmwiki/pmwiki.php/Main/TheGentlemanOrTheScoundrel' data-format='VGhlR2VudGxlbWFuT3JUaGVTY291bmRyZWw='>The Gentleman or the Scoundrel</a>: A woman's two choices for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> are the polite <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGuy' title='/pmwiki/pmwiki.php/Main/NiceGuy' data-format='TmljZUd1eQ=='>Nice Guy</a> and the dangerous, more thrilling bad boy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GhostShipping' title='/pmwiki/pmwiki.php/Main/GhostShipping' data-format='R2hvc3RTaGlwcGluZw=='>Ghost Shipping</a>: Fans pair a living character with one who is dead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GibberishOfLove' title='/pmwiki/pmwiki.php/Main/GibberishOfLove' data-format='R2liYmVyaXNoT2ZMb3Zl'>Gibberish of Love</a>: Being unable to speak in complete sentences when around your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AGirlInEveryPort' title='/pmwiki/pmwiki.php/Main/AGirlInEveryPort' data-format='QUdpcmxJbkV2ZXJ5UG9ydA=='>A Girl in Every Port</a>: Having love/sex affairs while traveling. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GirlOfMyDreams' title='/pmwiki/pmwiki.php/Main/GirlOfMyDreams' data-format='R2lybE9mTXlEcmVhbXM='>Girl of My Dreams</a>: First encountering your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> in your dreams. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GiveGeeksAChance' title='/pmwiki/pmwiki.php/Main/GiveGeeksAChance' data-format='R2l2ZUdlZWtzQUNoYW5jZQ=='>Give Geeks a Chance</a>: Nerds are given a chance at love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGlomp' title='/pmwiki/pmwiki.php/Main/TheGlomp' data-format='VGhlR2xvbXA='>The Glomp</a>: Tackling and hugging your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> tightly. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GodCouple' title='/pmwiki/pmwiki.php/Main/GodCouple' data-format='R29kQ291cGxl'>God Couple</a>: Divine beings in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrandRomanticGesture' title='/pmwiki/pmwiki.php/Main/GrandRomanticGesture' data-format='R3JhbmRSb21hbnRpY0dlc3R1cmU='>Grand Romantic Gesture</a>: A big, elaborate event done for someone to show your love for them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreenEyedEpiphany' title='/pmwiki/pmwiki.php/Main/GreenEyedEpiphany' data-format='R3JlZW5FeWVkRXBpcGhhbnk='>Green-Eyed Epiphany</a>: Realizing you love someone when seeing them with someone else upsets you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrowOldWithMe' title='/pmwiki/pmwiki.php/Main/GrowOldWithMe' data-format='R3Jvd09sZFdpdGhNZQ=='>Grow Old with Me</a>: Lovers stay together to old age. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Tropes (H-M)&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HairMemento' title='/pmwiki/pmwiki.php/Main/HairMemento' data-format='SGFpck1lbWVudG8='>Hair Memento</a>: A character cutting a piece of their hair and giving it away to someone they love (this can be any kind of love). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HandsOnApproach' title='/pmwiki/pmwiki.php/Main/HandsOnApproach' data-format='SGFuZHNPbkFwcHJvYWNo'>Hands-On Approach</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where someone gets really close to their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> while teaching them how to use something. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HandsPlayInTheater' title='/pmwiki/pmwiki.php/Main/HandsPlayInTheater' data-format='SGFuZHNQbGF5SW5UaGVhdGVy'>Hands Play In Theater</a>: Putting your arm around your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> while you two are at the movies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HankyPankyWithTheHelp' title='/pmwiki/pmwiki.php/Main/HankyPankyWithTheHelp' data-format='SGFua3lQYW5reVdpdGhUaGVIZWxw'>Hanky-Panky with the Help</a>: A rich person falls in love with one of their servants. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappilyMarried' title='/pmwiki/pmwiki.php/Main/HappilyMarried' data-format='SGFwcGlseU1hcnJpZWQ='>Happily Married</a>: A married couple who are happy together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappinessInSlavery' title='/pmwiki/pmwiki.php/Main/HappinessInSlavery' data-format='SGFwcGluZXNzSW5TbGF2ZXJ5'>Happiness in Slavery</a>: Being happy to serve somebody because you love them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HaremGenre' title='/pmwiki/pmwiki.php/Main/HaremGenre' data-format='SGFyZW1HZW5yZQ=='>Harem Genre</a>: A story where the lead is given multiple choices for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HaremSeeker' title='/pmwiki/pmwiki.php/Main/HaremSeeker' data-format='SGFyZW1TZWVrZXI='>Harem Seeker</a>: A character who seeks to gain multiple lovers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadbuttOfLove' title='/pmwiki/pmwiki.php/Main/HeadbuttOfLove' data-format='SGVhZGJ1dHRPZkxvdmU='>Headbutt of Love</a>: Lovers press their foreheads together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadbuttThermometer' title='/pmwiki/pmwiki.php/Main/HeadbuttThermometer' data-format='SGVhZGJ1dHRUaGVybW9tZXRlcg=='>Headbutt Thermometer</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a character checks their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>'s temperature by pressing their forehead against theirs. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeartBeatDown' title='/pmwiki/pmwiki.php/Main/HeartBeatDown' data-format='SGVhcnRCZWF0RG93bg=='>Heart Beat-Down</a>: Using the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeartSymbol' title='/pmwiki/pmwiki.php/Main/HeartSymbol' data-format='SGVhcnRTeW1ib2w='>Heart Symbol</a>, the quintessential symbol of love, as a weapon. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeartIsWhereTheHomeIs' title='/pmwiki/pmwiki.php/Main/HeartIsWhereTheHomeIs' data-format='SGVhcnRJc1doZXJlVGhlSG9tZUlz'>Heart Is Where the Home Is</a>: Turning down a foreign <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> in favor of a local lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeartbrokenBadass' title='/pmwiki/pmwiki.php/Main/HeartbrokenBadass' data-format='SGVhcnRicm9rZW5CYWRhc3M='>Heartbroken Badass</a>: A badass who lost the love of their life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeldGaze' title='/pmwiki/pmwiki.php/Main/HeldGaze' data-format='SGVsZEdhemU='>Held Gaze</a>: Lovers look deeply into each other's eyes. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HerBoyfriendsJacket' title='/pmwiki/pmwiki.php/Main/HerBoyfriendsJacket' data-format='SGVyQm95ZnJpZW5kc0phY2tldA=='>Her Boyfriend's Jacket</a>: Character wears an article of their significant other's clothing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HerHeartWillGoOn' title='/pmwiki/pmwiki.php/Main/HerHeartWillGoOn' data-format='SGVySGVhcnRXaWxsR29Pbg=='>Her Heart Will Go On</a>: They die, but their lover stays strong. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HerosSlaveHarem' title='/pmwiki/pmwiki.php/Main/HerosSlaveHarem' data-format='SGVyb3NTbGF2ZUhhcmVt'>Hero's Slave Harem</a>: A hero has multiple slaves that are in love with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HighSchoolSweethearts' title='/pmwiki/pmwiki.php/Main/HighSchoolSweethearts' data-format='SGlnaFNjaG9vbFN3ZWV0aGVhcnRz'>High-School Sweethearts</a>: They've been together since they were teenagers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HistoricalRelationshipOverhaul' title='/pmwiki/pmwiki.php/Main/HistoricalRelationshipOverhaul' data-format='SGlzdG9yaWNhbFJlbGF0aW9uc2hpcE92ZXJoYXVs'>Historical Relationship Overhaul</a>: The love or relationship of two historical characters is portrayed differently to how it was in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HoldingHands' title='/pmwiki/pmwiki.php/Main/HoldingHands' data-format='SG9sZGluZ0hhbmRz'>Holding Hands</a>: A classic romantic gesture is lovers locking hands with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HollywoodKiss' title='/pmwiki/pmwiki.php/Main/HollywoodKiss' data-format='SG9sbHl3b29kS2lzcw=='>Hollywood Kiss</a>: When couples kiss in fiction, it's always perfect. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HomeSweetHome' title='/pmwiki/pmwiki.php/Main/HomeSweetHome' data-format='SG9tZVN3ZWV0SG9tZQ=='>Home Sweet Home</a>: Staying home to settle down with your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> after a long adventure. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HookedUpAfterwards' title='/pmwiki/pmwiki.php/Main/HookedUpAfterwards' data-format='SG9va2VkVXBBZnRlcndhcmRz'>Hooked Up Afterwards</a>: At the end of the story, two characters are shown to have started dating. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HopelessSuitor' title='/pmwiki/pmwiki.php/Main/HopelessSuitor' data-format='SG9wZWxlc3NTdWl0b3I='>Hopeless Suitor</a>: One who has no chance of winning someone's love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HornySailors' title='/pmwiki/pmwiki.php/Main/HornySailors' data-format='SG9ybnlTYWlsb3Jz'>Horny Sailors</a>: Everyone at sea is lustful, all the time. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HowDadMetMom' title='/pmwiki/pmwiki.php/Main/HowDadMetMom' data-format='SG93RGFkTWV0TW9t'>How Dad Met Mom</a>: Come around, kids, this is the story of how your father and I fell in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HugeGuyTinyGirl' title='/pmwiki/pmwiki.php/Main/HugeGuyTinyGirl' data-format='SHVnZUd1eVRpbnlHaXJs'>Huge Guy, Tiny Girl</a>: A couple where the man towers over the woman. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HypocriticalHeartwarming' title='/pmwiki/pmwiki.php/Main/HypocriticalHeartwarming' data-format='SHlwb2NyaXRpY2FsSGVhcnR3YXJtaW5n'>Hypocritical Heartwarming</a>: Someone who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' title='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' data-format='W1tCZWxsaWdlcmVudFNleHVhbFRlbnNpb24gcmVndWxhcmx5IGFudGFnb25pemVzIHRoZWlyIHNpZ25pZmljYW50IG90aGVyXV0='>regularly antagonizes their significant other</a> gets enraged if someone else wrongs them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ICantBelieveAGuyLikeYouWouldNoticeMe' title='/pmwiki/pmwiki.php/Main/ICantBelieveAGuyLikeYouWouldNoticeMe' data-format='SUNhbnRCZWxpZXZlQUd1eUxpa2VZb3VXb3VsZE5vdGljZU1l'>I Can't Believe a Guy Like You Would Notice Me</a>: A character is surprised to learn that their crush actually loves them back. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IDidntMeanToTurnYouOn' title='/pmwiki/pmwiki.php/Main/IDidntMeanToTurnYouOn' data-format='SURpZG50TWVhblRvVHVybllvdU9u'>I Didn't Mean to Turn You On</a>: Unintentionally making someone fall in love with you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IDontWantToRuinOurFriendship' title='/pmwiki/pmwiki.php/Main/IDontWantToRuinOurFriendship' data-format='SURvbnRXYW50VG9SdWluT3VyRnJpZW5kc2hpcA=='>I Don't Want to Ruin Our Friendship</a>: Two people who are good friends refuse to get romantically involved with each other on the grounds that their friendship would go south. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IGotYouADrawer' title='/pmwiki/pmwiki.php/Main/IGotYouADrawer' data-format='SUdvdFlvdUFEcmF3ZXI='>I Got You a Drawer</a>: Two characters are signaled to be getting a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' title='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' data-format='UmVsYXRpb25zaGlwVXBncmFkZQ=='>Relationship Upgrade</a> when one partner gives the other partner a space in their home to put their stuff. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ILoveYouBecauseICantControlYou' title='/pmwiki/pmwiki.php/Main/ILoveYouBecauseICantControlYou' data-format='SUxvdmVZb3VCZWNhdXNlSUNhbnRDb250cm9sWW91'>I Love You Because I Can't Control You</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCasanova' title='/pmwiki/pmwiki.php/Main/TheCasanova' data-format='VGhlQ2FzYW5vdmE='>The Casanova</a> falls in love with someone who rejects their advances. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheILoveYouStigma' title='/pmwiki/pmwiki.php/Main/TheILoveYouStigma' data-format='VGhlSUxvdmVZb3VTdGlnbWE='>The &quot;I Love You&quot; Stigma</a>: Using the word "love" around your significant other too soon can cause them discomfort. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ILoveYouVampireSon' title='/pmwiki/pmwiki.php/Main/ILoveYouVampireSon' data-format='SUxvdmVZb3VWYW1waXJlU29u'>I Love You, Vampire Son</a>: A vampire turns their lover into a vampire so the two of them can have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EternalLove' title='/pmwiki/pmwiki.php/Main/EternalLove' data-format='RXRlcm5hbExvdmU='>Eternal Love</a> together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IUhYouToo' title='/pmwiki/pmwiki.php/Main/IUhYouToo' data-format='SVVoWW91VG9v'>I "Uh" You, Too</a>: A character fumbles their words when they try to say "I love you" to their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IWantMyBelovedToBeHappy' title='/pmwiki/pmwiki.php/Main/IWantMyBelovedToBeHappy' data-format='SVdhbnRNeUJlbG92ZWRUb0JlSGFwcHk='>I Want My Beloved to Be Happy</a>: Being willing to let your unrequited crush go be with the one they love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IfICantHaveYou' title='/pmwiki/pmwiki.php/Main/IfICantHaveYou' data-format='SWZJQ2FudEhhdmVZb3U='>If I Can't Have You…</a>: Killing someone because they won't return your love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImaginaryLoveTriangle' title='/pmwiki/pmwiki.php/Main/ImaginaryLoveTriangle' data-format='SW1hZ2luYXJ5TG92ZVRyaWFuZ2xl'>Imaginary Love Triangle</a>: Characters are mistakenly assumed to be involved in a love triangle. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImaginedInnuendo' title='/pmwiki/pmwiki.php/Main/ImaginedInnuendo' data-format='SW1hZ2luZWRJbm51ZW5kbw=='>Imagined Innuendo</a>: A character's dialogue is misinterpreted as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DoubleEntendre' title='/pmwiki/pmwiki.php/Main/DoubleEntendre' data-format='RG91YmxlRW50ZW5kcmU='>Double Entendre</a> by another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImpliedLoveInterest' title='/pmwiki/pmwiki.php/Main/ImpliedLoveInterest' data-format='SW1wbGllZExvdmVJbnRlcmVzdA=='>Implied Love Interest</a>: This character has vaguely romantic subtext with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncestStandardsAreRelative' title='/pmwiki/pmwiki.php/Main/IncestStandardsAreRelative' data-format='SW5jZXN0U3RhbmRhcmRzQXJlUmVsYXRpdmU='>Incest Standards Are Relative</a>: A romantic relationship is seen as incestuous due to different culture norms. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InLoveWithLove' title='/pmwiki/pmwiki.php/Main/InLoveWithLove' data-format='SW5Mb3ZlV2l0aExvdmU='>In Love with Love</a>: Being more enamored by the idea of being in a relationship than actually loving someone. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InLoveWithTheGangstersGirl' title='/pmwiki/pmwiki.php/Main/InLoveWithTheGangstersGirl' data-format='SW5Mb3ZlV2l0aFRoZUdhbmdzdGVyc0dpcmw='>In Love with the Gangster's Girl</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> loves a dangerous man's girlfriend. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InLoveWithTheMark' title='/pmwiki/pmwiki.php/Main/InLoveWithTheMark' data-format='SW5Mb3ZlV2l0aFRoZU1hcms='>In Love with the Mark</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProfessionalKiller' title='/pmwiki/pmwiki.php/Main/ProfessionalKiller' data-format='UHJvZmVzc2lvbmFsS2lsbGVy'>Professional Killer</a> falls in love with the target they're supposed to kill. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InLoveWithYourCarnage' title='/pmwiki/pmwiki.php/Main/InLoveWithYourCarnage' data-format='SW5Mb3ZlV2l0aFlvdXJDYXJuYWdl'>In Love with Your Carnage</a>: A villainous or morally ambiguous character falls for someone because of their violent tendencies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncompatibleOrientation' title='/pmwiki/pmwiki.php/Main/IncompatibleOrientation' data-format='SW5jb21wYXRpYmxlT3JpZW50YXRpb24='>Incompatible Orientation</a>: Two people can't be together because of their differing sexualities. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InconvenientAttraction' title='/pmwiki/pmwiki.php/Main/InconvenientAttraction' data-format='SW5jb252ZW5pZW50QXR0cmFjdGlvbg=='>Inconvenient Attraction</a>: A character falls in love when they'd rather not. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IndirectKiss' title='/pmwiki/pmwiki.php/Main/IndirectKiss' data-format='SW5kaXJlY3RLaXNz'>Indirect Kiss</a>: Two people share the same bite or drink as if they're kissing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InsecureLoveInterest' title='/pmwiki/pmwiki.php/Main/InsecureLoveInterest' data-format='SW5zZWN1cmVMb3ZlSW50ZXJlc3Q='>Insecure Love Interest</a>: A character who believes themself to be unworthy of their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterruptedDeclarationOfLove' title='/pmwiki/pmwiki.php/Main/InterruptedDeclarationOfLove' data-format='SW50ZXJydXB0ZWREZWNsYXJhdGlvbk9mTG92ZQ=='>Interrupted Declaration of Love</a>: Character tries to confess their love for somebody but is interrupted. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' title='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' data-format='SW50ZXJydXB0ZWRJbnRpbWFjeQ=='>Interrupted Intimacy</a>: Someone walks in on a couple having some "alone time". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterspeciesRomance' title='/pmwiki/pmwiki.php/Main/InterspeciesRomance' data-format='SW50ZXJzcGVjaWVzUm9tYW5jZQ=='>Interspecies Romance</a>: Romance between beings of different species. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IntertwinedFingers' title='/pmwiki/pmwiki.php/Main/IntertwinedFingers' data-format='SW50ZXJ0d2luZWRGaW5nZXJz'>Intertwined Fingers</a>: Two people lock fingers with each other, showing that they're in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IntimateArtistry' title='/pmwiki/pmwiki.php/Main/IntimateArtistry' data-format='SW50aW1hdGVBcnRpc3RyeQ=='>Intimate Artistry</a>: An artist paints a picture of the one they love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IntimateLotionApplication' title='/pmwiki/pmwiki.php/Main/IntimateLotionApplication' data-format='SW50aW1hdGVMb3Rpb25BcHBsaWNhdGlvbg=='>Intimate Lotion Application</a>: Applying lotion on another character as a way to create sexual tension, romantic intimacy, awkwardness, or humor. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IsolationInducedInfatuation' title='/pmwiki/pmwiki.php/Main/IsolationInducedInfatuation' data-format='SXNvbGF0aW9uSW5kdWNlZEluZmF0dWF0aW9u'>Isolation-Induced Infatuation</a>: Two characters end up falling in love with each other due to being isolated from society, whether because of being stranded somewhere remote or due to previous lack of exposure to people in general. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItDoesntMeanAnything' title='/pmwiki/pmwiki.php/Main/ItDoesntMeanAnything' data-format='SXREb2VzbnRNZWFuQW55dGhpbmc='>It Doesn't Mean Anything</a>: Characters who are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustFriends' title='/pmwiki/pmwiki.php/Main/JustFriends' data-format='SnVzdEZyaWVuZHM='>Just Friends</a> do something intimate with each other and then insist that it was nothing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItsNotYouItsMe' title='/pmwiki/pmwiki.php/Main/ItsNotYouItsMe' data-format='SXRzTm90WW91SXRzTWU='>It's Not You, It's Me</a>: Breaking off a relationship due to feeling unworthy of your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItsNotYouItsMyEnemies' title='/pmwiki/pmwiki.php/Main/ItsNotYouItsMyEnemies' data-format='SXRzTm90WW91SXRzTXlFbmVtaWVz'>It's Not You, It's My Enemies</a>: Being with your lover puts them in harm's way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheJailBaitWait' title='/pmwiki/pmwiki.php/Main/TheJailBaitWait' data-format='VGhlSmFpbEJhaXRXYWl0'>The Jailbait Wait</a>: Waiting for your underage <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> to grow up so you can properly be with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JumpingTheGenderBarrier' title='/pmwiki/pmwiki.php/Main/JumpingTheGenderBarrier' data-format='SnVtcGluZ1RoZUdlbmRlckJhcnJpZXI='>Jumping the Gender Barrier</a>: A character's sexual preferences change when they undergo a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBender' title='/pmwiki/pmwiki.php/Main/GenderBender' data-format='R2VuZGVyQmVuZGVy'>Gender Bender</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustFriends' title='/pmwiki/pmwiki.php/Main/JustFriends' data-format='SnVzdEZyaWVuZHM='>Just Friends</a>: Two people consider themselves to be only good friends rather than lovers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KissedKeepsake' title='/pmwiki/pmwiki.php/Main/KissedKeepsake' data-format='S2lzc2VkS2VlcHNha2U='>Kissed Keepsake</a>: Not wanting to wash a part of your body that was kissed by your crush. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KissingCousins' title='/pmwiki/pmwiki.php/Main/KissingCousins' data-format='S2lzc2luZ0NvdXNpbnM='>Kissing Cousins</a>: Romance between cousins. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KissingInATree' title='/pmwiki/pmwiki.php/Main/KissingInATree' data-format='S2lzc2luZ0luQVRyZWU='>Kissing In A Tree</a>: Childishly mocking people who are in a relationship or seem to be in a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LaceratingLoveLanguage' title='/pmwiki/pmwiki.php/Main/LaceratingLoveLanguage' data-format='TGFjZXJhdGluZ0xvdmVMYW5ndWFnZQ=='>Lacerating Love Language</a>: Expressing your affection through physical violence. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LadyAndKnight' title='/pmwiki/pmwiki.php/Main/LadyAndKnight' data-format='TGFkeUFuZEtuaWdodA=='>Lady and Knight</a>: The brave, chivalrous knight defends and falls in love with the fair lady. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LadykillerInLove' title='/pmwiki/pmwiki.php/Main/LadykillerInLove' data-format='TGFkeWtpbGxlckluTG92ZQ=='>Ladykiller in Love</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCasanova' title='/pmwiki/pmwiki.php/Main/TheCasanova' data-format='VGhlQ2FzYW5vdmE='>The Casanova</a> who genuinely falls in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLadysFavour' title='/pmwiki/pmwiki.php/Main/TheLadysFavour' data-format='VGhlTGFkeXNGYXZvdXI='>The Lady's Favour</a>: A woman gives her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> an item of hers before he goes off into battle. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LanguageOfLove' title='/pmwiki/pmwiki.php/Main/LanguageOfLove' data-format='TGFuZ3VhZ2VPZkxvdmU='>Language of Love</a>: A couple where one partner speaks a different language than the other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LapPillow' title='/pmwiki/pmwiki.php/Main/LapPillow' data-format='TGFwUGlsbG93'>Lap Pillow</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a character rests their head on their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>'s lap. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LastConfessionWins' title='/pmwiki/pmwiki.php/Main/LastConfessionWins' data-format='TGFzdENvbmZlc3Npb25XaW5z'>Last Confession Wins</a>: In a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HaremGenre' title='/pmwiki/pmwiki.php/Main/HaremGenre' data-format='SGFyZW1HZW5yZQ=='>Harem Genre</a> story, the last girl to reveal that she loves the lead is who wins him. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LastGirlWins' title='/pmwiki/pmwiki.php/Main/LastGirlWins' data-format='TGFzdEdpcmxXaW5z'>Last Girl Wins</a>: The lead hooks up with the last person they meet in the story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LastHetRomance' title='/pmwiki/pmwiki.php/Main/LastHetRomance' data-format='TGFzdEhldFJvbWFuY2U='>Last Het Romance</a>: A character realizes that they're gay after a failed heterosexual relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LastMinuteHookup' title='/pmwiki/pmwiki.php/Main/LastMinuteHookup' data-format='TGFzdE1pbnV0ZUhvb2t1cA=='>Last-Minute Hookup</a>: Two characters don't become an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a> until the end of the story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LaughOfLove' title='/pmwiki/pmwiki.php/Main/LaughOfLove' data-format='TGF1Z2hPZkxvdmU='>Laugh of Love</a>: The tendency to laugh when in the presence of your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LaundromatLiaisons' title='/pmwiki/pmwiki.php/Main/LaundromatLiaisons' data-format='TGF1bmRyb21hdExpYWlzb25z'>Laundromat Liaisons</a>: Two characters meet at a laundromat and eventually hook up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LeaveTheTwoLovebirdsAlone' title='/pmwiki/pmwiki.php/Main/LeaveTheTwoLovebirdsAlone' data-format='TGVhdmVUaGVUd29Mb3ZlYmlyZHNBbG9uZQ=='>Leave the Two Lovebirds Alone</a>: Leaving a room so two lovers can have some alone time. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LeavingYouToFindMyself' title='/pmwiki/pmwiki.php/Main/LeavingYouToFindMyself' data-format='TGVhdmluZ1lvdVRvRmluZE15c2VsZg=='>Leaving You to Find Myself</a>: Character breaks off a love relationship to go do some soul searching. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LetsDuet' title='/pmwiki/pmwiki.php/Main/LetsDuet' data-format='TGV0c0R1ZXQ='>Let's Duet</a>: Lovers sing a song together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LetsJustBeFriends' title='/pmwiki/pmwiki.php/Main/LetsJustBeFriends' data-format='TGV0c0p1c3RCZUZyaWVuZHM='>Let's Just Be Friends</a>: Characters break up, but decide to remain friends because they still care about each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LetsWaitAWhile' title='/pmwiki/pmwiki.php/Main/LetsWaitAWhile' data-format='TGV0c1dhaXRBV2hpbGU='>Let's Wait a While</a>: A couple waits to have sex until the time is right. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LevelUpAtIntimacy5' title='/pmwiki/pmwiki.php/Main/LevelUpAtIntimacy5' data-format='TGV2ZWxVcEF0SW50aW1hY3k1'>Level-Up at Intimacy 5</a>: Romance and sex give you power ups. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LifeSavingEncouragement' title='/pmwiki/pmwiki.php/Main/LifeSavingEncouragement' data-format='TGlmZVNhdmluZ0VuY291cmFnZW1lbnQ='>Life-Saving Encouragement</a>: A statement of hope/encouragement saves a person literally or spiritually. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LikeAnOldMarriedCouple' title='/pmwiki/pmwiki.php/Main/LikeAnOldMarriedCouple' data-format='TGlrZUFuT2xkTWFycmllZENvdXBsZQ=='>Like an Old Married Couple</a>: These two people are very close and tend to bicker with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LikeBrotherAndSister' title='/pmwiki/pmwiki.php/Main/LikeBrotherAndSister' data-format='TGlrZUJyb3RoZXJBbmRTaXN0ZXI='>Like Brother and Sister</a>: These two see themselves like siblings rather than as lovers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LikeGoesWithLike' title='/pmwiki/pmwiki.php/Main/LikeGoesWithLike' data-format='TGlrZUdvZXNXaXRoTGlrZQ=='>Like Goes with Like</a>: Characters tend to fall in love with those of the same race as them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LikeParentLikeSpouse' title='/pmwiki/pmwiki.php/Main/LikeParentLikeSpouse' data-format='TGlrZVBhcmVudExpa2VTcG91c2U='>Like Parent, Like Spouse</a>: A character's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> is similar to one of their parents, be it in looks or personality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiterallyLovingThyNeighbor' title='/pmwiki/pmwiki.php/Main/LiterallyLovingThyNeighbor' data-format='TGl0ZXJhbGx5TG92aW5nVGh5TmVpZ2hib3I='>Literally Loving Thy Neighbor</a>: Falling in love with your neighbor. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LittleSisterHeroine' title='/pmwiki/pmwiki.php/Main/LittleSisterHeroine' data-format='TGl0dGxlU2lzdGVySGVyb2luZQ=='>Little Sister Heroine</a>: A character's little sister serves as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> option. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LonelyTogether' title='/pmwiki/pmwiki.php/Main/LonelyTogether' data-format='TG9uZWx5VG9nZXRoZXI='>Lonely Together</a>: Two lonely characters bond and fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LongDistanceRelationship' title='/pmwiki/pmwiki.php/Main/LongDistanceRelationship' data-format='TG9uZ0Rpc3RhbmNlUmVsYXRpb25zaGlw'>Long-Distance Relationship</a>: Characters who are far away from each other have a romance. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LongingLook' title='/pmwiki/pmwiki.php/Main/LongingLook' data-format='TG9uZ2luZ0xvb2s='>Longing Look</a>: Glancing at your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> in a yearning way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LookingForLoveInAllTheWrongPlaces' title='/pmwiki/pmwiki.php/Main/LookingForLoveInAllTheWrongPlaces' data-format='TG9va2luZ0ZvckxvdmVJbkFsbFRoZVdyb25nUGxhY2Vz'>Looking for Love in All the Wrong Places</a>: A character who is desperate for love has one failed relationship after another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLostLenore' title='/pmwiki/pmwiki.php/Main/TheLostLenore' data-format='VGhlTG9zdExlbm9yZQ=='>The Lost Lenore</a>: This person is dead and their lover mourns over them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LostLoveMontage' title='/pmwiki/pmwiki.php/Main/LostLoveMontage' data-format='TG9zdExvdmVNb250YWdl'>Lost Love Montage</a>: A character sadly looks back on an ex-lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveAcrossBattlelines' title='/pmwiki/pmwiki.php/Main/LoveAcrossBattlelines' data-format='TG92ZUFjcm9zc0JhdHRsZWxpbmVz'>Love Across Battlelines</a>: Characters from enemy factions fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveAllegory' title='/pmwiki/pmwiki.php/Main/LoveAllegory' data-format='TG92ZUFsbGVnb3J5'>Love Allegory</a>: A story used to symbolize a love relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveAtFirstNote' title='/pmwiki/pmwiki.php/Main/LoveAtFirstNote' data-format='TG92ZUF0Rmlyc3ROb3Rl'>Love at First Note</a>: Falling in love with somebody when you hear them sing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveAtFirstPunch' title='/pmwiki/pmwiki.php/Main/LoveAtFirstPunch' data-format='TG92ZUF0Rmlyc3RQdW5jaA=='>Love at First Punch</a>: Falling in love with somebody who beat you up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveAtFirstSight' title='/pmwiki/pmwiki.php/Main/LoveAtFirstSight' data-format='TG92ZUF0Rmlyc3RTaWdodA=='>Love at First Sight</a>: Falling in love with somebody the moment you see them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveBeALady' title='/pmwiki/pmwiki.php/Main/LoveBeALady' data-format='TG92ZUJlQUxhZHk='>Love Be a Lady</a>: A girl, or girls as a whole, used as representatives for the concept of love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveBeforeFirstSight' title='/pmwiki/pmwiki.php/Main/LoveBeforeFirstSight' data-format='TG92ZUJlZm9yZUZpcnN0U2lnaHQ='>Love Before First Sight</a>: Falling in love with somebody before you even see them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveBubbles' title='/pmwiki/pmwiki.php/Main/LoveBubbles' data-format='TG92ZUJ1YmJsZXM='>Love Bubbles</a>: An anime/manga effect where the background fills with sparkly bubbles during a love scene. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveCanMakeYouGonk' title='/pmwiki/pmwiki.php/Main/LoveCanMakeYouGonk' data-format='TG92ZUNhbk1ha2VZb3VHb25r'>Love Can Make You Gonk</a>: Love causes a character to have cartoonishly exaggerated reactions. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveCannotOvercome' title='/pmwiki/pmwiki.php/Main/LoveCannotOvercome' data-format='TG92ZUNhbm5vdE92ZXJjb21l'>Love Cannot Overcome</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> breaks up with them because they can't handle their adventurous lifestyle. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveChart' title='/pmwiki/pmwiki.php/Main/LoveChart' data-format='TG92ZUNoYXJ0'>Love Chart</a>: A chart that details the characters' relationships with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveConfession' title='/pmwiki/pmwiki.php/Main/LoveConfession' data-format='TG92ZUNvbmZlc3Npb24='>Love Confession</a>: Character confesses their love for another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveConfessor' title='/pmwiki/pmwiki.php/Main/LoveConfessor' data-format='TG92ZUNvbmZlc3Nvcg=='>Love Confessor</a>: Character admits their feelings for their beloved to a third party. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveDodecahedron' title='/pmwiki/pmwiki.php/Main/LoveDodecahedron' data-format='TG92ZURvZGVjYWhlZHJvbg=='>Love Dodecahedron</a>: Several characters are connected to each other romantically. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveDoodles' title='/pmwiki/pmwiki.php/Main/LoveDoodles' data-format='TG92ZURvb2RsZXM='>Love Doodles</a>: Drawing love symbols and writing initials and names, indicating someone has a secret crush. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveEpiphany' title='/pmwiki/pmwiki.php/Main/LoveEpiphany' data-format='TG92ZUVwaXBoYW55'>Love Epiphany</a>: Realizing that you're in love with somebody. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveFatherLoveSon' title='/pmwiki/pmwiki.php/Main/LoveFatherLoveSon' data-format='TG92ZUZhdGhlckxvdmVTb24='>Love Father, Love Son</a>: Character falls in love with their unrequited crush's offspring. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveFloats' title='/pmwiki/pmwiki.php/Main/LoveFloats' data-format='TG92ZUZsb2F0cw=='>Love Floats</a>: Feelings of love cause a character to levitate off the ground. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveFreak' title='/pmwiki/pmwiki.php/Main/LoveFreak' data-format='TG92ZUZyZWFr'>Love Freak</a>: Character who is obsessed with the concept of love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveGoddess' title='/pmwiki/pmwiki.php/Main/LoveGoddess' data-format='TG92ZUdvZGRlc3M='>Love Goddess</a>: A deity responsible for feelings of love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveHotels' title='/pmwiki/pmwiki.php/Main/LoveHotels' data-format='TG92ZUhvdGVscw=='>Love Hotels</a>: A hotel building where couples can be intimate with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveHungry' title='/pmwiki/pmwiki.php/Main/LoveHungry' data-format='TG92ZUh1bmdyeQ=='>Love Hungry</a>: A character desperate for love tries to force people to love them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveHurts' title='/pmwiki/pmwiki.php/Main/LoveHurts' data-format='TG92ZUh1cnRz'>Love Hurts</a>: Love causes deep emotional pain. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveImbuesLife' title='/pmwiki/pmwiki.php/Main/LoveImbuesLife' data-format='TG92ZUltYnVlc0xpZmU='>Love Imbues Life</a>: Feelings of love cause an inanimate object to come alive. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInformant' title='/pmwiki/pmwiki.php/Main/LoveInformant' data-format='TG92ZUluZm9ybWFudA=='>Love Informant</a>: A character lets another know that someone loves them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterestTraitor' title='/pmwiki/pmwiki.php/Main/LoveInterestTraitor' data-format='TG92ZUludGVyZXN0VHJhaXRvcg=='>Love-Interest Traitor</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> falls in love with someone who turns out to be in league with his enemy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterestVsLustInterest' title='/pmwiki/pmwiki.php/Main/LoveInterestVsLustInterest' data-format='TG92ZUludGVyZXN0VnNMdXN0SW50ZXJlc3Q='>Love Interest vs. Lust Interest</a>: Two people like the same person, one out of love and the other out of superficial feelings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveIsACrime' title='/pmwiki/pmwiki.php/Main/LoveIsACrime' data-format='TG92ZUlzQUNyaW1l'>Love Is a Crime</a>: Romantic love is outlawed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveIsADrug' title='/pmwiki/pmwiki.php/Main/LoveIsADrug' data-format='TG92ZUlzQURydWc='>Love Is a Drug</a>: Talking about love or a lover as though they were a drug. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveIsAWeakness' title='/pmwiki/pmwiki.php/Main/LoveIsAWeakness' data-format='TG92ZUlzQVdlYWtuZXNz'>Love Is a Weakness</a>: Love is regarded as a negative influence. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveIsInTheAir' title='/pmwiki/pmwiki.php/Main/LoveIsInTheAir' data-format='TG92ZUlzSW5UaGVBaXI='>Love Is in the Air</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovePotion' title='/pmwiki/pmwiki.php/Main/LovePotion' data-format='TG92ZVBvdGlvbg=='>Love Potion</a> affects a bunch of people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveIsLikeReligion' title='/pmwiki/pmwiki.php/Main/LoveIsLikeReligion' data-format='TG92ZUlzTGlrZVJlbGlnaW9u'>Love Is Like Religion</a>: Using religious imagery/terminology to talk about love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveLetter' title='/pmwiki/pmwiki.php/Main/LoveLetter' data-format='TG92ZUxldHRlcg=='>Love Letter</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveConfession' title='/pmwiki/pmwiki.php/Main/LoveConfession' data-format='TG92ZUNvbmZlc3Npb24='>Love Confession</a> in writing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveLetterLunacy' title='/pmwiki/pmwiki.php/Main/LoveLetterLunacy' data-format='TG92ZUxldHRlckx1bmFjeQ=='>Love Letter Lunacy</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveLetter' title='/pmwiki/pmwiki.php/Main/LoveLetter' data-format='TG92ZUxldHRlcg=='>Love Letter</a> causes a ruckus. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveMakesYouCrazy' title='/pmwiki/pmwiki.php/Main/LoveMakesYouCrazy' data-format='TG92ZU1ha2VzWW91Q3Jhenk='>Love Makes You Crazy</a>: Falling in love makes you lose your mind. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveMakesYouDumb' title='/pmwiki/pmwiki.php/Main/LoveMakesYouDumb' data-format='TG92ZU1ha2VzWW91RHVtYg=='>Love Makes You Dumb</a>: Falling in love causes poor judgment. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveMakesYouEvil' title='/pmwiki/pmwiki.php/Main/LoveMakesYouEvil' data-format='TG92ZU1ha2VzWW91RXZpbA=='>Love Makes You Evil</a>: Falling in love causes you to cross over to the dark side. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveMakesYouSaner' title='/pmwiki/pmwiki.php/Main/LoveMakesYouSaner' data-format='TG92ZU1ha2VzWW91U2FuZXI='>Love Makes You Saner</a>: A mentally troubled person becomes more stable because of love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveMakesYouUncreative' title='/pmwiki/pmwiki.php/Main/LoveMakesYouUncreative' data-format='TG92ZU1ha2VzWW91VW5jcmVhdGl2ZQ=='>Love Makes You Uncreative</a>: An artist falling in love causes their work to decline in quality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveMartyr' title='/pmwiki/pmwiki.php/Main/LoveMartyr' data-format='TG92ZU1hcnR5cg=='>Love Martyr</a>: A person who willingly puts up with someone's abuse because they love them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveNostalgiaSong' title='/pmwiki/pmwiki.php/Main/LoveNostalgiaSong' data-format='TG92ZU5vc3RhbGdpYVNvbmc='>Love Nostalgia Song</a>: A song about looking back on a past love relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveObstructingParents' title='/pmwiki/pmwiki.php/Main/LoveObstructingParents' data-format='TG92ZU9ic3RydWN0aW5nUGFyZW50cw=='>Love-Obstructing Parents</a>: Your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>'s parents make your relationship difficult. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveOverridesTheLaw' title='/pmwiki/pmwiki.php/Main/LoveOverridesTheLaw' data-format='TG92ZU92ZXJyaWRlc1RoZUxhdw=='>Love Overrides the Law</a>: When you're in love, even the law can't stand in your way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovePotion' title='/pmwiki/pmwiki.php/Main/LovePotion' data-format='TG92ZVBvdGlvbg=='>Love Potion</a>: A magic potion that makes a person fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveRedeems' title='/pmwiki/pmwiki.php/Main/LoveRedeems' data-format='TG92ZVJlZGVlbXM='>Love Redeems</a>: Someone is made a better person through <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfLove' title='/pmwiki/pmwiki.php/Main/ThePowerOfLove' data-format='VGhlUG93ZXJPZkxvdmU='>The Power of Love</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveRevelationEpiphany' title='/pmwiki/pmwiki.php/Main/LoveRevelationEpiphany' data-format='TG92ZVJldmVsYXRpb25FcGlwaGFueQ=='>Love Revelation Epiphany</a>: Developing feelings for somebody when you learn that they love you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveRuinsTheRealm' title='/pmwiki/pmwiki.php/Main/LoveRuinsTheRealm' data-format='TG92ZVJ1aW5zVGhlUmVhbG0='>Love Ruins the Realm</a>: A ruler's choices in lovers bring about disaster for their land. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTheme' title='/pmwiki/pmwiki.php/Main/LoveTheme' data-format='TG92ZVRoZW1l'>Love Theme</a>: A song that encapsulates a couple's love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTranscendsSpacetime' title='/pmwiki/pmwiki.php/Main/LoveTranscendsSpacetime' data-format='TG92ZVRyYW5zY2VuZHNTcGFjZXRpbWU='>Love Transcends Spacetime</a>: When love is strong, the rules of the universe get bent. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTriangle' title='/pmwiki/pmwiki.php/Main/LoveTriangle' data-format='TG92ZVRyaWFuZ2xl'>Love Triangle</a>: A character is caught between two choices for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveWillLeadYouBack' title='/pmwiki/pmwiki.php/Main/LoveWillLeadYouBack' data-format='TG92ZVdpbGxMZWFkWW91QmFjaw=='>Love Will Lead You Back</a>: Lovers leave each other, but one remains confident that their lover will come back to them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovedINotHonorMore' title='/pmwiki/pmwiki.php/Main/LovedINotHonorMore' data-format='TG92ZWRJTm90SG9ub3JNb3Jl'>Loved I Not Honor More</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> puts their duty before their love life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovedOnesMontage' title='/pmwiki/pmwiki.php/Main/LovedOnesMontage' data-format='TG92ZWRPbmVzTW9udGFnZQ=='>Loved Ones Montage</a>: A character has a vision of all the people he cares about in a dramatic montage-like sequence. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoverTugOfWar' title='/pmwiki/pmwiki.php/Main/LoverTugOfWar' data-format='TG92ZXJUdWdPZldhcg=='>Lover Tug of War</a>: Two suitors fight over their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> tug of war style. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovesMeNot' title='/pmwiki/pmwiki.php/Main/LovesMeNot' data-format='TG92ZXNNZU5vdA=='>Loves Me Not</a>: Picking apart an item (usually a flower) to determine if your crush loves you back. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovesMyAlterEgo' title='/pmwiki/pmwiki.php/Main/LovesMyAlterEgo' data-format='TG92ZXNNeUFsdGVyRWdv'>Loves My Alter Ego</a>: Someone is in love with a character's alter ego, but not their secret identity. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovingAShadow' title='/pmwiki/pmwiki.php/Main/LovingAShadow' data-format='TG92aW5nQVNoYWRvdw=='>Loving a Shadow</a>: Falling in love with the ideal of someone rather than the actual person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovingBully' title='/pmwiki/pmwiki.php/Main/LovingBully' data-format='TG92aW5nQnVsbHk='>Loving Bully</a>: They pick on you because they secretly love you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovingDetails' title='/pmwiki/pmwiki.php/Main/LovingDetails' data-format='TG92aW5nRGV0YWlscw=='>Loving Details</a>: Being so in love lets you remember minor details about your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LustObject' title='/pmwiki/pmwiki.php/Main/LustObject' data-format='THVzdE9iamVjdA=='>Lust Object</a>: This person is the object of another character's sexual fantasy rather than their affections. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MadLove' title='/pmwiki/pmwiki.php/Main/MadLove' data-format='TWFkTG92ZQ=='>Mad Love</a>: Unrequited love where the pursuer is too nutty to take a hint that their crush doesn't return their feelings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicContractRomance' title='/pmwiki/pmwiki.php/Main/MagicContractRomance' data-format='TWFnaWNDb250cmFjdFJvbWFuY2U='>Magic Contract Romance</a>: Romance between a mage and the supernatural being they contracted with. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagneticGirlfriend' title='/pmwiki/pmwiki.php/Main/MagneticGirlfriend' data-format='TWFnbmV0aWNHaXJsZnJpZW5k'>Magnetic Girlfriend</a>: This girl makes an unpopular guy a stud when she hooks up with him. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutKids' title='/pmwiki/pmwiki.php/Main/MakeOutKids' data-format='TWFrZU91dEtpZHM='>Make-Out Kids</a>: A couple who can't go one minute without PDA. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutPoint' title='/pmwiki/pmwiki.php/Main/MakeOutPoint' data-format='TWFrZU91dFBvaW50'>Make-Out Point</a>: An area for teenage couples to go kiss and possibly make love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeUpOrBreakUp' title='/pmwiki/pmwiki.php/Main/MakeUpOrBreakUp' data-format='TWFrZVVwT3JCcmVha1Vw'>Make Up or Break Up</a>: A couple has to choose whether to stay together or break up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MalingeringRomancePloy' title='/pmwiki/pmwiki.php/Main/MalingeringRomancePloy' data-format='TWFsaW5nZXJpbmdSb21hbmNlUGxveQ=='>Malingering Romance Ploy</a>: Someone fakes sick because their Love Interest is doting on them </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManicPixieDreamGirl' title='/pmwiki/pmwiki.php/Main/ManicPixieDreamGirl' data-format='TWFuaWNQaXhpZURyZWFtR2lybA=='>Manic Pixie Dream Girl</a>: A peppy, energetic girl who helps a cranky, uptight guy loosen up and they fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MarriedToTheJob' title='/pmwiki/pmwiki.php/Main/MarriedToTheJob' data-format='TWFycmllZFRvVGhlSm9i'>Married to the Job</a>: A character is too preoccupied with their career to pay attention to their spouse. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MarryForLove' title='/pmwiki/pmwiki.php/Main/MarryForLove' data-format='TWFycnlGb3JMb3Zl'>Marry for Love</a>: Getting married because you love that person rather than for money, status, or security. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MarryThemAll' title='/pmwiki/pmwiki.php/Main/MarryThemAll' data-format='TWFycnlUaGVtQWxs'>Marry Them All</a>: The lead decides to hook up with all of their prospective <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MasculineFeminineGayCouple' title='/pmwiki/pmwiki.php/Main/MasculineFeminineGayCouple' data-format='TWFzY3VsaW5lRmVtaW5pbmVHYXlDb3VwbGU='>Masculine–Feminine Gay Couple</a>: Same-sex couple where one partner is more masculine/feminine than the other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MasculineGirlFeminineBoy' title='/pmwiki/pmwiki.php/Main/MasculineGirlFeminineBoy' data-format='TWFzY3VsaW5lR2lybEZlbWluaW5lQm95'>Masculine Girl, Feminine Boy</a>: A couple where the girl is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Tomboy' title='/pmwiki/pmwiki.php/Main/Tomboy' data-format='e3tUb21ib3l9fQ=='>Tomboy</a> and the guy is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InTouchWithHisFeminineSide' title='/pmwiki/pmwiki.php/Main/InTouchWithHisFeminineSide' data-format='SW5Ub3VjaFdpdGhIaXNGZW1pbmluZVNpZGU='>In Touch with His Feminine Side</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMasochismTango' title='/pmwiki/pmwiki.php/Main/TheMasochismTango' data-format='VGhlTWFzb2NoaXNtVGFuZ28='>The Masochism Tango</a>: Two people claim to be in love, but act like they hate each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMasqueradeWillKillYourDatingLife' title='/pmwiki/pmwiki.php/Main/TheMasqueradeWillKillYourDatingLife' data-format='VGhlTWFzcXVlcmFkZVdpbGxLaWxsWW91ckRhdGluZ0xpZmU='>The Masquerade Will Kill Your Dating Life</a>: When you're a part of a secret adventurous lifestyle, it cuts into your romantic relationships. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MassageOfLove' title='/pmwiki/pmwiki.php/Main/MassageOfLove' data-format='TWFzc2FnZU9mTG92ZQ=='>Massage of Love</a>: A loving couple giving each other an intimate, non-sexual massage. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AMatchMadeInStockholm' title='/pmwiki/pmwiki.php/Main/AMatchMadeInStockholm' data-format='QU1hdGNoTWFkZUluU3RvY2tob2xt'>A Match Made in Stockholm</a>: A character falls in love with their kidnapper. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMatchmaker' title='/pmwiki/pmwiki.php/Main/TheMatchmaker' data-format='VGhlTWF0Y2htYWtlcg=='>The Matchmaker</a>: The person who tries to arrange a romance between people. <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MatchmakerFailure' title='/pmwiki/pmwiki.php/Main/MatchmakerFailure' data-format='TWF0Y2htYWtlckZhaWx1cmU='>Matchmaker Failure</a>: Person fails to get two people together. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MatchmakerCrush' title='/pmwiki/pmwiki.php/Main/MatchmakerCrush' data-format='TWF0Y2htYWtlckNydXNo'>Matchmaker Crush</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMatchmaker' title='/pmwiki/pmwiki.php/Main/TheMatchmaker' data-format='VGhlTWF0Y2htYWtlcg=='>The Matchmaker</a> falls for one of the people they're trying to hook up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MayDecemberRomance' title='/pmwiki/pmwiki.php/Main/MayDecemberRomance' data-format='TWF5RGVjZW1iZXJSb21hbmNl'>May–December Romance</a>: Romance between a young person and an elder. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MaybeEverAfter' title='/pmwiki/pmwiki.php/Main/MaybeEverAfter' data-format='TWF5YmVFdmVyQWZ0ZXI='>Maybe Ever After</a>: Did <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> and their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> end up together in the end? Who knows. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MayflyDecemberRomance' title='/pmwiki/pmwiki.php/Main/MayflyDecemberRomance' data-format='TWF5Zmx5RGVjZW1iZXJSb21hbmNl'>Mayfly–December Romance</a>: Romance between people of different lifespans, for example an immortal and a mortal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeadowRun' title='/pmwiki/pmwiki.php/Main/MeadowRun' data-format='TWVhZG93UnVu'>Meadow Run</a>: Lovers run towards each other in a beautiful meadow full of flowers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeetTheInLaws' title='/pmwiki/pmwiki.php/Main/MeetTheInLaws' data-format='TWVldFRoZUluTGF3cw=='>Meet the In-Laws</a>: Meeting your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>'s parents. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MightyWhiteyAndMellowYellow' title='/pmwiki/pmwiki.php/Main/MightyWhiteyAndMellowYellow' data-format='TWlnaHR5V2hpdGV5QW5kTWVsbG93WWVsbG93'>Mighty Whitey and Mellow Yellow</a>: White men tend to fall in love with Asian women. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MindlinkMates' title='/pmwiki/pmwiki.php/Main/MindlinkMates' data-format='TWluZGxpbmtNYXRlcw=='>Mindlink Mates</a>: Lovers are so close they can literally read each other's thoughts. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMissusAndTheEx' title='/pmwiki/pmwiki.php/Main/TheMissusAndTheEx' data-format='VGhlTWlzc3VzQW5kVGhlRXg='>The Missus and the Ex</a>: Your current lover and ex-lover meet each other. Awkwardness may or may not ensue. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MistakenAssumptionOfAttraction' title='/pmwiki/pmwiki.php/Main/MistakenAssumptionOfAttraction' data-format='TWlzdGFrZW5Bc3N1bXB0aW9uT2ZBdHRyYWN0aW9u'>Mistaken Assumption of Attraction</a>: Accidentally believing that someone is crushing on you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MistakenDeclarationOfLove' title='/pmwiki/pmwiki.php/Main/MistakenDeclarationOfLove' data-format='TWlzdGFrZW5EZWNsYXJhdGlvbk9mTG92ZQ=='>Mistaken Declaration of Love</a>: Accidentally confessing your love to the wrong person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MistakenForCheating' title='/pmwiki/pmwiki.php/Main/MistakenForCheating' data-format='TWlzdGFrZW5Gb3JDaGVhdGluZw=='>Mistaken for Cheating</a>: Someone is falsely accused of being unfaithful to their lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MistakenForFlirting' title='/pmwiki/pmwiki.php/Main/MistakenForFlirting' data-format='TWlzdGFrZW5Gb3JGbGlydGluZw=='>Mistaken for Flirting</a>: One person believes, in error, that another is flirting. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MixtapeOfLove' title='/pmwiki/pmwiki.php/Main/MixtapeOfLove' data-format='TWl4dGFwZU9mTG92ZQ=='>Mixtape of Love</a>: Mixtapes are a way to show your affection for someone. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoeCouplet' title='/pmwiki/pmwiki.php/Main/MoeCouplet' data-format='TW9lQ291cGxldA=='>Moe Couplet</a>: Two people who bring out each other's cute qualities the same way that romantic couples do. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MomentKiller' title='/pmwiki/pmwiki.php/Main/MomentKiller' data-format='TW9tZW50S2lsbGVy'>Moment Killer</a>: A couple tries to have a romantic moment with each other, but gets interrupted. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterSlayerRomance' title='/pmwiki/pmwiki.php/Main/MonsterSlayerRomance' data-format='TW9uc3RlclNsYXllclJvbWFuY2U='>Monster/Slayer Romance</a>: A romance between a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HunterOfMonsters' title='/pmwiki/pmwiki.php/Main/HunterOfMonsters' data-format='SHVudGVyT2ZNb25zdGVycw=='>Hunter of Monsters</a> and the monster they're supposed to hunt. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoreExperiencedChasesTheInnocent' title='/pmwiki/pmwiki.php/Main/MoreExperiencedChasesTheInnocent' data-format='TW9yZUV4cGVyaWVuY2VkQ2hhc2VzVGhlSW5ub2NlbnQ='>More Experienced Chases the Innocent</a>: A more sexually and/or romantically experienced person pursues someone who has very little to no romantic or sexual experience. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MotivationalKiss' title='/pmwiki/pmwiki.php/Main/MotivationalKiss' data-format='TW90aXZhdGlvbmFsS2lzcw=='>Motivational Kiss</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> kisses them in order to give them the courage they need to get through the danger ahead of them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMourningAfter' title='/pmwiki/pmwiki.php/Main/TheMourningAfter' data-format='VGhlTW91cm5pbmdBZnRlcg=='>The Mourning After</a>: Being too grief-stricken to love again after the death of your lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MrsHypothetical' title='/pmwiki/pmwiki.php/Main/MrsHypothetical' data-format='TXJzSHlwb3RoZXRpY2Fs'>Mrs. Hypothetical</a>: A girl thinks about having her crush's last name. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MuggleMageRomance' title='/pmwiki/pmwiki.php/Main/MuggleMageRomance' data-format='TXVnZ2xlTWFnZVJvbWFuY2U='>Muggle–Mage Romance</a>: Romance between a magic user and a regular person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MuggleAndMagicalLoveTriangle' title='/pmwiki/pmwiki.php/Main/MuggleAndMagicalLoveTriangle' data-format='TXVnZ2xlQW5kTWFnaWNhbExvdmVUcmlhbmdsZQ=='>Muggle and Magical Love Triangle</a>: The lead's two choices for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> are a normal person and someone of supernatural origin. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MurderTheHypotenuse' title='/pmwiki/pmwiki.php/Main/MurderTheHypotenuse' data-format='TXVyZGVyVGhlSHlwb3RlbnVzZQ=='>Murder the Hypotenuse</a>: Killing off your love rival. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MutualPining' title='/pmwiki/pmwiki.php/Main/MutualPining' data-format='TXV0dWFsUGluaW5n'>Mutual Pining</a>: Two characters are madly in love with each other but are so convinced the other can't return their feelings to the point they both suffer quietly over it instead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MyGirlBackHome' title='/pmwiki/pmwiki.php/Main/MyGirlBackHome' data-format='TXlHaXJsQmFja0hvbWU='>My Girl Back Home</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s lover is waiting for him back home. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MyOwnPrivateIDo' title='/pmwiki/pmwiki.php/Main/MyOwnPrivateIDo' data-format='TXlPd25Qcml2YXRlSURv'>My Own Private "I Do"</a>: A couple gets married before having a big fancy wedding. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MySisterIsOffLimits' title='/pmwiki/pmwiki.php/Main/MySisterIsOffLimits' data-format='TXlTaXN0ZXJJc09mZkxpbWl0cw=='>My Sister Is Off-Limits</a>: This girl is unable to go out on dates because her brother is very protective of her. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Tropes (N-R)&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NecktieLeash' title='/pmwiki/pmwiki.php/Main/NecktieLeash' data-format='TmVja3RpZUxlYXNo'>Necktie Leash</a>: A guy has his necktie yanked by his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>, showing she is who wears the pants in the relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NewOldFlame' title='/pmwiki/pmwiki.php/Main/NewOldFlame' data-format='TmV3T2xkRmxhbWU='>New Old Flame</a>: Characters who have a romantic history with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGuysFinishLast' title='/pmwiki/pmwiki.php/Main/NiceGuysFinishLast' data-format='TmljZUd1eXNGaW5pc2hMYXN0'>Nice Guys Finish Last</a>: Women never fall for sweet, kind men. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoAccountingForTaste' title='/pmwiki/pmwiki.php/Main/NoAccountingForTaste' data-format='Tm9BY2NvdW50aW5nRm9yVGFzdGU='>No Accounting for Taste</a>: There is absolutely no reason for these two to be lovers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoGoingSteady' title='/pmwiki/pmwiki.php/Main/NoGoingSteady' data-format='Tm9Hb2luZ1N0ZWFkeQ=='>No Going Steady</a>: Characters date each other without becoming an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoGuyWantsAnAmazon' title='/pmwiki/pmwiki.php/Main/NoGuyWantsAnAmazon' data-format='Tm9HdXlXYW50c0FuQW1hem9u'>No Guy Wants an Amazon</a>: Men don't want to be with women who can beat them up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoGuyWantsToBeChased' title='/pmwiki/pmwiki.php/Main/NoGuyWantsToBeChased' data-format='Tm9HdXlXYW50c1RvQmVDaGFzZWQ='>No Guy Wants to Be Chased</a>: Men find it creepy when the woman pursues them instead of the other way around. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoHuggingNoKissing' title='/pmwiki/pmwiki.php/Main/NoHuggingNoKissing' data-format='Tm9IdWdnaW5nTm9LaXNzaW5n'>No Hugging, No Kissing</a>: Romance is absent from this story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoLovesIntersect' title='/pmwiki/pmwiki.php/Main/NoLovesIntersect' data-format='Tm9Mb3Zlc0ludGVyc2VjdA=='>No Loves Intersect</a>: Characters get with their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> without any messy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTriangle' title='/pmwiki/pmwiki.php/Main/LoveTriangle' data-format='W1tMb3ZlVHJpYW5nbGUgTG92ZSBUcmlhbmdsZXNdXQ=='>Love Triangles</a> or other kinds of romantic drama. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoRomanticResolution' title='/pmwiki/pmwiki.php/Main/NoRomanticResolution' data-format='Tm9Sb21hbnRpY1Jlc29sdXRpb24='>No Romantic Resolution</a>: A romance arc ends without anyone getting together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoSparks' title='/pmwiki/pmwiki.php/Main/NoSparks' data-format='Tm9TcGFya3M='>No Sparks</a>: A couple is shown to have no romantic compatibility. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoYouHangUpFirst' title='/pmwiki/pmwiki.php/Main/NoYouHangUpFirst' data-format='Tm9Zb3VIYW5nVXBGaXJzdA=='>No, You Hang Up First</a>: An overly lovey-dovey couple argue over who should hang up their phone conversation first. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NobodyThinksItWillWork' title='/pmwiki/pmwiki.php/Main/NobodyThinksItWillWork' data-format='Tm9ib2R5VGhpbmtzSXRXaWxsV29yaw=='>Nobody Thinks It Will Work</a>: Two people are in love despite everyone thinking their relationship could never work. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonhumanLoverReveal' title='/pmwiki/pmwiki.php/Main/NonhumanLoverReveal' data-format='Tm9uaHVtYW5Mb3ZlclJldmVhbA=='>Non-Human Lover Reveal</a>: A character's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> is revealed to be a non-human. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NormieDatesACelebrity' title='/pmwiki/pmwiki.php/Main/NormieDatesACelebrity' data-format='Tm9ybWllRGF0ZXNBQ2VsZWJyaXR5'>Normie Dates a Celebrity</a>: A normal person is in a relationship with a celebrity, causing drama. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotBloodSiblings' title='/pmwiki/pmwiki.php/Main/NotBloodSiblings' data-format='Tm90Qmxvb2RTaWJsaW5ncw=='>Not Blood Siblings</a>: An incestuous relationship is justified by the couple not being related by blood (e.g. being stepsiblings or adopted siblings). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NowOrNeverKiss' title='/pmwiki/pmwiki.php/Main/NowOrNeverKiss' data-format='Tm93T3JOZXZlcktpc3M='>Now or Never Kiss</a>: Characters kiss and confess their love for each other in a moment where they think they're about to die. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ObliviousToLove' title='/pmwiki/pmwiki.php/Main/ObliviousToLove' data-format='T2JsaXZpb3VzVG9Mb3Zl'>Oblivious to Love</a>: They don't notice that someone is in love with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ObsessiveLoveLetter' title='/pmwiki/pmwiki.php/Main/ObsessiveLoveLetter' data-format='T2JzZXNzaXZlTG92ZUxldHRlcg=='>Obsessive Love Letter</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveLetter' title='/pmwiki/pmwiki.php/Main/LoveLetter' data-format='TG92ZUxldHRlcg=='>Love Letter</a> that is more creepy than romantic. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficeRomance' title='/pmwiki/pmwiki.php/Main/OfficeRomance' data-format='T2ZmaWNlUm9tYW5jZQ=='>Office Romance</a>: Romance between co-workers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a>: Characters who are canonically in a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCoupleOrdealSyndrome' title='/pmwiki/pmwiki.php/Main/OfficialCoupleOrdealSyndrome' data-format='T2ZmaWNpYWxDb3VwbGVPcmRlYWxTeW5kcm9tZQ=='>Official Couple Ordeal Syndrome</a>: The story's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a> go through absolute hell throughout the story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialKiss' title='/pmwiki/pmwiki.php/Main/OfficialKiss' data-format='T2ZmaWNpYWxLaXNz'>Official Kiss</a>: Two characters kiss to signal their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' title='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' data-format='UmVsYXRpb25zaGlwVXBncmFkZQ=='>Relationship Upgrade</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffScreenBreakup' title='/pmwiki/pmwiki.php/Main/OffScreenBreakup' data-format='T2ZmU2NyZWVuQnJlYWt1cA=='>Offscreen Breakup</a>: Two characters who were previously established to be a couple are later found to have broken up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffScreenRomance' title='/pmwiki/pmwiki.php/Main/OffScreenRomance' data-format='T2ZmU2NyZWVuUm9tYW5jZQ=='>Offscreen Romance</a>: Two characters are found to have hooked up sometime offscreen. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OldFashionedRowboatDate' title='/pmwiki/pmwiki.php/Main/OldFashionedRowboatDate' data-format='T2xkRmFzaGlvbmVkUm93Ym9hdERhdGU='>Old-Fashioned Rowboat Date</a>: A classic romantic date where the couple rides in a row boat. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OldFlameFizzle' title='/pmwiki/pmwiki.php/Main/OldFlameFizzle' data-format='T2xkRmxhbWVGaXp6bGU='>Old Flame Fizzle</a>: A character reunites with a previous lover, only to find that that person is no longer the person they remembered so fondly. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneHeadTaller' title='/pmwiki/pmwiki.php/Main/OneHeadTaller' data-format='T25lSGVhZFRhbGxlcg=='>One Head Taller</a>: A couple where one partner (often the man) towers over the other partner. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneNormalNight' title='/pmwiki/pmwiki.php/Main/OneNormalNight' data-format='T25lTm9ybWFsTmlnaHQ='>One Normal Night</a>: A character bringing home a date asks their embarrassing family to act normal for their sake. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheOneThatGotAway' title='/pmwiki/pmwiki.php/Main/TheOneThatGotAway' data-format='VGhlT25lVGhhdEdvdEF3YXk='>The One That Got Away</a>: A character wishes they had gotten together with their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneTrueLove' title='/pmwiki/pmwiki.php/Main/OneTrueLove' data-format='T25lVHJ1ZUxvdmU='>One True Love</a>: The one person you're meant to be with. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OnlyHasSameSexAdmirers' title='/pmwiki/pmwiki.php/Main/OnlyHasSameSexAdmirers' data-format='T25seUhhc1NhbWVTZXhBZG1pcmVycw=='>Only Has Same-Sex Admirers</a>: A character is only loved by people of the same gender. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OpenRelationshipFailure' title='/pmwiki/pmwiki.php/Main/OpenRelationshipFailure' data-format='T3BlblJlbGF0aW9uc2hpcEZhaWx1cmU='>Open Relationship Failure</a>: A non-monogamous relationship runs into problems directly related to it being non-monogamous. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OperationJealousy' title='/pmwiki/pmwiki.php/Main/OperationJealousy' data-format='T3BlcmF0aW9uSmVhbG91c3k='>Operation: Jealousy</a>: A character tries to get their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>'s attention by pretending to date someone else as a way of inducing jealousy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OppositesAttract' title='/pmwiki/pmwiki.php/Main/OppositesAttract' data-format='T3Bwb3NpdGVzQXR0cmFjdA=='>Opposites Attract</a>: They're complete opposites but they love each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OrbitalKiss' title='/pmwiki/pmwiki.php/Main/OrbitalKiss' data-format='T3JiaXRhbEtpc3M='>Orbital Kiss</a>: A couple kisses as the camera rotates around them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurLoveIsDifferent' title='/pmwiki/pmwiki.php/Main/OurLoveIsDifferent' data-format='T3VyTG92ZUlzRGlmZmVyZW50'>Our Love Is Different</a>: A character insists that their relationship with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCasanova' title='/pmwiki/pmwiki.php/Main/TheCasanova' data-format='VGhlQ2FzYW5vdmE='>The Casanova</a> is true love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OutlawCouple' title='/pmwiki/pmwiki.php/Main/OutlawCouple' data-format='T3V0bGF3Q291cGxl'>Outlaw Couple</a>: Lovers who commit crimes together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PairTheDumbOnes' title='/pmwiki/pmwiki.php/Main/PairTheDumbOnes' data-format='UGFpclRoZUR1bWJPbmVz'>Pair the Dumb Ones</a>: Dumb characters get together because they are dumb. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PairTheSmartOnes' title='/pmwiki/pmwiki.php/Main/PairTheSmartOnes' data-format='UGFpclRoZVNtYXJ0T25lcw=='>Pair the Smart Ones</a>: Intelligent characters hook up with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PairTheSpares' title='/pmwiki/pmwiki.php/Main/PairTheSpares' data-format='UGFpclRoZVNwYXJlcw=='>Pair the Spares</a>: The characters who don't have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a> end up together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PairTheSuitors' title='/pmwiki/pmwiki.php/Main/PairTheSuitors' data-format='UGFpclRoZVN1aXRvcnM='>Pair the Suitors</a>: Two people vying for someone's attention end up falling in love with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParalyzingFearOfSexuality' title='/pmwiki/pmwiki.php/Main/ParalyzingFearOfSexuality' data-format='UGFyYWx5emluZ0ZlYXJPZlNleHVhbGl0eQ=='>Paralyzing Fear of Sexuality</a>: A character desires a romantic relationship, but fears succumbing to their base desires. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentalIncest' title='/pmwiki/pmwiki.php/Main/ParentalIncest' data-format='UGFyZW50YWxJbmNlc3Q='>Parental Incest</a>: Romance between a parent and their child. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentPreferredSuitor' title='/pmwiki/pmwiki.php/Main/ParentPreferredSuitor' data-format='UGFyZW50UHJlZmVycmVkU3VpdG9y'>Parent-Preferred Suitor</a>: When a parent prefers one <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> of their offspring over another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentsWalkInAtTheWorstTime' title='/pmwiki/pmwiki.php/Main/ParentsWalkInAtTheWorstTime' data-format='UGFyZW50c1dhbGtJbkF0VGhlV29yc3RUaW1l'>Parents Walk In at the Worst Time</a>: A character's parents awkwardly walk in on them hanging out with/having sex with their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PerverseSexualLust' title='/pmwiki/pmwiki.php/Main/PerverseSexualLust' data-format='UGVydmVyc2VTZXh1YWxMdXN0'>Perverse Sexual Lust</a>: Attraction to and/or falling in love with a fictional character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PiningAfterProtagonistsParent' title='/pmwiki/pmwiki.php/Main/PiningAfterProtagonistsParent' data-format='UGluaW5nQWZ0ZXJQcm90YWdvbmlzdHNQYXJlbnQ='>Pining After Protagonist's Parent</a>: A character has unrequited feelings for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s parent. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PinkIsErotic' title='/pmwiki/pmwiki.php/Main/PinkIsErotic' data-format='UGlua0lzRXJvdGlj'>Pink Is Erotic</a>: The color pink is used to indicate arousal, attraction, eroticism, and scenes of a sexual nature. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PitbullDatesPuppy' title='/pmwiki/pmwiki.php/Main/PitbullDatesPuppy' data-format='UGl0YnVsbERhdGVzUHVwcHk='>Pitbull Dates Puppy</a>: A rough and tough character falls in love with someone of a softer, gentler nature. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlatonicWritingRomanticReading' title='/pmwiki/pmwiki.php/Main/PlatonicWritingRomanticReading' data-format='UGxhdG9uaWNXcml0aW5nUm9tYW50aWNSZWFkaW5n'>Platonic Writing, Romantic Reading</a>: The audience picks up romantic subtext between characters that are not meant to be in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayingCyrano' title='/pmwiki/pmwiki.php/Main/PlayingCyrano' data-format='UGxheWluZ0N5cmFubw=='>Playing Cyrano</a>: A character helps their friend impress their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> by feeding them words to say through an ear microphone. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayingHardToGet' title='/pmwiki/pmwiki.php/Main/PlayingHardToGet' data-format='UGxheWluZ0hhcmRUb0dldA=='>Playing Hard to Get</a>: A character tries to attract their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> by pretending to be not interested in them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PleaseDontLeaveMe' title='/pmwiki/pmwiki.php/Main/PleaseDontLeaveMe' data-format='UGxlYXNlRG9udExlYXZlTWU='>Please, Don't Leave Me</a>: A character desperately pleads the love of their life not to leave them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PleaseDumpMe' title='/pmwiki/pmwiki.php/Main/PleaseDumpMe' data-format='UGxlYXNlRHVtcE1l'>Please Dump Me</a>: A character acts disgusting in order to get their lover to break up with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Polyamory' title='/pmwiki/pmwiki.php/Main/Polyamory' data-format='e3tQb2x5YW1vcnl9fQ=='>Polyamory</a>: Romance between more than two people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PostKissCatatonia' title='/pmwiki/pmwiki.php/Main/PostKissCatatonia' data-format='UG9zdEtpc3NDYXRhdG9uaWE='>Post-Kiss Catatonia</a>: A character is in shock after being kissed by their love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerDynamicsKink' title='/pmwiki/pmwiki.php/Main/PowerDynamicsKink' data-format='UG93ZXJEeW5hbWljc0tpbms='>Power Dynamics Kink</a>: A character falling in love with someone whom they can control and punish (or who can control and punish <em>them</em>). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfLove' title='/pmwiki/pmwiki.php/Main/ThePowerOfLove' data-format='VGhlUG93ZXJPZkxvdmU='>The Power of Love</a>: Characters are empowered by their feelings of love and affection for each other, especially the romantic bonds with their significant others. <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfFamily' title='/pmwiki/pmwiki.php/Main/ThePowerOfFamily' data-format='VGhlUG93ZXJPZkZhbWlseQ=='>The Power of Family</a>: Characters are empowered by the love they feel for their family members (related by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThickerThanWater' title='/pmwiki/pmwiki.php/Main/ThickerThanWater' data-format='W1tUaGlja2VyVGhhbldhdGVyIGJsb29kXV0='>blood</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FamilyOfChoice' title='/pmwiki/pmwiki.php/Main/FamilyOfChoice' data-format='W1tGYW1pbHlPZkNob2ljZSBjaG9pY2VdXQ=='>choice</a>). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfFriendship' title='/pmwiki/pmwiki.php/Main/ThePowerOfFriendship' data-format='VGhlUG93ZXJPZkZyaWVuZHNoaXA='>The Power of Friendship</a>: Characters are empowered by the platonic love they have for their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrueCompanions' title='/pmwiki/pmwiki.php/Main/TrueCompanions' data-format='VHJ1ZUNvbXBhbmlvbnM='>True Companions</a>. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrankDate' title='/pmwiki/pmwiki.php/Main/PrankDate' data-format='UHJhbmtEYXRl'>Prank Date</a>: A character is tricked into believing they have a date with their crush. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrecociousCrush' title='/pmwiki/pmwiki.php/Main/PrecociousCrush' data-format='UHJlY29jaW91c0NydXNo'>Precocious Crush</a>: A child has a crush on someone much older than them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrinceCharmingWannabe' title='/pmwiki/pmwiki.php/Main/PrinceCharmingWannabe' data-format='UHJpbmNlQ2hhcm1pbmdXYW5uYWJl'>Prince Charming Wannabe</a>: A man who deludes himself into believing he's a woman's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrinceCharming' title='/pmwiki/pmwiki.php/Main/PrinceCharming' data-format='UHJpbmNlQ2hhcm1pbmc='>Prince Charming</a> who will sweep her off her feet. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProjectileKiss' title='/pmwiki/pmwiki.php/Main/ProjectileKiss' data-format='UHJvamVjdGlsZUtpc3M='>Projectile Kiss</a>: A character blows a kiss towards their crush. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PromotedToLoveInterest' title='/pmwiki/pmwiki.php/Main/PromotedToLoveInterest' data-format='UHJvbW90ZWRUb0xvdmVJbnRlcmVzdA=='>Promoted to Love Interest</a>: An adaptation of a story turns a character's platonic relationship into a romantic one. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePromposal' title='/pmwiki/pmwiki.php/Main/ThePromposal' data-format='VGhlUHJvbXBvc2Fs'>The Promposal</a>: Asking someone to prom in the style of a marriage proposal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PropertyOfLove' title='/pmwiki/pmwiki.php/Main/PropertyOfLove' data-format='UHJvcGVydHlPZkxvdmU='>Property of Love</a>: When being in love makes you essentially your lover's property. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProxyBreakup' title='/pmwiki/pmwiki.php/Main/ProxyBreakup' data-format='UHJveHlCcmVha3Vw'>Proxy Breakup</a>: Alice wants to break-up with Bob, so she has Cindy do it for her. Hijinks Ensue. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PseudoRomanticFriendship' title='/pmwiki/pmwiki.php/Main/PseudoRomanticFriendship' data-format='UHNldWRvUm9tYW50aWNGcmllbmRzaGlw'>Pseudo-Romantic Friendship</a>: Two friends have a close friendship with each other that they could easily be seen as lovers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoExGirlfriend' title='/pmwiki/pmwiki.php/Main/PsychoExGirlfriend' data-format='UHN5Y2hvRXhHaXJsZnJpZW5k'>Psycho Ex-Girlfriend</a>: The ex-significant other of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> who didn't take being dumped very well. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoticLoveTriangle' title='/pmwiki/pmwiki.php/Main/PsychoticLoveTriangle' data-format='UHN5Y2hvdGljTG92ZVRyaWFuZ2xl'>Psychotic Love Triangle</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTriangle' title='/pmwiki/pmwiki.php/Main/LoveTriangle' data-format='TG92ZVRyaWFuZ2xl'>Love Triangle</a> where both suitors are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PuppyLove' title='/pmwiki/pmwiki.php/Main/PuppyLove' data-format='UHVwcHlMb3Zl'>Puppy Love</a>: Romance between pre-pubescent children. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PygmalionPlot' title='/pmwiki/pmwiki.php/Main/PygmalionPlot' data-format='UHlnbWFsaW9uUGxvdA=='>Pygmalion Plot</a>: Falling in love with one's own creation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/QuittingToBecomeACaregiver' title='/pmwiki/pmwiki.php/Main/QuittingToBecomeACaregiver' data-format='UXVpdHRpbmdUb0JlY29tZUFDYXJlZ2l2ZXI='>Quitting to Become a Caregiver</a>: A character sacrifices their job and/or education to care for another human being. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RaceForYourLove' title='/pmwiki/pmwiki.php/Main/RaceForYourLove' data-format='UmFjZUZvcllvdXJMb3Zl'>Race for Your Love</a>: A character races to catch up with their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> before they leave them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedStringOfFate' title='/pmwiki/pmwiki.php/Main/RedStringOfFate' data-format='UmVkU3RyaW5nT2ZGYXRl'>Red String of Fate</a>: Two characters are bound by fate to be together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedundantRomanceAttempt' title='/pmwiki/pmwiki.php/Main/RedundantRomanceAttempt' data-format='UmVkdW5kYW50Um9tYW5jZUF0dGVtcHQ='>Redundant Romance Attempt</a>: Acting out of character to impress a love interest who likes your true personality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReincarnationRomance' title='/pmwiki/pmwiki.php/Main/ReincarnationRomance' data-format='UmVpbmNhcm5hdGlvblJvbWFuY2U='>Reincarnation Romance</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StarCrossedLovers' title='/pmwiki/pmwiki.php/Main/StarCrossedLovers' data-format='U3RhckNyb3NzZWRMb3ZlcnM='>Star-Crossed Lovers</a> die and are reincarnated so they may meet each other again. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RejectionAffection' title='/pmwiki/pmwiki.php/Main/RejectionAffection' data-format='UmVqZWN0aW9uQWZmZWN0aW9u'>Rejection Affection</a>: A character is repeatedly rejected by their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>, but never takes the hint. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipCompression' title='/pmwiki/pmwiki.php/Main/RelationshipCompression' data-format='UmVsYXRpb25zaGlwQ29tcHJlc3Npb24='>Relationship Compression</a>: The amount of time it takes for characters to hook up is reduced in an adaptation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipLabelingProblems' title='/pmwiki/pmwiki.php/Main/RelationshipLabelingProblems' data-format='UmVsYXRpb25zaGlwTGFiZWxpbmdQcm9ibGVtcw=='>Relationship Labeling Problems</a>: Characters can't describe exactly what their relationship situation is. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipReveal' title='/pmwiki/pmwiki.php/Main/RelationshipReveal' data-format='UmVsYXRpb25zaGlwUmV2ZWFs'>Relationship Reveal</a>: Implied lovers are revealed to officially be in a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipRevolvingDoor' title='/pmwiki/pmwiki.php/Main/RelationshipRevolvingDoor' data-format='UmVsYXRpb25zaGlwUmV2b2x2aW5nRG9vcg=='>Relationship Revolving Door</a>: Characters date, break up, get back together, break up, and so on. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipSabotage' title='/pmwiki/pmwiki.php/Main/RelationshipSabotage' data-format='UmVsYXRpb25zaGlwU2Fib3RhZ2U='>Relationship Sabotage</a>: A character tries to ruin someone's romance, usually out of jealousy or protectiveness. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipSalvagingDisaster' title='/pmwiki/pmwiki.php/Main/RelationshipSalvagingDisaster' data-format='UmVsYXRpb25zaGlwU2FsdmFnaW5nRGlzYXN0ZXI='>Relationship-Salvaging Disaster</a>: Bickering lovers make up with each other in the midst of a time of crisis. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' title='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' data-format='UmVsYXRpb25zaGlwVXBncmFkZQ=='>Relationship Upgrade</a>: Two characters are made an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipValues' title='/pmwiki/pmwiki.php/Main/RelationshipValues' data-format='UmVsYXRpb25zaGlwVmFsdWVz'>Relationship Values</a>: Stats that show how much video game characters like the player character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipWritingFumble' title='/pmwiki/pmwiki.php/Main/RelationshipWritingFumble' data-format='UmVsYXRpb25zaGlwV3JpdGluZ0Z1bWJsZQ=='>Relationship Writing Fumble</a>: A relationship intended to be written one way unintentionally comes across as the wrong kind of relationship to audiences. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReleasingFromThePromise' title='/pmwiki/pmwiki.php/Main/ReleasingFromThePromise' data-format='UmVsZWFzaW5nRnJvbVRoZVByb21pc2U='>Releasing from the Promise</a>: Character is released from a promise they made to their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RemovedFromThePicture' title='/pmwiki/pmwiki.php/Main/RemovedFromThePicture' data-format='UmVtb3ZlZEZyb21UaGVQaWN0dXJl'>Removed from the Picture</a>: After a nasty break up, a character cuts their former lover's image out of pictures of them together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RemovingTheRival' title='/pmwiki/pmwiki.php/Main/RemovingTheRival' data-format='UmVtb3ZpbmdUaGVSaXZhbA=='>Removing the Rival</a>: A character ties up or locks their love rival in a room in order to keep him/her away from their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReplacementGoldfish' title='/pmwiki/pmwiki.php/Main/ReplacementGoldfish' data-format='UmVwbGFjZW1lbnRHb2xkZmlzaA=='>Replacement Goldfish</a>: A character is replaced with another. In romantic instances, after breaking up, a character starts dating someone who looks very similar to their ex. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RescueRomance' title='/pmwiki/pmwiki.php/Main/RescueRomance' data-format='UmVzY3VlUm9tYW5jZQ=='>Rescue Romance</a>: Falling in love with someone who saves your life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ResurrectedRomance' title='/pmwiki/pmwiki.php/Main/ResurrectedRomance' data-format='UmVzdXJyZWN0ZWRSb21hbmNl'>Resurrected Romance</a>: A character's dead <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> comes back to life to rekindle their romance. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReturningTheHandkerchief' title='/pmwiki/pmwiki.php/Main/ReturningTheHandkerchief' data-format='UmV0dXJuaW5nVGhlSGFuZGtlcmNoaWVm'>Returning the Handkerchief</a>: A classic romantic que where a character drops an item of theirs, and their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> finds it and returns it to them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRevealPromptsRomance' title='/pmwiki/pmwiki.php/Main/TheRevealPromptsRomance' data-format='VGhlUmV2ZWFsUHJvbXB0c1JvbWFuY2U='>The Reveal Prompts Romance</a>: A character reveals a big secret to their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>, which causes them to commence a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RevengeRomance' title='/pmwiki/pmwiki.php/Main/RevengeRomance' data-format='UmV2ZW5nZVJvbWFuY2U='>Revenge Romance</a>: After a nasty breakup, a character dates someone their ex knows in order to spite them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RichSuitorPoorSuitor' title='/pmwiki/pmwiki.php/Main/RichSuitorPoorSuitor' data-format='UmljaFN1aXRvclBvb3JTdWl0b3I='>Rich Suitor, Poor Suitor</a>: A character's two <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> choices are a rich person and a poor begger. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RivalryAsCourtship' title='/pmwiki/pmwiki.php/Main/RivalryAsCourtship' data-format='Uml2YWxyeUFzQ291cnRzaGlw'>Rivalry as Courtship</a>: A romance that stems from two characters' rivalry. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoadTripRomance' title='/pmwiki/pmwiki.php/Main/RoadTripRomance' data-format='Um9hZFRyaXBSb21hbmNl'>Road Trip Romance</a>: Two characters traveling together eventually fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoaringRampageOfRomance' title='/pmwiki/pmwiki.php/Main/RoaringRampageOfRomance' data-format='Um9hcmluZ1JhbXBhZ2VPZlJvbWFuY2U='>Roaring Rampage of Romance</a>: A romance that causes the deaths of many people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoboRomance' title='/pmwiki/pmwiki.php/Main/RoboRomance' data-format='Um9ib1JvbWFuY2U='>Robo Romance</a>: Romance between robotic beings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RollInTheHay' title='/pmwiki/pmwiki.php/Main/RollInTheHay' data-format='Um9sbEluVGhlSGF5'>Roll in the Hay</a>: Lovers make love while rolling around in a pile of hay. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceAndSexualitySeparation' title='/pmwiki/pmwiki.php/Main/RomanceAndSexualitySeparation' data-format='Um9tYW5jZUFuZFNleHVhbGl0eVNlcGFyYXRpb24='>Romance and Sexuality Separation</a>: A character feels unable to love, and have sex with, another character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceInducingSmudge' title='/pmwiki/pmwiki.php/Main/RomanceInducingSmudge' data-format='Um9tYW5jZUluZHVjaW5nU211ZGdl'>Romance-Inducing Smudge</a>: A character has a smudge on their face, which their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> sweetly rubs off. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceOnTheSet' title='/pmwiki/pmwiki.php/Main/RomanceOnTheSet' data-format='Um9tYW5jZU9uVGhlU2V0'>Romance on the Set</a>: Creators behind a show fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomancingTheWidow' title='/pmwiki/pmwiki.php/Main/RomancingTheWidow' data-format='Um9tYW5jaW5nVGhlV2lkb3c='>Romancing the Widow</a>: Getting into a relationship with someone whose spouse has died. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticCandlelitDinner' title='/pmwiki/pmwiki.php/Main/RomanticCandlelitDinner' data-format='Um9tYW50aWNDYW5kbGVsaXREaW5uZXI='>Romantic Candlelit Dinner</a>: Dinners by candlelight are the definition of romance. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticFakeRealTurn' title='/pmwiki/pmwiki.php/Main/RomanticFakeRealTurn' data-format='Um9tYW50aWNGYWtlUmVhbFR1cm4='>Romantic Fake–Real Turn</a>: A fake romance becomes real. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticFalseLead' title='/pmwiki/pmwiki.php/Main/RomanticFalseLead' data-format='Um9tYW50aWNGYWxzZUxlYWQ='>Romantic False Lead</a>: The character who initially gets with the lead, but is later dumped in favor of the official <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticFusion' title='/pmwiki/pmwiki.php/Main/RomanticFusion' data-format='Um9tYW50aWNGdXNpb24='>Romantic Fusion</a>: Lovers perform a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FusionDance' title='/pmwiki/pmwiki.php/Main/FusionDance' data-format='RnVzaW9uRGFuY2U='>Fusion Dance</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticHyperbole' title='/pmwiki/pmwiki.php/Main/RomanticHyperbole' data-format='Um9tYW50aWNIeXBlcmJvbGU='>Romantic Hyperbole</a>: Describing one's love through implausible situations, e.g. saying you'll grab the moon for your lover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticPlotTumor' title='/pmwiki/pmwiki.php/Main/RomanticPlotTumor' data-format='Um9tYW50aWNQbG90VHVtb3I='>Romantic Plot Tumor</a>: A romantic subplot that gets in the way of the main conflict. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticRain' title='/pmwiki/pmwiki.php/Main/RomanticRain' data-format='Um9tYW50aWNSYWlu'>Romantic Rain</a>: Rain makes a good backdrop for a love scene. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticRibbing' title='/pmwiki/pmwiki.php/Main/RomanticRibbing' data-format='Um9tYW50aWNSaWJiaW5n'>Romantic Ribbing</a>: Love interests tease their partners. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticRideSharing' title='/pmwiki/pmwiki.php/Main/RomanticRideSharing' data-format='Um9tYW50aWNSaWRlU2hhcmluZw=='>Romantic Ride Sharing</a>: A couple shares a ride on the same vehicle where one drives it and the other hugs them from behind. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticRunnerUp' title='/pmwiki/pmwiki.php/Main/RomanticRunnerUp' data-format='Um9tYW50aWNSdW5uZXJVcA=='>Romantic Runner-Up</a>: The character set up as a potential <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>, but ultimately doesn't end up with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticSpoonfeeding' title='/pmwiki/pmwiki.php/Main/RomanticSpoonfeeding' data-format='Um9tYW50aWNTcG9vbmZlZWRpbmc='>Romantic Spoonfeeding</a>: A character manually feeds their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanticWingman' title='/pmwiki/pmwiki.php/Main/RomanticWingman' data-format='Um9tYW50aWNXaW5nbWFu'>Romantic Wingman</a>: A person who helps their friends out with their love lives. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomComJob' title='/pmwiki/pmwiki.php/Main/RomComJob' data-format='Um9tQ29tSm9i'>Rom Com Job</a>: A line of work that acts as a typical romantic comedy setting. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunawayBride' title='/pmwiki/pmwiki.php/Main/RunawayBride' data-format='UnVuYXdheUJyaWRl'>Runaway Bride</a>: The bride skips out on her wedding, often because she doesn't really love her groom. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunawayFiance' title='/pmwiki/pmwiki.php/Main/RunawayFiance' data-format='UnVuYXdheUZpYW5jZQ=='>Runaway Fiancé</a>: A person who runs away from an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArrangedMarriage' title='/pmwiki/pmwiki.php/Main/ArrangedMarriage' data-format='QXJyYW5nZWRNYXJyaWFnZQ=='>Arranged Marriage</a>, often to go be with the one they really love. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Tropes (S-Z)&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SatelliteLoveInterest' title='/pmwiki/pmwiki.php/Main/SatelliteLoveInterest' data-format='U2F0ZWxsaXRlTG92ZUludGVyZXN0'>Satellite Love Interest</a>: This character is made only to be the love interest of the lead protagonist. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SamaritanRelationshipStarter' title='/pmwiki/pmwiki.php/Main/SamaritanRelationshipStarter' data-format='U2FtYXJpdGFuUmVsYXRpb25zaGlwU3RhcnRlcg=='>Samaritan Relationship Starter</a>: A character falls in love with somebody upon witnessing them perform an act of kindness. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SavvyGuyEnergeticGirl' title='/pmwiki/pmwiki.php/Main/SavvyGuyEnergeticGirl' data-format='U2F2dnlHdXlFbmVyZ2V0aWNHaXJs'>Savvy Guy, Energetic Girl</a>: A cool-headed often unathletic guy and a bubbly bouncy girl fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecondActBreakup' title='/pmwiki/pmwiki.php/Main/SecondActBreakup' data-format='U2Vjb25kQWN0QnJlYWt1cA=='>Second-Act Breakup</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a> breaks up in the middle of the story after a misunderstanding or some other kind of conflict. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecondLove' title='/pmwiki/pmwiki.php/Main/SecondLove' data-format='U2Vjb25kTG92ZQ=='>Second Love</a>: The next person you fell in love with after your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FirstLove' title='/pmwiki/pmwiki.php/Main/FirstLove' data-format='Rmlyc3RMb3Zl'>First Love</a> didn't work out. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretRelationship' title='/pmwiki/pmwiki.php/Main/SecretRelationship' data-format='U2VjcmV0UmVsYXRpb25zaGlw'>Secret Relationship</a>: Characters are in a relationship that they don't want their friends and family to know about. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SeductionProofMarriage' title='/pmwiki/pmwiki.php/Main/SeductionProofMarriage' data-format='U2VkdWN0aW9uUHJvb2ZNYXJyaWFnZQ=='>Seduction-Proof Marriage</a>: When two people are so in love and committed to each other, no seducers can steal them away from each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SeductiveMummy' title='/pmwiki/pmwiki.php/Main/SeductiveMummy' data-format='U2VkdWN0aXZlTXVtbXk='>Seductive Mummy</a>: A mummy is a beautiful <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> instead of a frightening monster. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfProclaimedInLaw' title='/pmwiki/pmwiki.php/Main/SelfProclaimedInLaw' data-format='U2VsZlByb2NsYWltZWRJbkxhdw=='>Self-Proclaimed In-Law</a>: A person refers to their crush's relatives as their in-laws, or declares themself an in-law to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipperOnDeck' title='/pmwiki/pmwiki.php/Main/ShipperOnDeck' data-format='W1tTaGlwcGVyT25EZWNrIHRoZSBwZXJzb24gdGhleSBzaGlwIHRoZWlyIHJlbGF0aXZlIHdpdGhdXQ=='>the person they ship their relative with</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfProclaimedLoveInterest' title='/pmwiki/pmwiki.php/Main/SelfProclaimedLoveInterest' data-format='U2VsZlByb2NsYWltZWRMb3ZlSW50ZXJlc3Q='>Self-Proclaimed Love Interest</a>: A character who claims to be/thinks they're someone's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SeparatedByTheWall' title='/pmwiki/pmwiki.php/Main/SeparatedByTheWall' data-format='U2VwYXJhdGVkQnlUaGVXYWxs'>Separated by the Wall</a>: Lovers meet up at a barricade that is separating them from each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerenadeYourLover' title='/pmwiki/pmwiki.php/Main/SerenadeYourLover' data-format='U2VyZW5hZGVZb3VyTG92ZXI='>Serenade Your Lover</a>: Singing a love song for your beloved. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialRomeo' title='/pmwiki/pmwiki.php/Main/SerialRomeo' data-format='U2VyaWFsUm9tZW8='>Serial Romeo</a>: He repeatedly falls for every girl he meets, insisting that she's the one for him. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SettleForSibling' title='/pmwiki/pmwiki.php/Main/SettleForSibling' data-format='U2V0dGxlRm9yU2libGluZw=='>Settle for Sibling</a>: When you can't win someone's love, hook up with their sibling instead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SettledForGay' title='/pmwiki/pmwiki.php/Main/SettledForGay' data-format='U2V0dGxlZEZvckdheQ=='>Settled for Gay</a>: Hooking up with a gay man due to him being the only one available to you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexEqualsLove' title='/pmwiki/pmwiki.php/Main/SexEqualsLove' data-format='U2V4RXF1YWxzTG92ZQ=='>Sex Equals Love</a>: When two people have sex, they'll fall in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexWithTheEx' title='/pmwiki/pmwiki.php/Main/SexWithTheEx' data-format='U2V4V2l0aFRoZUV4'>Sex with the Ex</a>: A character has sex with their ex-significant other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexualKarma' title='/pmwiki/pmwiki.php/Main/SexualKarma' data-format='U2V4dWFsS2FybWE='>Sexual Karma</a>: A character's morality or lack of it earns them love/sex, e.g. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> gets the girl he loves while the villain gets an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbhorrentAdmirer' title='/pmwiki/pmwiki.php/Main/AbhorrentAdmirer' data-format='QWJob3JyZW50QWRtaXJlcg=='>Abhorrent Admirer</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexuallyTransmittedSuperpowers' title='/pmwiki/pmwiki.php/Main/SexuallyTransmittedSuperpowers' data-format='U2V4dWFsbHlUcmFuc21pdHRlZFN1cGVycG93ZXJz'>Sexually Transmitted Superpowers</a>: Intimate contact with another superpowered being causes a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Muggle' title='/pmwiki/pmwiki.php/Main/Muggle' data-format='e3tNdWdnbGV9fQ=='>Muggle</a> to develop superpowers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexyFlaw' title='/pmwiki/pmwiki.php/Main/SexyFlaw' data-format='U2V4eUZsYXc='>Sexy Flaw</a>: Imperfections and deformities serving as a romantic "turn-on". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShallowCannotComprehendTrueLove' title='/pmwiki/pmwiki.php/Main/ShallowCannotComprehendTrueLove' data-format='U2hhbGxvd0Nhbm5vdENvbXByZWhlbmRUcnVlTG92ZQ=='>Shallow Cannot Comprehend True Love</a>: Superficial people don't understand that not everyone is shallow when it comes to their choice in romantic partners. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SheCleansUpNicely' title='/pmwiki/pmwiki.php/Main/SheCleansUpNicely' data-format='U2hlQ2xlYW5zVXBOaWNlbHk='>She Cleans Up Nicely</a>: The frumpy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> looks beautiful when they get dressed up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SheIsNotMyGirlfriend' title='/pmwiki/pmwiki.php/Main/SheIsNotMyGirlfriend' data-format='U2hlSXNOb3RNeUdpcmxmcmllbmQ='>She Is Not My Girlfriend</a>: Two people deny being in a relationship, to the scepticism of everyone around them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShiksaGoddess' title='/pmwiki/pmwiki.php/Main/ShiksaGoddess' data-format='U2hpa3NhR29kZGVzcw=='>Shiksa Goddess</a>: A Jewish character's Gentile <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipperOnDeck' title='/pmwiki/pmwiki.php/Main/ShipperOnDeck' data-format='U2hpcHBlck9uRGVjaw=='>Shipper on Deck</a>: A character who supports a couple being together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipperWithAnAgenda' title='/pmwiki/pmwiki.php/Main/ShipperWithAnAgenda' data-format='U2hpcHBlcldpdGhBbkFnZW5kYQ=='>Shipper with an Agenda</a>: A character tries to hook two people up for reasons other than them looking cute together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShippingBedDeath' title='/pmwiki/pmwiki.php/Main/ShippingBedDeath' data-format='U2hpcHBpbmdCZWREZWF0aA=='>Shipping Bed Death</a>: Characters getting a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' title='/pmwiki/pmwiki.php/Main/RelationshipUpgrade' data-format='UmVsYXRpb25zaGlwVXBncmFkZQ=='>Relationship Upgrade</a> ruins the audience's enthusiasm for the pairing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShippingTorpedo' title='/pmwiki/pmwiki.php/Main/ShippingTorpedo' data-format='U2hpcHBpbmdUb3JwZWRv'>Shipping Torpedo</a>: This character is strongly opposed to a couple being together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShockValueRelationship' title='/pmwiki/pmwiki.php/Main/ShockValueRelationship' data-format='U2hvY2tWYWx1ZVJlbGF0aW9uc2hpcA=='>Shock Value Relationship</a>: A character gets into a head-turning relationship purely to surprise people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShotgunWedding' title='/pmwiki/pmwiki.php/Main/ShotgunWedding' data-format='U2hvdGd1bldlZGRpbmc='>Shotgun Wedding</a>: A couple gets married due to circumstances, e.g. the bride is pregnant with the groom's child. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShowerOfLove' title='/pmwiki/pmwiki.php/Main/ShowerOfLove' data-format='U2hvd2VyT2ZMb3Zl'>Shower of Love</a>: A couple takes a shower together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SiblingTriangle' title='/pmwiki/pmwiki.php/Main/SiblingTriangle' data-format='U2libGluZ1RyaWFuZ2xl'>Sibling Triangle</a>: Two siblings fall in love with the same person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SickbedSmuggling' title='/pmwiki/pmwiki.php/Main/SickbedSmuggling' data-format='U2lja2JlZFNtdWdnbGluZw=='>Sickbed Smuggling</a>: Giving a hospitalized loved one an (often) banned object (snack, meal, pet, etc.) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SickeninglySweethearts' title='/pmwiki/pmwiki.php/Main/SickeninglySweethearts' data-format='U2lja2VuaW5nbHlTd2VldGhlYXJ0cw=='>Sickeningly Sweethearts</a>: Two people love each other to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SickeninglySweet' title='/pmwiki/pmwiki.php/Main/SickeninglySweet' data-format='U2lja2VuaW5nbHlTd2VldA=='>Sickeningly Sweet</a> level. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ASideOrderOfRomance' title='/pmwiki/pmwiki.php/Main/ASideOrderOfRomance' data-format='QVNpZGVPcmRlck9mUm9tYW5jZQ=='>A Side Order of Romance</a>: A character visits a restaurant, and falls in love with the waitress. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SighOfLove' title='/pmwiki/pmwiki.php/Main/SighOfLove' data-format='U2lnaE9mTG92ZQ=='>Sigh of Love</a>: Sighing dreamily when in the presence of or thinking about your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SignedWithAKiss' title='/pmwiki/pmwiki.php/Main/SignedWithAKiss' data-format='U2lnbmVkV2l0aEFLaXNz'>Signed with a Kiss</a>: A character sends a letter or gift to their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> with a kiss mark attached. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SillyLoveSongs' title='/pmwiki/pmwiki.php/Main/SillyLoveSongs' data-format='U2lsbHlMb3ZlU29uZ3M='>Silly Love Songs</a>: Peppy songs about one's love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SillyRabbitRomanceIsForKids' title='/pmwiki/pmwiki.php/Main/SillyRabbitRomanceIsForKids' data-format='U2lsbHlSYWJiaXRSb21hbmNlSXNGb3JLaWRz'>Silly Rabbit, Romance Is for Kids!</a>: A character believes that love and romance are nothing but idealized nonsense. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SingleGirlSeeksMostPopularGuy' title='/pmwiki/pmwiki.php/Main/SingleGirlSeeksMostPopularGuy' data-format='U2luZ2xlR2lybFNlZWtzTW9zdFBvcHVsYXJHdXk='>Single Girl Seeks Most Popular Guy</a>: An unpopular girl crushes on the most handsome and most popular guy in school. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SingleTargetSexuality' title='/pmwiki/pmwiki.php/Main/SingleTargetSexuality' data-format='U2luZ2xlVGFyZ2V0U2V4dWFsaXR5'>Single-Target Sexuality</a>: Being in love with only one person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SingleWomanSeeksGoodMan' title='/pmwiki/pmwiki.php/Main/SingleWomanSeeksGoodMan' data-format='U2luZ2xlV29tYW5TZWVrc0dvb2RNYW4='>Single Woman Seeks Good Man</a>: Girls fall for sweet, kind guys. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SituationalSexuality' title='/pmwiki/pmwiki.php/Main/SituationalSexuality' data-format='U2l0dWF0aW9uYWxTZXh1YWxpdHk='>Situational Sexuality</a>: Characters fall in love with someone of the same sex if there is no one of the opposite sex around. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlapSlapKiss' title='/pmwiki/pmwiki.php/Main/SlapSlapKiss' data-format='U2xhcFNsYXBLaXNz'>Slap-Slap-Kiss</a>: Characters in love argue with each other then begin to kiss. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleepCute' title='/pmwiki/pmwiki.php/Main/SleepCute' data-format='U2xlZXBDdXRl'>Sleep Cute</a>: Lovers or characters with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> fall asleep next to each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleepingWithTheBoss' title='/pmwiki/pmwiki.php/Main/SleepingWithTheBoss' data-format='U2xlZXBpbmdXaXRoVGhlQm9zcw=='>Sleeping with the Boss</a>: A character is in a romantic relationship with their employer. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleepsWithEveryoneButYou' title='/pmwiki/pmwiki.php/Main/SleepsWithEveryoneButYou' data-format='U2xlZXBzV2l0aEV2ZXJ5b25lQnV0WW91'>Sleeps with Everyone but You</a>: A character will date anyone except this one person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SmithicalMarriage' title='/pmwiki/pmwiki.php/Main/SmithicalMarriage' data-format='U21pdGhpY2FsTWFycmlhZ2U='>Smithical Marriage</a>: A couple checks into a hotel, signing in as a married couple. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SmittenTeenageGirl' title='/pmwiki/pmwiki.php/Main/SmittenTeenageGirl' data-format='U21pdHRlblRlZW5hZ2VHaXJs'>Smitten Teenage Girl</a>: A teenage girl who crushes hard on a guy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SnowMeansLove' title='/pmwiki/pmwiki.php/Main/SnowMeansLove' data-format='U25vd01lYW5zTG92ZQ=='>Snow Means Love</a>: Snow makes a good backdrop for a love scene. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SoHappyTogether' title='/pmwiki/pmwiki.php/Main/SoHappyTogether' data-format='U29IYXBweVRvZ2V0aGVy'>So Happy Together</a>: A tragedy strikes right as a pair of lovers have a happy moment with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SorkinRelationshipMoment' title='/pmwiki/pmwiki.php/Main/SorkinRelationshipMoment' data-format='U29ya2luUmVsYXRpb25zaGlwTW9tZW50'>Sorkin Relationship Moment</a>: A character acts incredibly awkward when around their ex. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpeechImpededLoveInterest' title='/pmwiki/pmwiki.php/Main/SpeechImpededLoveInterest' data-format='U3BlZWNoSW1wZWRlZExvdmVJbnRlcmVzdA=='>Speech-Impeded Love Interest</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> character with a speech disability. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpurnedIntoSuicide' title='/pmwiki/pmwiki.php/Main/SpurnedIntoSuicide' data-format='U3B1cm5lZEludG9TdWljaWRl'>Spurned into Suicide</a>: Unrequited love results in a person taking their own life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SquaringTheLoveTriangle' title='/pmwiki/pmwiki.php/Main/SquaringTheLoveTriangle' data-format='U3F1YXJpbmdUaGVMb3ZlVHJpYW5nbGU='>Squaring the Love Triangle</a>: When the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a> hooks up, the unrequited suitor is then paired with the couple's child. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StalkerWithACrush' title='/pmwiki/pmwiki.php/Main/StalkerWithACrush' data-format='U3RhbGtlcldpdGhBQ3J1c2g='>Stalker with a Crush</a>: A character who follows the person they're in love with everywhere. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StalkingIsFunnyIfItIsFemaleAfterMale' title='/pmwiki/pmwiki.php/Main/StalkingIsFunnyIfItIsFemaleAfterMale' data-format='U3RhbGtpbmdJc0Z1bm55SWZJdElzRmVtYWxlQWZ0ZXJNYWxl'>Stalking Is Funny if It Is Female After Male</a>: A girl stalking the guy she loves is considered to be cute and amusing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StalkingIsLove' title='/pmwiki/pmwiki.php/Main/StalkingIsLove' data-format='U3RhbGtpbmdJc0xvdmU='>Stalking is Love</a>: Stalking your <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> is considered romantic rather than creepy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StarCrossedLovers' title='/pmwiki/pmwiki.php/Main/StarCrossedLovers' data-format='U3RhckNyb3NzZWRMb3ZlcnM='>Star-Crossed Lovers</a>: Lovers who can't be together due to circumstances. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StoodUp' title='/pmwiki/pmwiki.php/Main/StoodUp' data-format='U3Rvb2RVcA=='>Stood Up</a>: A character fails to show up for a date. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrangledByTheRedString' title='/pmwiki/pmwiki.php/Main/StrangledByTheRedString' data-format='U3RyYW5nbGVkQnlUaGVSZWRTdHJpbmc='>Strangled by the Red String</a>: Characters fall in love out of nowhere. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StudentTeacherRomance' title='/pmwiki/pmwiki.php/Main/StudentTeacherRomance' data-format='U3R1ZGVudFRlYWNoZXJSb21hbmNl'>Student/Teacher Romance</a>: Students fall in love with their teachers or vice versa. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StudentsPlayingMatchmaker' title='/pmwiki/pmwiki.php/Main/StudentsPlayingMatchmaker' data-format='U3R1ZGVudHNQbGF5aW5nTWF0Y2htYWtlcg=='>Students Playing Matchmaker</a>: Students try to find a match for their teachers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StupidSexyFriend' title='/pmwiki/pmwiki.php/Main/StupidSexyFriend' data-format='U3R1cGlkU2V4eUZyaWVuZA=='>Stupid Sexy Friend</a>: Somebody you're good friends with that you can't help but feel romantic attraction to. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccubusInLove' title='/pmwiki/pmwiki.php/Main/SuccubusInLove' data-format='U3VjY3VidXNJbkxvdmU='>Succubus in Love</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccubiAndIncubi' title='/pmwiki/pmwiki.php/Main/SuccubiAndIncubi' data-format='W1tTdWNjdWJpQW5kSW5jdWJpIFN1Y2N1YnVzXV0='>Succubus</a> falls in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SugarAndIcePersonality' title='/pmwiki/pmwiki.php/Main/SugarAndIcePersonality' data-format='U3VnYXJBbmRJY2VQZXJzb25hbGl0eQ=='>Sugar-and-Ice Personality</a>: A character who is cold most of the time, but super sweet when with the one they love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperpoweredDate' title='/pmwiki/pmwiki.php/Main/SuperpoweredDate' data-format='U3VwZXJwb3dlcmVkRGF0ZQ=='>Superpowered Date</a>: Superpowers allow a character to take their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> on a grandiose date. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SupportingHarem' title='/pmwiki/pmwiki.php/Main/SupportingHarem' data-format='U3VwcG9ydGluZ0hhcmVt'>Supporting Harem</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HaremGenre' title='/pmwiki/pmwiki.php/Main/HaremGenre' data-format='SGFyZW1HZW5yZQ=='>Harem Genre</a> story where there's a male lead and female lead alongside a supporting cast who are also in love with one of the leads. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SupportingTheMonsterLovedOne' title='/pmwiki/pmwiki.php/Main/SupportingTheMonsterLovedOne' data-format='U3VwcG9ydGluZ1RoZU1vbnN0ZXJMb3ZlZE9uZQ=='>Supporting the Monster Loved One</a>: Love making someone care for a loved-one, despite said loved-one being a monster. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SurpriseIncest' title='/pmwiki/pmwiki.php/Main/SurpriseIncest' data-format='U3VycHJpc2VJbmNlc3Q='>Surprise Incest</a>: Lovers are revealed to be blood-related after they hook up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SweetheartSipping' title='/pmwiki/pmwiki.php/Main/SweetheartSipping' data-format='U3dlZXRoZWFydFNpcHBpbmc='>Sweetheart Sipping</a>: A classic romantic date where the couple share a milkshake with two straws. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SweetieGraffiti' title='/pmwiki/pmwiki.php/Main/SweetieGraffiti' data-format='U3dlZXRpZUdyYWZmaXRp'>Sweetie Graffiti</a>: Lovers carve their initials on a tree or a wall. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SweetOnPollyOliver' title='/pmwiki/pmwiki.php/Main/SweetOnPollyOliver' data-format='U3dlZXRPblBvbGx5T2xpdmVy'>Sweet on Polly Oliver</a>: A guy starts to fall in love with a guy who is really a girl in disguise. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TalentedPrincessRegularGuy' title='/pmwiki/pmwiki.php/Main/TalentedPrincessRegularGuy' data-format='VGFsZW50ZWRQcmluY2Vzc1JlZ3VsYXJHdXk='>Talented Princess, Regular Guy</a>: A romantic pairing consisting of a princess who is skilled and a guy who is pretty ordinary. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TeacherParentRomance' title='/pmwiki/pmwiki.php/Main/TeacherParentRomance' data-format='VGVhY2hlclBhcmVudFJvbWFuY2U='>Teacher/Parent Romance</a>: A teacher falls in love with and dates the parent of one of their students. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TelephoneSong' title='/pmwiki/pmwiki.php/Main/TelephoneSong' data-format='VGVsZXBob25lU29uZw=='>Telephone Song</a>: A song about calling somebody on the telephone, often a love interest or ex-partner. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TenMinutesInTheCloset' title='/pmwiki/pmwiki.php/Main/TenMinutesInTheCloset' data-format='VGVuTWludXRlc0luVGhlQ2xvc2V0'>Ten Minutes in the Closet</a>: Characters get locked in a closet together, romance and make out sessions ensue. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TerriblePickUpLines' title='/pmwiki/pmwiki.php/Main/TerriblePickUpLines' data-format='VGVycmlibGVQaWNrVXBMaW5lcw=='>Terrible Pick-Up Lines</a>: Character attempts to use smooth one-liners to attract their preferred mate. It doesn't go well. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThereIsOnlyOneBed' title='/pmwiki/pmwiki.php/Main/ThereIsOnlyOneBed' data-format='VGhlcmVJc09ubHlPbmVCZWQ='>There Is Only One Bed</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where characters end up having to share a bed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThinksLikeARomanceNovel' title='/pmwiki/pmwiki.php/Main/ThinksLikeARomanceNovel' data-format='VGhpbmtzTGlrZUFSb21hbmNlTm92ZWw='>Thinks Like a Romance Novel</a>: Having an idealized outlook on love and romance. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThroughHisStomach' title='/pmwiki/pmwiki.php/Main/ThroughHisStomach' data-format='VGhyb3VnaEhpc1N0b21hY2g='>Through His Stomach</a>: Winning someone's affections by cooking them a delicious meal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeTravelRomance' title='/pmwiki/pmwiki.php/Main/TimeTravelRomance' data-format='VGltZVRyYXZlbFJvbWFuY2U='>Time-Travel Romance</a>: Romance between people from different time periods. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TinyGuyHugeGirl' title='/pmwiki/pmwiki.php/Main/TinyGuyHugeGirl' data-format='VGlueUd1eUh1Z2VHaXJs'>Tiny Guy, Huge Girl</a>: A couple where the woman towers over the man. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TokenMinorityCouple' title='/pmwiki/pmwiki.php/Main/TokenMinorityCouple' data-format='VG9rZW5NaW5vcml0eUNvdXBsZQ=='>Token Minority Couple</a>: Racial minorities in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TokenRomance' title='/pmwiki/pmwiki.php/Main/TokenRomance' data-format='VG9rZW5Sb21hbmNl'>Token Romance</a>: A romantic subplot that's put in a story for superficial reasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TopWife' title='/pmwiki/pmwiki.php/Main/TopWife' data-format='VG9wV2lmZQ=='>Top Wife</a>: A man has many wives, but has one that he loves the most. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TotallyTrustingLoveInterest' title='/pmwiki/pmwiki.php/Main/TotallyTrustingLoveInterest' data-format='VG90YWxseVRydXN0aW5nTG92ZUludGVyZXN0'>Totally Trusting Love Interest</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> who believes in their partner’s fidelity no matter what, and is justified in believing so. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ToxicLoverInfluence' title='/pmwiki/pmwiki.php/Main/ToxicLoverInfluence' data-format='VG94aWNMb3ZlckluZmx1ZW5jZQ=='>Toxic Lover Influence</a>: Someone's lover influences them into becoming a worse person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TragicallyDisabledLoveInterest' title='/pmwiki/pmwiki.php/Main/TragicallyDisabledLoveInterest' data-format='VHJhZ2ljYWxseURpc2FibGVkTG92ZUludGVyZXN0'>Tragically Disabled Love Interest</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> has a disability and/or is made neurodivergent, and the disability is played for tragedy or drama. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrainStationGoodbye' title='/pmwiki/pmwiki.php/Main/TrainStationGoodbye' data-format='VHJhaW5TdGF0aW9uR29vZGJ5ZQ=='>Train-Station Goodbye</a>: Lovers going their separate ways say their goodbyes at the train station. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TransRelationshipTroubles' title='/pmwiki/pmwiki.php/Main/TransRelationshipTroubles' data-format='VHJhbnNSZWxhdGlvbnNoaXBUcm91Ymxlcw=='>Trans Relationship Troubles</a>: Being trans causes drama when it comes to romantic relationships. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrueLoveIsAKink' title='/pmwiki/pmwiki.php/Main/TrueLoveIsAKink' data-format='VHJ1ZUxvdmVJc0FLaW5r'>True Love Is a Kink</a>: When love is foreplay. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrueLoveIsBoring' title='/pmwiki/pmwiki.php/Main/TrueLoveIsBoring' data-format='VHJ1ZUxvdmVJc0JvcmluZw=='>True Love Is Boring</a>: Conflict among lovers is considered more exciting than them being happy together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrueLoveIsExceptional' title='/pmwiki/pmwiki.php/Main/TrueLoveIsExceptional' data-format='VHJ1ZUxvdmVJc0V4Y2VwdGlvbmFs'>True Love is Exceptional</a>: A character falls in love with someone who is usually not their type. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrueLovesKiss' title='/pmwiki/pmwiki.php/Main/TrueLovesKiss' data-format='VHJ1ZUxvdmVzS2lzcw=='>True Love's Kiss</a>: Lovers share a kiss that cures a problem/causes a miracle to happen. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Tsundere' title='/pmwiki/pmwiki.php/Main/Tsundere' data-format='e3tUc3VuZGVyZX19'>Tsundere</a>: They're secretly in love with you, but they have trouble admitting it and mask their feelings with a hostile attitude. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TunnelOfLove' title='/pmwiki/pmwiki.php/Main/TunnelOfLove' data-format='VHVubmVsT2ZMb3Zl'>Tunnel of Love</a>: An amusement park ride for couples to go on. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TurnedOffByTheJerkass' title='/pmwiki/pmwiki.php/Main/TurnedOffByTheJerkass' data-format='VHVybmVkT2ZmQnlUaGVKZXJrYXNz'>Turned Off by the Jerkass</a>: A character is rejected as a romantic option because of how much of a jerk they are. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwiceShy' title='/pmwiki/pmwiki.php/Main/TwiceShy' data-format='VHdpY2VTaHk='>Twice Shy</a>: Characters who are each other's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='e3tMb3ZlIEludGVyZXN0fX1z'>Love Interests</a> are both too shy to admit their feelings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoPersonLoveTriangle' title='/pmwiki/pmwiki.php/Main/TwoPersonLoveTriangle' data-format='VHdvUGVyc29uTG92ZVRyaWFuZ2xl'>Two-Person Love Triangle</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTriangle' title='/pmwiki/pmwiki.php/Main/LoveTriangle' data-format='TG92ZVRyaWFuZ2xl'>Love Triangle</a> where the two choices are actually the same person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UmbrellaOfTogetherness' title='/pmwiki/pmwiki.php/Main/UmbrellaOfTogetherness' data-format='VW1icmVsbGFPZlRvZ2V0aGVybmVzcw=='>Umbrella of Togetherness</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where two characters share an umbrella with each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnbalancedByRivalsKid' title='/pmwiki/pmwiki.php/Main/UnbalancedByRivalsKid' data-format='VW5iYWxhbmNlZEJ5Uml2YWxzS2lk'>Unbalanced By Rival's Kid</a>: Upon meeting the child of an unrequited crush and love rival, a character becomes angry. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnbrokenVigil' title='/pmwiki/pmwiki.php/Main/UnbrokenVigil' data-format='VW5icm9rZW5WaWdpbA=='>Unbroken Vigil</a>: A character keeps watch over their unconscious <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UncoveringRelationshipStatus' title='/pmwiki/pmwiki.php/Main/UncoveringRelationshipStatus' data-format='VW5jb3ZlcmluZ1JlbGF0aW9uc2hpcFN0YXR1cw=='>Uncovering Relationship Status</a>: A character tries to find out if their crush is already in a relationship. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UndercoverAsLovers' title='/pmwiki/pmwiki.php/Main/UndercoverAsLovers' data-format='VW5kZXJjb3ZlckFzTG92ZXJz'>Undercover as Lovers</a>: Two spies pose as lovers as they go undercover. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnderstandingBoyfriend' title='/pmwiki/pmwiki.php/Main/UnderstandingBoyfriend' data-format='VW5kZXJzdGFuZGluZ0JveWZyaWVuZA=='>Understanding Boyfriend</a>: The heroine's boyfriend who knows that she's a fantasy heroine and sympathizes with the wacky antics she goes through. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnfocusedDuringIntimacy' title='/pmwiki/pmwiki.php/Main/UnfocusedDuringIntimacy' data-format='VW5mb2N1c2VkRHVyaW5nSW50aW1hY3k='>Unfocused During Intimacy</a>: Two characters are in a romantic or sexual moment, and at least one isn't entirely into it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnholyMatrimony' title='/pmwiki/pmwiki.php/Main/UnholyMatrimony' data-format='VW5ob2x5TWF0cmltb255'>Unholy Matrimony</a>: Villains in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnknowinglyInLove' title='/pmwiki/pmwiki.php/Main/UnknowinglyInLove' data-format='VW5rbm93aW5nbHlJbkxvdmU='>Unknowingly in Love</a>: A character doesn't realize they're in love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnrequitedLove' title='/pmwiki/pmwiki.php/Main/UnrequitedLove' data-format='VW5yZXF1aXRlZExvdmU='>Unrequited Love</a>: Unreciprocated affection. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnrequitedLoveLastsForever' title='/pmwiki/pmwiki.php/Main/UnrequitedLoveLastsForever' data-format='VW5yZXF1aXRlZExvdmVMYXN0c0ZvcmV2ZXI='>Unrequited Love Lasts Forever</a>: A character never stops loving their unrequited crush. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnrequitedLoveSwitcheroo' title='/pmwiki/pmwiki.php/Main/UnrequitedLoveSwitcheroo' data-format='VW5yZXF1aXRlZExvdmVTd2l0Y2hlcm9v'>Unrequited Love Switcheroo</a>: A character has an unrequited crush on another then later gets over it, only for their former crush to develop feelings for them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnrequitedTragicMaiden' title='/pmwiki/pmwiki.php/Main/UnrequitedTragicMaiden' data-format='VW5yZXF1aXRlZFRyYWdpY01haWRlbg=='>Unrequited Tragic Maiden</a>: The romantic female lead who is hopelessly in love with a guy she can never have. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' title='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' data-format='VW5yZXNvbHZlZFNleHVhbFRlbnNpb24='>Unresolved Sexual Tension</a>: Two characters are obviously attracted to each other, but they never act on their feelings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnwantedHarem' title='/pmwiki/pmwiki.php/Main/UnwantedHarem' data-format='VW53YW50ZWRIYXJlbQ=='>Unwanted Harem</a>: Many people are vying for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>'s attention, much to their dismay. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UptightLovesWild' title='/pmwiki/pmwiki.php/Main/UptightLovesWild' data-format='VXB0aWdodExvdmVzV2lsZA=='>Uptight Loves Wild</a>: An uptight, cool-headed character loves someone who is more crazy and spontaneous. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UptownGirl' title='/pmwiki/pmwiki.php/Main/UptownGirl' data-format='VXB0b3duR2lybA=='>Uptown Girl</a>: The rich girl who falls for a poor boy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VampireWerewolfLoveTriangle' title='/pmwiki/pmwiki.php/Main/VampireWerewolfLoveTriangle' data-format='VmFtcGlyZVdlcmV3b2xmTG92ZVRyaWFuZ2xl'>Vampire-Werewolf Love Triangle</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveTriangle' title='/pmwiki/pmwiki.php/Main/LoveTriangle' data-format='TG92ZVRyaWFuZ2xl'>Love Triangle</a> where the two <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> choices are a vampire and a werewolf. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainessesWantHeroes' title='/pmwiki/pmwiki.php/Main/VillainessesWantHeroes' data-format='VmlsbGFpbmVzc2VzV2FudEhlcm9lcw=='>Villainesses Want Heroes</a>: A villainous female is in love with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainousCrush' title='/pmwiki/pmwiki.php/Main/VillainousCrush' data-format='VmlsbGFpbm91c0NydXNo'>Villainous Crush</a>: An evil character is in love with a heroic character. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ViolentlyProtectiveGirlfriend' title='/pmwiki/pmwiki.php/Main/ViolentlyProtectiveGirlfriend' data-format='VmlvbGVudGx5UHJvdGVjdGl2ZUdpcmxmcmllbmQ='>Violently Protective Girlfriend</a>: This girl will not let anyone harm her significant other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WackyMarriageProposal' title='/pmwiki/pmwiki.php/Main/WackyMarriageProposal' data-format='V2Fja3lNYXJyaWFnZVByb3Bvc2Fs'>Wacky Marriage Proposal</a>: An unconventional marriage proposal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WallPinOfLove' title='/pmwiki/pmwiki.php/Main/WallPinOfLove' data-format='V2FsbFBpbk9mTG92ZQ=='>Wall Pin of Love</a>: A character halts their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> from leaving by pinning their hand against the wall and effectively blocking their path. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WartimeWedding' title='/pmwiki/pmwiki.php/Main/WartimeWedding' data-format='V2FydGltZVdlZGRpbmc='>Wartime Wedding</a>: A couple gets married during a time of great war and strife. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WasItAllALie' title='/pmwiki/pmwiki.php/Main/WasItAllALie' data-format='V2FzSXRBbGxBTGll'>Was It All a Lie?</a>: Upon finding out that their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMole' title='/pmwiki/pmwiki.php/Main/TheMole' data-format='VGhlTW9sZQ=='>The Mole</a>, a character asks them if all of their good times together were a ruse. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeaknessTurnsHerOn' title='/pmwiki/pmwiki.php/Main/WeaknessTurnsHerOn' data-format='V2Vha25lc3NUdXJuc0hlck9u'>Weakness Turns Her On</a>: A girl is attracted to guys who are more vulnerable than males are expected to be. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeddingDeadline' title='/pmwiki/pmwiki.php/Main/WeddingDeadline' data-format='V2VkZGluZ0RlYWRsaW5l'>Wedding Deadline</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> must get to their true love before they say "I do" at their wedding. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WentCrazyWhenTheyLeft' title='/pmwiki/pmwiki.php/Main/WentCrazyWhenTheyLeft' data-format='V2VudENyYXp5V2hlblRoZXlMZWZ0'>Went Crazy When They Left</a>: A character goes crazy when someone they care strongly for leaves in any fashion. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatDoesSheSeeInHim' title='/pmwiki/pmwiki.php/Main/WhatDoesSheSeeInHim' data-format='V2hhdERvZXNTaGVTZWVJbkhpbQ=='>What Does She See in Him?</a>: People wonder why a character is in love with someone who seems so undesirable. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatIsThisThingYouCallLove' title='/pmwiki/pmwiki.php/Main/WhatIsThisThingYouCallLove' data-format='V2hhdElzVGhpc1RoaW5nWW91Q2FsbExvdmU='>What Is This Thing You Call "Love"?</a>: A character is unable to understand romantic love. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatMeasureIsAHumanoid' title='/pmwiki/pmwiki.php/Main/WhatMeasureIsAHumanoid' data-format='V2hhdE1lYXN1cmVJc0FIdW1hbm9pZA=='>What Measure Is a Humanoid?</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterspeciesRomance' title='/pmwiki/pmwiki.php/Main/InterspeciesRomance' data-format='SW50ZXJzcGVjaWVzUm9tYW5jZQ=='>Interspecies Romance</a>, except one half of the pairing has a human form. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhenHarryMetSvetlana' title='/pmwiki/pmwiki.php/Main/WhenHarryMetSvetlana' data-format='V2hlbkhhcnJ5TWV0U3ZldGxhbmE='>When Harry Met Svetlana</a>: Romance between an American man and a Russian woman. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhereDaWhiteWomenAt' title='/pmwiki/pmwiki.php/Main/WhereDaWhiteWomenAt' data-format='V2hlcmVEYVdoaXRlV29tZW5BdA=='>Where da White Women At?</a>: Black men tend to fall in love with white women. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhyCantIHateYou' title='/pmwiki/pmwiki.php/Main/WhyCantIHateYou' data-format='V2h5Q2FudElIYXRlWW91'>Why Can't I Hate You?</a>: A character can't bring themselves to truly hate their love rival. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhyWouldAnyoneTakeHimBack' title='/pmwiki/pmwiki.php/Main/WhyWouldAnyoneTakeHimBack' data-format='V2h5V291bGRBbnlvbmVUYWtlSGltQmFjaw=='>Why Would Anyone Take Him Back?</a>: Giving a former lover another chance when they don't deserve it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WindowLove' title='/pmwiki/pmwiki.php/Main/WindowLove' data-format='V2luZG93TG92ZQ=='>Window Love</a>: Lovers meet at a window and kiss or touch hands through it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WifeHusbandry' title='/pmwiki/pmwiki.php/Main/WifeHusbandry' data-format='V2lmZUh1c2JhbmRyeQ=='>Wife Husbandry</a>: A man falls in love with a woman he's raised since she was a little girl. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WithThisRing' title='/pmwiki/pmwiki.php/Main/WithThisRing' data-format='V2l0aFRoaXNSaW5n'>With This Ring</a>: When a man proposes to his lady love, anything can go wrong with securing the ring. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WomanScorned' title='/pmwiki/pmwiki.php/Main/WomanScorned' data-format='V29tYW5TY29ybmVk'>Woman Scorned</a>: She was spurned/dumped by her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterest' title='/pmwiki/pmwiki.php/Main/LoveInterest' data-format='TG92ZUludGVyZXN0'>Love Interest</a> and she doesn't take well to it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WomenPreferStrongMen' title='/pmwiki/pmwiki.php/Main/WomenPreferStrongMen' data-format='V29tZW5QcmVmZXJTdHJvbmdNZW4='>Women Prefer Strong Men</a>: Women fall for men who are strong and muscular. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorkingWithTheEx' title='/pmwiki/pmwiki.php/Main/WorkingWithTheEx' data-format='V29ya2luZ1dpdGhUaGVFeA=='>Working with the Ex</a>: A character has to work with their ex-significant other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Yandere' title='/pmwiki/pmwiki.php/Main/Yandere' data-format='e3tZYW5kZXJlfX0='>Yandere</a>: They're so in love with somebody that they'll murder anybody who stands in their way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YandereCouple' title='/pmwiki/pmwiki.php/Main/YandereCouple' data-format='WWFuZGVyZUNvdXBsZQ=='>Yandere Couple</a>: Two people driven murderous with love end up together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YawnAndReach' title='/pmwiki/pmwiki.php/Main/YawnAndReach' data-format='WWF3bkFuZFJlYWNo'>Yawn and Reach</a>: A guy pretends to yawn so he can wrap his arm around his girlfriend. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouAreWorthHell' title='/pmwiki/pmwiki.php/Main/YouAreWorthHell' data-format='WW91QXJlV29ydGhIZWxs'>You Are Worth Hell</a>: True love is worth suffering a terrible fate for. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouHaveWaitedLongEnough' title='/pmwiki/pmwiki.php/Main/YouHaveWaitedLongEnough' data-format='WW91SGF2ZVdhaXRlZExvbmdFbm91Z2g='>You Have Waited Long Enough</a>: When a character's true love doesn't return, they're forced to move on. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouMustBeCold' title='/pmwiki/pmwiki.php/Main/YouMustBeCold' data-format='WW91TXVzdEJlQ29sZA=='>You Must Be Cold</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a man offers his jacket to a woman. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YoungLoveVersusOldHate' title='/pmwiki/pmwiki.php/Main/YoungLoveVersusOldHate' data-format='WW91bmdMb3ZlVmVyc3VzT2xkSGF0ZQ=='>Young Love Versus Old Hate</a>: Young people fall in love while their older relatives still cling to hatred. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YourFavorite' title='/pmwiki/pmwiki.php/Main/YourFavorite' data-format='WW91ckZhdm9yaXRl'>Your Favorite</a>: A sign that you really love someone is that you know what their favorite food is. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YourUniverseOrMine' title='/pmwiki/pmwiki.php/Main/YourUniverseOrMine' data-format='WW91clVuaXZlcnNlT3JNaW5l'>Your Universe or Mine?</a>: Lovers from different worlds or countries must decide where they will go. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ZipMeUp' title='/pmwiki/pmwiki.php/Main/ZipMeUp' data-format='WmlwTWVVcA=='>Zip Me Up</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShipTease' title='/pmwiki/pmwiki.php/Main/ShipTease' data-format='U2hpcFRlYXNl'>Ship Tease</a> moment where a man helps a woman zip up her clothes. </li></ul></div> <!&#8212;/index&#8212;> </p><p><hr data-format='&#8212;&#8212;' /> </p></div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>Girl Notices First</span> </h3> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/InfidelityIndex">Infidelity Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MarriageTropes">Marriage Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MarriageOfConvenience">Marriage of Convenience</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LovableRogue">Lovable Rogue</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/RomanceNovelTropes">Romance Novel Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MagicalNanny">Magical Nanny</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/FlirtingAndCourtship">Flirting and Courtship</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/WeddingAndEngagementTropes">Wedding and Engagement Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MarriageTropes">Marriage Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/HopeIndex">Hope Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/EmotionTropes">Emotion Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IRegretThisIndex">I Regret This Index</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GenderDynamicsIndex">Gender Dynamics Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GenderAndSexualityTropes">Gender and Sexuality Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/QueerAsTropes">Queer as Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/FriendshipTropes">Friendship Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LoyaltyTropes">Loyalty Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PatrioticTropes">Patriotic Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/IndexWithAHeartOfGold">Index with a Heart of Gold</a> </li> <li> <a href="/pmwiki/pmwiki.php/SugarWiki/HeartwarmingMoments">SugarWiki/Heartwarming Moments</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SelflessnessTropes">Selflessness Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/Foil">Foil</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterizationByRelation">Characterization by Relation</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OrganizationIndex">Organization Index</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/DreamingOfThingsToCome">Dreaming of Things to Come</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/WilliamShakespeare">QuoteSource/William Shakespeare</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MakeUpIsEvil">Makeup Is Evil</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/KissingTropes">Kissing Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SexTropes">Sex Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PhallicIndex">Phallic Index</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/KaijuTropes">Kaiju Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GenreTropes">Genre Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MilitaryAndWarfareTropes">Military and Warfare Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/KnightInShiningTropes">Knight in Shining Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IdealismTropes">Idealism Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LoyaltyTropes">Loyalty Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LogicTropes">Logic Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TopicalTropes">Topical Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LoyaltyTropes">Loyalty Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LoudSleeperGag">Loud Sleeper Gag</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/WesternAnimation">ImageSource/Western Animation</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ManMadeHouseFlood">Man-Made House Flood</a> </li> </ul> </div> </div> <div id="proper_player_insert_div" class="outer_ads_by_salon_wrapper"> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> </div> </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=a5265f07b49555f4b93516383e35851804c79c99'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=a5265f07b49555f4b93516383e35851804c79c99'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

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