CINXE.COM

Making Love in All the Wrong Places - 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 || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Making Love in All the Wrong Places - TV Tropes</title> <meta name="description" content="The Making Love in All the Wrong Places trope as used in popular culture. Traditionally, most people tend to have sex in bed. It's comfy, you're usually &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/MakingLoveInAllTheWrongPlaces" /> <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="Making Love in All the Wrong Places - TV Tropes" /> <meta name="twitter:description" content="The Making Love in All the Wrong Places trope as used in popular culture. Traditionally, most people tend to have sex in bed. It's comfy, you're usually &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/cut1_2440.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Making Love in All the Wrong Places - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/MakingLoveInAllTheWrongPlaces" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/cut1_2440.png" /> <meta property="og:description" content="Traditionally, most people tend to have sex in bed. It's comfy, you're usually already undressed and you can go straight to sleep afterward. Chairs and sofas are also popular; they're soft and have the bonus that the person on top can put more of &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/UtilitarianRevenge" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/VideoGame/VintageStory" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, fb_token, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).forEach(el => { el.classList.toggle(toggleClass); }); } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/MakingLoveInAllTheWrongPlaces?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/MakingLoveInAllTheWrongPlaces"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.MakingLoveInAllTheWrongPlaces" 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.MakingLoveInAllTheWrongPlaces" 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/MakingLoveInAllTheWrongPlaces?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="MakingLoveInAllTheWrongPlaces"/> <input type="hidden" id="article_id" value="38073" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/MakingLoveInAllTheWrongPlaces</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"> Making Love in All the Wrong Places </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Tropes" },{ "@type": "ListItem", "position": 3, "name": "Making Love in All the Wrong Places", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/MakingLoveInAllTheWrongPlaces" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Making Love in All the Wrong Places", "headline": "Making Love in All the Wrong Places", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/MakingLoveInAllTheWrongPlaces", "image": "https://static.tvtropes.org/pmwiki/pub/images/cut1_2440.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2009-06-25T00:00:00-07:00", "dateModified": "2024-11-28T17:15:01-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/MakingLoveInAllTheWrongPlaces" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Laconic/MakingLoveInAllTheWrongPlaces" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/MakingLoveInAllTheWrongPlaces" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/PlayingWith/MakingLoveInAllTheWrongPlaces" class="subpage-link " title="The PlayingWith page"> <span class="wrapper">PlayingWith</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/MakingLoveInAllTheWrongPlaces" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/MakingLoveInAllTheWrongPlaces?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/MakingLoveInAllTheWrongPlaces?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/MakingLoveInAllTheWrongPlaces?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/MakingLoveInAllTheWrongPlaces?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/MakingLoveInAllTheWrongPlaces?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/MakingLoveInAllTheWrongPlaces?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/MakingLoveInAllTheWrongPlaces?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/MakingLoveInAllTheWrongPlaces?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/MakingLoveInAllTheWrongPlaces?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/MakingLoveInAllTheWrongPlaces?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/MakingLoveInAllTheWrongPlaces?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/MakingLoveInAllTheWrongPlaces?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/MakingLoveInAllTheWrongPlaces?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/MakingLoveInAllTheWrongPlaces?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/MakingLoveInAllTheWrongPlaces?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/MakingLoveInAllTheWrongPlaces?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/MakingLoveInAllTheWrongPlaces?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/MakingLoveInAllTheWrongPlaces?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/MakingLoveInAllTheWrongPlaces?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/MakingLoveInAllTheWrongPlaces?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/MakingLoveInAllTheWrongPlaces?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/MakingLoveInAllTheWrongPlaces?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/MakingLoveInAllTheWrongPlaces?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/MakingLoveInAllTheWrongPlaces?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/MakingLoveInAllTheWrongPlaces?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/MakingLoveInAllTheWrongPlaces?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--&#010;--> <!-- This page has been alphabetized. Please add new examples in the correct alphabetical order.--> <!--&#010;--> <!--&#010;--> </p><p><div class="quoteright" style="width:286px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/RoosterTeethComics' title='/pmwiki/pmwiki.php/Webcomic/RoosterTeethComics' data-format='W1tXZWJjb21pYy9Sb29zdGVyVGVldGhDb21pY3MgaHR0cHM6Ly9zdGF0aWMudHZ0cm9wZXMub3JnL3Btd2lraS9wdWIvaW1hZ2VzL2N1dDFfMjQ0MC5wbmddXQ=='><div class="lazy_load_img_box" style="padding-top:102.1%"><img src='https://static.tvtropes.org/pmwiki/pub/images/cut1_2440.png' class='embeddedimage' border='0' alt='Making Love in All the Wrong Places (trope)' width=286 height=292></div></a></div> <span class="font-s"><div class="acaptionright" style="width:286px;" >Not what you want to see when you get home.</div></span> </p><p><div class='indent'><em>"I'll be honest with you: I don't think they'll let us have sex inside <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/GeorgeWashington' title='/pmwiki/pmwiki.php/UsefulNotes/GeorgeWashington' data-format='VXNlZnVsTm90ZXMvR2VvcmdlV2FzaGluZ3Rvbg=='>George Washington</a>'s nose at Mount Rushmore. But it's a very evocative image."</em> <div class='indent'>&#8212; <strong>Penelope</strong>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/QuestionableContent' title='/pmwiki/pmwiki.php/Webcomic/QuestionableContent' data-format='V2ViY29taWMvUXVlc3Rpb25hYmxlQ29udGVudA=='>Questionable Content</a></em>, <a class='urllink' href='http://www.questionablecontent.net/view.php?comic=1434'>#1434<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </div></div></p><p>Traditionally, most people tend to have sex in bed. It's comfy, you're usually already undressed and you can go straight to sleep afterward. Chairs and sofas are also popular; they're soft and have the bonus that the person on top can put more of their weight on the frame. However, some people, for a multitude of different reasons, like to venture further afield for their intimate moments. All over the house, in front of the house, on top of the house, someone else's house, in every <a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheFugitive' title='/pmwiki/pmwiki.php/Film/TheFugitive' data-format='W1tGaWxtL1RoZUZ1Z2l0aXZlIGdhcyBzdGF0aW9uLCB3YXJlaG91c2UsIGZhcm1ob3VzZSwgaGVuaG91c2UsIG91dGhvdXNlLCBhbmQgZG9naG91c2UgaW4gdGhpcyBhcmVhIChhbmQgZXZlcnkgaGlnaHdheSBjaGVja3BvaW50IHdpdGhpbiB0ZW4gbWlsZXMpXV0='>gas station, warehouse, farmhouse, henhouse, outhouse, and doghouse in this area (and every highway checkpoint within ten miles)</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoPersonPoolParty' title='/pmwiki/pmwiki.php/Main/TwoPersonPoolParty' data-format='W1tUd29QZXJzb25Qb29sUGFydHkgaW4gdGhlIHBvb2xdXQ=='>in the pool</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MileHighClub' title='/pmwiki/pmwiki.php/Main/MileHighClub' data-format='W1tNaWxlSGlnaENsdWIgb24gYSBwbGFuZV1d'>on a plane</a>, in a hotel, in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoTellMotel' title='/pmwiki/pmwiki.php/Main/NoTellMotel' data-format='Tm9UZWxsTW90ZWw='>No-Tell Motel</a>, in a restaurant, in a movie theater, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElevatorGoingDown' title='/pmwiki/pmwiki.php/Main/ElevatorGoingDown' data-format='W1tFbGV2YXRvckdvaW5nRG93biBvbiBhbiBlbGV2YXRvcl1d'>on an elevator</a>, in a nightclub bathroom, in a basement, in an attic, at the beach, in the sea, <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TheBeatles' title='/pmwiki/pmwiki.php/Music/TheBeatles' data-format='W1tNdXNpYy9UaGVCZWF0bGVzIGluIHRoZSByb2FkXV0='>in the road</a>, in the middle of a field, in the middle of the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/SuperBowl' title='/pmwiki/pmwiki.php/UsefulNotes/SuperBowl' data-format='VXNlZnVsTm90ZXMvU3VwZXJCb3ds'>Super Bowl</a> Halftime show, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutPoint' title='/pmwiki/pmwiki.php/Main/MakeOutPoint' data-format='W1tNYWtlT3V0UG9pbnQgaW4gdGhlIHdvb2RzIG9yIGhpbGxzXV0='>in the woods or hills</a>, <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/ZeroGSpot' title='/pmwiki/pmwiki.php/Main/ZeroGSpot' data-format='W1taZXJvR1Nwb3QgSU4gU1BBQ0UhXV0='>IN SPACE!</a></strong>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AutoErotica' title='/pmwiki/pmwiki.php/Main/AutoErotica' data-format='W1tBdXRvRXJvdGljYSBpbiBhIGNhcl1d'>in a car</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' title='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' data-format='W1tMaXRlcmF0dXJlL0dyZWVuRWdnc0FuZEhhbSBpbiBhIGJvYXRdXQ=='>in a boat</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BestialityIsDepraved' title='/pmwiki/pmwiki.php/Main/BestialityIsDepraved' data-format='W1tCZXN0aWFsaXR5SXNEZXByYXZlZCB3aXRoIGEgZ29hdF1d'>with a goat</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' title='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' data-format='W1tMaXRlcmF0dXJlL0dyZWVuRWdnc0FuZEhhbSBpbiB0aGUgcmFpbiwgaW4gdGhlIGRhcmssIG9uIGEgdHJhaW5dXQ=='>in the rain, in the dark, on a train</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarskyAndHutch' title='/pmwiki/pmwiki.php/Film/StarskyAndHutch' data-format='W1tGaWxtL1N0YXJza3lBbmRIdXRjaCBpbiBhIHJlc3RhdXJhbnQsIGluIGEgc3VzaGkgYmFyLCBpbiBhIGhpZ2ggc2Nob29sIGJ1cywgaW4gdGhlIGJhY2sgb2YgeW91ciBtYW1hJiMwMzk7cyBjYXIsIG9uIGEgdHJhbXBvbGluZSwgaW4gdGhlIG1pZGRsZSBvZiBhIHB1dHRpbmcgZ3JlZW5dXQ=='>in a restaurant, in a sushi bar, in a high school bus, in the back of your mama's car, on a trampoline, in the middle of a putting green</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' title='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' data-format='W1tMaXRlcmF0dXJlL0dyZWVuRWdnc0FuZEhhbSBpbiBhIHRyZWUsIGluIGEgYm94LF1d'>in a tree, in a box,</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BestialityIsDepraved' title='/pmwiki/pmwiki.php/Main/BestialityIsDepraved' data-format='W1tCZXN0aWFsaXR5SXNEZXByYXZlZCB3aXRoIGEgZm94XV0='>with a fox</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' title='/pmwiki/pmwiki.php/Literature/GreenEggsAndHam' data-format='W1tMaXRlcmF0dXJlL0dyZWVuRWdnc0FuZEhhbSBpbiBhIGhvdXNlXV0='>in a house</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BestialityIsDepraved' title='/pmwiki/pmwiki.php/Main/BestialityIsDepraved' data-format='W1tCZXN0aWFsaXR5SXNEZXByYXZlZCB3aXRoIGEgbW91c2VdXQ=='>with a mouse</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OverlyLongGag' title='/pmwiki/pmwiki.php/Main/OverlyLongGag' data-format='W1tPdmVybHlMb25nR2FnIGhlcmUgb3IgdGhlcmUsIHNheV1d'>here or there, say</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RhymesOnADime' title='/pmwiki/pmwiki.php/Main/RhymesOnADime' data-format='W1tSaHltZXNPbkFEaW1lIHRoZXkgd291bGQgZG8gaXQgYW55d2hlcmVdXQ=='>they would do it anywhere</a>! </p><p>Maybe they think that the old bed is too boring, maybe they don't have a convenient bed and have to do it where they can, maybe they're <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OvercomeWithDesire' title='/pmwiki/pmwiki.php/Main/OvercomeWithDesire' data-format='W1tPdmVyY29tZVdpdGhEZXNpcmUganVzdCBzbyBlYWdlciB0byBnZXQgc3RhcnRlZF1d'>just so eager to get started</a> that they get down to business wherever they find themselves. Maybe it's their way of getting back to nature. Of course, one of the other advantages of bedrooms that might not be afforded by alternative locations is privacy, but that's OK. It could be the thrill of the risk of getting caught that makes it special. Or maybe it's not just the risk, maybe they like being watched. Then again, maybe they just didn't think things through and end up as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NakedPeopleTrappedOutside' title='/pmwiki/pmwiki.php/Main/NakedPeopleTrappedOutside' data-format='TmFrZWRQZW9wbGVUcmFwcGVkT3V0c2lkZQ=='>Naked People Trapped Outside</a> (or in the <a class='twikilink' href='/pmwiki/pmwiki.php/Series/SexSentMeToTheER' title='/pmwiki/pmwiki.php/Series/SexSentMeToTheER' data-format='W1tTZXJpZXMvU2V4U2VudE1lVG9UaGVFUiBlbWVyZ2VuY3kgcm9vbV1d'>emergency room</a>). And sexy teens having sex in the back of their car are known to attract <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlasherMovie' title='/pmwiki/pmwiki.php/Main/SlasherMovie' data-format='W1tTbGFzaGVyTW92aWUgaG9vay1oYW5kZWQgc2VyaWFsIGtpbGxlcnNdXQ=='>hook-handed serial killers</a>, which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexSignalsDeath' title='/pmwiki/pmwiki.php/Main/SexSignalsDeath' data-format='W1tTZXhTaWduYWxzRGVhdGggZ2V0cyB0aGVtIGtpbGxlZF1d'>gets them killed</a>. And they better make sure they brought protection outside of their bedroom, or their future child will have quite a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FunnyConceptionStory' title='/pmwiki/pmwiki.php/Main/FunnyConceptionStory' data-format='RnVubnlDb25jZXB0aW9uU3Rvcnk='>Funny Conception Story</a>. </p><p>Obviously <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthInTelevision' title='/pmwiki/pmwiki.php/Main/TruthInTelevision' data-format='VHJ1dGhJblRlbGV2aXNpb24='>Truth in Television</a> for the most part, so please refrain from noting "people do this in real life!" here. Also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthInTelevision' title='/pmwiki/pmwiki.php/Main/TruthInTelevision' data-format='VHJ1dGhJblRlbGV2aXNpb24='>Truth in Television</a> is the trope of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutPoint' title='/pmwiki/pmwiki.php/Main/MakeOutPoint' data-format='TWFrZU91dFBvaW50'>Make-Out Point</a>, and the fact that these tropes very often overlap; a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutPoint' title='/pmwiki/pmwiki.php/Main/MakeOutPoint' data-format='TWFrZU91dFBvaW50'>Make-Out Point</a> in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a> isn't always as private as the people going there may believe. </p><p>Not to be confused with <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>, certainly. Unless the person who does that likes having sex outside, then yeah. </p><p><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OvercomeWithDesire' title='/pmwiki/pmwiki.php/Main/OvercomeWithDesire' data-format='T3ZlcmNvbWVXaXRoRGVzaXJl'>Overcome with Desire</a> is a sister trope, about couples having sex without regard to the consequences of doing so, and they frequently overlap. </p><p><a class='urllink' href='http://www.cracked.com/article_16675_9-awesome-places-have-sex-horrific-consequences.html'>Here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> are some reasons <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DontTryThisAtHome' title='/pmwiki/pmwiki.php/Main/DontTryThisAtHome' data-format='W1tEb250VHJ5VGhpc0F0SG9tZSBub3QgdG8gZG8gaXRdXQ=='>not to do it</a> <em>absolutely</em> anywhere. </p><p><h2>A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperTrope' title='/pmwiki/pmwiki.php/Main/SuperTrope' data-format='U3VwZXJUcm9wZQ=='>Super-Trope</a> to:</h2> </p><p><!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AutoErotica' title='/pmwiki/pmwiki.php/Main/AutoErotica' data-format='QXV0b0Vyb3RpY2E='>Auto Erotica</a> (sex in a car or some other vehicle) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElevatorGoingDown' title='/pmwiki/pmwiki.php/Main/ElevatorGoingDown' data-format='RWxldmF0b3JHb2luZ0Rvd24='>Elevator Going Down</a> (sex in an elevator) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MileHighClub' title='/pmwiki/pmwiki.php/Main/MileHighClub' data-format='TWlsZUhpZ2hDbHVi'>Mile-High Club</a> (sex on an airplane) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProfessionalsDoItOnDesks' title='/pmwiki/pmwiki.php/Main/ProfessionalsDoItOnDesks' data-format='UHJvZmVzc2lvbmFsc0RvSXRPbkRlc2tz'>Professionals Do It on Desks</a> (sex on desks, tables, etc.) </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> (sex in a pile of hay or barn) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexAtWork' title='/pmwiki/pmwiki.php/Main/SexAtWork' data-format='U2V4QXRXb3Jr'>Sex at Work</a> (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapedLikeItself' title='/pmwiki/pmwiki.php/Main/ShapedLikeItself' data-format='W1tTaGFwZWRMaWtlSXRzZWxmIHNleCBhdCB3b3JrXV0='>sex at work</a>) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexInASharedRoom' title='/pmwiki/pmwiki.php/Main/SexInASharedRoom' data-format='U2V4SW5BU2hhcmVkUm9vbQ=='>Sex in a Shared Room</a> (sex in a room where at least one other person is watching, but not participating) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShowerOfLove' title='/pmwiki/pmwiki.php/Main/ShowerOfLove' data-format='U2hvd2VyT2ZMb3Zl'>Shower of Love</a> (sex in the shower) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoPersonPoolParty' title='/pmwiki/pmwiki.php/Main/TwoPersonPoolParty' data-format='VHdvUGVyc29uUG9vbFBhcnR5'>Two-Person Pool Party</a> (sex in a swimming pool) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ZeroGSpot' title='/pmwiki/pmwiki.php/Main/ZeroGSpot' data-format='WmVyb0dTcG90'>Zero-G Spot</a> (sex <em>in space</em>) </li></ul><!&#8212;/index&#8212;> <hr data-format='&#8212;&#8212;' /> <h2>Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Advertising&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> Implied in a commercial for Durex condoms, which shows a woman/man (depending on the version) taping condoms to various locations around the house, such as an exercise ball, coffee table, and a tree. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Anime &amp; Manga&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/AyakashiTriangle' title='/pmwiki/pmwiki.php/Manga/AyakashiTriangle' data-format='TWFuZ2EvQXlha2FzaGlUcmlhbmdsZQ=='>Ayakashi Triangle</a></em>: <ul ><li> Shirogane acts very prudish because he was once worshiped as a god, but his disused shrine ended up becoming a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeoutPoint' title='/pmwiki/pmwiki.php/Main/MakeoutPoint' data-format='TWFrZW91dFBvaW50'>Makeout Point</a>. When Shirogane sees Suzu attempting to kiss Matsuri, he uses being at a different shrine as an excuse to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlmostKiss' title='/pmwiki/pmwiki.php/Main/AlmostKiss' data-format='W1tBbG1vc3RLaXNzIGN1dCB0aGVtIG9mZl1d'>cut them off</a>. </li></ul><div class='indent'><em>Don't make out at a shrine!</em> </div><ul ><li> After the fight with Hinojiki, who inadvertently undid the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBender' title='/pmwiki/pmwiki.php/Main/GenderBender' data-format='R2VuZGVyQmVuZGVy'>Gender Bender</a> jutsu afflicting Matsuri, the latter tells Suzu that he wants to do something while he's a guy before the jutsu kicks back in. Once Matsuri leads her deep into the woods and starts stripping down, Suzu decides to go with the flow and begins stripping down herself in preparation... only to find Matsuri <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeditatingUnderAWaterfall' title='/pmwiki/pmwiki.php/Main/MeditatingUnderAWaterfall' data-format='TWVkaXRhdGluZ1VuZGVyQVdhdGVyZmFsbA=='>Meditating Under a Waterfall</a> in just his fundoshi now that he doesn't have breasts to hide. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/BootyRoyaleNeverGoDownWithoutAFight' title='/pmwiki/pmwiki.php/Manga/BootyRoyaleNeverGoDownWithoutAFight' data-format='TWFuZ2EvQm9vdHlSb3lhbGVOZXZlckdvRG93bldpdGhvdXRBRmlnaHQ='>Booty Royale: Never Go Down Without a Fight!</a></em>: Done twice by Kurisu and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleepingWithTheBoss' title='/pmwiki/pmwiki.php/Main/SleepingWithTheBoss' data-format='W1tTbGVlcGluZ1dpdGhUaGVCb3NzIGhlciBhc3Npc3RhbnQgbWFuYWdlcl1d'>her assistant manager</a>, Yajima, at work. The first time happens during chapter 23 when Kurisu gets drunk and propositions Yajima for sex in his office. The second incident starts with Kurisu playing footsie with his crotch under the table until he excuses himself to the Men's room. Kurisu follows him moments later to confront him about his feelings for her, prompting Yajima to make it official by boning her in one of the bathroom stalls for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExtremeLibido' title='/pmwiki/pmwiki.php/Main/ExtremeLibido' data-format='W1tFeHRyZW1lTGliaWRvIHNldmVyYWwgaG91cnNdXQ=='>several hours</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/CallOfTheNight' title='/pmwiki/pmwiki.php/Manga/CallOfTheNight' data-format='TWFuZ2EvQ2FsbE9mVGhlTmlnaHQ='>Call of the Night</a></em>: If by "making love" you mean "sucking Yamori's blood", since <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendlyNeighborhoodVampire' title='/pmwiki/pmwiki.php/Main/FriendlyNeighborhoodVampire' data-format='W1tGcmllbmRseU5laWdoYm9yaG9vZFZhbXBpcmUgTmF6dW5hXV0='>Nazuna</a> constantly compares sucking blood to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InsistentTerminology' title='/pmwiki/pmwiki.php/Main/InsistentTerminology' data-format='W1tJbnNpc3RlbnRUZXJtaW5vbG9neSBjb3B1bGF0aW5nXV0='>copulating</a>. A pool, a dressing room, a manga café, a bullet train toilet... Nazuna has no qualms over where she sucks Yamori's blood. If anything, she probably finds it more exciting that way (and it makes Yamori's blood tastier). </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Deuteragonist' title='/pmwiki/pmwiki.php/Main/Deuteragonist' data-format='e3tEZXV0ZXJhZ29uaXN0fX1z'>Deuteragonists</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/CrimsonSpell' title='/pmwiki/pmwiki.php/Manga/CrimsonSpell' data-format='TWFuZ2EvQ3JpbXNvblNwZWxs'>Crimson Spell</a></em>, Halvir and Valdrigr, have a penchant for this. Partially justified in that, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeroicFantasy' title='/pmwiki/pmwiki.php/Main/HeroicFantasy' data-format='W1tIZXJvaWNGYW50YXN5IGFzIGFkdmVudHVyZXJzXV0='>as adventurers</a>, they have limited access to actual beds. But they can find a cave, a half-destroyed shrine, a tomb, and on one memorable occasion, the balcony right outside a crowded party. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyTail' title='/pmwiki/pmwiki.php/Manga/FairyTail' data-format='TWFuZ2EvRmFpcnlUYWls'>Fairy Tail</a></em>: Chapter 532 starts with a color page heavily implying that <span class="spoiler" title="you can set spoilers visible by default on your profile" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='W1tCaWdCYWQgWmVyZWZdXQ=='>Zeref</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='W1tCaWdHb29kIE1hdmlzXV0='>Mavis</a> did it in the middle of a lake; the two are shown embracing each other while nude and half-submerged.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/HisAndHerCircumstances' title='/pmwiki/pmwiki.php/Manga/HisAndHerCircumstances' data-format='TWFuZ2EvSGlzQW5kSGVyQ2lyY3Vtc3RhbmNlcw=='>His and Her Circumstances</a></em>: The scene in the manga where <span class="spoiler" title="you can set spoilers visible by default on your profile" >Arima has a breakdown after he recovers his childhood abuse memories and pretty much ravishes his girlfriend Yukino</span> takes place in a corner of the school library. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventure' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventure' data-format='TWFuZ2EvSm9Kb3NCaXphcnJlQWR2ZW50dXJl'>JoJo's Bizarre Adventure</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureSteelBallRun' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureSteelBallRun' data-format='W1tNYW5nYS9Kb0pvc0JpemFycmVBZHZlbnR1cmVTdGVlbEJhbGxSdW4gU3RlZWwgQmFsbCBSdW5dXQ=='>Steel Ball Run</a></em>: Funny Valentine tries to rape Lucy in the Independence Hall, wondering if the Founding Fathers signed the Declaration of Independence in the very room they are in. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureJoJolion' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureJoJolion' data-format='W1tNYW5nYS9Kb0pvc0JpemFycmVBZHZlbnR1cmVKb0pvbGlvbiBKb0pvbGlvbl1d'>JoJolion</a></em>: While under the effect of Tsurugi's Paper Moon King, Yasuho ends up leading herself and Joshu into a restroom together, which prompts the latter into attempting to have sex with her and causes Yasuho to knock him unconscious and flees while freaking out. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/KaguyaSamaLoveIsWar' title='/pmwiki/pmwiki.php/Manga/KaguyaSamaLoveIsWar' data-format='TWFuZ2EvS2FndXlhU2FtYUxvdmVJc1dhcg=='>Kaguya-sama: Love Is War</a></em>: Kashiwagi and her boyfriend get to second base in a locker when visiting a haunted house during the culture festival arc (they were supposed to be used for horror-based ASMR). <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpannerInTheWorks' title='/pmwiki/pmwiki.php/Main/SpannerInTheWorks' data-format='W1tTcGFubmVySW5UaGVXb3JrcyBUaGlzIGVuZHMgdXAgcnVpbmluZyBJc2hpZ2FtaSYjMDM5O3MgcGxhbnMgdG8gY29uZmVzcyB0byBUc3ViYW1lXV0='>This ends up ruining Ishigami's plans to confess to Tsubame</a>, since <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoralGuardians' title='/pmwiki/pmwiki.php/Main/MoralGuardians' data-format='W1tNb3JhbEd1YXJkaWFucyBNaWtvXV0='>Miko</a> separates the lockers by gender after catching them. </li><li> <em>Maka-Maka</em>: Well, not all the way, but Jun loves to fondle Nene in public places, and Nene sometimes returns the favor. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PhantomQuestCorp' title='/pmwiki/pmwiki.php/Anime/PhantomQuestCorp' data-format='QW5pbWUvUGhhbnRvbVF1ZXN0Q29ycA=='>Phantom Quest Corp.</a></em>: Incident File: 03 includes a scene where Detective Karino drops by Mr. Nagasuki's office to question him and inadvertently catches Nagasuki in the act of banging <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexySecretary' title='/pmwiki/pmwiki.php/Main/SexySecretary' data-format='W1tTZXh5U2VjcmV0YXJ5IGhpcyBzZWNyZXRhcnldXQ=='>his secretary</a>! The door prevents the audience from seeing anything, but Karino gets an eyeful and <em>an earful</em> when Nagasuki angrily tells him to get out. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Vassalord' title='/pmwiki/pmwiki.php/Manga/Vassalord' data-format='TWFuZ2Eve3tWYXNzYWxvcmR9fQ=='>Vassalord</a></em>: Charley and Rayflo have their kinky <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KissOfTheVampire' title='/pmwiki/pmwiki.php/Main/KissOfTheVampire' data-format='W1tLaXNzT2ZUaGVWYW1waXJlIGJsb29kLXN1Y2tpbmcgc2Vzc2lvbnNdXQ=='>blood-sucking sessions</a> in a variety of odd places including a prison cell, an airplane bathroom, and the back room of a <em>church</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ZettaiBLNiNaruSekaiVsZettaiBLNiNaritakunaiOtoko' title='/pmwiki/pmwiki.php/Manga/ZettaiBLNiNaruSekaiVsZettaiBLNiNaritakunaiOtoko' data-format='TWFuZ2EvWmV0dGFpQkxOaU5hcnVTZWthaVZzWmV0dGFpQkxOaU5hcml0YWt1bmFpT3Rva28='>Zettai BL ni Naru Sekai VS Zettai BL ni Naritakunai Otoko</a></em>: Analyzed as do many troped common in yaoi. <ul ><li> In "VS the molester", the protagonist is on a train where a couple is grinding and groping discreetly in public, which intensively bothers him. He mentions that in this world, it's very common to catch people in the act or at least about to do the act. He even memorizes a list of excuses he's been given. When the couple realizes that he could see them, they decide to go home to continue, which the protagonist mentions is still not great because they're likely to just have sex in the entrance instead of getting to the bed. </li></ul><div class='indent'> "As soon as they get home, surely they won't go to their room and will have sex in the entrance like animals." </div><ul ><li> In "VS drinking at home", the protagonist ends up sleeping in a friend's house together with two couples he realizes are secretly dating. During the night, one of these couples has sex on the bed right next to him, he can't intervene, but neither can he sleep. </li></ul><div class='indent'> "You're guests in someone's home. It's not my home, but still, it's someone's home!?" </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Zom100BucketListOfTheDead' title='/pmwiki/pmwiki.php/Manga/Zom100BucketListOfTheDead' data-format='TWFuZ2EvWm9tMTAwQnVja2V0TGlzdE9mVGhlRGVhZA=='>Zom 100: Bucket List of the Dead</a></em>, Ohtori and the company chairman have sex at work in the middle of his office not far from Akira's desk. The chairman claims that the walls are thick and no one will be able to hear them, but the story makes it clear that the walls are anything but soundproof and Akira is forced to listen to them make out while fighting to stay awake. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Books&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batwoman' title='/pmwiki/pmwiki.php/ComicBook/Batwoman' data-format='Q29taWNCb29rL3t7QmF0d29tYW59fQ=='>Batwoman</a></em>: One of Kate and Maggie's offscreen lovemaking sessions takes place all over Kate's apartment, including the kitchen counter, before finally ending in bed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BlackMagick' title='/pmwiki/pmwiki.php/ComicBook/BlackMagick' data-format='Q29taWNCb29rL0JsYWNrTWFnaWNr'>Black Magick</a></em>: Laurent and <span class="spoiler" title="you can set spoilers visible by default on your profile" >Alex</span> have sex on the stairs then up against a banister before they go into her bedroom. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheDarkKnightStrikesAgain' title='/pmwiki/pmwiki.php/ComicBook/TheDarkKnightStrikesAgain' data-format='Q29taWNCb29rL1RoZURhcmtLbmlnaHRTdHJpa2VzQWdhaW4='>The Dark Knight Strikes Again</a></em>: Superman and Wonder Woman have sex in the air while flying around the world and crashing into things. </li><li> In an erotic comic by Horacio Altuna, a young couple has no place to go, so they have sex in various public places, such as an art gallery, a book shop, or a phone booth. When they eventually rent an apartment and get married, the guy is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLoinsSleepTonight' title='/pmwiki/pmwiki.php/Main/TheLoinsSleepTonight' data-format='W1tUaGVMb2luc1NsZWVwVG9uaWdodCB1bmFibGUgdG8gcGVyZm9ybV1d'>unable to perform</a> in a bed, and they have to go out again. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ElfQuest' title='/pmwiki/pmwiki.php/ComicBook/ElfQuest' data-format='Q29taWNCb29rL0VsZlF1ZXN0'>ElfQuest</a> in Space</em>: In the comic <em>Jink!</em> the title character has sex with a complete stranger who's been sent to find her - in the branches of a tree, in an arboretum, in a space station. Of course, as a descendant of Wolfriders, doing it in a tree probably comes naturally to her. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Comicbook/FinePrint' title='/pmwiki/pmwiki.php/Comicbook/FinePrint' data-format='Q29taWNib29rL0ZpbmVQcmludA=='>Fine Print</a></em>: Lauren has sex with people in locales other than the bedroom more than once, most notably wherever she does it with Merryl. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Harleen' title='/pmwiki/pmwiki.php/ComicBook/Harleen' data-format='Q29taWNCb29rL3t7SGFybGVlbn19'>Harleen</a></em>: Harleen initiates sex with Joker in the interview room on the table, starting their twisted relationship. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/LoriLovecraft' title='/pmwiki/pmwiki.php/ComicBook/LoriLovecraft' data-format='Q29taWNCb29rL0xvcmlMb3ZlY3JhZnQ='>Lori Lovecraft</a></em>: When the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' title='/pmwiki/pmwiki.php/Main/BelligerentSexualTension' data-format='QmVsbGlnZXJlbnRTZXh1YWxUZW5zaW9u'>Belligerent Sexual Tension</a> between Lori and R.C. finally explodes in <em>The Big Comeback</em>, they wind up having sex on the floor of the production office at the movie studio. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Preacher' title='/pmwiki/pmwiki.php/ComicBook/Preacher' data-format='Q29taWNCb29rL3t7UHJlYWNoZXJ9fQ=='>Preacher</a></em>: In one flashback, we see Jesse and Tulip having sex <em>in the middle of a car chase</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Watchmen' title='/pmwiki/pmwiki.php/ComicBook/Watchmen' data-format='Q29taWNCb29rL3t7V2F0Y2htZW59fQ=='>Watchmen</a></em>: Near the end, Dan and Laurie have sex in what can best be described as the massive atrium of a supervillain's lair. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Fan Works&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Evangelion303' title='/pmwiki/pmwiki.php/Manga/Evangelion303' data-format='TWFuZ2Eve3tFdmFuZ2VsaW9uIDMwM319'>Evangelion 303</a></em>: In chapter 17 Asuka gave Shinji a blowjob in the hotel's lift. </li><li> <a class='urllink' href='https://www.fanfiction.net/s/10036097/1/'>''The Adventures of Ryan and Kirrie''<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> initially starts off with the titular characters doing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Lemon' title='/pmwiki/pmwiki.php/Main/Lemon' data-format='W1t7e0xlbW9ufX0gdGhlIGRlZWRdXQ=='>the deed</a> in a bed, and then later a bathtub in a Pokémon Center. From there, it just gets <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialEscalation' title='/pmwiki/pmwiki.php/Main/SerialEscalation' data-format='W1tTZXJpYWxFc2NhbGF0aW9uIG1vcmUgYW5kIG1vcmUgcmlkaWN1bG91c11d'>more and more ridiculous</a>. One of the more notable examples is Chapter Four, where they do it in <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonRubyAndSapphire' title='/pmwiki/pmwiki.php/VideoGame/PokemonRubyAndSapphire' data-format='W1t7e1ZpZGVvR2FtZS9Qb2tlbW9uUnVieUFuZFNhcHBoaXJlfX0gaW4gdGhlIG1pZGRsZSBvZiBQZXRhbGJ1cmcgV29vZHNdXQ=='>in the middle of Petalburg Woods</a> of all places after <span class="spoiler" title="you can set spoilers visible by default on your profile" >getting exposed to Shroomish "sex spores"</span> prior. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/AdviceAndTrust' title='/pmwiki/pmwiki.php/Fanfic/AdviceAndTrust' data-format='RmFuZmljL0FkdmljZUFuZFRydXN0'>Advice and Trust</a></em>: <ul ><li> In the middle of chapter 5, Shinji and Asuka have sex on a couch in Misato's apartment's living room. Later in that chapter, they are so desperate for a little private fun together after four days of forced abstinence (due to their guardian being home and sober at the night and their teammate following them everywhere) that they have sex in the school's cleaning supply closet. The supply closet incident was actually a rather important plot point since it's what tipped off Rei that they were in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretRelationship' title='/pmwiki/pmwiki.php/Main/SecretRelationship' data-format='U2VjcmV0UmVsYXRpb25zaGlw'>Secret Relationship</a>. </li><li> In in chapter 8 Ritsuko demands Gendo take her on his office's desk. </li></ul></li><li> One of the scenes in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TeenTitans2003' title='/pmwiki/pmwiki.php/WesternAnimation/TeenTitans2003' data-format='V2VzdGVybkFuaW1hdGlvbi9UZWVuVGl0YW5zMjAwMw=='>Teen Titans (2003)</a></em> fic <em><a class='urllink' href='https://www.fanfiction.net/s/6778094/1/Boy-Flounder'>Boy Flounder<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> has Cyborg go berserk on Robin and Starfire once Beast Boy finds the girl's vajazzles on the common room couch. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/5646062/6/Break-My-Fall'>Break My Fall<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Remus and Snape have sex in a fitting room booth. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/5802454/1/Broomsheds-Lifts-and-Loos'>Broomsheds, Lifts and Loos<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Harry and Ginny reminisce about the various locations where they had a quickie. <div class='indent'><strong>Harry:</strong> I guess we probably could write a guide book of the best places for a quick shag in the United Kingdom. </div></li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/5809981/18/Chains-of-Earth'>Chains of Earth<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Draco insists on having sex on a clifftop and Harry complains about the sand he got between his buttcheeks last time they made love outdoors. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/6259135/1/Changing-Perspectives'>Changing Perspectives<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Lucius once came home from Hogwarts due to injury, only to find his parents having sex on the dining room table. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ChildrenOfAnElderGod' title='/pmwiki/pmwiki.php/Fanfic/ChildrenOfAnElderGod' data-format='RmFuZmljL0NoaWxkcmVuT2ZBbkVsZGVyR29k'>Children of an Elder God</a></em>: In chapter 19, Shinji and Asuka are making out and about to have sex in the base's locker rooms when they are caught by two fellow pilots. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheChildOfLove' title='/pmwiki/pmwiki.php/Fanfic/TheChildOfLove' data-format='RmFuZmljL1RoZUNoaWxkT2ZMb3Zl'>The Child of Love</a></em>: <ul ><li> In chapter 1 Asuka tells Misato she saw her and Kaji having sex in the park. <div class='indent'><strong>Asuka</strong>: There's nothing to understand, Misato. And you're hardly the one to lecture me, you hypocrite. I saw you doing that with Kaji last month...<br data-format="\\" /><strong>Misato</strong>: YOU SAW US!?! WHEN?! WHERE?<br data-format="\\" /><strong>Asuka</strong>: When, I don't remember exactly...but WHERE...oh, you were probably getting excited doing that in the park...where everyone could see you. </div></li><li> Shinji and Asuka's first time was in Misato's apartment's living room. They did it on the floor and on the couch. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/CobysChoice' title='/pmwiki/pmwiki.php/Fanfic/CobysChoice' data-format='RmFuZmljL0NvYnlzQ2hvaWNl'>Coby's Choice</a></em>: Luffy and Nami, in order to scratch off Nami's "Honeymoon Bucket List", have an sex in the tangerine grove on Little East Blue. Although, while the couple did find the thrill of being caught exciting, it was a little too stimulating and put the possibility of anything similar happening on hold for the moment. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ACrownOfStars' title='/pmwiki/pmwiki.php/Fanfic/ACrownOfStars' data-format='RmFuZmljL0FDcm93bk9mU3RhcnM='>A Crown of Stars</a></em>: In chapter 64 Shinji and Asuka played several music pieces in front of a multitude. Asuka dragged Shinji straight after into one of the stadium's rooms to have sex while the concert went on. She also said she nearly had him right there and then on stage. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/DanceWithTheDemons' title='/pmwiki/pmwiki.php/Fanfic/DanceWithTheDemons' data-format='RmFuZmljL0RhbmNlV2l0aFRoZURlbW9ucw=='>Dance with the Demons</a></em>: Batman and Catwoman spend the whole night frolicking in the Batcave after the final battle. </li><li> <em><a class='urllink' href='https://www.fanfiction.net/s/5189405/1/Dragonball-Divergence'>Dragonball Divergence<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>: In Chapter 8, Goku and Chi-Chi have sex in the hospital after the fight with Vegeta. Chi-Chi's initially reluctant because of her husband's injuries, but she concedes after he promises to "be really careful". </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/DuranAndKiyohimesOmakeTheater' title='/pmwiki/pmwiki.php/Fanfic/DuranAndKiyohimesOmakeTheater' data-format='RmFuZmljL0R1cmFuQW5kS2l5b2hpbWVzT21ha2VUaGVhdGVy'>Duran and Kiyohime's Omake Theater</a></em>: Downplayed, but Shizuru did once decide to make advances to Natsuki in an open-air bath. Natsuki will also note that once Shizuru reads their fortune cookies (See <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='UnVubmluZ0dhZw=='>Running Gag</a>), they stand a fifty-fifty shot of not even making it to the bedroom. And once, Shizuru expressed a desire to sweep all of the food off of the table with one move, and take Natsuki right there. Natsuki considered <strong> <em>that</em> </strong> a step too far, and decided it was an ideal time to take Duran for his evening walk. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/4274815/36/Erastes'>Erastes<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Harry and Lucius have sex in several different locations in Malfoy Manor, with only the kitchen table and one of the counters being specified. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/NotCompletelyAltogetherHere' title='/pmwiki/pmwiki.php/Fanfic/NotCompletelyAltogetherHere' data-format='W1tGYW5maWMvTm90Q29tcGxldGVseUFsdG9nZXRoZXJIZXJlIFRoZSBFdGVybml0eSBFZmZlY3RdXQ=='>The Eternity Effect</a></em>: Glinda and Elphaba end up having sex in a forest tree. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/FateBlackDawn' title='/pmwiki/pmwiki.php/Fanfic/FateBlackDawn' data-format='RmFuZmljL0ZhdGVCbGFja0Rhd24='>Fate/Black Dawn</a></em>: A rather bizarrely downplayed version. For some reason, Morgan le Faye takes all the sheets off the bed, dumps them on the floor <em>next</em> to the bed, and has sex with Shirou there. <div class='indent'><strong>Mordred:</strong> Why is Papa sleeping on the floor?<br data-format="\\" /><strong>Morgan:</strong> Because he gave me a reward. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Firefly' title='/pmwiki/pmwiki.php/Series/Firefly' data-format='U2VyaWVzL3t7RmlyZWZseX19'>Firefly</a></em>: <ul ><li> Wash and Zoe do a touch version in the Med bay in <em><a class='urllink' href='https://archiveofourown.org/works/115700'>Flying Blind<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>. Simon immobilized Wash after Wash got acid in his eyes and he’s frustrated he can’t even hug his wife. He also says he can’t sleep. So Zoe pulls his blanket off and starts erotically touching and stroking him. Wash is a little mortified since the med bay has windows, but Zoe says everyone else is occupied. She may have been taking advantage of the stereotype of sex making guys sleepy. </li><li> It’s common in the fandom actually. Zoe and Wash are often shown going at it on the bridge after everyone else is asleep, and Kaylee fics often show her and either Simon or Jayne in the engine room. “<a class='urllink' href='https://archiveofourown.org/works/40742'>Overnight Insanity<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>” has both. Mal keeps walking in on people having sex in the wrong places. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/FromBajorToTheBlack' title='/pmwiki/pmwiki.php/Fanfic/FromBajorToTheBlack' data-format='RmFuZmljL0Zyb21CYWpvclRvVGhlQmxhY2s='>From Bajor to the Black</a></em>: In a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShoutOut' title='/pmwiki/pmwiki.php/Main/ShoutOut' data-format='U2hvdXRPdXQ='>Shout-Out</a> to the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NCIS' title='/pmwiki/pmwiki.php/Series/NCIS' data-format='U2VyaWVzL3t7TkNJU319'>NCIS</a></em> example, Eleya loses her virginity during boot camp in the cargo compartment of an IFV. <div class='indent'> <strong>Author's Note:</strong> Bajorans are basically post-Holocaust <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpaceJews' title='/pmwiki/pmwiki.php/Main/SpaceJews' data-format='e3tzcGFjZSBKZXdzfX0='>space Jews</a> in a lot of ways and Eleya's an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActionGirl' title='/pmwiki/pmwiki.php/Main/ActionGirl' data-format='e3thY3Rpb24gZ2lybH19'>action girl</a>, so what the hey? </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/HellsisterTrilogy' title='/pmwiki/pmwiki.php/Fanfic/HellsisterTrilogy' data-format='RmFuZmljL0hlbGxzaXN0ZXJUcmlsb2d5'>Hellsister Trilogy</a></em>: Clark Kent takes Lois Lane anywhere on the planet during their honeymoon. As she is looking for her cousin, Kara finds them cuddling on a beach on a remote desert island. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/FanFic/HeroesOfTheNewWorld' title='/pmwiki/pmwiki.php/FanFic/HeroesOfTheNewWorld' data-format='RmFuRmljL0hlcm9lc09mVGhlTmV3V29ybGQ='>Heroes of the New World</a></em>; the Whitebeard Pirates assume this is going on with Izuku and Yamato when Marco, Jozu, Vista, and Teach come across the two in the baths and find <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmazonianBeauty' title='/pmwiki/pmwiki.php/Main/AmazonianBeauty' data-format='W1tBbWF6b25pYW5CZWF1dHkgWWFtYXRvXV0='>Yamato</a> leaning over Izuku while wearing a very thin bathrobe talking about "big ones and small ones" (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotWhatItLooksLike' title='/pmwiki/pmwiki.php/Main/NotWhatItLooksLike' data-format='W1tOb3RXaGF0SXRMb29rc0xpa2UgVGhleSYjMDM5O2QgYWN0dWFsbHkganVzdCBnb3Qgb2ZmIGEgVHJhbnNwb25kZXIgU25haWwgY2FsbCB3aXRoIFV0YSBhbmQgd2VyZSBkaXNjdXNzaW5nIHdoYXQga2luZCBvZiBzaGlwIHRoZXkgd291bGQgbGlrZSB0byBoYXZlXV0='>They'd actually just got off a Transponder Snail call with Uta and were discussing what kind of ship they would like to have</a>, and Yamato is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InnocentFanserviceGirl' title='/pmwiki/pmwiki.php/Main/InnocentFanserviceGirl' data-format='SW5ub2NlbnRGYW5zZXJ2aWNlR2lybA=='>Innocent Fanservice Girl</a> with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoSenseOfPersonalSpace' title='/pmwiki/pmwiki.php/Main/NoSenseOfPersonalSpace' data-format='Tm9TZW5zZU9mUGVyc29uYWxTcGFjZQ=='>No Sense of Personal Space</a>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/HERZ' title='/pmwiki/pmwiki.php/Fanfic/HERZ' data-format='RmFuZmljL3t7SEVSWn19'>HERZ</a></em>: Subverted in chapter 4. Shinji entered the men's locker room in the base and he was led to believe Asuka was waiting for him in one of the shower stalls. He made his way to the stall to "have fun" with his wife... and he found Kurumi inside so that he fled. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/HigherLearning' title='/pmwiki/pmwiki.php/Fanfic/HigherLearning' data-format='RmFuZmljL0hpZ2hlckxlYXJuaW5n'>Higher Learning</a></em>: Subverted. In a chapter, Shinji and Asuka are making out in Misato's living room and they are about to have sex in the tub but Misato shows up early, forcing them to stop and pretend nothing was happening. Many chapters later Asuka wants to try the tub again but Shinji says he has been told it is not a good idea so they opt for their bedroom. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/13704390/4/Insomniatic-complications'>Insomniatic complications<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Harry and Astoria have sex in an alley behind a coffee shop, a movie theater and several more-or-less public places in a fancy hotel. The latter results in three employees having to be confounded. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/KaraOfRokyn' title='/pmwiki/pmwiki.php/Fanfic/KaraOfRokyn' data-format='RmFuZmljL0thcmFPZlJva3lu'>Kara of Rokyn</a></em>: The last scene has Kara and her boyfriend spend the night fooling around on a beach. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/LastChildOfKrypton' title='/pmwiki/pmwiki.php/Fanfic/LastChildOfKrypton' data-format='RmFuZmljL0xhc3RDaGlsZE9mS3J5cHRvbg=='>Last Child of Krypton</a></em>: In this story <span class="spoiler" title="you can set spoilers visible by default on your profile" >Shinji is <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Superman' title='/pmwiki/pmwiki.php/Franchise/Superman' data-format='RnJhbmNoaXNlL3t7U3VwZXJtYW59fQ=='>Superman</a></em> and Asuka <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/WonderWoman' title='/pmwiki/pmwiki.php/Franchise/WonderWoman' data-format='RnJhbmNoaXNlL1dvbmRlcldvbWFu'>Wonder Woman</a></em> (<em><a class='twikilink' href='/pmwiki/pmwiki.php/Comicbook/Supergirl' title='/pmwiki/pmwiki.php/Comicbook/Supergirl' data-format='Q29taWNib29rL3t7U3VwZXJnaXJsfX0='>Supergirl</a></em> in the rewrite).</span> It is possible for them to have sex literally <em>anywhere</em> on the planet... and outside of it. In the final chapter of the rewrite, they make love floating between Earth and the Moon. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/LillyEpilogueFamilyMatters' title='/pmwiki/pmwiki.php/Fanfic/LillyEpilogueFamilyMatters' data-format='RmFuZmljL0xpbGx5RXBpbG9ndWVGYW1pbHlNYXR0ZXJz'>Lilly Epilogue Family Matters</a></em>: Hisao and Lilly, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='T2ZmaWNpYWxDb3VwbGU='>Official Couple</a>, get an apartment with their mutual friend Hanako for several reasons, one being that Lilly's "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/InsistentTerminology' title='/pmwiki/pmwiki.php/Main/InsistentTerminology' data-format='W1tJbnNpc3RlbnRUZXJtaW5vbG9neSBoZWFsdGh5IGFkb2xlc2NlbnRdXQ=='>healthy adolescent</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CovertPervert' title='/pmwiki/pmwiki.php/Main/CovertPervert' data-format='W1tDb3ZlcnRQZXJ2ZXJ0IHNleCBkcml2ZV1d'>sex drive</a>" would make it difficult to live with Hisao's parents. Hanako once walks in on the two having sex late at night after <span class="spoiler" title="you can set spoilers visible by default on your profile" >their proposal</span> in the living room of their apartment. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/12381481/2/Ma-Fleur-Mon-Ange-Mon-Tout'>Ma Fleur, Mon Ange, Mon Tout<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Fleur's mother used the downstairs closet for a number of encounters before she was married. </li><li> In the (NSFW) <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/XMenEvolution' title='/pmwiki/pmwiki.php/WesternAnimation/XMenEvolution' data-format='V2VzdGVybkFuaW1hdGlvbi9YTWVuRXZvbHV0aW9u'>X-Men: Evolution</a></em> fic <em><a class='urllink' href='http://xmen.adult-fanfiction.org/story.php?no=544207779&amp;chapter=1'>My Friend, My Lover<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, Jean is confronted by the rest of the students after she and Scott were spotted coming out of school weight room with messy clothes and huge grins. Once the others become too pushy with their questions, she snaps and unloads a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooMuchInformation' title='/pmwiki/pmwiki.php/Main/TooMuchInformation' data-format='VG9vTXVjaEluZm9ybWF0aW9u'>Too Much Information</a> rant at them, mentioning "storage rooms at school, the locker room, the lounge, and even the danger room" (the latter was used in both this fic and others by the same author as an appropriately programmed <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Holodeck' title='/pmwiki/pmwiki.php/Main/Holodeck' data-format='e3tIb2xvZGVja319'>Holodeck</a>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/FanFic/MyImmortal' title='/pmwiki/pmwiki.php/FanFic/MyImmortal' data-format='RmFuRmljL015SW1tb3J0YWw='>My Immortal</a></em>: Everyone. All the time. One notable scene takes place in a classroom while class is in session, and another in the middle of the Great Hall with Dobby watching, and yet another is on the edge of the Forbidden Forest on (or near) Draco Malfoy's flying car... <em>with no mention that the car ever landed</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ANewHopeDanganronpa' title='/pmwiki/pmwiki.php/Fanfic/ANewHopeDanganronpa' data-format='RmFuZmljL0FOZXdIb3BlRGFuZ2Fucm9ucGE='>A New Hope (Danganronpa)</a></em>: Miu and Chihiro start having sex just about anywhere they can think of towards the end of the story <span class="spoiler" title="you can set spoilers visible by default on your profile" >with at least one of those times getting Miu pregnant.</span> </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/9944246/1/New-Year-s-Eve-or-Amour-Tension'>New Year's Eve (or Amour Tension)<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Lavender and her boyfriend have sex in a Ministry of Magic washroom. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/OurMrsMonkey' title='/pmwiki/pmwiki.php/Fanfic/OurMrsMonkey' data-format='RmFuZmljL091ck1yc01vbmtleQ=='>Our Mrs Monkey</a></em>, Luffy and Nami have sex all over their ship following their marriage ceremony. Most of their crew mates are not amused. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MassEffect' title='/pmwiki/pmwiki.php/Franchise/MassEffect' data-format='RnJhbmNoaXNlL01hc3NFZmZlY3Q='>Mass Effect</a></em>'s <a class='urllink' href='http://archiveofourown.org/series/174092'>Parable series<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>'', a side-effect of Jane and Garrus's incredible <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappilyMarried' title='/pmwiki/pmwiki.php/Main/HappilyMarried' data-format='W1tIYXBwaWx5TWFycmllZCBsb3ZpbmcgbWFycmlhZ2VdXQ=='>loving marriage</a> was having lots of sex, including places where that wasn't supposed to happen. At first, it was just around the house (the dining table and the couch), then in the Mako and the communal bathroom during Saren's mission; on the SR-2 it was a failed attempt in the medbay after Garrus ate a rocket (Chakwas stopped them), the Communications Room right after debriefing, the Battery; a hotel balcony, a public extra-net booth, and inside a sky-car on top the Presidium while a cop knocking on the window. At one point after the war, they were going to do it in an Alliance ship's med bay but the doctor walked in on them before they managed to strip all the clothes; there was also another time where they deliberately placed their room right next to a bitchy Spectre's and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RightThroughTheWall' title='/pmwiki/pmwiki.php/Main/RightThroughTheWall' data-format='W1tSaWdodFRocm91Z2hUaGVXYWxsIGhhZCBzZXggYWxsIG5pZ2h0IHRvIGtlZXAgaGVyIGF3YWtlIHRocm91Z2ggdGhlIHRoaW4gd2FsbF1d'>had sex all night to keep her awake through the thin wall</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/PatchworkFFVII' title='/pmwiki/pmwiki.php/Fanfic/PatchworkFFVII' data-format='RmFuZmljL1BhdGNod29ya0ZGVklJ'>Patchwork (FFVII)</a></em>: After finishing her speech for their wedding, Elmyra comments to Sephiroth he's lucky she doesn't have any embarrassing stories to tell about him, which makes Aerith think of the time Elmyra caught them trying to have sex in the kitchen. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/QueensOfMewni' title='/pmwiki/pmwiki.php/Fanfic/QueensOfMewni' data-format='RmFuZmljL1F1ZWVuc09mTWV3bmk='>Queens of Mewni</a></em>: Skywynne and Filbric were nearly caught having sex in the castle kitchens, and a NSFW picture shows a mortified naked Skywynne hiding behind a counter with her husband while confused maids look at the mess they left. Two things resulted from this: Soupina was conceived, and Skywynne's mortification was so great that it was fourteen years before she conceived another child. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/12624367/31/Rising-Phoenix'>Rising Phoenix<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Lucius and Narcissa have sex on the grounds of a hotel. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/FanFic/RosarioVampireBrightestDarkness' title='/pmwiki/pmwiki.php/FanFic/RosarioVampireBrightestDarkness' data-format='RmFuRmljL1Jvc2FyaW9WYW1waXJlQnJpZ2h0ZXN0RGFya25lc3M='>Rosario Vampire: Brightest Darkness</a> Act II</em>: In chapter 32, while Tsukune &amp; Moka and Dark &amp; Mizore all have the decency to retire to other rooms to make love, Rason and Kurumu just elect to do it right in the middle of the Shirayuki family's living room, all over the place and in various positions. <div class='indent'><strong>Mizore</strong>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeadpanSnarker' title='/pmwiki/pmwiki.php/Main/DeadpanSnarker' data-format='W1tEZWFkcGFuU25hcmtlciBHcmVhdCwgbm93IHdlIG5lZWQgdG8gaGF2ZSB0aGUgbGl2aW5nIHJvb20gYnVybmVkIGRvd24gYW5kIHJlZG9uZV1d'>Great, now we need to have the living room burned down and redone</a>. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheSecondTry' title='/pmwiki/pmwiki.php/Fanfic/TheSecondTry' data-format='RmFuZmljL1RoZVNlY29uZFRyeQ=='>The Second Try</a></em>: <ul ><li> In Chapter 4 Omake, Asuka and Shinji <span class="spoiler" title="you can set spoilers visible by default on your profile" >have their honeymoon</span> on the beach overlooking the LCL sea (which depending on your definition, may count as exhibitionism). <div class='indent'><strong>Asuka:</strong> Well, that's the good thing of being all alone in the world: You can do it wherever you want, without the risk of being seen by anyone! </div></li><li> In chapter 12 <span class="spoiler" title="you can set spoilers visible by default on your profile" >Shinji and Asuka had sex in the base's locker room right before the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalBattle' title='/pmwiki/pmwiki.php/Main/FinalBattle' data-format='RmluYWxCYXR0bGU='>Final Battle</a>.</span> </li></ul></li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/8682870/4/The-Secret-Life-of-Draco-Malfoy'>The Secret Life of Draco Malfoy<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Draco reminisces about the time he and Harry checked into a fancy Muggle hotel in Paris and had sex in a hot tub, in an elevator, on the roof... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/SOE2LoneHeirOfKrypton' title='/pmwiki/pmwiki.php/Fanfic/SOE2LoneHeirOfKrypton' data-format='RmFuZmljL1NPRTJMb25lSGVpck9mS3J5cHRvbg=='>Superwomen of Eva 2: Lone Heir of Krypton</a></em>: In chapter 12's omake, Misato catches Shinji and Asuka having sex on the kitchen floor. She screams for him to stop, but they are not listening. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/SupermanOf2499TheGreatConfrontation' title='/pmwiki/pmwiki.php/Fanfic/SupermanOf2499TheGreatConfrontation' data-format='RmFuZmljL1N1cGVybWFuT2YyNDk5VGhlR3JlYXRDb25mcm9udGF0aW9u'>Superman of 2499: The Great Confrontation</a></em>: Kryptonians aren't squeamish as to where they get it on. Adam and Sybilla screw up floating in midair. In the thirtieth chapter, Alan and <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Supergirl' title='/pmwiki/pmwiki.php/ComicBook/Supergirl' data-format='W1tDb21pY0Jvb2sve3tTdXBlcmdpcmx9fSBLYXRoXV0='>Kath</a> make love underwater. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheresNoOneLikeYou' title='/pmwiki/pmwiki.php/Fanfic/TheresNoOneLikeYou' data-format='RmFuZmljL1RoZXJlc05vT25lTGlrZVlvdQ=='>There's No One Like You</a></em>, Luz and Amity have sex in a bathroom, a library, a closet, behind a gas station... <ul ><li> Although that last one turns out to have been a bad idea, as it allowed <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePeepingTom' title='/pmwiki/pmwiki.php/Main/ThePeepingTom' data-format='W1tUaGVQZWVwaW5nVG9tIEJvc2NoYV1d'>Boscha</a> to take photos of them, which she spread around Hexside High School. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ThousandShinji' title='/pmwiki/pmwiki.php/Fanfic/ThousandShinji' data-format='RmFuZmljL1Rob3VzYW5kU2hpbmpp'>Thousand Shinji</a></em>: When their relationship got serious, Shinji and Asuka started to have sex everywhere, including the base's lockers. Also, Shinji said he'd take her in the middle of class if she asked him to. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ToCatchARaven' title='/pmwiki/pmwiki.php/Fanfic/ToCatchARaven' data-format='RmFuZmljL1RvQ2F0Y2hBUmF2ZW4='>To Catch A Raven</a></em>: Raven and Jinx start making out in the common room of the Tower. Robin accidentally walks in on them, which prompts Raven to transport to her bedroom with Jinx. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/UsAndThem' title='/pmwiki/pmwiki.php/Fanfic/UsAndThem' data-format='RmFuZmljL1VzQW5kVGhlbQ=='>Us and Them</a></em>: Aeris and Sephiroth can get a little frisky when they get worked up, such as in "Discipline", where they get into an argument that leads to them romping in the grass outside their home and having to hide from a pizza delivery guy their kids called in since they took so long. </li><li> King In Yellow's <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/KimPossible' title='/pmwiki/pmwiki.php/WesternAnimation/KimPossible' data-format='V2VzdGVybkFuaW1hdGlvbi9LaW1Qb3NzaWJsZQ=='>Kim Possible</a></em> fic <a class='urllink' href='https://www.fanfiction.net/s/3600705/1/What_Did_You_Learn_in_School_Today'>What Did You Learn in School Today?<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> has Kim and Shego breaking into Middleton High to have sex in Kim's old homeroom, only to get busted by Barkin in the middle of the act. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/WeekendAtHisaos' title='/pmwiki/pmwiki.php/Fanfic/WeekendAtHisaos' data-format='RmFuZmljL1dlZWtlbmRBdEhpc2Fvcw=='>Weekend at Hisao's</a></em>: Lampshaded, where Hisao points out how Shizune's kink of doing it at school can get... risky. </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/14287530/1/Where-is-my-Ginny'>Where is my Ginny?<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> Harry finds a stunned Ginny in the Leaky Cauldron bathroom after dealing with someone impersonating her. <div class='indent'><strong>Ginny:</strong> Harry, what happened? Why am I on the floor in the loo? It's not a holiday.<br data-format="\\" /><strong>Hannah:</strong> And I will be scrubbing that floor so hard now. You guys are gross. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/WhiteSheepRWBY' title='/pmwiki/pmwiki.php/Fanfic/WhiteSheepRWBY' data-format='RmFuZmljL1doaXRlU2hlZXBSV0JZ'>White Sheep (RWBY)</a></em>: Salem and her husband Nicholas apparently have sex in literally every part of the house. Jaune specifically mentions <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrimalScene' title='/pmwiki/pmwiki.php/Main/PrimalScene' data-format='W1tQcmltYWxTY2VuZSBhIHRpbWUgaGUgY2F1Z2h0IHRoZW0gb24gdGhlIGRpbmluZyByb29tIHRhYmxlXV0='>a time he caught them on the dining room table</a>. They're so bad that for a long time Jaune is ignorant of "sleep with" being a euphemism for sex, because his parents seem to do it everywhere <em>but</em> the bedroom. When Jaune's sisters go to the house in Ansel for the first time, they ask if it's been "broken in", and are all very relieved when their father says their mother hasn't been there yet. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/XMenTheEarlyYears' title='/pmwiki/pmwiki.php/Fanfic/XMenTheEarlyYears' data-format='RmFuZmljL1hNZW5UaGVFYXJseVllYXJz'>X-Men: The Early Years</a></em>: Discussed. When deliberating on places to make love for the first time, Scott suggests the town park, but Jean declines. <div class='indent'>"It's what makes life with me so exciting, Scott. So what do we do now?"<br data-format="\\" />"Go home, I guess. Unless", Scott blanched, eyeing the grass, "you want to try it here?"<br data-format="\\" />Jean chuckled at that comment. "Not really. Besides, you have me in your life now; you won't need any cheap thrills."<br data-format="\\" />"I was hoping you'd say that." He looked relieved. "I wasn't looking forward to getting a rock or stick jabbing into me."<br data-format="\\" />"I guess we head home then", Jean said, getting up from the curb. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/XtremlyScray' title='/pmwiki/pmwiki.php/Fanfic/XtremlyScray' data-format='RmFuZmljL1h0cmVtbHlTY3JheQ=='>Xtremly Scray</a></em>: Characters have sex on the Hogwarts Express and on the pavement outside Hogwarts... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MidBattleTeaBreak' title='/pmwiki/pmwiki.php/Main/MidBattleTeaBreak' data-format='W1tNaWRCYXR0bGVUZWFCcmVhayBkdXJpbmcgYSBiYXR0bGUuXV0='>during a battle.</a> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Films &#8212; Live-Action&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AllAboutE' title='/pmwiki/pmwiki.php/Film/AllAboutE' data-format='RmlsbS9BbGxBYm91dEU='>All About E</a></em>: E and another woman have sex in the bathroom. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AllCheerleadersDie' title='/pmwiki/pmwiki.php/Film/AllCheerleadersDie' data-format='RmlsbS9BbGxDaGVlcmxlYWRlcnNEaWU='>All Cheerleaders Die</a></em>: <ul ><li> Maddy and Tracy have sex in the woods together. </li><li> Hanna, in Martha's body, has sex with Manny in the disabled bathroom, angering a student in a wheelchair who is pounding on the door wanting to get in. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Alto' title='/pmwiki/pmwiki.php/Film/Alto' data-format='RmlsbS97e0FsdG99fQ=='>Alto</a></em>: Nicolette is shown coming out of a bathroom stall after having had sex with a woman inside (to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheImmodestOrgasm' title='/pmwiki/pmwiki.php/Main/TheImmodestOrgasm' data-format='W1tUaGVJbW1vZGVzdE9yZ2FzbSBqdWRnZSBieSBoZXIgbG91ZCBjcmllc11d'>judge by her loud cries</a> before). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AmericanHoney' title='/pmwiki/pmwiki.php/Film/AmericanHoney' data-format='RmlsbS9BbWVyaWNhbkhvbmV5'>American Honey</a></em>: Star and Jake have sex in a field at one point. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AmericanPie' title='/pmwiki/pmwiki.php/Film/AmericanPie' data-format='RmlsbS9BbWVyaWNhblBpZQ=='>American Pie</a></em>: Finch and Stifler's Mom do it on a pool table. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Backdraft' title='/pmwiki/pmwiki.php/Film/Backdraft' data-format='RmlsbS97e0JhY2tkcmFmdH19'>Backdraft</a></em>: Brian <span class='esc-seq' title='non-wikiword'>McCaffery</span> is having sex with his girlfriend on top of a firetruck when the alarm goes off. They quickly put on their clothes, only to find themselves racing through the streets on top of the vehicle, its sirens blaring. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Besties' title='/pmwiki/pmwiki.php/Film/Besties' data-format='RmlsbS97e0Jlc3RpZXN9fQ=='>Besties</a></em>: Nedjma and Zina have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheirFirstTime' title='/pmwiki/pmwiki.php/Main/TheirFirstTime' data-format='VGhlaXJGaXJzdFRpbWU='>Their First Time</a> while on their rooftop hideaway. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BetterThanChocolate' title='/pmwiki/pmwiki.php/Film/BetterThanChocolate' data-format='RmlsbS9CZXR0ZXJUaGFuQ2hvY29sYXRl'>Better Than Chocolate</a></em>: Paul and Carla have sex on a bench by the docks. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BeyondTheValleyOfTheDolls' title='/pmwiki/pmwiki.php/Film/BeyondTheValleyOfTheDolls' data-format='RmlsbS9CZXlvbmRUaGVWYWxsZXlPZlRoZURvbGxz'>Beyond the Valley of the Dolls</a></em>: Ashley gets a kick out of having sex in strange places where anyone could easily spot the activity. When she tries to have sex with Harris in her parked car, he barely manages to convince her to go to a more sheltered driveway. Later she tries having sex with him on the beach, by which point he's fed up with her kink and pushes her away, leading to their break-up. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BloodyHomecoming' title='/pmwiki/pmwiki.php/Film/BloodyHomecoming' data-format='RmlsbS9CbG9vZHlIb21lY29taW5n'>Bloody Homecoming</a></em>: Nora and Roddy will take any opportunity to have sex. This includes having sex in the janitor's closet and school, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AutoErotica' title='/pmwiki/pmwiki.php/Main/AutoErotica' data-format='W1tBdXRvRXJvdGljYSBpbiB0aGUgYmFjayBvZiBzb21lYm9keSBlbHNlJiMwMzk7cyBwaWNrdXAgdHJ1Y2tdXQ=='>in the back of somebody else's pickup truck</a> at the homecoming game. </li><li> One Norwegian film called <em>Brent av frost</em> had two characters having sex on a mound of fish. The actress involved recently sued the Norwegian Broadcasting Corporation, NRK, for showing the scene "out of context", in violation of a written agreement of hers with the director of the film. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheButchers' title='/pmwiki/pmwiki.php/Film/TheButchers' data-format='RmlsbS9UaGVCdXRjaGVycw=='>The Butchers</a></em>: In one of a set of compounding bad decisions, Ren and Star decide to have sex in a recreation of Ed Gein's lair in a museum dedicated to serial killers. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheCatcher' title='/pmwiki/pmwiki.php/Film/TheCatcher' data-format='RmlsbS9UaGVDYXRjaGVy'>The Catcher</a></em>: Anthony and his girlfriend decide to have sex on the ball field. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CemeteryMan' title='/pmwiki/pmwiki.php/Film/CemeteryMan' data-format='RmlsbS9DZW1ldGVyeU1hbg=='>Cemetery Man</a></em>: Augusto's buxom widow convinces the graveskeeper Francesco to bang her on top of Augusto's grave. This place turns out to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DueToTheDead' title='/pmwiki/pmwiki.php/Main/DueToTheDead' data-format='W1tEdWVUb1RoZURlYWQgZXZlbiB3b3JzZV1d'>even worse</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathByIrony' title='/pmwiki/pmwiki.php/Main/DeathByIrony' data-format='W1tEZWF0aEJ5SXJvbnkgdGhhbiB5b3UmIzAzOTtkIGltYWdpbmVdXQ=='>than you'd imagine</a> when a furious Zombie Augusto <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' title='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' data-format='W1tJbnRlcnJ1cHRlZEludGltYWN5IGFwcGVhcnMgb24gdGhlIHNjZW5lXV0='>appears on the scene</a> and attacks. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='RnJhbmNoaXNlL1N0YXJUcmVr'>Star Trek</a></em> porn parody <em>Charly XXX</em>, Captain Quirk asks a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BridgeBunny' title='/pmwiki/pmwiki.php/Main/BridgeBunny' data-format='QnJpZGdlQnVubnk='>Bridge Bunny</a> what's the strangest place she's had sex. She replies, "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeThat' title='/pmwiki/pmwiki.php/Main/TakeThat' data-format='W1tUYWtlVGhhdCBPbiBIZXJzY2hlbCBTYXZhZ2UmIzAzOTtzIGZhY2VdXQ=='>On Herschel Savage's face</a>" but adds that she's always wanted to do it during <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Teleportation' title='/pmwiki/pmwiki.php/Main/Teleportation' data-format='e3tUZWxlcG9ydGF0aW9ufX0='>Teleportation</a>. They end up beaming around the starship during sex and get seen by the entire crew. <div class='indent'><strong>Boner:</strong> Dammit, I'm a doctor not a porn critic! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Compulsion2013' title='/pmwiki/pmwiki.php/Film/Compulsion2013' data-format='RmlsbS9Db21wdWxzaW9uMjAxMw=='>Compulsion (2013)</a></em>: Amy is eaten out by Fred on their dinner table. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CookiesFortune' title='/pmwiki/pmwiki.php/Film/CookiesFortune' data-format='RmlsbS9Db29raWVzRm9ydHVuZQ=='>Cookie's Fortune</a></em>: Emma and her boyfriend Jason, who's a cop, frequently sneak into empty offices in the police station to have sex. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheCookTheThiefHisWifeAndHerLover' title='/pmwiki/pmwiki.php/Film/TheCookTheThiefHisWifeAndHerLover' data-format='RmlsbS9UaGVDb29rVGhlVGhpZWZIaXNXaWZlQW5kSGVyTG92ZXI='>The Cook, the Thief, His Wife and Her Lover</a></em>: The aforementioned Lover and the aforementioned Wife have sex in the ladies' room of the Thief's restaurant... among many, many other places. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Crank' title='/pmwiki/pmwiki.php/Film/Crank' data-format='RmlsbS97e0NyYW5rfX0='>Crank</a></em>: Cheelios and his girlfriend have sex in public to keep him alive. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DaddyIssues' title='/pmwiki/pmwiki.php/Film/DaddyIssues' data-format='RmlsbS9EYWRkeUlzc3Vlcw=='>Daddy Issues</a></em>: After she learns Maya's never climaxed, Jasmine simply fingers her on the roof where they both are until Maya does. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DeathFactory' title='/pmwiki/pmwiki.php/Film/DeathFactory' data-format='RmlsbS9EZWF0aEZhY3Rvcnk='>Death Factory</a></em>, multiple characters decide that an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbandonedWarehouse' title='/pmwiki/pmwiki.php/Main/AbandonedWarehouse' data-format='W1tBYmFuZG9uZWRXYXJlaG91c2UgYWJhbmRvbmVkIGNoZW1pY2FsIGZhY3RvcnldXQ=='>abandoned chemical factory</a> that was the site of a massacre years before is the perfect place to have sex. <span class="spoiler" title="you can set spoilers visible by default on your profile" >They <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexSignalsDeath' title='/pmwiki/pmwiki.php/Main/SexSignalsDeath' data-format='W1tTZXhTaWduYWxzRGVhdGggaW52YXJpYWJseSBkaWUgaW1tZWRpYXRlbHkgYWZ0ZXJdXQ=='>invariably die immediately after</a></span>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheDemoniacs' title='/pmwiki/pmwiki.php/Film/TheDemoniacs' data-format='RmlsbS9UaGVEZW1vbmlhY3M='>The Demoniacs</a></em>, the Captain and Tina have sex on some very uncomfortable looking rocks above the beach where they have just caused a shipwreck, while a storm is threatening. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DetroitRockCity' title='/pmwiki/pmwiki.php/Film/DetroitRockCity' data-format='RmlsbS9EZXRyb2l0Um9ja0NpdHk='>Detroit Rock City</a></em>: "I just lost my virginity in a confessional!" </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DISCO2017' title='/pmwiki/pmwiki.php/Film/DISCO2017' data-format='RmlsbS9ESVNDTzIwMTc='>DISCO (2017)</a></em>: In the first act, we are introduced to Lana meeting Vince in a nightclub, only for them to enter a bathroom stall, make out, do coke and have sex there. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/EmbraceOfTheVampire2013' title='/pmwiki/pmwiki.php/Film/EmbraceOfTheVampire2013' data-format='RmlsbS9FbWJyYWNlT2ZUaGVWYW1waXJlMjAxMw=='>Embrace of the Vampire (2013)</a></em>: Charlotte starts to have sex with Chris in the woods when a vampire drags him away. Eliza was also moving toward this, when her lover turned out to be said vampire, feeding on her lethally instead. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/EuropaEuropa' title='/pmwiki/pmwiki.php/Film/EuropaEuropa' data-format='RmlsbS9FdXJvcGFFdXJvcGE='>Europa Europa</a></em>: Solly meets an ardent Nazi woman on a train, and the pair have sex after she grows enamored due to his slight resemblance to Hitler and having Hitler's birthday. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/EuroTrip' title='/pmwiki/pmwiki.php/Film/EuroTrip' data-format='RmlsbS9FdXJvVHJpcA=='>Euro Trip</a></em>: Scotty has sex with <span class="spoiler" title="you can set spoilers visible by default on your profile" >Mieke</span> in a <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/Confessional' title='/pmwiki/pmwiki.php/Main/Confessional' data-format='e3tjb25mZXNzaW9uYWx9fQ=='>confessional</a></em>, of all places, <em>inside the Vatican</em> (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/CoitusUninterruptus' title='/pmwiki/pmwiki.php/Main/CoitusUninterruptus' data-format='W1tDb2l0dXNVbmludGVycnVwdHVzIGV2ZW4gd2hpbGUgYSB3b21hbiBjb21lcyB0byBjb25mZXNzaW9uLCB3aXRoIHNldmVyYWwgcGVvcGxlIG91dHNpZGUgYXMgd2VsbF1d'>even while a woman comes to confession, with several people outside as well</a>), and they somehow get away with this. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheException' title='/pmwiki/pmwiki.php/Film/TheException' data-format='RmlsbS9UaGVFeGNlcHRpb24='>The Exception</a></em>: Brandt and Mieke have sex against a table in his quarters the first time (but he stops as his combat wound is hurting). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FatalInstinct' title='/pmwiki/pmwiki.php/Film/FatalInstinct' data-format='RmlsbS9GYXRhbEluc3RpbmN0'>Fatal Instinct</a></em>: The title character and his later stalker have sex in quite a few places in her house - including the inside of her refrigerator. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FeastOfLove' title='/pmwiki/pmwiki.php/Film/FeastOfLove' data-format='RmlsbS9GZWFzdE9mTG92ZQ=='>Feast of Love</a></em>: Oscar brings Chloe onto a football field after hours where they have sex. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Feed2017' title='/pmwiki/pmwiki.php/Film/Feed2017' data-format='RmlsbS9GZWVkMjAxNw=='>Feed (2017)</a></em>: Liv loses her virginity by having sex with Julian on the couch. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FemmeFatale2002' title='/pmwiki/pmwiki.php/Film/FemmeFatale2002' data-format='RmlsbS9GZW1tZUZhdGFsZTIwMDI='>Femme Fatale (2002)</a></em>: <ul ><li> Laure seduces Veronica and hooks up with her in a bathroom stall. </li><li> She later seduces Bardo too, having sex with him up against a pool table, and then on top of it. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheFieldGuideToEvil' title='/pmwiki/pmwiki.php/Film/TheFieldGuideToEvil' data-format='RmlsbS9UaGVGaWVsZEd1aWRlVG9Fdmls'>The Field Guide to Evil</a></em>: At the end of "The Sinful Women of Höllfall", <span class="spoiler" title="you can set spoilers visible by default on your profile" >after luring the Trud into her bed and apparently killing it, Kathi is freed from all guilt and inhibition and approaches Valerie fully nude, inviting her for a tryst in the woods.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FromHereToEternity' title='/pmwiki/pmwiki.php/Film/FromHereToEternity' data-format='RmlsbS9Gcm9tSGVyZVRvRXRlcm5pdHk='>From Here to Eternity</a></em>: Most famously used (and then endlessly parodied) when the main duo have (implied) sex on the beach. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/HatleyHigh' title='/pmwiki/pmwiki.php/Film/HatleyHigh' data-format='RmlsbS9IYXRsZXlIaWdo'>Hatley High</a></em>: Shaun and Anya are prepared to have sex on the principal's desk before it turns out she just wants to trick him into letting her tie him up so she can keep him from attending their chess match. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/HeadInTheClouds' title='/pmwiki/pmwiki.php/Film/HeadInTheClouds' data-format='RmlsbS9IZWFkSW5UaGVDbG91ZHM='>Head in the Clouds</a></em>: <ul ><li> Guy and Gilda's first time is on a pool table. </li><li> Upon reuniting, they have sex on the floor in her apartment. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AHistoryOfViolence' title='/pmwiki/pmwiki.php/Film/AHistoryOfViolence' data-format='RmlsbS9BSGlzdG9yeU9mVmlvbGVuY2U='>A History of Violence</a></em>: Tom and his wife Edie have sex on a stairway. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/HoldYourBreath' title='/pmwiki/pmwiki.php/Film/HoldYourBreath' data-format='RmlsbS9Ib2xkWW91ckJyZWF0aA=='>Hold Your Breath</a></em>: Johnny and Natasha are prone to this according to their friends. Within the film, they have a sex scene on an autopsy table in a morgue at the Sanitarium... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/HowToBlowUpAPipeline' title='/pmwiki/pmwiki.php/Film/HowToBlowUpAPipeline' data-format='RmlsbS9Ib3dUb0Jsb3dVcEFQaXBlbGluZQ=='>How To Blow Up A Pipeline</a></em>: Logan and Rowan, waiting to do their part of the plan, have a quickie in the desert, turned on by the danger. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ImagineMeAndYou' title='/pmwiki/pmwiki.php/Film/ImagineMeAndYou' data-format='RmlsbS9JbWFnaW5lTWVBbmRZb3U='>Imagine Me &amp; You</a></em>: Rachel impulsively decides she and Heck should go into the woods on the side of the highway to have sex. A couple of gay guys had the same idea, however, so the plan is scuppered. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/JasonsLyric' title='/pmwiki/pmwiki.php/Film/JasonsLyric' data-format='RmlsbS9KYXNvbnNMeXJpYw=='>Jason's Lyric</a></em>: <ul ><li> The titular characters, Jason and Lyric, have sex in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EmpathicEnvironment' title='/pmwiki/pmwiki.php/Main/EmpathicEnvironment' data-format='W1tFbXBhdGhpY0Vudmlyb25tZW50IHRoZSB3b29kcyB0aGF0IG1hZ2ljYWxseSB0dXJucyBpbnRvIGEgZmxvd2VyIGZpZWxkLl1d'>the woods that magically turns into a flower field.</a> Later, they have sex again on the counter in Jason's workplace and reconcile after a brief argument. </li><li> Lyric's brother, Alonzo "A-1", and his girlfriend, Marti, have sex on the barrel at the corner. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/KickAss' title='/pmwiki/pmwiki.php/Film/KickAss' data-format='RmlsbS9LaWNrQXNz'>Kick-Ass</a></em>: Dave has sex with Katie against an alley dumpster, right out in the open. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/KickAss2' title='/pmwiki/pmwiki.php/Film/KickAss2' data-format='RmlsbS9LaWNrQXNzMg=='>Kick-Ass 2</a></em>: Kick Ass and Night Bitch have sex in the bathroom-twice. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/KissOfTheDamned' title='/pmwiki/pmwiki.php/Film/KissOfTheDamned' data-format='RmlsbS9LaXNzT2ZUaGVEYW1uZWQ='>Kiss of the Damned</a></em>: Maia and Paolo have sex in the steam room. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LadyFrankenstein' title='/pmwiki/pmwiki.php/Film/LadyFrankenstein' data-format='RmlsbS9MYWR5RnJhbmtlbnN0ZWlu'>Lady Frankenstein</a></em>: A young couple have sex on a riverbank beside a bridge in broad daylight when they are attacked by the Monster. The man runs away and the girl is killed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheLastPictureShow' title='/pmwiki/pmwiki.php/Film/TheLastPictureShow' data-format='RmlsbS9UaGVMYXN0UGljdHVyZVNob3c='>The Last Picture Show</a></em>: The film is famous for the sex on the pool table scene. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheLastRemakeOfBeauGeste' title='/pmwiki/pmwiki.php/Film/TheLastRemakeOfBeauGeste' data-format='RmlsbS9UaGVMYXN0UmVtYWtlT2ZCZWF1R2VzdGU='>The Last Remake of Beau Geste</a></em>: Beau and Flavia finally consummate their desire here after sneaking out of the Foreign Legion party. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LittleChildren' title='/pmwiki/pmwiki.php/Film/LittleChildren' data-format='RmlsbS9MaXR0bGVDaGlsZHJlbg=='>Little Children</a></em>: Two characters have sex on a countertop in a basement. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LooseScrews' title='/pmwiki/pmwiki.php/Film/LooseScrews' data-format='RmlsbS9Mb29zZVNjcmV3cw=='>Loose Screws</a></em>: Steve Hardman and Principal Arsenault's wife make love to each other in the woods of a golf course'. However, when the wife hears that a golfer is approaching, having lost his ball in the woods, she leaves, but Hardman stays lying on the ground with the ball landing near his groin. The golfer apologetically tells Hardman <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GroinAttack' title='/pmwiki/pmwiki.php/Main/GroinAttack' data-format='W1tHcm9pbkF0dGFjayBoZSBoYXMgdG8gcGxheSBpdCB3aGVyZSB0aGUgYmFsbCBsaWVzXV0='>he has to play it where the ball lies</a>. Cue <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScreamDiscretionShot' title='/pmwiki/pmwiki.php/Main/ScreamDiscretionShot' data-format='U2NyZWFtRGlzY3JldGlvblNob3Q='>Scream Discretion Shot</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LoveActually' title='/pmwiki/pmwiki.php/Film/LoveActually' data-format='RmlsbS9Mb3ZlQWN0dWFsbHk='>Love Actually</a></em>: Widower Daniel tells his son that he plans to do this if he meets the right woman: <div class='indent'><strong>Daniel:</strong> Unless, of course, Claudia Schiffer calls, in which case I want you out of the house straight away, you wee motherless mongrel.<br data-format="\\" /><strong>Sam:</strong> Oh?<br data-format="\\" /><strong>Daniel:</strong> No, no, we'll want to have sex in every room. Including yours. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LoveIsNotPerfect' title='/pmwiki/pmwiki.php/Film/LoveIsNotPerfect' data-format='RmlsbS9Mb3ZlSXNOb3RQZXJmZWN0'>Love Is Not Perfect</a></em>: <ul ><li> Elena impulsively performs fellatio on Ettore while in a field where they'd gone for a picnic. </li><li> Later, she first has sex while with Adriana as the latter is sitting on her kitchen's counter. </li><li> Elena and Ettore later have sex while on a public (but secluded) balcony as they watch a band play below them. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LoveLiesBleeding' title='/pmwiki/pmwiki.php/Film/LoveLiesBleeding' data-format='RmlsbS9Mb3ZlTGllc0JsZWVkaW5n'>Love Lies Bleeding</a></em>: Lou fingers Jackie up against the sink in her bathroom. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MakeUp2019' title='/pmwiki/pmwiki.php/Film/MakeUp2019' data-format='RmlsbS9NYWtlVXAyMDE5'>Make Up (2019)</a></em>: Ruth and Jade have sex on the beach together near the end of the film. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MyOldAss' title='/pmwiki/pmwiki.php/Film/MyOldAss' data-format='RmlsbS9NeU9sZEFzcw=='>My Old Ass</a></em>: <ul ><li> Elliot and Chelsea hook up on Elliot's boat. </li><li> Later she also has sex with Chad while on the deck of a boat house. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MurderAt1600' title='/pmwiki/pmwiki.php/Film/MurderAt1600' data-format='RmlsbS9NdXJkZXJBdDE2MDA='>Murder at 1600</a></em>: The victim has sex with the President's son in the Oval Office shortly before getting murdered. Later on, it is mentioned that the President's son seems to be trying to get laid in every single room in the White House. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/NotOkay' title='/pmwiki/pmwiki.php/Film/NotOkay' data-format='RmlsbS9Ob3RPa2F5'>Not Okay</a></em>: Danni hooks up with Colin in the bathroom, which leads to some pretty <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpeedSex' title='/pmwiki/pmwiki.php/Main/SpeedSex' data-format='W1tTcGVlZFNleCB1bnNhdGlzZnlpbmcgcmVzdWx0c11d'>unsatisfying results</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheNovice' title='/pmwiki/pmwiki.php/Film/TheNovice' data-format='RmlsbS9UaGVOb3ZpY2U='>The Novice</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Implied' title='/pmwiki/pmwiki.php/Main/Implied' data-format='e3tJbXBsaWVkfX0='>Implied</a> when Alex and Dani meet again after they first slept together. Alex notes Dani said she won't date her students. Dani replies Alex isn't a student of hers any more, opens the door to the bathroom and goes in. She leaves it open for Alex, who goes in after her. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/OutCold' title='/pmwiki/pmwiki.php/Film/OutCold' data-format='RmlsbS9PdXRDb2xk'>Out Cold</a></em>: When Majors prepares to take ownership of the resort in a ceremony attended by his investors, he unveils a mock-up of one of the new gondolas, wherein he finds Pig Pen having sex with his step-daughter Inga. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Parking1985' title='/pmwiki/pmwiki.php/Film/Parking1985' data-format='RmlsbS9QYXJraW5nMTk4NQ=='>Parking (1985)</a></em>, Orpheus and Eurydice decide the best place to have sex <em>right now</em> is at one of the Underworld hotels. Hades calls them out on this. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Pathology' title='/pmwiki/pmwiki.php/Film/Pathology' data-format='RmlsbS97e1BhdGhvbG9neX19'>Pathology</a></em>: After murdering Fat Bastard, Ted and Juliette have sex in his living room, with his corpse only a few feet away from them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/PerfectAddiction' title='/pmwiki/pmwiki.php/Film/PerfectAddiction' data-format='RmlsbS9QZXJmZWN0QWRkaWN0aW9u'>Perfect Addiction</a></em>: Sienna learns about her boyfriend Jax cheating via him having sex with her sister Beth on their couch when she walks in to see them doing this. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Prime2005' title='/pmwiki/pmwiki.php/Film/Prime2005' data-format='RmlsbS97e1ByaW1lfDIwMDV9fQ=='>Prime</a></em>: Rafi tells her therapist "we have had sex on every surface of my apartment." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ThePrinceAndMe' title='/pmwiki/pmwiki.php/Film/ThePrinceAndMe' data-format='RmlsbS9UaGVQcmluY2VBbmRNZQ=='>The Prince & Me</a></em>: The university students have sex behind the library stacks. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/PromNight1980' title='/pmwiki/pmwiki.php/Film/PromNight1980' data-format='RmlsbS9Qcm9tTmlnaHQxOTgw'>Prom Night (1980)</a></em>: Jude and Slick go to have sex on the edge of the bluffs, but are spooked by the killer, so they return to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AutoErotica' title='/pmwiki/pmwiki.php/Main/AutoErotica' data-format='W1tBdXRvRXJvdGljYSBTbGljayYjMDM5O3MgdmFuXV0='>Slick's van</a>. <span class="spoiler" title="you can set spoilers visible by default on your profile" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexSignalsDeath' title='/pmwiki/pmwiki.php/Main/SexSignalsDeath' data-format='W1tTZXhTaWduYWxzRGVhdGggV2hlcmUgdGhleSYjMDM5O3JlIG11cmRlcmVkXV0='>Where they're murdered</a>.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Push' title='/pmwiki/pmwiki.php/Film/Push' data-format='RmlsbS97e1B1c2h9fQ=='>Push</a></em>: Kira starts to kiss Nick while in the bathroom, and then he closes the door. It's implied the two have sex in there. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheQuiet' title='/pmwiki/pmwiki.php/Film/TheQuiet' data-format='RmlsbS9UaGVRdWlldA=='>The Quiet</a></em>: Connor and Dot have sex beside their school's pool. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/RatsNightOfTerror' title='/pmwiki/pmwiki.php/Film/RatsNightOfTerror' data-format='RmlsbS9SYXRzTmlnaHRPZlRlcnJvcg=='>Rats: Night of Terror</a></em>: When the group decides to sleep in a room full of beds, Lucifer and Lilith pick one and go to town right in front of their friends, who either complain or try to ignore them. Eventually, they're convinced to take it outside. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/RipperLetterFromHell' title='/pmwiki/pmwiki.php/Film/RipperLetterFromHell' data-format='RmlsbS9SaXBwZXJMZXR0ZXJGcm9tSGVsbA=='>Ripper: Letter from Hell</a></em>: Marissa has anonymous sex with a stranger in the bathroom of the costume party. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheRoom2003' title='/pmwiki/pmwiki.php/Film/TheRoom2003' data-format='RmlsbS9UaGVSb29tMjAwMw=='>The Room (2003)</a></em>: The movie obliviously has a group of hitherto unknown side characters enter the main protagonist's apartment just to have sex, and not only do they tell him about it, but he also has no problem with it whatsoever, as <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/CinemaSins' title='/pmwiki/pmwiki.php/WebVideo/CinemaSins' data-format='V2ViVmlkZW8vQ2luZW1hU2lucw=='>CinemaSins</a> pointed out. Apparently, Tommy Wiseau didn't realize this is not something normal people do; when Claudette accidentally intrudes on them, she even literally asks <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LeaningOnTheFourthWall' title='/pmwiki/pmwiki.php/Main/LeaningOnTheFourthWall' data-format='W1tMZWFuaW5nT25UaGVGb3VydGhXYWxsICJXaGF0IGFyZSB0aGVzZSBjaGFyYWN0ZXJzIGRvaW5nIGhlcmU/Il1d'>"What are these characters doing here?"</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Sappho' title='/pmwiki/pmwiki.php/Film/Sappho' data-format='e3tGaWxtL1NhcHBob319'>Sappho</a></em>: Sappho and Helene consummate their affair on the beach. Helene and Phil then have sex in the forest later. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ScreamPark' title='/pmwiki/pmwiki.php/Film/ScreamPark' data-format='RmlsbS9TY3JlYW1QYXJr'>Scream Park</a></em>: Two of the staff have a quickie in the women's bathroom before the bloodbath starts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ShivaBaby' title='/pmwiki/pmwiki.php/Film/ShivaBaby' data-format='RmlsbS9TaGl2YUJhYnk='>Shiva Baby</a></em>: <ul ><li> The film <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RRatedOpening' title='/pmwiki/pmwiki.php/Main/RRatedOpening' data-format='W1tSUmF0ZWRPcGVuaW5nIG9wZW5zXV0='>opens</a> with Danielle and Max having sex on the couch. </li><li> Then it's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Subverted' title='/pmwiki/pmwiki.php/Main/Subverted' data-format='e3tzdWJ2ZXJ0ZWR9fQ=='>subverted</a>, as Danielle attempts to give Max oral sex in the bathroom, but he stops her. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Shortbus' title='/pmwiki/pmwiki.php/Film/Shortbus' data-format='RmlsbS97e1Nob3J0YnVzfX0='>Shortbus</a></em>: Sofia is seen having sex with her husband on a ball, the piano, and against a glass door along with in bed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Siren2010' title='/pmwiki/pmwiki.php/Film/Siren2010' data-format='RmlsbS9TaXJlbjIwMTA='>Siren (2010)</a></em>: Ken and Rachel try to have sex in a roadside public bathroom, only to have the moment spoiled when Rachel has a psychic flash that causes her to think someone is watching them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SkinDeep2022' title='/pmwiki/pmwiki.php/Film/SkinDeep2022' data-format='RmlsbS9Ta2luRGVlcDIwMjI='>Skin Deep (2022)</a></em>: Tristan (in Mo's body) has sex with Fabienne (in Layla's body) while on the beach with her. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SonOfAGun' title='/pmwiki/pmwiki.php/Film/SonOfAGun' data-format='RmlsbS9Tb25PZkFHdW4='>Son of a Gun</a></em>, JR and Natasha have sex on the train travelling from Perth to Melbourne. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Splash' title='/pmwiki/pmwiki.php/Film/Splash' data-format='RmlsbS97e1NwbGFzaH19'>Splash</a></em>: Allen says to Madison: "You were shy? After the car, and the elevator, and the bedroom, and on top of the refrigerator, you were shy?" </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/StealingHeaven' title='/pmwiki/pmwiki.php/Film/StealingHeaven' data-format='RmlsbS9TdGVhbGluZ0hlYXZlbg=='>Stealing Heaven</a></em>: Abelard and Héloïse impulsively have sex in the stables (with the maid <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePeepingTom' title='/pmwiki/pmwiki.php/Main/ThePeepingTom' data-format='W1tUaGVQZWVwaW5nVG9tIHNweWluZyBvbiB0aGVtXV0='>spying on them</a>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Stripes' title='/pmwiki/pmwiki.php/Film/Stripes' data-format='RmlsbS97e1N0cmlwZXN9fQ=='>Stripes</a></em>: After a few seconds of a seemingly empty bedroom, the storage trunk at the foot of the master bed opens and John Winger (Bill Murray) and his new MP girlfriend climb out. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SummerOf42' title='/pmwiki/pmwiki.php/Film/SummerOf42' data-format='RmlsbS9TdW1tZXJPZjQy'>Summer of '42</a></em>: The young protagonist stumbles across his best friend doing this with a girl, leading to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrimalScene' title='/pmwiki/pmwiki.php/Main/PrimalScene' data-format='UHJpbWFsU2NlbmU='>Primal Scene</a> moment. </li><li> Early in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ThatsMyBoy' title='/pmwiki/pmwiki.php/Film/ThatsMyBoy' data-format='RmlsbS9UaGF0c015Qm95'>That's My Boy</a></em>, Donny and Mrs. <span class='esc-seq' title='non-wikiword'>McGarricle</span> end up having sex on the school stage against the piano. This is incidentally a great way for your dumb ass to get caught having sex, especially when there's an <em>assembly going on in the same damn room</em>. To the surprise of no-one with half a brain, they do get caught, and Mrs. <span class='esc-seq' title='non-wikiword'>McGarricle</span> is sent to prison soon after. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheSummerOfSangaile' title='/pmwiki/pmwiki.php/Film/TheSummerOfSangaile' data-format='RmlsbS9UaGVTdW1tZXJPZlNhbmdhaWxl'>The Summer of Sangaile</a></em>: Two of Auste's friends have sex in the grass by the water where all of them had been swimming. Later Sangaile and Auste also have sex for their first time in a field. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SweetSweetLonelyGirl' title='/pmwiki/pmwiki.php/Film/SweetSweetLonelyGirl' data-format='RmlsbS9Td2VldFN3ZWV0TG9uZWx5R2lybA=='>Sweet, Sweet Lonely Girl</a></em>: Beth tells Adele that she had casual sex on a beach with a man they just met, as did her friend. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheyThem2022' title='/pmwiki/pmwiki.php/Film/TheyThem2022' data-format='RmlsbS9UaGV5VGhlbTIwMjI='>They/Them (2022)</a></em>: <ul ><li> Veronica and Kim have sex on the dock. </li><li> Gabriel and Stu did it standing up later in a cabin. </li></ul></li><li> <em>Three</em> (also known as <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Film/SurvivalIsland' title='/pmwiki/pmwiki.php/Film/SurvivalIsland' data-format='RmlsbS9TdXJ2aXZhbElzbGFuZA=='>Survival Island</a></em>): A scene like this appears, which is mainly remembered for showing <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/KellyBrook' title='/pmwiki/pmwiki.php/Creator/KellyBrook' data-format='Q3JlYXRvci9LZWxseUJyb29r'>Kelly Brook</a> topless. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ThreeBillboardsOutsideEbbingMissouri' title='/pmwiki/pmwiki.php/Film/ThreeBillboardsOutsideEbbingMissouri' data-format='RmlsbS9UaHJlZUJpbGxib2FyZHNPdXRzaWRlRWJiaW5nTWlzc291cmk='>Three Billboards Outside Ebbing, Missouri</a></em>: Chief Willoughby takes his family on a picnic out by the lake. While the children are playing, the chief and his wife sneak away to have sex outdoors. <span class="spoiler" title="you can set spoilers visible by default on your profile" >That evening Chief Willoughby commits suicide</span>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Film/TinyFurniture' title='/pmwiki/pmwiki.php/Film/TinyFurniture' data-format='RmlsbS9UaW55RnVybml0dXJl'>Tiny Furniture</a></em>: Aura (a pre-<em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Girls' title='/pmwiki/pmwiki.php/Series/Girls' data-format='U2VyaWVzL3t7R2lybHN9fQ=='>Girls</a></em> Lena Dunham) and bad boy chef Kieth have sex in a giant steel pipe on the streets of New York. It turns out to be more depressing than hot. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TopGun' title='/pmwiki/pmwiki.php/Film/TopGun' data-format='RmlsbS9Ub3BHdW4='>Top Gun</a></em>: Maverick seduces Charlie in the ladies' room at a bar near the flight school. Subverted, however, in that Charlie doesn't fall for it (but does pretend otherwise so Mav can win a bet with Goose). <div class='indent'><strong>Charlie:</strong> <em>(deadpan)</em> You want to just drop down on the tile and go for it?<br data-format="\\" /><strong>Mav:</strong> I actually had... <em>(pushes down on the countertop to see how strong it is)</em> ...this counter in mind. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TrueRomance' title='/pmwiki/pmwiki.php/Film/TrueRomance' data-format='RmlsbS9UcnVlUm9tYW5jZQ=='>True Romance</a></em>: A hot sex scene occurs inside a phone booth. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/WhatsNewPussycat' title='/pmwiki/pmwiki.php/Film/WhatsNewPussycat' data-format='RmlsbS9XaGF0c05ld1B1c3N5Y2F0'>What's New Pussycat?</a></em>: Michael, trying to forsake his womanizing ways, having a bad dream where he encounters former lovers. <div class='indent'><strong>Girl 1</strong>: Michael, remember me? You loved me in your office?<br data-format="\\" /><strong>Michael</strong>: Indeed I do.<br data-format="\\" /><strong>Girl 2</strong>: Remember the night in the hospital bed?<br data-format="\\" /><strong>Michael</strong>: Unforgettable.<br data-format="\\" /><strong>Girl 3</strong>: My mother's crypt?<br data-format="\\" /><strong>Michael</strong>: Oh, poor mummy.<br data-format="\\" /><strong>Girl 4</strong>: On top of the Eiffel Tower?<br data-format="\\" /><strong>Michael</strong>: Very chilly. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/WhenEvilCalls' title='/pmwiki/pmwiki.php/Film/WhenEvilCalls' data-format='RmlsbS9XaGVuRXZpbENhbGxz'>When Evil Calls</a></em>: Linda discovers her boyfriend Mark receiving a blowjob from Molly in the school library. Whoops! </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/WithAKissIDie' title='/pmwiki/pmwiki.php/Film/WithAKissIDie' data-format='RmlsbS9XaXRoQUtpc3NJRGll'>With a Kiss I Die</a></em>: Juliet and Farryn consummate their mutual attraction while outdoors. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/YouAreSoNotInvitedToMyBatMitzvah' title='/pmwiki/pmwiki.php/Film/YouAreSoNotInvitedToMyBatMitzvah' data-format='RmlsbS9Zb3VBcmVTb05vdEludml0ZWRUb015QmF0TWl0enZhaA=='>You Are So Not Invited to My Bat Mitzvah</a></em> has a PG version &#8212; Stacy and Andy kiss <span class="spoiler" title="you can set spoilers visible by default on your profile" >in the Torah ark at the synagogue</span>. Rabbi Rebecca is <em>not</em> happy when she finds them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/YoungAndWild' title='/pmwiki/pmwiki.php/Film/YoungAndWild' data-format='RmlsbS9Zb3VuZ0FuZFdpbGQ='>Young & Wild</a></em>: Daniela and her boyfriend have sex on a rug once. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Literature&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> In his book <em>Angry White Pyjamas</em>, the author Robert Twigger faces this problem with his Japanese girlfriend as they can't afford regular visits to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveHotels' title='/pmwiki/pmwiki.php/Main/LoveHotels' data-format='e3tMb3ZlIEhvdGVsfHN9fQ=='>Love Hotel</a>, and videoing people having sex in public places is a natural pastime in Japan. Eventually, Twigger finds the best place is parkland cordoned off for conservation reasons, as most Japanese are too law-abiding to go inside. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AnnieOnMyMind' title='/pmwiki/pmwiki.php/Literature/AnnieOnMyMind' data-format='TGl0ZXJhdHVyZS9Bbm5pZU9uTXlNaW5k'>Annie on My Mind</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForDrama' title='/pmwiki/pmwiki.php/Main/PlayedForDrama' data-format='UGxheWVkRm9yRHJhbWE='>Played for Drama</a>. Two teachers <span class="spoiler" title="you can set spoilers visible by default on your profile" >who turn out to be a couple themselves</span> ask Liza to feed their cats while they're on vacation. Liza invites her girlfriend Annie along but ultimately they begin to act like the house is theirs. After having <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheirFirstTime' title='/pmwiki/pmwiki.php/Main/TheirFirstTime' data-format='VGhlaXJGaXJzdFRpbWU='>Their First Time</a>, they begin having sex in the house as well. <span class="spoiler" title="you can set spoilers visible by default on your profile" >They end up caught by a homophobic teacher who later tries to expel Liza</span>. Once the owners find out what the girls were doing, they get mad due to the trust violation but ultimately they come to sympathize with their plight. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BrotherCadfael' title='/pmwiki/pmwiki.php/Literature/BrotherCadfael' data-format='TGl0ZXJhdHVyZS9Ccm90aGVyQ2FkZmFlbA=='>Brother Cadfael</a></em>: In <em>The Sanctuary Sparrow</em>, Liliwin has sex with Rannilt behind the altar in the church where he's taken refuge from a false murder charge. Then they have to scramble to get her out of there, as it's the bells for Compline services that wake them up afterward. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ABrothersPrice' title='/pmwiki/pmwiki.php/Literature/ABrothersPrice' data-format='TGl0ZXJhdHVyZS9BQnJvdGhlcnNQcmljZQ=='>A Brother's Price</a></em>: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Jerin</span> is seduced in the kitchen, and the lovemaking takes place on the kitchen floor. His partner lampshades that this is highly inappropriate by mentioning the hearth ... having extramarital sex goes against <span class="spoiler" title="you can set spoilers visible by default on your profile" >Jerin's</span> obligations towards his family, and her seducing him, the son of the house, is a violation of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SacredHospitality' title='/pmwiki/pmwiki.php/Main/SacredHospitality' data-format='U2FjcmVkSG9zcGl0YWxpdHk='>Sacred Hospitality</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ChakonaSpace' title='/pmwiki/pmwiki.php/Literature/ChakonaSpace' data-format='TGl0ZXJhdHVyZS9DaGFrb25hU3BhY2U='>Chakona Space</a></em> has one that is both unusual and impressive considering both participants are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VertebrateWithExtraLimbs' title='/pmwiki/pmwiki.php/Main/VertebrateWithExtraLimbs' data-format='W1tWZXJ0ZWJyYXRlV2l0aEV4dHJhTGltYnMgdGF1cm9pZHMsIHdpdGggbGFyZ2UgcXVhZHJ1cGVkIGJvZGllcyBjb25uZWN0ZWQgYXQgdGhlIHdhaXN0IHRvIGFudGhyb3BvbW9ycGhpYyB0b3Jzb3NdXQ=='>tauroids, with large quadruped bodies connected at the waist to anthropomorphic torsos</a>. Garrek and Goldfur managed to wedge themselves into a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumongousMecha' title='/pmwiki/pmwiki.php/Main/HumongousMecha' data-format='SHVtb25nb3VzTWVjaGE='>Humongous Mecha</a> cockpit (already a rather cramped configuration) and do the deed there... only to be busted by the duty officer during their post-coital snuggle. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheChangeRoom' title='/pmwiki/pmwiki.php/Literature/TheChangeRoom' data-format='TGl0ZXJhdHVyZS9UaGVDaGFuZ2VSb29t'>The Change Room</a></em>: Eliza and Shar have sex in the change room of the pool the first time, with her watching carefully to see if anyone's coming. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Discworld' title='/pmwiki/pmwiki.php/Literature/Discworld' data-format='TGl0ZXJhdHVyZS97e0Rpc2N3b3JsZH19'>Discworld</a></em>: <ul ><li> Casanunda, the world's self-proclaimed Second Greatest Lover, reportedly once had sex while upside-down in a tree. </li><li> Nanny Ogg was once asked by Casanunda if anyone had ever had sex while flying on a broomstick. She warned him that he'd fall off if he tried it, which rather implies she's speaking from experience... </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheEagleTree' title='/pmwiki/pmwiki.php/Literature/TheEagleTree' data-format='TGl0ZXJhdHVyZS9UaGVFYWdsZVRyZWU='>The Eagle Tree</a></em>: From the top of a tree, March sees two people lie next to each other in the forest and start to take their clothes off. He climbs down and leaves before he sees much. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EthanOfAthos' title='/pmwiki/pmwiki.php/Literature/EthanOfAthos' data-format='TGl0ZXJhdHVyZS9FdGhhbk9mQXRob3M='>Ethan of Athos</a></em>: Invoked. The bad guys plan to make it look like Ethan and Elli were having sex in a docking bay airlock, shortly before it opens to space: <div class='indent'><strong>Ethan:</strong> God the Father, the Population Council will think I was depraved enough to make love to a woman in a flex tube!<br data-format="\\" /><strong>Elli:</strong> Gods forbid that Admiral Naismith would think I was stupid enough to make love to anything in a flex tube! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheFaultInOurStars' title='/pmwiki/pmwiki.php/Literature/TheFaultInOurStars' data-format='TGl0ZXJhdHVyZS9UaGVGYXVsdEluT3VyU3RhcnM='>The Fault in Our Stars</a></em>: The two main characters have their first kiss in the <em>Anne Frank house</em>. Naturally, many people point out how disrespectful this is. <div class='indent'><strong><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/CinemaSins' title='/pmwiki/pmwiki.php/WebVideo/CinemaSins' data-format='V2ViVmlkZW8vQ2luZW1hU2lucw=='>CinemaSins</a>:</strong> Um, I'm glad you two are finally kissing and all, but... this is still the Anne Frank museum. Not 100% appropriate, yo. </div><ul ><li> This requires some debasing to uncover what this is a metaphor for. </li></ul></li><li> In one of his appeal briefs to the Supreme Court, <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Creator/FrancisEDec' title='/pmwiki/pmwiki.php/Creator/FrancisEDec' data-format='Q3JlYXRvci9GcmFuY2lzRURlYw=='>Francis E Dec</a> accused Judge William Sullivan and his wife of doing this, with the former chuckling and wiggling his tongue when the latter flashed and offered anilingus if Dec is declared guilty, in <em>his trial</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHanSoloTrilogy' title='/pmwiki/pmwiki.php/Literature/TheHanSoloTrilogy' data-format='TGl0ZXJhdHVyZS9UaGVIYW5Tb2xvVHJpbG9neQ=='>The Han Solo Trilogy</a></em>: It's implied that Han and Bria have sex on the beach. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HeraldsOfValdemar' title='/pmwiki/pmwiki.php/Literature/HeraldsOfValdemar' data-format='TGl0ZXJhdHVyZS9IZXJhbGRzT2ZWYWxkZW1hcg=='>Heralds of Valdemar</a></em>: While none of the major characters in the series have ever had sex while on Companion-back, there are occasional mentions of the fact that some Heralds have done it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HerSpellThatBindsMe' title='/pmwiki/pmwiki.php/Literature/HerSpellThatBindsMe' data-format='TGl0ZXJhdHVyZS9IZXJTcGVsbFRoYXRCaW5kc01l'>Her Spell That Binds Me</a></em>: <ul ><li> Ariadne starts to have sex with Nanet and Gisela in the library before Iona interrupts them. </li><li> She and Iona later have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheirFirstTime' title='/pmwiki/pmwiki.php/Main/TheirFirstTime' data-format='VGhlaXJGaXJzdFRpbWU='>Their First Time</a> in the forest after Samhain. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/HybridXHeartMagiasAcademyAtaraxia' title='/pmwiki/pmwiki.php/Manga/HybridXHeartMagiasAcademyAtaraxia' data-format='TWFuZ2EvSHlicmlkWEhlYXJ0TWFnaWFzQWNhZGVteUF0YXJheGlh'>Hybrid × Heart Magias Academy Ataraxia</a></em>: The light novel volume 13 epilogue chapter includes a scene where Reiri has a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeusSexMachina' title='/pmwiki/pmwiki.php/Main/DeusSexMachina' data-format='W1tEZXVzU2V4TWFjaGluYSBDbGltYXggSHlicmlkXV0='>Climax Hybrid</a> session with <span class="spoiler" title="you can set spoilers visible by default on your profile" >her 17-year old <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrotherSisterIncest' title='/pmwiki/pmwiki.php/Main/BrotherSisterIncest' data-format='W1tCcm90aGVyU2lzdGVySW5jZXN0IGJyb3RoZXIsIEtpenVuYV1d'>brother, Kizuna</a></span>, in the command center's conference room. The conference is conducted via com-link, which prevented the other world leaders from seeing them, though they could occasionally hear Reiri moaning and breathing heavily. She abruptly closes the com-link just as she achieves orgasm, then, after taking a moment to recover, tells him to do it <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExtremeLibido' title='/pmwiki/pmwiki.php/Main/ExtremeLibido' data-format='W1tFeHRyZW1lTGliaWRvIGFnYWluLl1d'>again.</a></em> </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ImperialRadch' title='/pmwiki/pmwiki.php/Literature/ImperialRadch' data-format='TGl0ZXJhdHVyZS9JbXBlcmlhbFJhZGNo'>Imperial Radch</a></em> novel <em>Ancillary Sword</em>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCaptain' title='/pmwiki/pmwiki.php/Main/TheCaptain' data-format='W1tUaGVDYXB0YWluIEJyZXFdXQ=='>Breq</a> and her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NumberTwo' title='/pmwiki/pmwiki.php/Main/NumberTwo' data-format='TnVtYmVyVHdv'>Number Two</a> have a discussion on this point, given that they're on a spaceship with the resulting lack of space and privacy, and the crew doesn't have the private quarters available to officers. Apparently, there are various lockers the crew can make use of or &#8212; if you're desperate &#8212; you can do it under the table in the mess hall. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/LegendsOfIthyria' title='/pmwiki/pmwiki.php/Literature/LegendsOfIthyria' data-format='TGl0ZXJhdHVyZS9MZWdlbmRzT2ZJdGh5cmlh'>Legends of Ithyria</a></em>: Talon meets Erinda in the princess' privy chamber to have sex. Later they also have sex in a cellar, where <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePeepingTom' title='/pmwiki/pmwiki.php/Main/ThePeepingTom' data-format='W1tUaGVQZWVwaW5nVG9tIFNoYXN0YSBzZWVzIHRoZW1dXQ=='>Shasta sees them</a>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Shasta and Talon also later have sex in the stables, as the makeshift headquarters Shasta's forces have during <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSiege' title='/pmwiki/pmwiki.php/Main/TheSiege' data-format='VGhlU2llZ2U='>The Siege</a> of the palace.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ALongPetalOfTheSea' title='/pmwiki/pmwiki.php/Literature/ALongPetalOfTheSea' data-format='TGl0ZXJhdHVyZS9BTG9uZ1BldGFsT2ZUaGVTZWE='>A Long Petal of the Sea</a></em>: While on board the SS <em>Winnipeg</em> (a ship transporting <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WarRefugees' title='/pmwiki/pmwiki.php/Main/WarRefugees' data-format='V2FyUmVmdWdlZXM='>War Refugees</a> from <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/SpanishCivilWar' title='/pmwiki/pmwiki.php/UsefulNotes/SpanishCivilWar' data-format='VXNlZnVsTm90ZXMvU3BhbmlzaENpdmlsV2Fy'>Spanish Civil War</a> to <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Chile' title='/pmwiki/pmwiki.php/UsefulNotes/Chile' data-format='VXNlZnVsTm90ZXMve3tDaGlsZX19'>Chile</a>), Víctor and Roser arrange to get together by the lifeboats for some privacy in a ship with more than 2000 refugees. Subverted in that since theirs is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MarriageOfConvenience' title='/pmwiki/pmwiki.php/Main/MarriageOfConvenience' data-format='TWFycmlhZ2VPZkNvbnZlbmllbmNl'>Marriage of Convenience</a> <span class="spoiler" title="you can set spoilers visible by default on your profile" >and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexlessMarriage' title='/pmwiki/pmwiki.php/Main/SexlessMarriage' data-format='U2V4bGVzc01hcnJpYWdl'>Sexless Marriage</a> at that point</span>, they don't have sex. Ironically, their chats bring them closer together than sex would have. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MagicUniversity' title='/pmwiki/pmwiki.php/Literature/MagicUniversity' data-format='TGl0ZXJhdHVyZS9NYWdpY1VuaXZlcnNpdHk='>Magic University</a></em>: <ul ><li> The prologue which begins the series has a male student having sex with his girlfriend (he thinks) in the library. </li><li> Kyle and Jess later have sex in the bathroom. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MagikaSwordsmanAndSummoner' title='/pmwiki/pmwiki.php/Literature/MagikaSwordsmanAndSummoner' data-format='TGl0ZXJhdHVyZS9NYWdpa2FTd29yZHNtYW5BbmRTdW1tb25lcg=='>Magika Swordsman and Summoner</a></em>: Kazuki gets it on with the girls of his harem in an astonishing number of places, including: the beach (Koyuki), the woods at school (Koyuki), the movies (Koyuki), a karaoke room (Mio), the library (Koyuki), BY the pool on a yacht (Mio and Haruka), in a gondola (Haruka), on the Ferris wheel (<span class="spoiler" title="you can set spoilers visible by default on your profile" >Kamimmura</span>), on a horse (Kaguya), in an igloo on Mt. Fuji (Kaguya, Hikaru, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Kazuha</span>), in the bath/showers (at least five times, once with eleven girls simultaneously), in the HALL (four times, all Koyuki), in the middle of a sleepover (<span class="spoiler" title="you can set spoilers visible by default on your profile" >Kohaku</span>, surrounded by 100+ sleeping bystanders) and once, arguably, <em>in the STREET</em> (Koyuki again, part of the same date as the movie, and yes this is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CasualKink' title='/pmwiki/pmwiki.php/Main/CasualKink' data-format='W1tDYXN1YWxLaW5rIFRISU5HXV0='>THING</a> for her). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Mangoverse' title='/pmwiki/pmwiki.php/Literature/Mangoverse' data-format='TGl0ZXJhdHVyZS97e01hbmdvdmVyc2V9fQ=='>Mangoverse</a></em>: <em>Climbing the Date Palm's</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexMontage' title='/pmwiki/pmwiki.php/Main/SexMontage' data-format='U2V4TW9udGFnZQ=='>Sex Montage</a> includes Esvhat having sex with a guard in an alley. </li><li> Arthur and Raina Franhop from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NakedCameTheStranger' title='/pmwiki/pmwiki.php/Literature/NakedCameTheStranger' data-format='TGl0ZXJhdHVyZS9OYWtlZENhbWVUaGVTdHJhbmdlcg=='>Naked Came the Stranger</a></em> have had sex in every conceivable location and position, from the refrigerator to the sewer. Arthur is delighted when Gillian suggests the most shocking act of all: missionary sex in the bedroom. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/Naples44' title='/pmwiki/pmwiki.php/Literature/Naples44' data-format='TGl0ZXJhdHVyZS9OYXBsZXM0NA=='>Naples 44</a></em>, by Norman Lewis. An Allied officer is asked by his Italian girlfriend to accompany her to the local cemetery. He assumes she means to mourn a loved one until she takes off her clothes and lays down on a gravestone. Turns out the cemetery is such a well-known <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutPoint' title='/pmwiki/pmwiki.php/Main/MakeOutPoint' data-format='TWFrZU91dFBvaW50'>Make-Out Point</a> that even greeting someone you know on the bus route to the cemetery is an embarrassing breach of etiquette. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Neverwhere' title='/pmwiki/pmwiki.php/Literature/Neverwhere' data-format='TGl0ZXJhdHVyZS97e05ldmVyd2hlcmV9fQ=='>Neverwhere</a></em>, two characters who've become imperceptible to normal Londoners have to abandon a park bench because a couple sits down and start engaging in intense foreplay right beside them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/OneHundredYearsOfSolitude' title='/pmwiki/pmwiki.php/Literature/OneHundredYearsOfSolitude' data-format='TGl0ZXJhdHVyZS9PbmVIdW5kcmVkWWVhcnNPZlNvbGl0dWRl'>One Hundred Years of Solitude</a></em>: Amaranta Úrsula and her husband, Gastón, once almost crashed a plane just to make love up on the hills. <span class="spoiler" title="you can set spoilers visible by default on your profile" >After she starts an affair with Aureliano Babilonia, they break most of the furniture and objects from the house by making love everywhere inside.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Presidential' title='/pmwiki/pmwiki.php/Literature/Presidential' data-format='TGl0ZXJhdHVyZS97e1ByZXNpZGVudGlhbH19'>Presidential</a></em>: Connie and Emily have sex the second time in a room of the White House, and more specifically while against the table or on the couch. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JamesMCain' title='/pmwiki/pmwiki.php/Creator/JamesMCain' data-format='Q3JlYXRvci9KYW1lc01DYWlu'>James M. Cain</a>'s novel <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Serenade' title='/pmwiki/pmwiki.php/Literature/Serenade' data-format='TGl0ZXJhdHVyZS97e1NlcmVuYWRlfX0='>Serenade</a></em>, the two main characters have sex in a church after they're <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CaughtInTheRain' title='/pmwiki/pmwiki.php/Main/CaughtInTheRain' data-format='Q2F1Z2h0SW5UaGVSYWlu'>Caught in the Rain</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ShatterTheSky' title='/pmwiki/pmwiki.php/Literature/ShatterTheSky' data-format='TGl0ZXJhdHVyZS9TaGF0dGVyVGhlU2t5'>Shatter the Sky</a></em>: After they reunite, Kaia and Maren have sex in the forest. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SoLongAndThanksForAllTheFish' title='/pmwiki/pmwiki.php/Literature/SoLongAndThanksForAllTheFish' data-format='TGl0ZXJhdHVyZS9Tb0xvbmdBbmRUaGFua3NGb3JBbGxUaGVGaXNo'>So Long, and Thanks for All the Fish</a></em>: It is explained that Fenchurch was named after the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/LondonUnderground' title='/pmwiki/pmwiki.php/UsefulNotes/LondonUnderground' data-format='W1tVc2VmdWxOb3Rlcy9Mb25kb25VbmRlcmdyb3VuZCBGZW5jaHVyY2ggU3RyZWV0IFJhaWx3YXkgU3RhdGlvbl1d'>Fenchurch Street Railway Station</a>... not because she was <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PaddingtonBear' title='/pmwiki/pmwiki.php/Literature/PaddingtonBear' data-format='W1tMaXRlcmF0dXJlL1BhZGRpbmd0b25CZWFyIGZvdW5kIG5lYXIgdGhlIExvc3QgTHVnZ2FnZSByb29tXV0='>found near the Lost Luggage room</a>, but because she was <em>conceived there while her parents were on the ticket queue</em>. She and Arthur would later join the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MileHighClub' title='/pmwiki/pmwiki.php/Main/MileHighClub' data-format='TWlsZUhpZ2hDbHVi'>Mile-High Club</a> - without a plane. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ASongOfIceAndFire' title='/pmwiki/pmwiki.php/Literature/ASongOfIceAndFire' data-format='TGl0ZXJhdHVyZS9BU29uZ09mSWNlQW5kRmlyZQ=='>A Song of Ice and Fire</a></em>: Jaime and Cersei are twins in a lifelong incestuous affair. Jaime definitely has a bit of a kink for having sex in risky places where they could conceivably be caught. Cersei often goes along with this, but definitely doesn't have a <em>thing</em> for it the way Jaime does. She continuously has to play the voice of reason, reminding him that this is seriously dangerous &#8212; like, executed-if-they're-caught level dangerous. <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AGameOfThrones' title='/pmwiki/pmwiki.php/Literature/AGameOfThrones' data-format='TGl0ZXJhdHVyZS9BR2FtZU9mVGhyb25lcw=='>A Game of Thrones</a></em> they have sex in a tower of the Stark Castle, where Bran catches them. This incites part of the main plot since Jaime then pushes Bran to his presumed death to cover it up (though he survives). It eventually creates a civil war. <div class='indent'><strong>Cersei:</strong> If you'd gone hunting as I begged you, nothing would have happened. But no, you had to have me, you could not wait until we returned to the city. </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AStormOfSwords' title='/pmwiki/pmwiki.php/Literature/AStormOfSwords' data-format='TGl0ZXJhdHVyZS9BU3Rvcm1PZlN3b3Jkcw=='>A Storm of Swords</a></em> they have sex in the Royal Sept, in front of the corpse of <span class="spoiler" title="you can set spoilers visible by default on your profile" >their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RefugeInAudacity' title='/pmwiki/pmwiki.php/Main/RefugeInAudacity' data-format='W1tSZWZ1Z2VJbkF1ZGFjaXR5IGRlYWQgc29uXV0='>dead son</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpoiledBrat' title='/pmwiki/pmwiki.php/Main/SpoiledBrat' data-format='W1tTcG9pbGVkQnJhdCBKb2ZmcmV5XV0='>Joffrey</a>.</span> </li><li> A third instance &#8212; which we hear about but don't see firsthand &#8212; is a time they had sex with Cersei's blackout-drunk sleeping husband right there in the room with them. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/StrawberryPanic' title='/pmwiki/pmwiki.php/Literature/StrawberryPanic' data-format='TGl0ZXJhdHVyZS9TdHJhd2JlcnJ5UGFuaWM='>Strawberry Panic!</a></em>: The school library is used by many couples to have romantic trysts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SplitHeirs' title='/pmwiki/pmwiki.php/Literature/SplitHeirs' data-format='TGl0ZXJhdHVyZS9TcGxpdEhlaXJz'>Split Heirs</a></em>: Wulfrith and Lady Ubri have sex all over the library. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTeresaKnightTrilogy' title='/pmwiki/pmwiki.php/Literature/TheTeresaKnightTrilogy' data-format='TGl0ZXJhdHVyZS9UaGVUZXJlc2FLbmlnaHRUcmlsb2d5'>The Teresa Knight Trilogy</a></em>: Teresa gets busy in all kinds of places, including dogging inside a park while a much younger couple watch. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ToBeWithYou' title='/pmwiki/pmwiki.php/Literature/ToBeWithYou' data-format='TGl0ZXJhdHVyZS9Ub0JlV2l0aFlvdQ=='>To Be with You</a></em>: Leah and Victoria have sex in multiple places outside of the bedroom during their time in 2000, including behind a store. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/UndefeatedBahamutChronicle' title='/pmwiki/pmwiki.php/Literature/UndefeatedBahamutChronicle' data-format='TGl0ZXJhdHVyZS9VbmRlZmVhdGVkQmFoYW11dENocm9uaWNsZQ=='>Undefeated Bahamut Chronicle</a></em>: Referenced. Alterize asks Lux if it's true that he and Krulcifer are spending their nights together. Lux says yes (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneDialogueTwoConversations' title='/pmwiki/pmwiki.php/Main/OneDialogueTwoConversations' data-format='W1tPbmVEaWFsb2d1ZVR3b0NvbnZlcnNhdGlvbnMgS3J1bGNpZmVyIGdpdmVzIGhpbSBzdXBwbGVtZW50YXJ5IGxlc3NvbnMgZXZlcnkgbmlnaHRdXQ=='>Krulcifer gives him supplementary lessons every night</a>) and adds that they've been "doing it" not just in the classroom, but also in the girl's dormitory, the dining hall, and even the courtyard. </li><li> Lux in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheVirginSuicides' title='/pmwiki/pmwiki.php/Literature/TheVirginSuicides' data-format='TGl0ZXJhdHVyZS9UaGVWaXJnaW5TdWljaWRlcw=='>The Virgin Suicides</a></em> sneaks people onto her roof for sex, to the fascination of the narrators. </li><li> In the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceNovel' title='/pmwiki/pmwiki.php/Main/RomanceNovel' data-format='Um9tYW5jZU5vdmVs'>Romance Novel</a> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/WhisperToMeOfLove' title='/pmwiki/pmwiki.php/Literature/WhisperToMeOfLove' data-format='TGl0ZXJhdHVyZS9XaGlzcGVyVG9NZU9mTG92ZQ=='>Whisper To Me Of Love</a></em>, the hero seduces a woman in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AutoErotica' title='/pmwiki/pmwiki.php/Main/AutoErotica' data-format='W1tBdXRvRXJvdGljYSBjYXJyaWFnZV1d'>carriage</a>, then later in the book, having married the heroine, seduces <em>her</em> out in the woods after their celebratory picnic. She's nervous, given the outdoors location, but he assures her that no one will see them &#8212;they're too far from the house and the butler has been given orders not to disturb them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AYellowRaftInBlueWater' title='/pmwiki/pmwiki.php/Literature/AYellowRaftInBlueWater' data-format='TGl0ZXJhdHVyZS9BWWVsbG93UmFmdEluQmx1ZVdhdGVy'>A Yellow Raft in Blue Water</a></em>: Elgin Taylor and Christine George make love to each other in public at Tacoma State Park. Fortunately for them, nobody pays them any attention. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Live-Action TV&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThirtyRock' title='/pmwiki/pmwiki.php/Series/ThirtyRock' data-format='U2VyaWVzL1RoaXJ0eVJvY2s='>30 Rock</a></em>: Tracy and Angie Jordan have sex in Jack Donaghy's office and also in the hallway outside the studio. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AccordingToJim' title='/pmwiki/pmwiki.php/Series/AccordingToJim' data-format='U2VyaWVzL0FjY29yZGluZ1RvSmlt'>According to Jim</a></em>: Jim and Cheryl try to finish off his promise to have sex in all mainland states before their 15th anniversary by going to an Indiana motel. After hilarious hijinks, they end up doing it in the basement of an Indiana home, during a tornado... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CaughtWithYourPantsDown' title='/pmwiki/pmwiki.php/Main/CaughtWithYourPantsDown' data-format='W1tDYXVnaHRXaXRoWW91clBhbnRzRG93biB0byB0aGUgc2hvY2sgb2YgdGhlIG93bmVyc11d'>to the shock of the owners</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BehindTheBlack' title='/pmwiki/pmwiki.php/Main/BehindTheBlack' data-format='W1tCZWhpbmRUaGVCbGFjayB3aG8gd2VyZSBoaWRpbmcgaW4gc2FpZCBjZWxsYXIgdGhlIHdob2xlIHRpbWVdXQ=='>who were hiding in said cellar the whole time</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheAffair' title='/pmwiki/pmwiki.php/Series/TheAffair' data-format='U2VyaWVzL1RoZUFmZmFpcg=='>The Affair</a></em>: When Noah is separated from his wife, he takes advantage of his bachelor status to sleep around a lot. One of them is another teacher at the school he works at, whom he takes to his locked classroom at night to have kinky sex. Deconstructed when a janitor happens to see them and he's suspended for improper behavior. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AlmostFamily' title='/pmwiki/pmwiki.php/Series/AlmostFamily' data-format='U2VyaWVzL0FsbW9zdEZhbWlseQ=='>Almost Family</a></em>: <ul ><li> Julia hooked up with a guy in the bathroom (who it turns out is her half-brother, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SurpriseIncest' title='/pmwiki/pmwiki.php/Main/SurpriseIncest' data-format='W1tTdXJwcmlzZUluY2VzdCB0aG91Z2ggc2hlIGRpZG4mIzAzOTt0IGtub3cgdGhlbl1d'>though she didn't know then</a>). </li><li> Edie and Amanda first have sex in a room of the courthouse after they met while representing opposing sides on a case. This continues before both of them realize that's too dangerous. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AmericanGods2017' title='/pmwiki/pmwiki.php/Series/AmericanGods2017' data-format='U2VyaWVzL0FtZXJpY2FuR29kczIwMTc='>American Gods (2017)</a></em>: Shadow has sex with Marguerite in the snow, of all places. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Angel' title='/pmwiki/pmwiki.php/Series/Angel' data-format='U2VyaWVzL3t7QW5nZWx9fQ=='>Angel</a></em>: When Angel becomes human in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/AngelS01E08IWillRememberYou' title='/pmwiki/pmwiki.php/Recap/AngelS01E08IWillRememberYou' data-format='W1tSZWNhcC9BbmdlbFMwMUUwOElXaWxsUmVtZW1iZXJZb3UgSSBXaWxsIFJlbWVtYmVyIFlvdV1d'>I Will Remember You</a>" he and Buffy agree they should take their relationship slow. One accidental moment of body contact later and they're shoving the cutlery off the kitchen table to have passionate sex. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AppleTreeYard' title='/pmwiki/pmwiki.php/Series/AppleTreeYard' data-format='U2VyaWVzL0FwcGxlVHJlZVlhcmQ='>Apple Tree Yard</a></em>, Yvonne and Mark (who are having an affair) get an extra thrill out of having sex in public places; their first encounter is in the Secret Chapel of the Commons. They also have sex in a cafe toilet and in an alleyway in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TitleDrop' title='/pmwiki/pmwiki.php/Main/TitleDrop' data-format='W1tUaXRsZURyb3AgQXBwbGUgVHJlZSBZYXJkXV0='>Apple Tree Yard</a>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Mark, as it is revealed in the murder trial, seems to have a fetish for this kind of thing, as he's done it with other lovers in the past</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AshVsEvilDead' title='/pmwiki/pmwiki.php/Series/AshVsEvilDead' data-format='U2VyaWVzL0FzaFZzRXZpbERlYWQ='>Ash vs. Evil Dead</a></em>: Ash hits on a waitress and invites her to have sex with him in the bathroom of the restaurant he's in because he can't pay the bill and considers sex an appropriate replacement for money. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Subverted when instead Amanda comes in to arrest him and the waitress ends up a Deadite.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BallsOfSteel' title='/pmwiki/pmwiki.php/Series/BallsOfSteel' data-format='U2VyaWVzL0JhbGxzT2ZTdGVlbA=='>Balls of Steel</a></em>: The point of "The Fuckers", a recurring act on the show, whose act is to make out naked in public places. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BeingHumanUS' title='/pmwiki/pmwiki.php/Series/BeingHumanUS' data-format='U2VyaWVzL0JlaW5nSHVtYW5VUw=='>Being Human (US)</a></em>: Sally first has sex with Max on the couch in the viewing room of his funeral parlor. He's kind of creeped out afterward, since he'll think about it while people are viewing the corpses of their loved ones in the future. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBisexual' title='/pmwiki/pmwiki.php/Series/TheBisexual' data-format='U2VyaWVzL1RoZUJpc2V4dWFs'>The Bisexual</a></em>: Leila and Jon-Criss have sex on a bathroom floor. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Blindspotting' title='/pmwiki/pmwiki.php/Series/Blindspotting' data-format='U2VyaWVzL3t7QmxpbmRzcG90dGluZ319'>Blindspotting</a></em>: During their conjugal visit, Ashley and Miles have sex on the couch inside the house provided because Seas is sleeping in the bed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Bones' title='/pmwiki/pmwiki.php/Series/Bones' data-format='U2VyaWVzL3t7Qm9uZXN9fQ=='>Bones</a></em>: <ul ><li> Sweets and Daisy. "We have to stop having sex in my office." </li><li> Jack and Angela liked to do it in Cleopatra's bed in the Egyptian room. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BoyMeetsWorld' title='/pmwiki/pmwiki.php/Series/BoyMeetsWorld' data-format='U2VyaWVzL0JveU1lZXRzV29ybGQ='>Boy Meets World</a></em>: In a later episode, Topanga is trying to get Cory to help plan their honeymoon, but Cory <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InvokedTrope' title='/pmwiki/pmwiki.php/Main/InvokedTrope' data-format='W1tJbnZva2VkVHJvcGUgaW52b2tlc11d'>invokes</a> this trope to make it clear that he doesn't care <em>where</em> they spend their honeymoon, just so long as it involves lots of sex. <div class='indent'><strong>Topanga:</strong> Cory, I'm beginning to think you'd be fine if we just spent our honeymoon in any old hotel! </div><div class='indent'><strong>Cory:</strong> ...or in the road. </div><div class='indent'><strong>Topanga:</strong> Cory, that's sick! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBoys2019' title='/pmwiki/pmwiki.php/Series/TheBoys2019' data-format='U2VyaWVzL1RoZUJveXMyMDE5'>The Boys (2019)</a></em>: <ul ><li> In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheBoysS0206TheBloodyDoorsOff' title='/pmwiki/pmwiki.php/Recap/TheBoysS0206TheBloodyDoorsOff' data-format='W1tSZWNhcC9UaGVCb3lzUzAyMDZUaGVCbG9vZHlEb29yc09mZiBUaGUgQmxvb2R5IERvb3JzXV0='>The Bloody Doors</a>", Homelander and Stormfront interrupt a mugging in an alley, then instead of arresting the criminal Homelander crushes his head while Stormfront is sexually stimulating him, then he proceeds to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WallBangHer' title='/pmwiki/pmwiki.php/Main/WallBangHer' data-format='V2FsbEJhbmdIZXI='>Wall Bang Her</a> next to the headless corpse. </li><li> In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheBoysS03E01Payback' title='/pmwiki/pmwiki.php/Recap/TheBoysS03E01Payback' data-format='W1tSZWNhcC9UaGVCb3lzUzAzRTAxUGF5YmFjayBQYXliYWNrXV0='>Payback</a>" Ashley has sex in the bathroom with the director after the film premiere, while he sits on the toilet. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Bridgerton' title='/pmwiki/pmwiki.php/Series/Bridgerton' data-format='U2VyaWVzL3t7QnJpZGdlcnRvbn19'>Bridgerton</a></em>: <ul ><li> In season 1, Anthony and his mistress, Siena, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WallBangHer' title='/pmwiki/pmwiki.php/Main/WallBangHer' data-format='W1tXYWxsQmFuZ0hlciBoYXZlIHNleCBieSB0aGUgdHJlZV1d'>have sex by the tree</a> in episode 1 and later in the final episode, they have sex again in the other room far from the boxing ring room. In episode 6, as newlyweds Daphne and Simon consummate their honeymoon in duchy Hastings; on the terrace after getting caught in the rain, on the lawn while having a picnic and in the library. </li><li> In the near-end of episode 7 season 2, Anthony and Kate have sex by the pavilion in the garden. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BroadCity' title='/pmwiki/pmwiki.php/Series/BroadCity' data-format='U2VyaWVzL0Jyb2FkQ2l0eQ=='>Broad City</a></em>: In the episode "Citizen Ship", Ilana and Lincoln search the boat for a place where they can have sex, but every nook and cranny is already occupied. <div class='indent'><strong>Woman</strong>: Hey! There are people fucking in here! Rude! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' title='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' data-format='U2VyaWVzL0J1ZmZ5VGhlVmFtcGlyZVNsYXllcg=='>Buffy the Vampire Slayer</a></em>: <ul ><li> A more <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs' data-format='UGxheWVkRm9yTGF1Z2hz'>Played for Laughs</a> version of this trope is when it's revealed in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS3E18Earshot' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS3E18Earshot' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTM0UxOEVhcnNob3QgRWFyc2hvdF1d'>Earshot</a>" that during the events of "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS3E6BandCandy' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS3E6BandCandy' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTM0U2QmFuZENhbmR5IEJhbmQgQ2FuZHldXQ=='>Band Candy</a>", Joyce and Giles (under magical influence) had sex on the hood of a police car. TWICE! (with handcuffs). </li><li> In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS5E15IWasMadeToLoveYou' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS5E15IWasMadeToLoveYou' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTNUUxNUlXYXNNYWRlVG9Mb3ZlWW91IEkgV2FzIE1hZGUgVG8gTG92ZSBZb3VdXQ=='>I Was Made To Love You</a>", after Joyce returns from her date, she teases by Buffy by jokingly claiming to have done this. </li></ul><div class='indent'><strong>Joyce:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FindingABraInYourCar' title='/pmwiki/pmwiki.php/Main/FindingABraInYourCar' data-format='W1tGaW5kaW5nQUJyYUluWW91ckNhciBJIGxlZnQgbXkgYnJhIGluIGhpcyBjYXIuXV0='>I left my bra in his car.</a><br data-format="\\" /><strong>Buffy:</strong> MOTHER!<br data-format="\\" /><strong>Joyce:</strong> I'm joking.<br data-format="\\" /><strong>Buffy:</strong> Good god, that's horrible. Don't do that.<br data-format="\\" /><strong>Joyce:</strong> I left it in the restaurant.<br data-format="\\" /><strong>Buffy:</strong> No more! No more! <em>No more</em>! </div><ul ><li> Spike and Anya have sex on the table in the Magic Box shop in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E18Entropy' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E18Entropy' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTNkUxOEVudHJvcHkgRW50cm9weV1d'>Entropy</a>"... and get caught on camera doing it. </li><li> Buffy and Spike in Season 6 have sex on <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E9Smashed' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E9Smashed' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTNkU5U21hc2hlZCB0aGUgd2FsbHMgYW5kIGZsb29yIChiZWNhdXNlIHRoZXkmIzAzOTt2ZSBzbWFzaGVkIHVwIGFsbCB0aGUgZnVybml0dXJlKV1d'>the walls and floor (because they've smashed up all the furniture)</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E12DoublemeatPalace' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E12DoublemeatPalace' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTNkUxMkRvdWJsZW1lYXRQYWxhY2UgaW4gYSBiYWNrIGFsbGV5IG91dHNpZGUgQnVmZnkmIzAzOTtzIHdvcmtwbGFjZV1d'>in a back alley outside Buffy's workplace</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E15AsYouWere' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E15AsYouWere' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTNkUxNUFzWW91V2VyZSBvbiB0aGUgbGF3biBvZiBoZXIgaG91c2Ugd2l0aCBEYXduIHdhaXRpbmcgaW5zaWRlXV0='>on the lawn of her house with Dawn waiting inside</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E13DeadThings' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS6E13DeadThings' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTNkUxM0RlYWRUaGluZ3Mgb24gYW4gaW50ZXJpb3IgYmFsY29ueSBvZiB0aGUgQnJvbnplIHdpdGggaGVyIGZyaWVuZHMgZGFuY2luZyBiZWxvd11d'>on an interior balcony of the Bronze with her friends dancing below</a> &#8212; behaviour which causes Buffy to feel both excitement and self-loathing. </li><li> In Season 7, Xander and Anya have sex on the kitchen floor, as the rest of the house is crowded with sleeping Potentials. The one free bed has already been nabbed by Willow and Kennedy &#8212; the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RightThroughTheWall' title='/pmwiki/pmwiki.php/Main/RightThroughTheWall' data-format='W1tSaWdodFRocm91Z2hUaGVXYWxsIG5vaXNlIG9mIHRoZWlyIGxvdmVtYWtpbmcgc2V0cyBYYW5kZXIgYW5kIEFueWEgdG8gZG9pbmcgaXQgYXMgd2VsbF1d'>noise of their lovemaking sets Xander and Anya to doing it as well</a>. </li><li> In season 8 of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BuffyTheVampireSlayer' title='/pmwiki/pmwiki.php/ComicBook/BuffyTheVampireSlayer' data-format='Q29taWNCb29rL0J1ZmZ5VGhlVmFtcGlyZVNsYXllcg=='>Buffy the Vampire Slayer</a></em>, Oz and Bayarmaa have sex in the grass under a tree next to a Buddhist monastery. A yak lying near them decides to wander off. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CarnivalRow' title='/pmwiki/pmwiki.php/Series/CarnivalRow' data-format='U2VyaWVzL0Nhcm5pdmFsUm93'>Carnival Row</a></em>: Jonah and Sophie had sex in a carriage. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Castle2009' title='/pmwiki/pmwiki.php/Series/Castle2009' data-format='U2VyaWVzL3t7Q2FzdGxlfDIwMDl9fQ=='>Castle</a></em>: Richard Castle and his ex-wife Meredith spend a post-coital moment blissfully recounting their top-ten sexual encounters. Among the locales listed are Yankee Stadium, the Westminster Dog Show, Coney Island, and a hot-air balloon. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Chuck' title='/pmwiki/pmwiki.php/Series/Chuck' data-format='U2VyaWVzL3t7Q2h1Y2t9fQ=='>Chuck</a></em>: Chuck and Sarah have apparently used multiple storage rooms and other facilities in Castle for decidedly non-spy activities. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CobraKai' title='/pmwiki/pmwiki.php/Series/CobraKai' data-format='U2VyaWVzL0NvYnJhS2Fp'>Cobra Kai</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CobraKaiS1E6Quiver' title='/pmwiki/pmwiki.php/Recap/CobraKaiS1E6Quiver' data-format='W1tSZWNhcC9Db2JyYUthaVMxRTZRdWl2ZXIgIlF1aXZlciJdXQ=='>"Quiver"</a>: This was apparently how Daniel's son Anthony was conceived, after his mom and dad had <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StealthPun' title='/pmwiki/pmwiki.php/Main/StealthPun' data-format='W1tTdGVhbHRoUHVuIGdvbmUgdG8gdGhlIG1hdF1d'>gone to the mat</a> while practicing some karate ten years ago... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ControlZ' title='/pmwiki/pmwiki.php/Series/ControlZ' data-format='U2VyaWVzL0NvbnRyb2xa'>Control Z</a></em>: <ul ><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Pablo</span> and María get busy in the school janitor's closet. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Susana and Miguel</span> had sex in a chair inside an empty classroom and are briefly seen by Raul. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Coupling' title='/pmwiki/pmwiki.php/Series/Coupling' data-format='U2VyaWVzL3t7Q291cGxpbmd9fQ=='>Coupling</a></em>: In the first episode, Steve and Jane have sex for the last time in a bathroom stall. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CrazyExGirlfriend' title='/pmwiki/pmwiki.php/Series/CrazyExGirlfriend' data-format='U2VyaWVzL0NyYXp5RXhHaXJsZnJpZW5k'>Crazy Ex-Girlfriend</a></em>: Rebecca apparently enjoys making love outside of her bedroom. The song "We Tapped That Ass" has her hallucinate her ex-boyfriends Josh and Greg sing about how they had sex all over her house, such as on the counter, over the sink, against the television, "sort of in the fridge", and on the back patio (where they "hit her back paddy &#8212; <em>oh!</em>"). However, they rarely had sex in her bed because it's so uncomfortable. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheCrowdedRoom' title='/pmwiki/pmwiki.php/Series/TheCrowdedRoom' data-format='U2VyaWVzL1RoZUNyb3dkZWRSb29t'>The Crowded Room</a></em>: Ariana has sex with Jerome in a restroom stall of the club where they meet. Later it's revealed this was actually Danny, as Ariana's an alternate personality of his, we find out. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheCrown2016' title='/pmwiki/pmwiki.php/Series/TheCrown2016' data-format='U2VyaWVzL1RoZUNyb3duMjAxNg=='>The Crown (2016)</a></em> dramatises the real-life affair between Lord Snowden (Anthony Armstrong Jones) and actress Jacqueline Chan, complete with a raunchy scene of them doing it on the stairs. The real woman was interviewed about this. <div class='indent'> "I never would have chosen the stairs. Far too uncomfortable. The kitchen table maybe." </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CSI' title='/pmwiki/pmwiki.php/Series/CSI' data-format='U2VyaWVzL3t7Q1NJfX0='>CSI</a></em>: <ul ><li> Investigating a restaurant chef's murder, the team found evidence of semen in the kitchen. The murderer later admits she'd caught her boyfriend having sex with the victim in the pantry. </li><li> Sara indicates joining the "mile high club" in one episode. </li><li> One witness in the investigation of a roller-coaster crash slipped from the top of the suspect list when a photo revealed he wouldn't <em>want</em> to sabotage it, because the ride's initial drop is where he likes to score. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CSINY' title='/pmwiki/pmwiki.php/Series/CSINY' data-format='U2VyaWVzL3t7Q1NJTll9fQ=='>CSI: NY</a></em>: <ul ><li> In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CSINYS03E24' title='/pmwiki/pmwiki.php/Recap/CSINYS03E24' data-format='W1tSZWNhcC9DU0lOWVMwM0UyNCBTbm93IERheV1d'>Snow Day</a>", Danny and Lindsay's first time having sex is on top of Danny's pool table. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CSINYS03E01' title='/pmwiki/pmwiki.php/Recap/CSINYS03E01' data-format='W1tSZWNhcC9DU0lOWVMwM0UwMSBQZW9wbGUgd2l0aCBNb25leV1d'>People with Money</a>" features a woman who prefers bungee-jumping-sex. More than once, with more than one partner within the episode. </li><li> The victim in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CSINYS05E03' title='/pmwiki/pmwiki.php/Recap/CSINYS05E03' data-format='W1tSZWNhcC9DU0lOWVMwNUUwMyBUdXJidWxlbmNlXV0='>Turbulence</a>" is discovered to have joined the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MileHighClub' title='/pmwiki/pmwiki.php/Main/MileHighClub' data-format='TWlsZUhpZ2hDbHVi'>Mile-High Club</a> while aboard the flight Mac was on between NYC and Washington D.C. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DarkDesire' title='/pmwiki/pmwiki.php/Series/DarkDesire' data-format='U2VyaWVzL0RhcmtEZXNpcmU='>Dark Desire</a></em>: A significant amount of the sex occurs outside the bedroom (for instance a field, in a laundry room etc). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Dates' title='/pmwiki/pmwiki.php/Series/Dates' data-format='U2VyaWVzL3t7RGF0ZXN9fQ=='>Dates</a></em>: Mia abruptly has sex with Stephen up against the wall in the alley behind the pub they had met inside. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DeadlyClass' title='/pmwiki/pmwiki.php/Series/DeadlyClass' data-format='U2VyaWVzL0RlYWRseUNsYXNz'>Deadly Class</a></em>: Both the series' portrayed sex scenes are somewhere else than a bed. <ul ><li> Marcus and Maria have sex on a tomb in the school's cemetery. </li><li> Later, Marcus and Saya have sex outside in the grass. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DharmaAndGreg' title='/pmwiki/pmwiki.php/Series/DharmaAndGreg' data-format='U2VyaWVzL0RoYXJtYUFuZEdyZWc='>Dharma & Greg</a></em>: Dharma and Jane have a running competition to see who can have sex in the weirdest place without getting caught, with the winner being able to claim a ceramic duck. Dharma and Greg try to win it back, first by doing it in Ghirardelli Square (which fails, as they get caught), and then <em>on the front steps of the courthouse</em> while the entire city is busy watching the series finale of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Seinfeld' title='/pmwiki/pmwiki.php/Series/Seinfeld' data-format='U2VyaWVzL3t7U2VpbmZlbGR9fQ=='>Seinfeld</a></em>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Jane foils this by tricking Kitty and Edward there, forcing them to hide... whereupon the older couple reminisce about the early days of their relationship and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrimalScene' title='/pmwiki/pmwiki.php/Main/PrimalScene' data-format='W1tQcmltYWxTY2VuZSBlbmQgdXAgd2lubmluZyB0aGUgZHVjayB0aGVtc2VsdmVzXV0='>end up winning the duck themselves</a>.</span> <div class='indent'><strong>Edward:</strong> That's not a duck, it's a goose.<br data-format="\\" /><strong>Dharma:</strong> Yes, but Captain, my Captain, <em>goose</em> does not rhyme. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Dickinson' title='/pmwiki/pmwiki.php/Series/Dickinson' data-format='e3tTZXJpZXMvRGlja2luc29ufX0='>Dickinson</a></em>: Sue and Emily have sex in the garden. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DisastersAtSea' title='/pmwiki/pmwiki.php/Series/DisastersAtSea' data-format='U2VyaWVzL0Rpc2FzdGVyc0F0U2Vh'>Disasters at Sea</a></em>: Downplayed, but implied as a possible contributing factor in the sinking of the <em>Queen of the North</em>, since the ship's Fourth Officer and Quartermaster had previously had an affair. What exactly they were doing when they were alone on the bridge together was never established; of greater importance was what they were <em>not</em> doing, which was making sure the Queen of the North was staying on course and not sailing toward rocky shores… </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em>: According to semi-accidental <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a>, Melody Pond <span class="spoiler" title="you can set spoilers visible by default on your profile" >aka River Song</span> was conceived on a bunk bed <em>ladder</em>. It was stated in the show that Melody was conceived on a bunk bed. When people asked head writer <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/StevenMoffat' title='/pmwiki/pmwiki.php/Creator/StevenMoffat' data-format='Q3JlYXRvci9TdGV2ZW5Nb2ZmYXQ='>Steven Moffat</a> and episode writer <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/NeilGaiman' title='/pmwiki/pmwiki.php/Creator/NeilGaiman' data-format='Q3JlYXRvci9OZWlsR2FpbWFu'>Neil Gaiman</a> on whether it was the top or bottom bunk, they independently suggested it could have been the ladder. When they found about this, they agreed that they had just confirmed it. Ignoring that, the fact that she was conceived on an impossibly powerful time machine is pretty unusual (and impressive) in itself. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DominoDay' title='/pmwiki/pmwiki.php/Series/DominoDay' data-format='U2VyaWVzL0RvbWlub0RheQ=='>Domino Day</a></em>: <ul ><li> In Episode 2, Domino lures a man off into a club's toilet promising sex, then <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VampiricDraining' title='/pmwiki/pmwiki.php/Main/VampiricDraining' data-format='W1tWYW1waXJpY0RyYWluaW5nIHNoZSB0YWtlcyBzb21lIG9mIGhpcyBlbmVyZ3kgaW5zdGVhZCBhcyB1c3VhbF1d'>she takes some of his energy instead as usual</a>. </li><li> In Episode 3 we see that when Silas and Domino first met he gave her oral sex as she lay on a table. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DontLookDeeper' title='/pmwiki/pmwiki.php/Series/DontLookDeeper' data-format='U2VyaWVzL0RvbnRMb29rRGVlcGVy'>Don't Look Deeper</a></em>: Jenny had eaten out Aisha while the two were lying on the floor in a former tiger cage together. </li><li> <em>Duet</em>: The lead male says he learned in therapy he doesn't truly feel he deserves his girlfriend or Chinese food, so he and his girlfriend once made love in a Chinese restaurant. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/EverythingNow' title='/pmwiki/pmwiki.php/Series/EverythingNow' data-format='U2VyaWVzL0V2ZXJ5dGhpbmdOb3c='>Everything Now</a></em>: <ul ><li> Will happily recounts how he and his boss had sex in a storage room. <span class="spoiler" title="you can set spoilers visible by default on your profile" >It turns out this was imaginary</span>. </li><li> Cam and Becca often hook up behind the bleachers, from what's said, although they get interrupted on the show. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheFamily2016' title='/pmwiki/pmwiki.php/Series/TheFamily2016' data-format='U2VyaWVzL1RoZUZhbWlseTIwMTY='>The Family (2016)</a></em>: John has sex with Nina the first time while they're in the police interview room. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Farscape' title='/pmwiki/pmwiki.php/Series/Farscape' data-format='U2VyaWVzL3t7RmFyc2NhcGV9fQ=='>Farscape</a></em>: In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FarscapeS03E02SunsAndLovers' title='/pmwiki/pmwiki.php/Recap/FarscapeS03E02SunsAndLovers' data-format='W1tSZWNhcC9GYXJzY2FwZVMwM0UwMlN1bnNBbmRMb3ZlcnMgU3VucyBhbmQgTG92ZXJzXV0='>Suns and Lovers</a>", Chiana is cheating on D'Argo with his son Jothee. As D'Argo is a Luxan and hates the cold, they have sex in a freezer for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanPopsicle' title='/pmwiki/pmwiki.php/Main/HumanPopsicle' data-format='W1tIdW1hblBvcHNpY2xlIGNyeW9nZW5pY2FsbHkgZnJvemVuIGJvZGllc11d'>cryogenically frozen bodies</a>. Jothee points out that he's half-Luxan, so hates the cold as well; plus, the bodies are freaking him out. Later in the episode, Aeryn suggests to Crichton that they resolve their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' title='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' data-format='VW5yZXNvbHZlZFNleHVhbFRlbnNpb24='>Unresolved Sexual Tension</a> while crawling through a filtration vent in a wrecked space station that's in the process of breaking up. Just as Aeryn is unzipping her top to show she's not wearing a bra, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MomentKiller' title='/pmwiki/pmwiki.php/Main/MomentKiller' data-format='W1tNb21lbnRLaWxsZXIgdGhlIGZsb29yIGNvbGxhcHNlcyB1bmRlciBoZXJdXQ=='>the floor collapses under her</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FeelGood' title='/pmwiki/pmwiki.php/Series/FeelGood' data-format='U2VyaWVzL0ZlZWxHb29k'>Feel Good</a></em>: <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SubvertedTrope' title='/pmwiki/pmwiki.php/Main/SubvertedTrope' data-format='e3tTdWJ2ZXJ0ZWR8VHJvcGV9fQ=='>Subverted</a> in the first season. George tries to have Mae hook up in her classroom's closet, but then her students come in, so Mae hides inside it. </li><li> In season 2, they try to hook up in a maternity ward. The only private space they can find is a room where somebody's just given birth. George calls the sex off after she puts her hand in what she thinks is somebody's placenta. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Firefly' title='/pmwiki/pmwiki.php/Series/Firefly' data-format='U2VyaWVzL3t7RmlyZWZseX19'>Firefly</a></em> a flashback shows that Captain Malcolm Reynolds met the ship's mechanic Kaylee when he walked in on her and his previous ship's mechanic...in the engine room. He fires the first mechanic and hires her when she announces that she figured out what was wrong with the engine while on her back. <div class='indent'><strong>Mal</strong>: Is there something wrong with your bunk?! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FirstKill' title='/pmwiki/pmwiki.php/Series/FirstKill' data-format='U2VyaWVzL0ZpcnN0S2lsbA=='>First Kill</a></em>: Juliette and Cal have sex in the pantry. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Frasier' title='/pmwiki/pmwiki.php/Series/Frasier' data-format='U2VyaWVzL3t7RnJhc2llcn19'>Frasier</a></em>: During a game of "I Never", Roz reveals she had sex on a lift, in a phone booth, on an airplane, and a merry-go-round. All apparently while she was at college. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AFrenchVillage' title='/pmwiki/pmwiki.php/Series/AFrenchVillage' data-format='U2VyaWVzL0FGcmVuY2hWaWxsYWdl'>A French Village</a></em>: Maria has casual sex with a resistance fighter in the forest. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Friends' title='/pmwiki/pmwiki.php/Series/Friends' data-format='U2VyaWVzL3t7RnJpZW5kc319'>Friends</a></em>: <ul ><li> In the episode <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FriendsS1E7TheOneWithTheBlackout' title='/pmwiki/pmwiki.php/Recap/FriendsS1E7TheOneWithTheBlackout' data-format='W1tSZWNhcC9GcmllbmRzUzFFN1RoZU9uZVdpdGhUaGVCbGFja291dCAiVGhlIE9uZSB3aXRoIHRoZSBCbGFja291dCJdXQ=='>"The One with the Blackout"</a>, the characters discuss the weirdest place where they had sex. For Monica, it's a pool table, for Joey, "the women's room on the second floor of the New York City public library", and for Ross, Disneyland, near the "It's a Small World" ride. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArsonMurderAndJaywalking' title='/pmwiki/pmwiki.php/Main/ArsonMurderAndJaywalking' data-format='W1tBcnNvbk11cmRlckFuZEpheXdhbGtpbmcgKFBob2ViZSYjMDM5O3MgaXMgTWlsd2F1a2VlKV1d'>(Phoebe's is Milwaukee)</a>. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FriendsS2E15TheOneWhereRossAndRachelYouKnow' title='/pmwiki/pmwiki.php/Recap/FriendsS2E15TheOneWhereRossAndRachelYouKnow' data-format='W1tSZWNhcC9GcmllbmRzUzJFMTVUaGVPbmVXaGVyZVJvc3NBbmRSYWNoZWxZb3VLbm93ICJUaGUgT25lIFdoZXJlIFJhY2hlbCBhbmQgUm9zcy4uLiBZb3UgS25vdyJdXQ=='>"The One Where Rachel and Ross... You Know"</a> this happens at Ross' workplace, the museum of natural history, first at the planetarium, then at a cavemen exhibit. (the latter, to the shock of some schoolchildren...) </li><li> In the episode <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FriendsS3E6TheOneWithTheFlashback' title='/pmwiki/pmwiki.php/Recap/FriendsS3E6TheOneWithTheFlashback' data-format='W1tSZWNhcC9GcmllbmRzUzNFNlRoZU9uZVdpdGhUaGVGbGFzaGJhY2sgIlRoZSBPbmUgd2l0aCB0aGUgRmxhc2hiYWNrIl1d'>"The One with the Flashback"</a>, when Ross is distraught over finding out that his wife is a lesbian, he almost ends up having sex with Phoebe on a pool table. However, the moment is ruined because of the location ("Stupid balls are in the way.") </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FriendsS5E4TheOneWherePhoebeHatesPBS' title='/pmwiki/pmwiki.php/Recap/FriendsS5E4TheOneWherePhoebeHatesPBS' data-format='W1tSZWNhcC9GcmllbmRzUzVFNFRoZU9uZVdoZXJlUGhvZWJlSGF0ZXNQQlMgIlRoZSBPbmUgV2hlcmUgUGhvZWJlIEhhdGVzIFBCUyJdXQ=='>"The One Where Phoebe Hates PBS"</a>’s stinger, Chandler and Monica are revealed to have had sex inside the storage closet of Central Perk, with first Chandler and then Monica leaving individually and siting down on the couch like nothing happened. In the extended scene on the DVD they then go back and do it again. <div class='indent'><strong>Monica:</strong> Never done that before.<br data-format="\\" /><strong>Chandler:</strong> Nope. </div></li><li> In the episode <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FriendsS7E7TheOneWithRosssLibraryBook' title='/pmwiki/pmwiki.php/Recap/FriendsS7E7TheOneWithRosssLibraryBook' data-format='W1tSZWNhcC9GcmllbmRzUzdFN1RoZU9uZVdpdGhSb3Nzc0xpYnJhcnlCb29rICJUaGUgT25lIHdpdGggUm9zcyYjMDM5O3MgTGlicmFyeSBCb29rIl1d'>"The One with Ross's Library Book"</a>, Ross finds out that students have sex at the corner of the university's library where his book is placed because nobody goes there. </li><li> In the episode <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FriendsS10E11TheOneWhereTheStripperCries' title='/pmwiki/pmwiki.php/Recap/FriendsS10E11TheOneWhereTheStripperCries' data-format='W1tSZWNhcC9GcmllbmRzUzEwRTExVGhlT25lV2hlcmVUaGVTdHJpcHBlckNyaWVzICJUaGUgT25lIFdoZXJlIFRoZSBTdHJpcGVyIENyaWVzIl1d'>"The One Where The Striper Cries"</a>, when Joey was on <em>Pyramid</em> an answer was cafeteria, the clue he gave was a place in school he had sex, his partner said the football field. He was right, but it wasn't what they were looking for. </li><li> When Rachel was having Emma, Monica and Chandler snuck into the hospital's broom closet. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentsWalkInAtTheWorstTime' title='/pmwiki/pmwiki.php/Main/ParentsWalkInAtTheWorstTime' data-format='W1tQYXJlbnRzV2Fsa0luQXRUaGVXb3JzdFRpbWUgVGhleSB0aGVuIGdldCBjYXVnaHQgYnkgTW9uaWNhJiMwMzk7cyBmYXRoZXJdXQ=='>They then get caught by Monica's father</a> and explain that they're actually trying to conceive. He is actually thrilled by this and starts giving them pointers. But they weren't there anymore! </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GameOfThrones' title='/pmwiki/pmwiki.php/Series/GameOfThrones' data-format='U2VyaWVzL0dhbWVPZlRocm9uZXM='>Game of Thrones</a></em>: <ul ><li> Jaime and Cersei are discovered by Bran in Winterfell's derelict First Keep. Of course, with the two of them, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Twincest' title='/pmwiki/pmwiki.php/Main/Twincest' data-format='W1t7e1R3aW5jZXN0fX0gaXQmIzAzOTtzIG5vdCBqdXN0IHRoZSBwbGFjZSB0aGF0JiMwMzk7cyB3cm9uZyBhYm91dCB0aGUgbG92ZW1ha2luZ11d'>it's not just the place that's wrong about the lovemaking</a>. </li><li> Stannis and Melisandre on <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigBoard' title='/pmwiki/pmwiki.php/Main/TheBigBoard' data-format='VGhlQmlnQm9hcmQ='>The Big Board</a> table in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWarRoom' title='/pmwiki/pmwiki.php/Main/TheWarRoom' data-format='VGhlV2FyUm9vbQ=='>The War Room</a> of Stannis, which also makes a bit of a metaphor<span class='esc-seq' title='non-wikiword'>/</span><a class='twikilink' href='/pmwiki/pmwiki.php/Main/VisualPun' title='/pmwiki/pmwiki.php/Main/VisualPun' data-format='VmlzdWFsUHVu'>Visual Pun</a>. </li><li> Jon and Ygritte get it on in a cave complete with a hot spring for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoPersonPoolParty' title='/pmwiki/pmwiki.php/Main/TwoPersonPoolParty' data-format='VHdvUGVyc29uUG9vbFBhcnR5'>Two-Person Pool Party</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GeneralHospital' title='/pmwiki/pmwiki.php/Series/GeneralHospital' data-format='U2VyaWVzL0dlbmVyYWxIb3NwaXRhbA=='>General Hospital</a></em>: Brenda and Jagger almost had sex in the nurse's office before the nurse walked in on them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GossipGirl2007' title='/pmwiki/pmwiki.php/Series/GossipGirl2007' data-format='U2VyaWVzL0dvc3NpcEdpcmwyMDA3'>Gossip Girl (2007)</a></em>: For a few episodes, when Blair and Chuck are having a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendsWithBenefits' title='/pmwiki/pmwiki.php/Main/FriendsWithBenefits' data-format='RnJpZW5kc1dpdGhCZW5lZml0cw=='>Friends with Benefits</a> relationship (well, enemies with benefits, anyway) they have sex on a piano, in a limo, and in a vestibule. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GossipGirl2021' title='/pmwiki/pmwiki.php/Series/GossipGirl2021' data-format='U2VyaWVzL0dvc3NpcEdpcmwyMDIx'>Gossip Girl (2021)</a></em>: <ul ><li> Max and Rafa have sex on school grounds repeatedly, which the latter <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LampshadeHanging' title='/pmwiki/pmwiki.php/Main/LampshadeHanging' data-format='W1tMYW1wc2hhZGVIYW5naW5nIHNheXMgaXMgYSB0ZXJyaWJsZSBpZGVhXV0='>says is a terrible idea</a>, admitting they need to do this elsewhere. </li><li> Aki and Audrey hook up repeatedly in the school's chapel, right by the altar even. Later they also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AThreesomeIsHot' title='/pmwiki/pmwiki.php/Main/AThreesomeIsHot' data-format='W1tBVGhyZWVzb21lSXNIb3QgZG8gaXQgd2l0aF1d'>do it with</a> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Max</span> in there. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GothamKnights2023' title='/pmwiki/pmwiki.php/Series/GothamKnights2023' data-format='U2VyaWVzL0dvdGhhbUtuaWdodHMyMDIz'>Gotham Knights (2023)</a></em>: In "Poison Pill" it's strongly implied Turner and Duela have sex while at the library between the book shelves. This is confirmed to be the case in the next episode. She then dishes to Harper on this, with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooMuchInformation' title='/pmwiki/pmwiki.php/Main/TooMuchInformation' data-format='W1tUb29NdWNoSW5mb3JtYXRpb24gZmFyIG1vcmUgZGV0YWlscyB0aGFuIHNoZSYjMDM5O2QgbGlrZV1d'>far more details than she'd like</a> later. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GreysAnatomy' title='/pmwiki/pmwiki.php/Series/GreysAnatomy' data-format='U2VyaWVzL0dyZXlzQW5hdG9teQ=='>Grey's Anatomy</a></em>: Bailey tries to do it on the beach during her honeymoon, only to end up with a nasty infection in her you-know-what thanks to the sand. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Guerrilla' title='/pmwiki/pmwiki.php/Series/Guerrilla' data-format='U2VyaWVzL3t7R3VlcnJpbGxhfX0='>Guerrilla</a></em>: Dhari and Eliette have sex outdoors while in Belgium. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HeartsAfire' title='/pmwiki/pmwiki.php/Series/HeartsAfire' data-format='U2VyaWVzL0hlYXJ0c0FmaXJl'>Hearts Afire</a></em>: <ul ><li> In one episode, the protagonist couple has to have a moment in a department store dressing room because they're entertaining too many houseguests at home for them to have any alone time. </li><li> They also made love in their boss's office. He promptly walked in on them, followed closely by C-Span cameramen. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Hightown' title='/pmwiki/pmwiki.php/Series/Hightown' data-format='U2VyaWVzL3t7SGlnaHRvd259fQ=='>Hightown</a></em>: Jackie has sex with Leslie at the police station where they work while in the women's locker room, the code for this being asking if she can "have a moment" alone (acting like it was just for talking about something). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HomeImprovement' title='/pmwiki/pmwiki.php/Series/HomeImprovement' data-format='U2VyaWVzL0hvbWVJbXByb3ZlbWVudA=='>Home Improvement</a></em>: After Tim gets a vasectomy, sex can be done anytime, anywhere. At the end of the episode, they choose a location they haven't used in a while: the bedroom. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HowIMetYourMother' title='/pmwiki/pmwiki.php/Series/HowIMetYourMother' data-format='U2VyaWVzL0hvd0lNZXRZb3VyTW90aGVy'>How I Met Your Mother</a></em>: <ul ><li> When Marshall plans to propose to Lily, Ted begs Marshall not to celebrate the engagement by having sex with her in the kitchen. They do it anyway. </li><li> In one episode, Marshall and Lily celebrate Ted's absence by having sex in every place they can think of in the apartment. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SubvertedTrope' title='/pmwiki/pmwiki.php/Main/SubvertedTrope' data-format='W1tTdWJ2ZXJ0ZWRUcm9wZSBIb3dldmVyLF1d'>However,</a> they realize halfway through that they miss Ted and are bored. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HowToMakeItInAmerica' title='/pmwiki/pmwiki.php/Series/HowToMakeItInAmerica' data-format='U2VyaWVzL0hvd1RvTWFrZUl0SW5BbWVyaWNh'>How to Make It in America</a></em> Ben and Nancy have sex in a yacht, which is hosting her husband Yosi's birthday party. Then later it's implied they do it in her office (on a couch), which has no door, only a curtain. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/InterviewWithTheVampire2022' title='/pmwiki/pmwiki.php/Series/InterviewWithTheVampire2022' data-format='U2VyaWVzL0ludGVydmlld1dpdGhUaGVWYW1waXJlMjAyMg=='>Interview with the Vampire (2022)</a></em>: <ul ><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S1E6LikeAngelsPutInHellByGod' title='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S1E6LikeAngelsPutInHellByGod' data-format='W1tSZWNhcC9JbnRlcnZpZXdXaXRoVGhlVmFtcGlyZTIwMjJTMUU2TGlrZUFuZ2Vsc1B1dEluSGVsbEJ5R29kIExpa2UgQW5nZWxzIFB1dCBpbiBIZWxsIGJ5IEdvZF1d'>Like Angels Put in Hell by God</a>": Louis de Pointe du Lac and Lestat de Lioncourt impulsively engage in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterplayOfSexAndViolence' title='/pmwiki/pmwiki.php/Main/InterplayOfSexAndViolence' data-format='W1tJbnRlcnBsYXlPZlNleEFuZFZpb2xlbmNlIHVuYnJpZGxlZCwgYW5ncnkgc2V4XV0='>unbridled, angry sex</a> inside the house of Lestat's <em>mistress</em> (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' title='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' data-format='W1tJbnRlcnJ1cHRlZEludGltYWN5IExlc3RhdCBhbmQgQW50b2luZXR0ZSBCcm93biB3ZXJlIGluIHRoZSBtaWRkbGUgb2Ygc2V4dWFsIGludGVyY291cnNlIHdoZW4gTG91aXMgYmFyZ2VzIGludG8gaGVyIGJlZHJvb21dXQ=='>Lestat and Antoinette Brown were in the middle of sexual intercourse when Louis barges into her bedroom</a>). Both men <em>kick her out of her own home</em> so they can have some privacy! </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S1E7TheThingLayStill' title='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S1E7TheThingLayStill' data-format='W1tSZWNhcC9JbnRlcnZpZXdXaXRoVGhlVmFtcGlyZTIwMjJTMUU3VGhlVGhpbmdMYXlTdGlsbCBUaGUgVGhpbmcgTGF5IFN0aWxsXV0='>The Thing Lay Still</a>": It's mentioned that sometime around the late 1920s, Lestat and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Socialite' title='/pmwiki/pmwiki.php/Main/Socialite' data-format='e3tTb2NpYWxpdGV9fQ=='>Socialite</a> from the Women's Opera Society had a quickie under the stairs of the lecture hall where her husband was onstage giving a boring speech on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/DonGiovanni' title='/pmwiki/pmwiki.php/Theatre/DonGiovanni' data-format='VGhlYXRyZS9Eb25HaW92YW5uaQ=='>Don Giovanni</a></em>. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E2DoYouKnowWhatItMeansToBeLovedBy' title='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E2DoYouKnowWhatItMeansToBeLovedBy' data-format='W1tSZWNhcC9JbnRlcnZpZXdXaXRoVGhlVmFtcGlyZTIwMjJTMkUyRG9Zb3VLbm93V2hhdEl0TWVhbnNUb0JlTG92ZWRCeSBEbyBZb3UgS25vdyBXaGF0IEl0IE1lYW5zIHRvIEJlIExvdmVkIGJ5IERlYXRoXV0='>Do You Know What It Means to Be Loved by Death</a>": Armand discloses to Daniel Molloy and Louis that he had sex with Tuan and Quang Pham in the back row of a cinema screening <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/NowVoyager' title='/pmwiki/pmwiki.php/Film/NowVoyager' data-format='RmlsbS9Ob3dWb3lhZ2Vy'>Now, Voyager</a></em>. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E3NoPain' title='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E3NoPain' data-format='W1tSZWNhcC9JbnRlcnZpZXdXaXRoVGhlVmFtcGlyZTIwMjJTMkUzTm9QYWluIE5vIFBhaW5dXQ=='>No Pain</a>": Lestat and Armand have sex on the floor of a private theatre box while a play is being performed onstage in front of a live audience. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E5DontBeAfraidJustStartTheTape' title='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E5DontBeAfraidJustStartTheTape' data-format='W1tSZWNhcC9JbnRlcnZpZXdXaXRoVGhlVmFtcGlyZTIwMjJTMkU1RG9udEJlQWZyYWlkSnVzdFN0YXJ0VGhlVGFwZSBEb24mIzAzOTt0IEJlIEFmcmFpZCwgSnVzdCBTdGFydCB0aGUgVGFwZV1d'>Don't Be Afraid, Just Start the Tape</a>": Every night in July 1949, Louis and Armand snuck into the same library and they made love on the long tables where they could admire the iron pillars and terracotta domes. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E6LikeTheLightByWhichGodMadeThe' title='/pmwiki/pmwiki.php/Recap/InterviewWithTheVampire2022S2E6LikeTheLightByWhichGodMadeThe' data-format='W1tSZWNhcC9JbnRlcnZpZXdXaXRoVGhlVmFtcGlyZTIwMjJTMkU2TGlrZVRoZUxpZ2h0QnlXaGljaEdvZE1hZGVUaGUgTGlrZSB0aGUgTGlnaHQgYnkgV2hpY2ggR29kIE1hZGUgdGhlIFdvcmxkIEJlZm9yZSBIZSBNYWRlIExpZ2h0XV0='>Like the Light by Which God Made the World Before He Made Light</a>": Louis and Armand make love in the latter's office at the <em>Théâtre des Vampires</em>, and the vampires two floors down can hear the amorous couple's movements. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/IronReign' title='/pmwiki/pmwiki.php/Series/IronReign' data-format='U2VyaWVzL0lyb25SZWlnbg=='>Iron Reign</a></em>: Nuria and a Guardia Civil officer have sex on his boss' desk. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JAG' title='/pmwiki/pmwiki.php/Series/JAG' data-format='U2VyaWVzL3t7SkFHfX0='>JAG</a></em>: In the pilot episode, Lt. Arutti and Lt. Painter have sex in a transport plane parked on the flight deck of the aircraft carrier USS Seahawk. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JupitersLegacy' title='/pmwiki/pmwiki.php/Series/JupitersLegacy' data-format='U2VyaWVzL0p1cGl0ZXJzTGVnYWN5'>Jupiter's Legacy</a></em>: Jacinda gets cunnilingus from Gabriella on a pool table. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KeepingUpAppearances' title='/pmwiki/pmwiki.php/Series/KeepingUpAppearances' data-format='U2VyaWVzL0tlZXBpbmdVcEFwcGVhcmFuY2Vz'>Keeping Up Appearances</a></em>: A sex scene on a golf course occurs between Daisy and Onslow, preventing Onslow from being the monster in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainProtagonist' title='/pmwiki/pmwiki.php/Main/VillainProtagonist' data-format='W1tWaWxsYWluUHJvdGFnb25pc3QgSHlhY2ludGgmIzAzOTtzXV0='>Hyacinth's</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterProtectionRacket' title='/pmwiki/pmwiki.php/Main/MonsterProtectionRacket' data-format='TW9uc3RlclByb3RlY3Rpb25SYWNrZXQ='>Monster Protection Racket</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KungFu2021' title='/pmwiki/pmwiki.php/Series/KungFu2021' data-format='U2VyaWVzL0t1bmdGdTIwMjE='>Kung Fu (2021)</a></em>: Nicky and Henry end up having spontaneous sex in a library, which she gets teasing comments about later. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LasVegas' title='/pmwiki/pmwiki.php/Series/LasVegas' data-format='U2VyaWVzL0xhc1ZlZ2Fz'>Las Vegas</a></em>: It'd be harder to come up with a list of out-of-the-way corners where people <em>haven't</em> had sex in the casino. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheLawAccordingToLidiaPoet' title='/pmwiki/pmwiki.php/Series/TheLawAccordingToLidiaPoet' data-format='U2VyaWVzL1RoZUxhd0FjY29yZGluZ1RvTGlkaWFQb2V0'>The Law According to Lidia Poët</a></em>: <ul ><li> Lidia is eaten out by Jacopo while sitting up on her desk in 1x4 before they move to her bed. </li><li> Lidia and Fourneau have sex up against the desk in his office during 2x5. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LosHombresDePaco' title='/pmwiki/pmwiki.php/Series/LosHombresDePaco' data-format='U2VyaWVzL0xvc0hvbWJyZXNEZVBhY28='>Los Hombres de Paco</a></em>: There's lots and lots of sex between all of the cops at San Antonio Predicate. Silvia and Pepa have had sex in the crime lab a couple of times. Not to mention all the sex in the locker rooms and the bathrooms at work. It's a wonder any cases get solved. Pepa and Silvia were close to having sex in the parking lot once before getting interrupted by Curtis. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheLWord' title='/pmwiki/pmwiki.php/Series/TheLWord' data-format='U2VyaWVzL1RoZUxXb3Jk'>The L Word</a></em>: There are many sex scenes in locations outside characters' beds, such as in workplaces, bathrooms etc. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MANswers' title='/pmwiki/pmwiki.php/Series/MANswers' data-format='U2VyaWVzL3t7TUFOc3dlcnN9fQ=='>MANswers</a></em>: The series once investigated how it might be possible to have sex on a moving motorcycle, complete with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DontTryThisAtHome' title='/pmwiki/pmwiki.php/Main/DontTryThisAtHome' data-format='RG9udFRyeVRoaXNBdEhvbWU='>Don't Try This at Home</a> warnings and expert testimony from a tattoo-covered biker. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MarriedWithChildren' title='/pmwiki/pmwiki.php/Series/MarriedWithChildren' data-format='U2VyaWVzL01hcnJpZWRXaXRoQ2hpbGRyZW4='>Married... with Children</a></em>: <ul ><li> "I'll See You In Court": Peggy suggests having sex with Al on the dinner table to add a little excitement to their sex life but this being Al, he isn't interested. When Marcy stops by and Peg asks her if she and Steve have ever had sex in places outside of the bedroom, Marcy gleefully lists planes, buses and the observation room at the John Hancock building such places. </li><li> "The Egg and I": Marcy's ex-husband, Steve comes back to "reclaim" her, and gets into an argument with her current husband, Jefferson about which one of them is the better lover. They bring up places where they had sex with her, such as the kitchen, the front yard, a Dairy Queen, and a homeless person's shopping cart. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MidnightSun2016' title='/pmwiki/pmwiki.php/Series/MidnightSun2016' data-format='U2VyaWVzL01pZG5pZ2h0U3VuMjAxNg=='>Midnight Sun (2016)</a></em>: Kahina and Thor impulsively have sex against his car when she's drunk. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MidsomerMurders' title='/pmwiki/pmwiki.php/Series/MidsomerMurders' data-format='U2VyaWVzL01pZHNvbWVyTXVyZGVycw=='>Midsomer Murders</a></em>: In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/MidsomerMurdersS10E8' title='/pmwiki/pmwiki.php/Recap/MidsomerMurdersS10E8' data-format='W1tSZWNhcC9NaWRzb21lck11cmRlcnNTMTBFOCBEZWF0aCBpbiBhIENob2NvbGF0ZSBCb3hdXQ=='>Death in a Chocolate Box</a>", a woman who was cuckolding her husband in a big way was doing it by getting arrested on a Friday night, and then having sex with police officers in the cells. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Misfits' title='/pmwiki/pmwiki.php/Series/Misfits' data-format='U2VyaWVzL3t7TWlzZml0c319'>Misfits</a></em>: Lots of people have sex in bathroom stalls. <ul ><li> Alisha does it with Curtis, though this was actually rape since she used her power (that makes her irresistably attractive) on him. He is not happy at all, as you'd expect, after coming to his senses afterward. </li><li> Alex does this repeatedly to take the powers of women away who don't want them (which requires sex). </li><li> Jess does this to insure that her son's conceived with his abusive father <span class="spoiler" title="you can set spoilers visible by default on your profile" >before killing him</span>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MohawkGirls' title='/pmwiki/pmwiki.php/Series/MohawkGirls' data-format='U2VyaWVzL01vaGF3a0dpcmxz'>Mohawk Girls</a></em>: Bailey has sex with James on the floor of his art studio. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MontyPythonsFlyingCircus' title='/pmwiki/pmwiki.php/Series/MontyPythonsFlyingCircus' data-format='U2VyaWVzL01vbnR5UHl0aG9uc0ZseWluZ0NpcmN1cw=='>Monty Python's Flying Circus</a></em>: "Well, I object to all this sex on the television. I mean, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComicallyMissingThePoint' title='/pmwiki/pmwiki.php/Main/ComicallyMissingThePoint' data-format='W1tDb21pY2FsbHlNaXNzaW5nVGhlUG9pbnQgSSBrZWVwIGZhbGxpbmcgb2ZmIV1d'>I keep falling off!</a>" </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MurderInTheFirst' title='/pmwiki/pmwiki.php/Series/MurderInTheFirst' data-format='U2VyaWVzL011cmRlckluVGhlRmlyc3Q='>Murder in the First</a></em>: Terry and Raffi had sex while in the police station property room. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MyFamily' title='/pmwiki/pmwiki.php/Series/MyFamily' data-format='U2VyaWVzL015RmFtaWx5'>My Family</a></em>: Subverted. They kept finding reasons not to have sex in certain rooms and did it in their bedroom instead. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheNanny' title='/pmwiki/pmwiki.php/Series/TheNanny' data-format='U2VyaWVzL1RoZU5hbm55'>The Nanny</a></em>: In one episode, Yetta mentions to C.C. (thinking she was talking to Maggie) that Fran and Maxwell had walked in on C.C. and Niles "doing the horizontal horror." C.C. responds with "Where? Kitchen? Closet? Stairway? Limo? Wal-Mart?" She later calls Niles and it's implied that she plans on doing it in an aluminum shed at Home Depot. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NCIS' title='/pmwiki/pmwiki.php/Series/NCIS' data-format='U2VyaWVzL3t7TkNJU319'>NCIS</a></em>: In one episode, the team was talking about where they had their respective first times. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BadassIsraeli' title='/pmwiki/pmwiki.php/Main/BadassIsraeli' data-format='QmFkYXNzSXNyYWVsaQ=='>Badass Israeli</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LadyOfWar' title='/pmwiki/pmwiki.php/Main/LadyOfWar' data-format='TGFkeU9mV2Fy'>Lady of War</a> mentions: <div class='indent'> <strong>Ziva</strong>: My first time was in the back of a weapons carrier.<br data-format="\\" /><strong><span class='esc-seq' title='non-wikiword'>McGee</span> and Abby</strong>: Of <em>course</em> it was. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NeverHaveIEver' title='/pmwiki/pmwiki.php/Series/NeverHaveIEver' data-format='U2VyaWVzL05ldmVySGF2ZUlFdmVy'>Never Have I Ever</a></em>: In the fourth season it's revealed multiple student couples have had sex inside the school. Some even do this very regularly. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheNewlywedGame' title='/pmwiki/pmwiki.php/Series/TheNewlywedGame' data-format='U2VyaWVzL1RoZU5ld2x5d2VkR2FtZQ=='>The Newlywed Game</a></em>: The iconic answer "That would be in the butt, Bob" as a confused response to "Where specifically is the weirdest place you have ever gotten the urge to make <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnusualEuphemism' title='/pmwiki/pmwiki.php/Main/UnusualEuphemism' data-format='W1tVbnVzdWFsRXVwaGVtaXNtIHdob29wZWVdXQ=='>whoopee</a>?" was thought to be an [[Uninstallment urban legend]] for years. Eventually <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MissingEpisode' title='/pmwiki/pmwiki.php/Main/MissingEpisode' data-format='W1tNaXNzaW5nRXBpc29kZSB0aGUgY2Vuc29yZWQgZm9vdGFnZV1d'>the censored footage</a> <a class='urllink' href='https://youtu.be/2naTw9y7zsE?feature=shared'>the censored clip<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> was found for a <em>Greatest Game Show Moment</em> clip show and the answer was "in the a[BLEEP]". (Her husband had predicted <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AutoErotica' title='/pmwiki/pmwiki.php/Main/AutoErotica' data-format='W1tBdXRvRXJvdGljYSAiaW4gdGhlIGNhciJdXQ=='>"in the car"</a>) Host Bob Eubanks tells the story to the Emmy foundation <a class='urllink' href='https://youtu.be/2naTw9y7zsE?feature=shared'>here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NoTomorrow' title='/pmwiki/pmwiki.php/Series/NoTomorrow' data-format='U2VyaWVzL05vVG9tb3Jyb3c='>No Tomorrow</a></em>: Deirdre and Hank start having sex in different places at work after they get involved there. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheOfficeUK' title='/pmwiki/pmwiki.php/Series/TheOfficeUK' data-format='U2VyaWVzL1RoZU9mZmljZVVL'>The Office (UK)</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheOfficeUKS2E3Party' title='/pmwiki/pmwiki.php/Recap/TheOfficeUKS2E3Party' data-format='W1tSZWNhcC9UaGVPZmZpY2VVS1MyRTNQYXJ0eSBQYXJ0eV1d'>Party</a>", Finch and Trudy hook up in the car park outside. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheOfficeUS' title='/pmwiki/pmwiki.php/Series/TheOfficeUS' data-format='U2VyaWVzL1RoZU9mZmljZVVT'>The Office (US)</a></em>, you'd be hard-pressed to find a Dunder Mifflin employee who DIDN'T do it at work at least once (with Dwight and Angela being especially fond of two-person "meetings"). <div class='indent'> <strong>Dwight</strong>: I've had intercourse in this office. As has Angela. As has Ryan. As has Kelly. As has Meredith. As has Phyllis. As has Darryl. As has Creed. As has Michael. And as has Holly.<br data-format="\\" /><strong>Kevin</strong>: As has Kevin!<br data-format="\\" /><strong>Angela</strong>: (In disbelief) With who?<br data-format="\\" /><strong>Kevin</strong>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoodleIncident' title='/pmwiki/pmwiki.php/Main/NoodleIncident' data-format='W1tOb29kbGVJbmNpZGVudCBTaGUgZ29lcyB0byBhbm90aGVyIHNjaG9vbC5dXQ=='>She goes to another school.</a> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OrangeIsTheNewBlack' title='/pmwiki/pmwiki.php/Series/OrangeIsTheNewBlack' data-format='U2VyaWVzL09yYW5nZUlzVGhlTmV3QmxhY2s='>Orange Is the New Black</a></em>: <ul ><li> Nicky and Morello get it on in the shower, and again in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Prison' title='/pmwiki/pmwiki.php/Main/Prison' data-format='e3twcmlzb259fQ=='>prison</a> chapel. Later, Morello gets married, and the guards agree to allow her to have sex with her new husband in the visitation room-just this once, and only because it's their wedding night, and (since federal prison has no conjugal visits) the last time they'll get to do it for a while. Officially, there is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoSexAllowed' title='/pmwiki/pmwiki.php/Main/NoSexAllowed' data-format='Tm9TZXhBbGxvd2Vk'>No Sex Allowed</a>, although plenty of inmates (not just Morello and Nicky) have it anyway. Indeed, Nicky and Big Boo actually have a contest to see who can screw the most women there! </li><li> Daya gets into a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretRelationship' title='/pmwiki/pmwiki.php/Main/SecretRelationship' data-format='U2VjcmV0UmVsYXRpb25zaGlw'>Secret Relationship</a> with a guard and becomes pregnant by him. When her attempt at abortion is thwarted by her mother, she faces a dilemma: she knows the baby will be taken from her after it's born, and she also knows that her boyfriend will lose his job and be convicted of rape<span class="notelabel" onclick="togglenote('note0o8x0');"><sup>note&nbsp;</sup></span><span id="note0o8x0" class="inlinefolder" isnote="true" onclick="togglenote('note0o8x0');" style="cursor:pointer;font-size:smaller;display:none;">Guards cannot legally have sex with inmates-this is statutory rape due to the power imbalance, whether or not both parties actually consented.</span> and sent to prison himself. So she conspires with her mother to make everyone think it's someone else's: she has sex with Pornstache in a broom closet, and arranges for them to get caught so he's blamed instead. </li><li> The prison chapel is hands down the most popular place for flings between the inmates. </li><li> In Season 4, the time machine in the laundry room seems to be the most popular destination. </li><li> Nicky starts having sex with her Season 7 girlfriend in the kitchen. <em>Slightly</em> justified as the girlfriend is detained by <span class='esc-seq' title='non-wikiword'>ICE</span> and they can only be together while cooking. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Pivoting' title='/pmwiki/pmwiki.php/Series/Pivoting' data-format='U2VyaWVzL3t7UGl2b3Rpbmd9fQ=='>Pivoting</a></em>: <ul ><li> Sarah hooks up with another woman at work in the store room. </li><li> Amy and Henry do it right on the desk in his office. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PortCharles' title='/pmwiki/pmwiki.php/Series/PortCharles' data-format='U2VyaWVzL1BvcnRDaGFybGVz'>Port Charles</a></em>: Two characters take a break from work to sneak up to the roof and have sex. Later, another character and her boyfriend have sex in a bathroom, but find themselves stranded without any clothes. When her friend teases her about this, the other woman states, "Listen to her. Dr. "I Did It On The Roof" is giving me the "holier-than-thou" routine." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PresumedInnocent2024' title='/pmwiki/pmwiki.php/Series/PresumedInnocent2024' data-format='U2VyaWVzL1ByZXN1bWVkSW5ub2NlbnQyMDI0'>Presumed Innocent (2024)</a></em>: <ul ><li> One of his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Flashback' title='/pmwiki/pmwiki.php/Main/Flashback' data-format='e3tmbGFzaGJhY2t9fXM='>flashbacks</a> shows Rusty had sex with Carolyn on his office floor. </li><li> Rusty and Barbara have sex in their closet after a long time without intimacy. Barbara says afterward that they never would have sex like that earlier in their marriage. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/RedDwarf' title='/pmwiki/pmwiki.php/Series/RedDwarf' data-format='U2VyaWVzL1JlZER3YXJm'>Red Dwarf</a></em>: At one point Lister claims to have had sex on a golf course, in a sand trap (see the linked Cracked article for why this is a bad idea). Rimmer's response included asking if Lister was a club member and if he raked the trap afterward. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ResidentAlien' title='/pmwiki/pmwiki.php/Series/ResidentAlien' data-format='U2VyaWVzL1Jlc2lkZW50QWxpZW4='>Resident Alien</a></em>: In Season 3 Harry starts having sex with his girlfriend all over the place, including the bathroom and up a tree. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheRepublicOfSarah' title='/pmwiki/pmwiki.php/Series/TheRepublicOfSarah' data-format='U2VyaWVzL1RoZVJlcHVibGljT2ZTYXJhaA=='>The Republic of Sarah</a></em>: <ul ><li> Alexis vandalizes her mailbox to make up a reason for filing a police report, then has sex with AJ (a cop) in her office. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Corinne and Danny hook up while stuck inside the town hall.</span> </li><li> It appears that Bella and Tyler end up having their first time on the floor. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheRookie' title='/pmwiki/pmwiki.php/Series/TheRookie' data-format='U2VyaWVzL1RoZVJvb2tpZQ=='>The Rookie</a></em>: Wesley has sex with Angela <em>inside the police station</em> (in a back room, but still), as a reward for letting off his client. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SchittsCreek' title='/pmwiki/pmwiki.php/Series/SchittsCreek' data-format='U2VyaWVzL1NjaGl0dHNDcmVlaw=='>Schitt's Creek</a></em>: Alexis and Ted decide to have sex in the newly renovated bathroom of Rose Apothecary, and they break the sink. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Scrubs' title='/pmwiki/pmwiki.php/Series/Scrubs' data-format='U2VyaWVzL3t7U2NydWJzfX0='>Scrubs</a></em>: In one episode, when Keith is moving in with Elliot, they have box sex, where they're having some form of coital activity with each other in different moving boxes. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SexLife' title='/pmwiki/pmwiki.php/Series/SexLife' data-format='U2VyaWVzL1NleExpZmU='>Sex/Life</a></em>: <ul ><li> Cooper has sex with Billie up against their kitchen table, as the first passionate encounter the couple has had in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexlessMarriage' title='/pmwiki/pmwiki.php/Main/SexlessMarriage' data-format='W1tTZXhsZXNzTWFycmlhZ2Ugd2hhdCYjMDM5O3MgY2xlYXJseSBzb21lIHRpbWVdXQ=='>what's clearly some time</a>. </li><li> This appeared to be Brad and Billie's thing while they were together. While they are seen doing it in bed, most of the sex they have that's shown is elsewhere. </li><li> Sasha goes to Kam's office and they have sex together there in Season 2. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SexSentMeToTheER' title='/pmwiki/pmwiki.php/Series/SexSentMeToTheER' data-format='U2VyaWVzL1NleFNlbnRNZVRvVGhlRVI='>Sex Sent Me to the E.R.</a></em>: The raison d'etre of the series. Someone always gets hurt in the process. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SingleDrunkFemale' title='/pmwiki/pmwiki.php/Series/SingleDrunkFemale' data-format='U2VyaWVzL1NpbmdsZURydW5rRmVtYWxl'>Single Drunk Female</a></em>: <ul ><li> Sam hooks up with Chloe, a woman who she met at a party, in the bathroom due to being very horny (this was less than five minutes after they were introduced as well). </li><li> Also it's revealed that Sam once hooked up with James in another bathroom, but neither remembers doing this at present since they were both drunk at the time. This was apparently something Sam did often, as the owner of the bar she did this in berates her, saying he's told her multiple times not to have sex in the bar's bathroom. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Siren2018' title='/pmwiki/pmwiki.php/Series/Siren2018' data-format='U2VyaWVzL1NpcmVuMjAxOA=='>Siren (2018)</a></em>: Calvin and Janine are shown at the end of having sex in the bathroom once. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekVoyager' title='/pmwiki/pmwiki.php/Series/StarTrekVoyager' data-format='U2VyaWVzL1N0YXJUcmVrVm95YWdlcg=='>Star Trek: Voyager</a></em>. In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekVoyagerS4E7ScientificMethod' title='/pmwiki/pmwiki.php/Recap/StarTrekVoyagerS4E7ScientificMethod' data-format='W1tSZWNhcC9TdGFyVHJla1ZveWFnZXJTNEU3U2NpZW50aWZpY01ldGhvZCBTY2llbnRpZmljIE1ldGhvZF1d'>Scientific Method</a>", <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OfficialCouple' title='/pmwiki/pmwiki.php/Main/OfficialCouple' data-format='W1tPZmZpY2lhbENvdXBsZSBUb20gUGFyaXMgYW5kIEImIzAzOTtFbGFubmEgVG9ycmVzXV0='>Tom Paris and B'Elanna Torres</a> make up for years of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' title='/pmwiki/pmwiki.php/Main/UnresolvedSexualTension' data-format='VW5yZXNvbHZlZFNleHVhbFRlbnNpb24='>Unresolved Sexual Tension</a> by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeOutKids' title='/pmwiki/pmwiki.php/Main/MakeOutKids' data-format='W1tNYWtlT3V0S2lkcyBtYWtpbmcgb3V0IGNvbnN0YW50bHldXQ=='>making out constantly</a>. First Tom teleports to a Jeffries tube where B'Elanna is working so they can make out, but later they get so impatient they start doing it on a console on the upper deck of Engineering. And we know from a <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekVoyagerS5E21SomeoneToWatchOverMe' title='/pmwiki/pmwiki.php/Recap/StarTrekVoyagerS5E21SomeoneToWatchOverMe' data-format='W1tSZWNhcC9TdGFyVHJla1ZveWFnZXJTNUUyMVNvbWVvbmVUb1dhdGNoT3Zlck1lIGxhdGVyIGVwaXNvZGVdXQ=='>later episode</a> that they are both <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheImmodestOrgasm' title='/pmwiki/pmwiki.php/Main/TheImmodestOrgasm' data-format='W1tUaGVJbW1vZGVzdE9yZ2FzbSBxdWl0ZSBub2lzeSBkdXJpbmcgdGhlc2UgdGltZXNdXQ=='>quite noisy during these times</a>. Eventually, they're hauled on the carpet before Captain Janeway because half the ship is gossiping about their antics. It's later revealed that some of this intensity was caused by <span class="spoiler" title="you can set spoilers visible by default on your profile" >aliens conducting scientific experiments on the crew</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StrikeBack' title='/pmwiki/pmwiki.php/Series/StrikeBack' data-format='U2VyaWVzL1N0cmlrZUJhY2s='>Strike Back</a></em>: <ul ><li> In <em>Project Dawn</em>: <ul ><li> Scott and Neve have sex enthusiastically outside. </li><li> Scott also later also hooks up with Maggie while she's lying back on the table, although it's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexyDiscretionShot' title='/pmwiki/pmwiki.php/Main/SexyDiscretionShot' data-format='W1tTZXh5RGlzY3JldGlvblNob3Qgbm90IGV4cGxpY2l0bHkgc2hvd25dXQ=='>not explicitly shown</a>. </li><li> Scott has sex with Marianna the second time as she's sitting on a desk in front of him. </li></ul></li><li> In <em>Vengeance</em>, Scott has sex with Christy Bryant as she sits on a desk. </li><li> In <em>Legacy</em> Scott and Nina have sex on a couch when they meet again. </li><li> In <em>Retribution</em>: <ul ><li> <span class='esc-seq' title='non-wikiword'>McAllister</span> and Rosa have sex up against a desk. </li><li> Johannes Krieger and a woman have sex up against his glass table. </li></ul></li><li> In <em>Vendetta</em> Wyatt screws a stripper while in the strip club control room. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheSummerITurnedPretty' title='/pmwiki/pmwiki.php/Series/TheSummerITurnedPretty' data-format='U2VyaWVzL1RoZVN1bW1lcklUdXJuZWRQcmV0dHk='>The Summer I Turned Pretty</a></em>: Steven has sex with Shayla on the beach (though offscreen). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Supernatural' title='/pmwiki/pmwiki.php/Series/Supernatural' data-format='U2VyaWVzL3t7U3VwZXJuYXR1cmFsfX0='>Supernatural</a></em>: While Sam was suffering from amnesia, the brothers visit a town that Sam passed through during the period of time he can't remember. He occasionally has flashbacks of things he'd done in the town, including nailing a married woman in a public bathroom. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Sweetpea' title='/pmwiki/pmwiki.php/Series/Sweetpea' data-format='U2VyaWVzL3t7U3dlZXRwZWF9fQ=='>Sweetpea</a></em>: Rhiannon has sex with Craig at his workplace as he's sitting on a chair in his office. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TalesFromTheCrypt' title='/pmwiki/pmwiki.php/Series/TalesFromTheCrypt' data-format='U2VyaWVzL1RhbGVzRnJvbVRoZUNyeXB0'>Tales from the Crypt</a></em>: In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TalesFromTheCryptS2E4TilDeath' title='/pmwiki/pmwiki.php/Recap/TalesFromTheCryptS2E4TilDeath' data-format='W1tSZWNhcC9UYWxlc0Zyb21UaGVDcnlwdFMyRTRUaWxEZWF0aCAmIzAzOTtUaWwgRGVhdGhdXQ=='>'Til Death</a>", Logan and the freshly resurrected Maggie have sex on top of her grave. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/That70sShow' title='/pmwiki/pmwiki.php/Series/That70sShow' data-format='U2VyaWVzL1RoYXQ3MHNTaG93'>That '70s Show</a></em>: In the episode "Misty Mountain Hop", Donna and Eric have sex on the Formans' kitchen table but get caught by Eric's parents and the rest of the gang. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TidelandsNetflix' title='/pmwiki/pmwiki.php/Series/TidelandsNetflix' data-format='U2VyaWVzL1RpZGVsYW5kc05ldGZsaXg='>Tidelands (Netflix)</a></em>: Cal and Dylan sleep together while in the grass near the beach. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TroyFallOfACity' title='/pmwiki/pmwiki.php/Series/TroyFallOfACity' data-format='U2VyaWVzL1Ryb3lGYWxsT2ZBQ2l0eQ=='>Troy: Fall of a City</a></em>: <ul ><li> Paris and his lover have sex in a field. </li><li> Achilles and Patrocles have sex with Briseis on the beach, plus each other. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TrueBlood' title='/pmwiki/pmwiki.php/Series/TrueBlood' data-format='U2VyaWVzL1RydWVCbG9vZA=='>True Blood</a></em>: Sex on a pool table is seen in the opening credits. The series also features people (like Sooki and Bill) doing it outside on the ground (later also with Eric). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ATouchOfCloth' title='/pmwiki/pmwiki.php/Series/ATouchOfCloth' data-format='U2VyaWVzL0FUb3VjaE9mQ2xvdGg='>A Touch of Cloth</a></em>: Spoofed when a woman recalls the steamy sex she had with her lover at a jury meeting &#8212; right there on the desk in front of everyone. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Vida' title='/pmwiki/pmwiki.php/Series/Vida' data-format='U2VyaWVzL3t7VmlkYX19'>Vida</a></em>: <ul ><li> Johnny and Lyn have sex on the stairs behind a building (which can't be too comfortable). She later also has sex with him in his workplace. </li><li> Emma and Nico have sex in the bar's bathroom (they lock it at least). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/WeAreWhoWeAre' title='/pmwiki/pmwiki.php/Series/WeAreWhoWeAre' data-format='U2VyaWVzL1dlQXJlV2hvV2VBcmU='>We Are Who We Are</a></em>: Jenny and Maggie are seen just prior to, then after, having sex on the floor of an empty apartment. Jenny later also has sex with Richard on the floor of their garage. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheWhiteLotus' title='/pmwiki/pmwiki.php/Series/TheWhiteLotus' data-format='U2VyaWVzL1RoZVdoaXRlTG90dXM='>The White Lotus</a></em>: When Mia offers to have sex with Giuseppe <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleepingTheirWayToTheTop' title='/pmwiki/pmwiki.php/Main/SleepingTheirWayToTheTop' data-format='W1tTbGVlcGluZ1RoZWlyV2F5VG9UaGVUb3AgaW4gcmV0dXJuIGZvciBoaW0gY29ubmVjdGluZyBoZXIgdG8gcGVvcGxlIGZyb20gdGhlIG11c2ljIGluZHVzdHJ5XV0='>in return for him connecting her to people from the music industry</a>, he leads her to a deconsecrated chapel in the hotel to do so, with the two then getting to business on a pew. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Yellowjackets' title='/pmwiki/pmwiki.php/Series/Yellowjackets' data-format='U2VyaWVzL3t7WWVsbG93amFja2V0c319'>Yellowjackets</a></em>: <ul ><li> Taissa and Van have sex in the woods together. </li><li> Jeff and Shauna go to Adam's studio and find it full of portraits of her in various mediums and styles. They proceed to have sex with their clothes still on. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/You2018' title='/pmwiki/pmwiki.php/Series/You2018' data-format='U2VyaWVzL1lvdTIwMTg='>You (2018)</a></em>: There's a fair number of sex scenes outside beds: on the grass, in a kitchen, up <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WallBangHer' title='/pmwiki/pmwiki.php/Main/WallBangHer' data-format='W1tXYWxsQmFuZ0hlciBhZ2FpbnN0IGEgd2FsbF1d'>against a wall</a> etc. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/YouMeHer' title='/pmwiki/pmwiki.php/Series/YouMeHer' data-format='U2VyaWVzL1lvdU1lSGVy'>You Me Her</a></em>: <ul ><li> Izzy gives Emma a foot job under the table at a restaurant the first time they meet. </li><li> Jack goes down on Emma in their kitchen to spice up their marriage. Next time, they have sex on the kitchen floor after this. </li><li> Emma gives Jack a foot job while they're out in a restaurant just as Izzy did with her. </li><li> Izzy and Emma have sex for their first time on the roof of a building. This was revealed to also be a spot Emma and Jack used. He's a little miffed that they used the same one. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Emma, Jack and Izzy get back together after making out in the Amaris' bathroom. It makes the Amaris believe they're having sex inside.</span> </li><li> Nina and Shaun have sex on the table in his bar. Izzy notes later they've set up the bar to have spontaneous sex in other places there too. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/YTheLastMan2021' title='/pmwiki/pmwiki.php/Series/YTheLastMan2021' data-format='U2VyaWVzL1lUaGVMYXN0TWFuMjAyMQ=='>Y: The Last Man (2021)</a></em>: Hero and Mike are both <span class='esc-seq' title='non-wikiword'>EMTs</span> partnered together, while they're also in a relationship. They have sex (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexyDiscretionShot' title='/pmwiki/pmwiki.php/Main/SexyDiscretionShot' data-format='W1tTZXh5RGlzY3JldGlvblNob3Qgb2Zmc2NyZWVuXV0='>offscreen</a>) on the gurney in the back of the ambulance. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Magazines&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Magazine/MAD' title='/pmwiki/pmwiki.php/Magazine/MAD' data-format='TWFnYXppbmUve3tNQUR9fQ=='>MAD</a></em> parodies <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BonnieAndClyde' title='/pmwiki/pmwiki.php/Film/BonnieAndClyde' data-format='RmlsbS9Cb25uaWVBbmRDbHlkZQ=='>Bonnie and Clyde</a></em> ("Balmy and Clod"), where she repeatedly tries to insist on doing this trope in extremely inconvenient locations (like a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CarChase' title='/pmwiki/pmwiki.php/Main/CarChase' data-format='Q2FyQ2hhc2U='>Car Chase</a>), which he, of course, refuses to do, only to culminate in what he calls the worst place of all, which turns out to be a bed. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItMakesSenseInContext' title='/pmwiki/pmwiki.php/Main/ItMakesSenseInContext' data-format='W1tJdE1ha2VzU2Vuc2VJbkNvbnRleHQgSXQga2luZCBvZiBtYWtlcyBzZW5zZSBpZiB5b3UmIzAzOTt2ZSBzZWVuIHRoZSBtb3ZpZS5dXQ=='>It kind of makes sense if you've seen the movie.</a> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> "Anywhere" by 112. The verses aren't really that indicative, but it's the chorus that outright mentions all the places. </li><li> The song "The Bagman's Gambit" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TheDecemberists' title='/pmwiki/pmwiki.php/Music/TheDecemberists' data-format='TXVzaWMvVGhlRGVjZW1iZXJpc3Rz'>The Decemberists</a>, about a man who falls in love with a con artist. The lyrics don't specify whether the singer's paramour is male or female. It would be somewhat easier for them to meet in a bathroom stall if they were of the same sex. <div class='indent'><em>And I recall that fall / I was working for the government / and in a bathroom stall off the National Mall / how we kissed so sweetly / how could I refuse a favor or two?</em> </div></li><li> Billy Joe Royal's song "Cherry Hill Park" is about a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SeeminglyWholesome50sGirl' title='/pmwiki/pmwiki.php/Main/SeeminglyWholesome50sGirl' data-format='U2VlbWluZ2x5V2hvbGVzb21lNTBzR2lybA=='>Seemingly-Wholesome '50s Girl</a> who provides all the boys with "a thrill after dark" in the titular locale. </li><li> After having been caught engaging in "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/GayCruising' title='/pmwiki/pmwiki.php/Main/GayCruising' data-format='W1tHYXlDcnVpc2luZyBjb3R0YWdpbmddXQ=='>cottaging</a>" (meeting up with gay men for sex in public bathrooms), <a class='twikilink' href='/pmwiki/pmwiki.php/Music/GeorgeMichael' title='/pmwiki/pmwiki.php/Music/GeorgeMichael' data-format='TXVzaWMvR2VvcmdlTWljaGFlbA=='>George Michael</a> used this..."experience" as inspiration for his song "Outside", which is quite the lampshade on the trope as a whole. (The music video has a slew of examples on its own.) <div class='indent'><em>I think I'm done with the sofa<br data-format="\\" />I think I'm done with the hall<br data-format="\\" />I think I'm done with the kitchen table, baby</em> </div></li><li> "Hey Bobby" by K.T. Oslin: <div class='indent'><em>"Hey Bobby will you ride a little ways down 299<br data-format="\\" />To lovely little spot on I found? It's on a hilltop<br data-format="\\" />We can <a class='urllink' href='http://www.urbandictionary.com/define.php?term=park&amp;defid=5295800'>park<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> in the shade and <a class='urllink' href='http://www.onlineslangdictionary.com/meaning-definition-of/dance'>dance<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> on the ground<br data-format="\\" />To a radio station where the hits don't ever stop"</em> </div></li><li> Briefly mentioned in Digital Underground's "The Humpty Dance" - "I once got busy in a Burger King bathroom". </li><li> "Sex in Crazy Places" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/GucciMane' title='/pmwiki/pmwiki.php/Music/GucciMane' data-format='TXVzaWMvR3VjY2lNYW5l'>Gucci Mane</a>, featuring <a class='twikilink' href='/pmwiki/pmwiki.php/Music/NickiMinaj' title='/pmwiki/pmwiki.php/Music/NickiMinaj' data-format='TXVzaWMvTmlja2lNaW5hag=='>Nicki Minaj</a>, Bobby V, and Trina. They rap about making love on an airplane, a <a class='twikilink' href='/pmwiki/pmwiki.php/Ride/SixFlags' title='/pmwiki/pmwiki.php/Ride/SixFlags' data-format='UmlkZS9TaXhGbGFncw=='>Six Flags</a> roller coaster, and <a class='twikilink' href='/pmwiki/pmwiki.php/Ride/DisneyThemeParks' title='/pmwiki/pmwiki.php/Ride/DisneyThemeParks' data-format='W1tSaWRlL0Rpc25leVRoZW1lUGFya3MgRGlzbmV5JiMwMzk7cyBNYWdpYyBLaW5nZG9tXV0='>Disney's Magic Kingdom</a>, among other places. </li><li> Jake Thackray had a song called "Isobel Makes Love Upon National Monuments". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JonathanCoulton' title='/pmwiki/pmwiki.php/Music/JonathanCoulton' data-format='TXVzaWMvSm9uYXRoYW5Db3VsdG9u'>Jonathan Coulton</a>'s love anthem "First Of May" is all about sex in the park. <div class='indent'><em>Ooh ooh child, I'll bring a blanket and I promise I will brush the ants off.</em><br data-format="\\" /><em>Ooh ooh child, you're gonna like it when we're taking each other's pants off,</em> </div></li><li> "<a class='urllink' href='https://www.youtube.com/watch?v=dXH5QLs_FPM'>Just Another Lover Tonight<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>" by Cheryl Ladd: <div class='indent'><em>"So you want him<br data-format="\\" />And you <a class='urllink' href='http://www.urbandictionary.com/define.php?term=dogging'>dog him<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><br data-format="\\" />That's no problem<br data-format="\\" />He's just another lover<br data-format="\\" />You can do him<br data-format="\\" />You can use him<br data-format="\\" />Till you lose him"</em> </div></li><li> Mentioned in <a class='twikilink' href='/pmwiki/pmwiki.php/Music/KatyPerry' title='/pmwiki/pmwiki.php/Music/KatyPerry' data-format='TXVzaWMvS2F0eVBlcnJ5'>Katy Perry</a>'s song "California Gurls", with a (probably) unintentional <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LastSecondWordSwap' title='/pmwiki/pmwiki.php/Main/LastSecondWordSwap' data-format='TGFzdFNlY29uZFdvcmRTd2Fw'>Last-Second Word Swap</a>: "Sex on the beach/We don't mind sand in our stilettos". </li><li> In "Nothing Like The First Time" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/LadyAntebellum' title='/pmwiki/pmwiki.php/Music/LadyAntebellum' data-format='TXVzaWMvTGFkeUFudGViZWxsdW0='>Lady Antebellum</a>, the main protagonists had <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SexAsRiteOfPassage' title='/pmwiki/pmwiki.php/Main/SexAsRiteOfPassage' data-format='W1tTZXhBc1JpdGVPZlBhc3NhZ2UgdGhlaXIgZmlyc3QgdGltZV1d'>their first time</a> underneath the bleachers. </li><li> One of the shared pleasures cited in the "Pina Colada" song is making love at midnight in the dunes on the Cape. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Poe' title='/pmwiki/pmwiki.php/Music/Poe' data-format='TXVzaWMve3tQb2V9fQ=='>Poe</a> in "Not A Virgin" sings about having sex in a variety of places, including "underneath the table in [her] living room." </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DoubleEntendre' title='/pmwiki/pmwiki.php/Main/DoubleEntendre' data-format='W1tEb3VibGVFbnRlbmRyZSBJbXBsaWVkXV0='>Implied</a> in the Little Big Town song "Pontoon": <div class='indent'><em>"Party in slow motion<br data-format="\\" />Out here in the open<br data-format="\\" />Mmmmmm... Motorboatin'"</em> </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/SarahSilverman' title='/pmwiki/pmwiki.php/Creator/SarahSilverman' data-format='Q3JlYXRvci9TYXJhaFNpbHZlcm1hbg=='>Sarah Silverman</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MattDamon' title='/pmwiki/pmwiki.php/Creator/MattDamon' data-format='Q3JlYXRvci9NYXR0RGFtb24='>Matt Damon</a>. On the bed, on the floor, on the towel, by the door, in the tub, in a car, up against the minibar... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/Warrant' title='/pmwiki/pmwiki.php/Music/Warrant' data-format='TXVzaWMve3tXYXJyYW50fX0='>Warrant</a></em>: There's implied kitchen sex in "Cherry Pie". </li><li> The subject of the rap song "What's Your Fantasy?" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Ludacris' title='/pmwiki/pmwiki.php/Music/Ludacris' data-format='TXVzaWMve3tMdWRhY3Jpc319'>Ludacris</a>. The 50-yard line of a football stadium is <em>just for starters</em>. The club, all over the house, on a boat, in the ocean, and even all the way to <strong>The White House</strong>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TheBeatles' title='/pmwiki/pmwiki.php/Music/TheBeatles' data-format='TXVzaWMvVGhlQmVhdGxlcw=='>The Beatles</a>' song "Why Don't We Do It In The Road?" </li><li> Robert Knight's "Love on a Mountain Top". <div class='indent'>Love on a mountain top (love on a mountain top)<br data-format="\\" />So high that we won't ever stop (high that we won't ever stop.)<br data-format="\\" />Making love on a mountain (do do do do do stop.)<br data-format="\\" />Drinking love from a fountain (do do do do do) </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/AshleeSimpson' title='/pmwiki/pmwiki.php/Music/AshleeSimpson' data-format='TXVzaWMvQXNobGVlU2ltcHNvbg=='>Ashlee Simpson</a>'s "La La" is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IntercourseWithYou' title='/pmwiki/pmwiki.php/Main/IntercourseWithYou' data-format='SW50ZXJjb3Vyc2VXaXRoWW91'>Intercourse with You</a> mentions sex on the kitchen, the floor, an airplane and the back of a bus. </li><li> Exaggerated with the cover art for the 2016 single "Water" by the rapper Ugly God who is seen making underwater love to Jessie from <a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PokemonTheSeries' title='/pmwiki/pmwiki.php/Anime/PokemonTheSeries' data-format='QW5pbWUvUG9rZW1vblRoZVNlcmllcw=='>Pokémon the Series</a> on the back of a Mega Blastoise, of all things. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Sparks' title='/pmwiki/pmwiki.php/Music/Sparks' data-format='TXVzaWMve3tTcGFya3N9fQ=='>Sparks</a>: In "All You Ever Think About Is Sex", the narrator states that "we've had our little fun" in a variety of inappropriate locations, including a Christmastime church service, in a museum exhibit, on the White House lawn, and at a baseball game. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Poetry&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertBurns' title='/pmwiki/pmwiki.php/Creator/RobertBurns' data-format='Q3JlYXRvci9Sb2JlcnRCdXJucw=='>Robert Burns</a>' poem, "Rigs O'Barley" is about a narrator having sex with a girl in a barley field. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Professional Wrestling&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/EdgeWrestler' title='/pmwiki/pmwiki.php/Wrestling/EdgeWrestler' data-format='V3Jlc3RsaW5nL3t7RWRnZXxXcmVzdGxlcn19'>Edge</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Lita' title='/pmwiki/pmwiki.php/Wrestling/Lita' data-format='V3Jlc3RsaW5nL3t7TGl0YX19'>Lita</a>'s "live sex celebration" did happen in a bed...in the middle of the ring, with the entire audience watching. This being WWE, it was interrupted by Ric Flair. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Roleplay&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/OrderlyChaos' title='/pmwiki/pmwiki.php/Roleplay/OrderlyChaos' data-format='Um9sZXBsYXkvT3JkZXJseUNoYW9z'>Orderly Chaos</a></em>: Geier supposedly has a thing for sex on rooftops. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Theatre&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> The 2009 production of Bizet's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Carmen' title='/pmwiki/pmwiki.php/Theatre/Carmen' data-format='VGhlYXRyZS97e0Nhcm1lbn19'>Carmen</a></em> at the Metropolitan Opera, with French tenor Roberto Alagna as Don José and Latvian mezzo-soprano Elina Garanca as Carmen, has this at the end of Act I. Following Carmen's already seductive Seguidilla that distracted Don José from writing out the arrest forms, both Don José and Carmen give into sexual tension as they make out upon a desk in the prison, and it's highly implied that they had sex as the lights fade out. See for yourself <a class='urllink' href='https://www.youtube.com/watch?v=sHjnVz7Ayyw'>here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> At the close of <em>In the Next Room, or the Vibrator Play</em>, Dr. Givings and Catherine disrobe and do it on the street in the snow. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Video Games&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ANNOMutationem' title='/pmwiki/pmwiki.php/VideoGame/ANNOMutationem' data-format='VmlkZW9HYW1lL0FOTk9NdXRhdGlvbmVt'>ANNO: Mutationem</a></em>: At <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NeonCity' title='/pmwiki/pmwiki.php/Main/NeonCity' data-format='W1tOZW9uQ2l0eSBOb2N0aXMgQ2l0eV1d'>Noctis City</a>, itself being described as a "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/Vicecity' title='/pmwiki/pmwiki.php/Main/Vicecity' data-format='e3t2aWNlfGNpdHl9fQ=='>vice</a>" town, there are two <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonPlayerCharacter' title='/pmwiki/pmwiki.php/Main/NonPlayerCharacter' data-format='W1tOb25QbGF5ZXJDaGFyYWN0ZXIgTlBDc11d'>NPCs</a> in an alleyway making out while on the top of several cardboard boxes as residents unknowingly walk by them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DragonAgeInquisition' title='/pmwiki/pmwiki.php/VideoGame/DragonAgeInquisition' data-format='VmlkZW9HYW1lL0RyYWdvbkFnZUlucXVpc2l0aW9u'>Dragon Age: Inquisition</a></em>: <ul ><li> If the male Inquisitor romances Cassandra, the romance is consummated in a grove just outside of the Inquisition's home base of Skyhold. It happens immediately after their first kiss. </li><li> If the player <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RomanceSidequest' title='/pmwiki/pmwiki.php/Main/RomanceSidequest' data-format='W1tSb21hbmNlU2lkZXF1ZXN0IGVudGVycyBhIHJlbGF0aW9uc2hpcF1d'>enters a relationship</a> with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HugeGuyTinyGirl' title='/pmwiki/pmwiki.php/Main/HugeGuyTinyGirl' data-format='W1tIdWdlR3V5VGlueUdpcmwgVGhlIElyb24gQnVsbF1d'>The Iron Bull</a>, fellow party member <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpath' title='/pmwiki/pmwiki.php/Main/TheEmpath' data-format='W1tUaGVFbXBhdGggQ29sZV1d'>Cole</a> will start <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyMindReading' title='/pmwiki/pmwiki.php/Main/DirtyMindReading' data-format='W1tEaXJ0eU1pbmRSZWFkaW5nIGdpdmluZyB0aGUgcmVzdCBvZiB0aGUgcGFydHkgZGV0YWlsc11d'>giving the rest of the party details</a> about the Inquisitor and Bull's bedroom activities. If the Inquisitor opts to say that s/he and Bull are consenting adults <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SafeSaneAndConsensual' title='/pmwiki/pmwiki.php/Main/SafeSaneAndConsensual' data-format='W1tTYWZlU2FuZUFuZENvbnNlbnN1YWwgd2hvIGNhbiBkbyB3aGF0IHRoZXkgd2FudCBpbiBiZWRdXQ=='>who can do what they want in bed</a>, Cole's tendency to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralMinded' title='/pmwiki/pmwiki.php/Main/LiteralMinded' data-format='TGl0ZXJhbE1pbmRlZA=='>Literal-Minded</a> leads him to announce that the Inquisitor and Bull have also been having sex <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WallBangHer' title='/pmwiki/pmwiki.php/Main/WallBangHer' data-format='W1tXYWxsQmFuZ0hlciB1cCBhZ2FpbnN0IHRoZSB3YWxsXV0='>up against the wall</a> and once on the war table, to the amusement or discomfort of the fourth party member. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DuelSaviorDestiny' title='/pmwiki/pmwiki.php/VideoGame/DuelSaviorDestiny' data-format='VmlkZW9HYW1lL0R1ZWxTYXZpb3JEZXN0aW55'>Duel Savior Destiny</a></em>: Though it fades to black before we see anything, the actual majority of the sex scenes take place like this. The most glaring has to be one that takes place <em>mid-battle</em> between Rico and Taiga, though to be fair it's both in a pocket dimension and because if they don't they'll be killed. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Or at least, Taiga will be. Rico is almost unkillable.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Fallout4' title='/pmwiki/pmwiki.php/VideoGame/Fallout4' data-format='VmlkZW9HYW1lL0ZhbGxvdXQ0'>Fallout 4</a></em>: At the beginning, you can talk to your spouse, who will ask if you want to go to the park together. Cue this dialogue: <div class='indent'><strong>Spouse:</strong> Hey, I was wondering if we should go to the park together. Could be fun.<br data-format="\\" /><em>[Player picks <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SarcasmMode' title='/pmwiki/pmwiki.php/Main/SarcasmMode' data-format='W1tTYXJjYXNtTW9kZSBTYXJjYXN0aWNdXQ=='>Sarcastic</a> option]</em><br data-format="\\" /><strong>Male Protagonist:</strong> Will it be like our first time at the park together?<br data-format="\\" /><strong>Female Protagonist:</strong> Yes, to the park, with <em>you</em>. Because I want to get pregnant again. </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/IWasATeenageExocolonist' title='/pmwiki/pmwiki.php/VideoGame/IWasATeenageExocolonist' data-format='VmlkZW9HYW1lL0lXYXNBVGVlbmFnZUV4b2NvbG9uaXN0'>I Was a Teenage Exocolonist</a></em>: <ul ><li> One of the nighttime guard duty events has Sol catch <span class="spoiler" title="you can set spoilers visible by default on your profile" >Anemone and Vace sneaking out to have sex in the commons when Anemone was supposed to be on-duty</span>. Sol can be aroused, disgusted, or &#8212; if they had feelings for any of the characters involved &#8212; heartbroken. </li><li> If Sol's relationship with Tang is high enough, they can offer to have sex with her on the roof of the Engineering building, even while it's cold out during Quiet Season. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MassEffect' title='/pmwiki/pmwiki.php/Franchise/MassEffect' data-format='RnJhbmNoaXNlL01hc3NFZmZlY3Q='>Mass Effect</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MassEffect2' title='/pmwiki/pmwiki.php/VideoGame/MassEffect2' data-format='VmlkZW9HYW1lL01hc3NFZmZlY3Qy'>Mass Effect 2</a></em>: <ul ><li> Shepard and Miranda have sex in the <em>Normandy's</em> engine room. The reasoning behind it is that this is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CovertPervert' title='/pmwiki/pmwiki.php/Main/CovertPervert' data-format='W1tDb3ZlcnRQZXJ2ZXJ0IHRvIGF2b2lkIHRoZSBJbGx1c2l2ZSBNYW4mIzAzOTtzIG1vbml0b3JpbmcgZGV2aWNlc11d'>to avoid the Illusive Man's monitoring devices</a>... But the fandom likes to say that it's because she's an exhibitionist. Or it could be because Miranda's two potential romantic rivals (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReallyGetsAround' title='/pmwiki/pmwiki.php/Main/ReallyGetsAround' data-format='W1tSZWFsbHlHZXRzQXJvdW5kIEtlbGx5IGRvZXNuJiMwMzk7dCBjb3VudF1d'>Kelly doesn't count</a>) are both stationed on the engineering deck. She's kind of like that. </li><li> If you have the Kasumi DLC, at least she notices. "Really, Shepard, in the engine room? Right where Tali works?" </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MassEffectAndromeda' title='/pmwiki/pmwiki.php/VideoGame/MassEffectAndromeda' data-format='VmlkZW9HYW1lL01hc3NFZmZlY3RBbmRyb21lZGE='>Mass Effect: Andromeda</a></em>: <ul ><li> Peebee's optional sexual encounter takes place in one of the <em>Tempest's</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EscapePod' title='/pmwiki/pmwiki.php/Main/EscapePod' data-format='e3tlc2NhcGUgcG9kfX1z'>escape pods</a>, in zero-g. Partially <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Justifiedtrope' title='/pmwiki/pmwiki.php/Main/Justifiedtrope' data-format='e3tqdXN0aWZpZWR8dHJvcGV9fQ=='>justified</a> in that she <em>lives</em> in said escape pod. </li><li> Suvi and Sara's romance scene has them doing it inside the Nexus science lab. Probably not the kind of biological research (ahem) the builders intended it for. </li></ul></li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/NeverwinterNights' title='/pmwiki/pmwiki.php/VideoGame/NeverwinterNights' data-format='VmlkZW9HYW1lL05ldmVyd2ludGVyTmlnaHRz'>Neverwinter Nights</a></em>: <ul ><li> In the mod <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheBastardOfKosigan' title='/pmwiki/pmwiki.php/VideoGame/TheBastardOfKosigan' data-format='VmlkZW9HYW1lL1RoZUJhc3RhcmRPZktvc2lnYW4='>The Bastard of Kosigan</a></em>, precisely one sex scene involves a bed. Most of the rest involve tables, walls, and on one occasion a tree. </li><li> Likewise with <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ADanceWithRogues' title='/pmwiki/pmwiki.php/VideoGame/ADanceWithRogues' data-format='VmlkZW9HYW1lL0FEYW5jZVdpdGhSb2d1ZXM='>A Dance with Rogues</a></em>, though in this case there are rather more and the floor is used more frequently. Especially where Vico is involved, at least if <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='W1tQbGF5ZXJDaGFyYWN0ZXIgdGhlIFByaW5jZXNzXV0='>the Princess</a> responds to his advances when he suddenly has an urge <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooDumbToLive' title='/pmwiki/pmwiki.php/Main/TooDumbToLive' data-format='W1tUb29EdW1iVG9MaXZlIGluIHRoZSBtaWRkbGUgb2YgYSBncmF2ZXlhcmQgaW4gdGhlIFVuZGVyZGFya11d'>in the middle of a graveyard in the Underdark</a>. Also works the other way; most possible <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveInterests' title='/pmwiki/pmwiki.php/Main/LoveInterests' data-format='TG92ZUludGVyZXN0cw=='>Love Interests</a> will only have sex with the Princess in bed (or sleeping bags) at night when everyone else is asleep, but the Princess can ask Vico for sex anywhere at any time (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooMuchInformation' title='/pmwiki/pmwiki.php/Main/TooMuchInformation' data-format='W1tUb29NdWNoSW5mb3JtYXRpb24gdG8gdGhlIGRpc2d1c3Qgb2YgdGhlIHJlc3Qgb2YgdGhlIHBhcnR5XV0='>to the disgust of the rest of the party</a>). </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Parodied' title='/pmwiki/pmwiki.php/Main/Parodied' data-format='e3tQYXJvZGllZH19'>Parodied</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PathfinderWrathOfTheRighteous' title='/pmwiki/pmwiki.php/VideoGame/PathfinderWrathOfTheRighteous' data-format='VmlkZW9HYW1lL1BhdGhmaW5kZXJXcmF0aE9mVGhlUmlnaHRlb3Vz'>Pathfinder: Wrath of the Righteous</a></em>. If Daeran and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='W1tQbGF5ZXJDaGFyYWN0ZXIgdGhlIENvbW1hbmRlcl1d'>the Commander</a> are in a romance and he's in the party when the player explores the Wintersun area, there's an interaction where he suggests they fulfill one of his fantasies by making love under a waterfall. The PC has the option to shove him into the pool as a prank (the romance pretty much runs on <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SnarkToSnarkCombat' title='/pmwiki/pmwiki.php/Main/SnarkToSnarkCombat' data-format='U25hcmtUb1NuYXJrQ29tYmF0'>Snark-to-Snark Combat</a>), whereupon he emerges dripping wet and complaining that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConversationalTroping' title='/pmwiki/pmwiki.php/Main/ConversationalTroping' data-format='W1tDb252ZXJzYXRpb25hbFRyb3BpbmcgdGhvc2Ugcm9tYW5jZSBub3ZlbCBhdXRob3JzIHNob3VsZCBiZSBmbG9nZ2VkXV0='>those romance novel authors should be flogged</a> because that water was <em>way</em> colder than he expected. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSims' title='/pmwiki/pmwiki.php/VideoGame/TheSims' data-format='VmlkZW9HYW1lL1RoZVNpbXM='>The Sims</a></em>: <ul ><li> Sims in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSims2' title='/pmwiki/pmwiki.php/VideoGame/TheSims2' data-format='VmlkZW9HYW1lL1RoZVNpbXMy'>The Sims 2</a></em> can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnusualEuphemism' title='/pmwiki/pmwiki.php/Main/UnusualEuphemism' data-format='W1tVbnVzdWFsRXVwaGVtaXNtIHdvb2hvb11d'>woohoo</a> in changing booths, inevitably attracting an audience (which can even include the couple's parents, siblings, children, etc. if they happen to be on the lot with them- talk about awkward!). They can also do the deed in hot tubs, including those placed on community lots (one premade example, included with the University expansion pack, is a tower whose sole furnishing is a hot tub on the top floor. On a college campus. Yeah, pretty obvious what the creators' were thinking when they designed it!). The various expansion packs added even MORE venues for Sims to get busy in public, including photo booths, saunas, tents, and elevators. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSims3' title='/pmwiki/pmwiki.php/VideoGame/TheSims3' data-format='VmlkZW9HYW1lL1RoZVNpbXMz'>The Sims 3</a></em> they can do it in various buildings around town, as well as a sarcophagus in <em>World Adventures</em>, a time machine in <em>Ambitions</em>, treehouses in <em>Generations</em>, the haystacks in <em>Pets</em>, and a magician's box of mystery in <em>Showtime</em>. It seems that a new expansion pack just isn't complete without a new place for Sims to woohoo. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSims4' title='/pmwiki/pmwiki.php/VideoGame/TheSims4' data-format='VmlkZW9HYW1lL1RoZVNpbXM0'>The Sims 4</a></em>, Sims can woohoo in spots such as the Brindleton Bay lighthouse, Mua Pel'am's waterfall, a pile of leaves, a coffin, a money vault, an ice cave, and a <em>rocket ship</em>, which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SomethingElseAlsoRises' title='/pmwiki/pmwiki.php/Main/SomethingElseAlsoRises' data-format='W1tTb21ldGhpbmdFbHNlQWxzb1Jpc2VzIHRha2VzIG9mZiBpbnRvIHRoZSBza3ldXQ=='>takes off into the sky</a> during the act. Woohooing on a community lot will draw the attention of other Sims. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder14');">&nbsp;&nbsp;&nbsp;&nbsp;Visual Novels&nbsp;</div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/BeingADIK' title='/pmwiki/pmwiki.php/VisualNovel/BeingADIK' data-format='VmlzdWFsTm92ZWwvQmVpbmdBRElL'>Being A ΔΙΚ</a></em>: The MC can have sex with several characters in unconventional places, fitting its sex comedy vibe: <ul ><li> Josy can be seduced in a gym bathroom, and will seduce you in <span class="spoiler" title="you can set spoilers visible by default on your profile" >the water park with Maya if you're in the throuple</span>. </li><li> Maya can be seduced in a classroom during the dorm party. </li><li> Sage can be seduced in several places, including the <span class='esc-seq' title='non-wikiword'>HOTs</span>' swimming pool, the back lawn of the <span class='esc-seq' title='non-wikiword'>HOTs</span> house (where they are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CoitusUninterruptus' title='/pmwiki/pmwiki.php/Main/CoitusUninterruptus' data-format='W1tDb2l0dXNVbmludGVycnVwdHVzIGNhdWdodCBieSBRdWlubiBhbmQgUmlvbmEgaW4gdGhlIGFjdF1d'>caught by Quinn and Riona in the act</a>), and the haunted house setup during the Halloween party. </li><li> The first time the MC and Quinn can have sex is on the rooftop of the DIK mansion if he accepts the weed Tommy gives him; notably, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Jacob sees the two of you if you do, causing you to complete the "having sex in public" task for the pledge board.</span> </li><li> Camila may fellate the MC in the <span class='esc-seq' title='non-wikiword'>HOTs</span> bathroom at Quinn's command, and can have sex with him on the crowded dance floor during the Halloween party. </li><li> Jade is the queen of this; she pulls a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BasicInstinctLegsCrossingParody' title='/pmwiki/pmwiki.php/Main/BasicInstinctLegsCrossingParody' data-format='QmFzaWNJbnN0aW5jdExlZ3NDcm9zc2luZ1Bhcm9keQ=='>"Basic Instinct" Legs-Crossing Parody</a> on the MC during <span class="spoiler" title="you can set spoilers visible by default on your profile" >Chad's disciplinary hearing</span> while <em>her husband</em> is in the room, and can subsequently give him a handjob in her classroom <em>during her class</em> and later seduce him in a supply closet. </li><li> Notably, the MC isn't the only one who can do so: Derek's most notable sexual encounter happens with <span class="spoiler" title="you can set spoilers visible by default on your profile" >Wendy</span> in the bushes near the DIK mansion, and Tommy having sex with Arieth in a bar bathroom is shown as the reason for the hatred between the <span class='esc-seq' title='non-wikiword'>DIKs</span> and the tri-Alphas. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/CrescendoJP' title='/pmwiki/pmwiki.php/VisualNovel/CrescendoJP' data-format='VmlzdWFsTm92ZWwvQ3Jlc2NlbmRvSlA='>Crescendo (JP)</a></em>: Ryo does it with <span class="spoiler" title="you can set spoilers visible by default on your profile" >Miyu</span> on <em>and</em> against the music room's piano. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/TheDevilOnGString' title='/pmwiki/pmwiki.php/VisualNovel/TheDevilOnGString' data-format='VmlzdWFsTm92ZWwvVGhlRGV2aWxPbkdTdHJpbmc='>The Devil on G-String</a></em>: Tsubaki's bad end H-scene with Kyousuke occurs at night in the park. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/DRAMAticalMurder' title='/pmwiki/pmwiki.php/VisualNovel/DRAMAticalMurder' data-format='VmlzdWFsTm92ZWwve3tEUkFNQXRpY2FsIE11cmRlcn19'>DRAMAtical Murder</a></em>: <ul ><li> Several times, particularly in the <em>Re:connect</em> game. Koujaku's good end follow-up has both him and Aoba making love in his bathroom with two options: in the bathtub or in the shower. </li><li> In Noiz's good end, Aoba has sex with Noiz in the latter's hospital bed. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/EfAFairyTaleOfTheTwo' title='/pmwiki/pmwiki.php/VisualNovel/EfAFairyTaleOfTheTwo' data-format='VmlzdWFsTm92ZWwvRWZBRmFpcnlUYWxlT2ZUaGVUd28='>ef - a fairy tale of the two.</a></em>: Chihiro and Renji sneak onto the rooftop when the school was otherwise closed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/KatawaShoujo' title='/pmwiki/pmwiki.php/VisualNovel/KatawaShoujo' data-format='VmlzdWFsTm92ZWwvS2F0YXdhU2hvdWpv'>Katawa Shoujo</a></em>: Since the game takes place in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BoardingSchool' title='/pmwiki/pmwiki.php/Main/BoardingSchool' data-format='Qm9hcmRpbmdTY2hvb2w='>Boarding School</a>, there are <em>several</em> instances of this kind of sex taking place in <em>other</em> places than the dormitories: <ul ><li> Shizune seems quite prone to this. You didn't do it, but she wanted to have sex on the school rooftop. Also, while not as severe as other cases, it isn't a good idea to have sex in your parents' house when they (or at least her dad and brother) can just barge in at any moment. And finally, Hisao and Shizune's <em>big</em> sex scene, which you only see in the good ending route, takes place in the student council room at night. </li><li> The second scene for Emi takes place in the sport supplies shed. It's... hilariously awkward, especially since <span class="spoiler" title="you can set spoilers visible by default on your profile" >it's <em>anal</em> sex and the naked Emi is bent over one of the props.</span> <span class="spoiler" title="you can set spoilers visible by default on your profile" >It's also implied that Emi did... <em>something</em> amazing with Hisao in the rooftop &#8212; three guesses as to what.</span> </li><li> Rin and Hisao's first sex scene takes place in the painting atelier that Sae got for her. One wonders what would've happened if either she or Nomiya walked in. </li><li> While the major part of the sex scenes take place on the school grounds, the first sex scene with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneeSama' title='/pmwiki/pmwiki.php/Main/OneeSama' data-format='W1tPbmVlU2FtYSBMaWxseSBTYXRvdV1d'>Lilly Satou</a> happens in the living room of the Satou family's summer house in Hokkaido. Since it only has two bedrooms and their common friend Hanako is with them, Hisao has to sleep on a futon; Lilly visits him to talk about their recent mutual <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveConfession' title='/pmwiki/pmwiki.php/Main/LoveConfession' data-format='TG92ZUNvbmZlc3Npb24='>Love Confession</a>, they start making out, and one thing leads to another(although Hanako is asleep due to being exhausted from the stress of Hisao having a heart murmur earlier that day). They also subvert the typical "bathtub sex" scene the morning after: they do get into the hot tub and fondle each other, but for the actual sex act, they get out and do it on the floor, <em>next</em> to the tub. </li></ul></li><li> All the couples in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/KindredSpiritsOnTheRoof' title='/pmwiki/pmwiki.php/VisualNovel/KindredSpiritsOnTheRoof' data-format='VmlzdWFsTm92ZWwvS2luZHJlZFNwaXJpdHNPblRoZVJvb2Y='>Kindred Spirits on the Roof</a></em> end up doing something sexual at school at some point or another in the story. Since Sachi and Megumi are ghosts who want to use other couples as references to learn how to consummate their relationship, but can't leave the school or go anywhere they didn't go when they were alive<span class="notelabel" onclick="togglenote('note0jdod');"><sup>Explanation</sup></span><span id="note0jdod" class="inlinefolder" isnote="true" onclick="togglenote('note0jdod');" style="cursor:pointer;font-size:smaller;display:none;">As Yuna points out later on in the game, Sachi died long before certain parts of the school were built, and so can only go to the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OldSchoolBuilding' title='/pmwiki/pmwiki.php/Main/OldSchoolBuilding' data-format='T2xkU2Nob29sQnVpbGRpbmc='>Old School Building</a>. Megumi, meanwhile, died as a first-year, and can't go to some of the places Sachi, who died as a third-year, can freely access. Essentially, each sex scene happens where one of the kindred spirits can see it, but not the other</span>, this is rather convenient for them. At the very end of the game, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Yuna and Hina sneak into campus(which is a violation of the rules in and of itself) to allow Sachi and Megumi to possess their bodies and have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheirFirstTime' title='/pmwiki/pmwiki.php/Main/TheirFirstTime' data-format='VGhlaXJGaXJzdFRpbWU='>Their First Time</a> so they can pass on.</span> </li><li> When the protagonist and title character of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/Melody2019' title='/pmwiki/pmwiki.php/VisualNovel/Melody2019' data-format='VmlzdWFsTm92ZWwvTWVsb2R5MjAxOQ=='>Melody (2019)</a></em> visit a music museum, and see a piano in the middle of a auditorium-like room, they get ready to have sex before they are chased out by security. Lampshaded later by Melody, who says she's glad in hindsight that first time having sex wasn't in a public place, on top of a piano. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/Nukitashi' title='/pmwiki/pmwiki.php/VisualNovel/Nukitashi' data-format='VmlzdWFsTm92ZWwve3tOdWtpdGFzaGl9fQ=='>Nukitashi</a></em>: In Seiran Island, there is no wrong place to make love. Be it school, the beach, the alleyways or the theme park, people can always be found doing it. This is reflected in the H-scenes; the mayority of them take place outside the bed. </li><li> <em>Sono Hanabira ni Kuchizuke wo</em>: Including places like the school clinic and the back garden, which are always empty when the time comes. Mai lampshades this in the third novel when she states that the clinic is always empty (and they always happen to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Pun' title='/pmwiki/pmwiki.php/Main/Pun' data-format='W1t7e1B1bn19IGRvaW5nXV0='>doing</a> something there.) <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a> claims that this is possible due to the meddling of a certain perverted maiden in the school's environmental maintenance committee. Mai and Reo also do it in a dressing room at a clothing store and in the library while they're supposed to be studying. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');">&nbsp;&nbsp;&nbsp;&nbsp;Web Comics&nbsp;</div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/DumbingOfAge' title='/pmwiki/pmwiki.php/Webcomic/DumbingOfAge' data-format='V2ViY29taWMvRHVtYmluZ09mQWdl'>Dumbing of Age</a></em>: <ul ><li> A Patreon only comic shows that what <span class="spoiler" title="you can set spoilers visible by default on your profile" >Dina's parents</span> are doing now that there aren't kids in the house is banging on every surface of it. </li><li> When Dorothy <span class="spoiler" title="you can set spoilers visible by default on your profile" >teaches Joyce how to masturbate</span>, they do so in <span class="spoiler" title="you can set spoilers visible by default on your profile" >the laundry room, with seemingly no worries about <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' title='/pmwiki/pmwiki.php/Main/InterruptedIntimacy' data-format='W1tJbnRlcnJ1cHRlZEludGltYWN5IGdldHRpbmcgY2F1Z2h0XV0='>getting caught</a>. </span> </li></ul></li><li> The adult cast of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/EnnuiGo' title='/pmwiki/pmwiki.php/Webcomic/EnnuiGo' data-format='V2ViY29taWMvRW5udWlHbw=='>Ennui GO!</a></em> will often have sex whenever and wherever the feel in the mood, though one particularly plot relevant example would be <span class="spoiler" title="you can set spoilers visible by default on your profile" >Renee and Hiro having a civil marriage and then getting so in the mood that they concieved their son Kazumi in the courthouse broom closet.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/MeatyYogurt' title='/pmwiki/pmwiki.php/Webcomic/MeatyYogurt' data-format='V2ViY29taWMvTWVhdHlZb2d1cnQ='>Meaty Yogurt</a></em>: Tom and Jackie have sex in the woods. She misplaces her shirt behind a large rock and when she finds it, an animal has peed on it much to her disgust. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' title='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' data-format='V2ViY29taWMvVGhlT3JkZXJPZlRoZVN0aWNr'>The Order of the Stick</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovableRogue' title='/pmwiki/pmwiki.php/Main/LovableRogue' data-format='W1tMb3ZhYmxlUm9ndWUgSGFsZXldXQ=='>Haley</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Cloudcuckoolander' title='/pmwiki/pmwiki.php/Main/Cloudcuckoolander' data-format='W1t7e0Nsb3VkY3Vja29vbGFuZGVyfX0gRWxhbl1d'>Elan</a> once had sex on the back of a <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SandWorm' title='/pmwiki/pmwiki.php/Main/SandWorm' data-format='W1tTYW5kV29ybSBQdXJwbGUgV29ybV1d'>Purple Worm</a></em>. (She implies that its phallic shape turned her on.) </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/RoosterTeethComics' title='/pmwiki/pmwiki.php/Webcomic/RoosterTeethComics' data-format='V2ViY29taWMvUm9vc3RlclRlZXRoQ29taWNz'>Rooster Teeth Comics</a></em>: Griffon and Geoff discover to their horror that while Gus housesat for them, he and his wife Esther had sex all over their house, kindly marking every spot with the orange stars. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Including on their leftover pizza.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SandraAndWoo' title='/pmwiki/pmwiki.php/Webcomic/SandraAndWoo' data-format='V2ViY29taWMvU2FuZHJhQW5kV29v'>Sandra and Woo</a></em>: Woo and Lily <a class='urllink' href='http://www.sandraandwoo.com/2014/11/27/0637-culture-clash/'>are seen breeding on the Thanksgiving table<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> where Richard is supposed to be <em>entertaining his boss</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheWhiteboard' title='/pmwiki/pmwiki.php/Webcomic/TheWhiteboard' data-format='V2ViY29taWMvVGhlV2hpdGVib2FyZA=='>The Whiteboard</a></em>: Swampy and Sandy screw in various parts of Doc's shop, though Swamp's attempt to make the <a class='urllink' href='http://www.the-whiteboard.com/autotwb1761.html'>broom closet<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> more comfortable with pillows didn't work too well. </li><li> <em><a class='urllink' href='http://www.thewretchedoneswebcomic.com'>The Wretched Ones<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>: It's implied that John and Charlie have had sex at the restaurant where Charlie works. Something seemed to have gone wrong, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoodleIncident' title='/pmwiki/pmwiki.php/Main/NoodleIncident' data-format='W1tOb29kbGVJbmNpZGVudCBidXQgdGhpcyBpcyBuZXZlciBlbGFib3JhdGVkLl1d'>but this is never elaborated.</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Xkcd' title='/pmwiki/pmwiki.php/Webcomic/Xkcd' data-format='V2ViY29taWMve3t4a2NkfX0='>xkcd</a></em>: <a class='urllink' href='http://xkcd.com/983/'>This<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is an illustrated list of inappropriate places to attempt sex. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder16');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder16" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Cracked' title='/pmwiki/pmwiki.php/Website/Cracked' data-format='V2Vic2l0ZS97e0NyYWNrZWR9fQ=='>Cracked</a></em>: If <a class='urllink' href='http://www.cracked.com/personal-experiences-1606-5-horrifying-realities-life-as-casino-dealer.html'>this<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> article is anything to go by, at casinos like Mohegan Sun, the excitement of gambling gets mixed up with sexual arousal. As the author points out: <div class='indent'><em>"We've caught guys finger-banging their girlfriends under the roulette table and ladies giving handjobs at the poker table. What many patrons don't realize is that almost all casinos have damn near 100 percent camera coverage. At the Mohegan Sun, this has allowed us to record everything from nip-slips to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElevatorGoingDown' title='/pmwiki/pmwiki.php/Main/ElevatorGoingDown' data-format='W1tFbGV2YXRvckdvaW5nRG93biBlbGV2YXRvciBzZXhdXQ=='>elevator sex</a> to people banging in the slot machine corner. I'm pretty sure that our surveillance guys can't even look at porn anymore because it feels too much like work."</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/DarwinAwards' title='/pmwiki/pmwiki.php/Website/DarwinAwards' data-format='V2Vic2l0ZS9EYXJ3aW5Bd2FyZHM='>Darwin Awards</a></em>: <ul ><li> At least one story involved a couple doing it <em>in the middle of the road</em> <strong>at night</strong>. No prizes for guessing how that one ended. </li><li> Having sex in a plane is unusual. Having sex while that plane is in the air is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MileHighClub' title='/pmwiki/pmwiki.php/Main/MileHighClub' data-format='W1tNaWxlSGlnaENsdWIgc29tZXdoYXQgb2YgYW4gYWNoaWV2ZW1lbnRdXQ=='>somewhat of an achievement</a>. Having sex on a plane in the air <em>while you're the pilot and copilot</em>? <a class='urllink' href='https://darwinawards.com/darwin/darwin1994-19.html'>Darwin award for both participants<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HelluvaBoss' title='/pmwiki/pmwiki.php/WebAnimation/HelluvaBoss' data-format='V2ViQW5pbWF0aW9uL0hlbGx1dmFCb3Nz'>Helluva Boss</a></em>: In the episode "Unhappy Campers", the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnholyMatrimony' title='/pmwiki/pmwiki.php/Main/UnholyMatrimony' data-format='W1tVbmhvbHlNYXRyaW1vbnkgaW1wIGFzc2Fzc2luIGNvdXBsZV1d'>imp assassin couple</a> Moxxie and Millie end up infiltrating a summer camp <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanDisguise' title='/pmwiki/pmwiki.php/Main/HumanDisguise' data-format='W1tIdW1hbkRpc2d1aXNlIGluXV0='>in</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DisguisedInDrag' title='/pmwiki/pmwiki.php/Main/DisguisedInDrag' data-format='W1tEaXNndWlzZWRJbkRyYWcgZGlzZ3Vpc2VzXV0='>disguises</a> to scout out their most recent target.<span class="notelabel" onclick="togglenote('note168rs');"><sup>note&nbsp;</sup></span><span id="note168rs" class="inlinefolder" isnote="true" onclick="togglenote('note168rs');" style="cursor:pointer;font-size:smaller;display:none;">They actually find him immediately, but Moxxie insists on going through with his plan anyway due to his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComplexityAddiction' title='/pmwiki/pmwiki.php/Main/ComplexityAddiction' data-format='Q29tcGxleGl0eUFkZGljdGlvbg=='>Complexity Addiction</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WellDoneSonGuy' title='/pmwiki/pmwiki.php/Main/WellDoneSonGuy' data-format='W1tXZWxsRG9uZVNvbkd1eSBhbmQgYW4gaW1wbGllZCBkZXNwZXJhdGUgbmVlZCBmb3IgaGlzIGJvc3MmIzAzOTtzIGFwcHJvdmFsLl1d'>and an implied desperate need for his boss's approval.</a></span> After spending the whole episode <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreenEyedMonster' title='/pmwiki/pmwiki.php/Main/GreenEyedMonster' data-format='W1tHcmVlbkV5ZWRNb25zdGVyIGJlaW5nIGplYWxvdXNdXQ=='>being jealous</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovedByAll' title='/pmwiki/pmwiki.php/Main/LovedByAll' data-format='W1tMb3ZlZEJ5QWxsIE1pbGxpZSYjMDM5O3Mgc3VjY2VzcyBhdCBibGVuZGluZyBpbiB3aXRoIHRoZSBjYW1wZXJzXV0='>Millie's success at blending in with the campers</a> whereas he becomes <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HatedByAll' title='/pmwiki/pmwiki.php/Main/HatedByAll' data-format='SGF0ZWRCeUFsbA=='>Hated by All</a> instead and acting childish and selfish because of it, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JerkassRealization' title='/pmwiki/pmwiki.php/Main/JerkassRealization' data-format='SmVya2Fzc1JlYWxpemF0aW9u'>Jerkass Realization</a> near the end has him going up on a stage where Millie is performing and delivering a public, very sweet <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeartfeltApology' title='/pmwiki/pmwiki.php/Main/HeartfeltApology' data-format='SGVhcnRmZWx0QXBvbG9neQ=='>Heartfelt Apology</a> to her for his behavior... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoodWhiplash' title='/pmwiki/pmwiki.php/Main/MoodWhiplash' data-format='W1tNb29kV2hpcGxhc2ggQWZ0ZXIgd2hpY2ggdGhleSBwcm9jZWVkIHRvIGhhdmUgbWFrZS11cCBzZXguXV0='>After which they proceed to have make-up sex.</a> On-stage. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HarmfulToMinors' title='/pmwiki/pmwiki.php/Main/HarmfulToMinors' data-format='W1tIYXJtZnVsVG9NaW5vcnMgSW4gZnJvbnQgb2YgYSBidW5jaCBvZiBwcmUtdGVlbnMuXV0='>In front of a bunch of pre-teens.</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/MistakenForIncest' title='/pmwiki/pmwiki.php/Main/MistakenForIncest' data-format='W1tNaXN0YWtlbkZvckluY2VzdCBXaGlsZSB0aGV5JiMwMzk7cmUgc3VwcG9zZWQgdG8gYmUgcHJldGVuZGluZyB0byBiZSBicm90aGVyIGFuZCBzaXN0ZXIuXV0='>While they're supposed to be pretending to be brother and sister.</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/TextsFromLastNight' title='/pmwiki/pmwiki.php/Website/TextsFromLastNight' data-format='V2Vic2l0ZS9UZXh0c0Zyb21MYXN0TmlnaHQ='>Texts From Last Night</a></em>: <ul ><li> If the submissions are any indication, anywhere or any surface you can have sex in or on, someone's done it. You name it, someone's had sex in it. <div class='indent'><strong>(443)</strong>: we fucked while standing on a ladder. challenging, but worth it. </div><div class='indent'><strong>(319)</strong>: Three people drank on "never have I had sex in a tractor." Iowa at its best? </div><div class='indent'><strong>(513)</strong>: sex in a ball pit. and I thought ghandi did great things. </div></li><li> Some submissions provides beach sex concerns: <div class='indent'>(330): so,apparently a side effect of having sex on the beach is now i have a tanline shaped like your sister. </div><div class='indent'>(216): <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MySisterIsOffLimits' title='/pmwiki/pmwiki.php/Main/MySisterIsOffLimits' data-format='W1tNeVNpc3RlcklzT2ZmTGltaXRzIGkgaGF0ZSB5b3VdXQ=='>i hate you</a> </div></li></ul></li><li> <em>20020</em>, the sequel to <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebOriginal/SeventeenThousandSevenHundredSeventySix' title='/pmwiki/pmwiki.php/WebOriginal/SeventeenThousandSevenHundredSeventySix' data-format='V2ViT3JpZ2luYWwvU2V2ZW50ZWVuVGhvdXNhbmRTZXZlbkh1bmRyZWRTZXZlbnR5U2l4'>17776</a></em>, features a scene where three sentient satellites are watching a play between Georgia and Georgia Tech, during a game that basically encompasses all of <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/CollegiateAmericanFootball' title='/pmwiki/pmwiki.php/UsefulNotes/CollegiateAmericanFootball' data-format='VXNlZnVsTm90ZXMvQ29sbGVnaWF0ZUFtZXJpY2FuRm9vdGJhbGw='>Collegiate American Football</a>. Two Georgia players are revealed to be having sex... in the middle of a play. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder17');">&nbsp;&nbsp;&nbsp;&nbsp;Web Video&nbsp;</div><div id="folder17" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DanAndPhil' title='/pmwiki/pmwiki.php/Creator/DanAndPhil' data-format='Q3JlYXRvci9EYW5BbmRQaGls'>Dan and Phil</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSims4' title='/pmwiki/pmwiki.php/VideoGame/TheSims4' data-format='VmlkZW9HYW1lL1RoZVNpbXM0'>The Sims 4</a></em> series on <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DanAndPhilGAMES' title='/pmwiki/pmwiki.php/WebVideo/DanAndPhilGAMES' data-format='V2ViVmlkZW8vRGFuQW5kUGhpbEdBTUVT'>DanAndPhilGAMES</a>: <ul ><li> Dil and Tabitha have <span class='esc-seq' title='non-wikiword'>WooHooed</span> in a a spa sauna and a telescope control room in a city park at Dan and Phil's discretion. They add an amusement-park haunted ride to their repertoire upon moving to Copperdale...<em>before even building a house to reside in</em>. </li><li> While on their honeymoon in the Sims version of Japan, Dab and Evan <span class='esc-seq' title='non-wikiword'>WooHoo</span> in the public onsen. Not only that, but the animation is more graphic than usual, landing <span class='esc-seq' title='non-wikiword'>DanAndPhilGAMES</span> its second ever demonetisation. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder18');">&nbsp;&nbsp;&nbsp;&nbsp;Western Animation&nbsp;</div><div id="folder18" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/AdventureTime' title='/pmwiki/pmwiki.php/WesternAnimation/AdventureTime' data-format='V2VzdGVybkFuaW1hdGlvbi9BZHZlbnR1cmVUaW1l'>Adventure Time</a></em>: Encouraged by Finn and Jake, Mister Pig confesses his deep love for Tree Trunks. She reciprocates and the two set to convey their love by shamelessly and passionately <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DownplayedTrope' title='/pmwiki/pmwiki.php/Main/DownplayedTrope' data-format='W1tEb3ducGxheWVkVHJvcGUgbWFraW5nIG91dF1d'>making out</a> in front of other people. First, in Tree Trunk's garden right in the presence of Finn and Jake, who then proceed to awkwardly exit the scene. Then in Princess Bubblegum's concert in the Candy Kingdom &#8212; Finn splits them but the couple soon starts to dance in a very affectionate manner, even rubbing their butts at one point. In response, an enraged Princess Bubblegum gathers her electric piano and equipment and calls the concert off. Tree Trunks and Mister Pig promise to tone their displays of affection down but a montage shows them <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComicallyMissingThePoint' title='/pmwiki/pmwiki.php/Main/ComicallyMissingThePoint' data-format='W1tDb21pY2FsbHlNaXNzaW5nVGhlUG9pbnQgbWVyZWx5IHNlZWtpbmcgaGlkZGVuLWZyb20tdmlldyBwbGFjZXNdXQ=='>merely seeking hidden-from-view places</a>. Which would be a good idea if not for the fact they choose places where other people can easily find them and some of them are either inappropriate (in Finn and Jake's Tree Fort, inside a baby's crib, behind a movie screen) or plain bizarre (inside of a sandwich). When asked why they don't just make out in Tree Trunk's house, Tree Trunks states that it's improper for a non-married couple to live together (Mister Pig is homeless and has been living in Tree Trunk's house since Finn and Jake rescued him). </li><li> In the second season of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Arcane' title='/pmwiki/pmwiki.php/WesternAnimation/Arcane' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FyY2FuZX19'>Arcane</a></em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" > Caitlyn and Vi</span> have their first time in a prison cell. One that <span class="spoiler" title="you can set spoilers visible by default on your profile" >Jinx</span> had been in already for days, rotting food included. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DownTown' title='/pmwiki/pmwiki.php/WesternAnimation/DownTown' data-format='V2VzdGVybkFuaW1hdGlvbi97e0Rvd25Ub3dufX0='>DownTown</a></em>: Leah persistently assumes Jen and Alex are dating, prompting Jen to break and crack wise about how they other day they were having sex in the elevator of the World Trade Center. Leah interrupts Jen to gush about how amazing that spot was. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' title='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' data-format='V2VzdGVybkFuaW1hdGlvbi9GYW1pbHlHdXk='>Family Guy</a></em>: <ul ><li> Peter &amp; Lois decide to have sex in Peter's office in front of Opie. <div class='indent'><strong>Lois:</strong> Oh God, Peter, let's do it. Let's do it right here, right now!<br data-format="\\" /><strong>Peter:</strong> Lois, Lois wait. Wait. Opie's right there.<br data-format="\\" /><strong>Lois:</strong> I want him to look, Peter. <em>[Opie runs away in terror]</em> </div></li><li> Peter and Lois' father have kidnapped her to stop her modeling career. Peter has a change of heart, coldcocks Mr. Pewterschmidt, and he and Lois have make-up sex ON her father... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoodleIncident' title='/pmwiki/pmwiki.php/Main/NoodleIncident' data-format='W1tOb29kbGVJbmNpZGVudCAibGlrZSB0aGV5IHVzZWQgdG8uIl1d'>"like they used to."</a> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Futurama' title='/pmwiki/pmwiki.php/WesternAnimation/Futurama' data-format='V2VzdGVybkFuaW1hdGlvbi97e0Z1dHVyYW1hfX0='>Futurama</a></em>: Implied in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/FuturamaS7E26Meanwhile' title='/pmwiki/pmwiki.php/Recap/FuturamaS7E26Meanwhile' data-format='W1tSZWNhcC9GdXR1cmFtYVM3RTI2TWVhbndoaWxlIE1lYW53aGlsZV1d'>Meanwhile</a>", as the montage of Fry and Leela's adventures in <span class="spoiler" title="you can set spoilers visible by default on your profile" >the world frozen in time</span> features them kissing on the Eiffel Tower, with Leela pulling out a list that, based on the items listed ("Professor's desk", "in the road", "on a mammoth", "random dark alley", etc.), is implied to be a list of places they want to have sex. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/KingOfTheHill' title='/pmwiki/pmwiki.php/WesternAnimation/KingOfTheHill' data-format='V2VzdGVybkFuaW1hdGlvbi9LaW5nT2ZUaGVIaWxs'>King of the Hill</a></em>: <ul ><li> Hank once <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrimalScene' title='/pmwiki/pmwiki.php/Main/PrimalScene' data-format='W1tQcmltYWxTY2VuZSB3YWxrcyBpbl1d'>walks in</a> on his mother and her boyfriend having sex on the kitchen table. </li><li> In another episode, the family notices little things wrong around the house, and Cotton keeps insisting someone is sneaking in. The others think he's crazy, but Cotton eventually discovers that their neighbors, Kahn and Minh, are actually sneaking in and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KinkyRolePlaying' title='/pmwiki/pmwiki.php/Main/KinkyRolePlaying' data-format='W1tLaW5reVJvbGVQbGF5aW5nIHJvbGVwbGF5aW5nIGFzIEhhbmsgYW5kIFBlZ2d5IGZvciBjaGVhcCB0aHJpbGxzXV0='>roleplaying as Hank and Peggy for cheap thrills</a>. Kahn also alludes to having done it in the library reading room. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' title='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTaW1wc29ucw=='>The Simpsons</a></em>: <ul ><li> Parodied in one episode, where Homer and Marge try sex in a bathtub as a means of rekindling their love life. They discover the tub is barely big enough for both of them to squeeze into, let alone get into an intimate position. </li><li> Beach sex is parodied in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheSimpsonsS6E13AndMaggieMakesThree' title='/pmwiki/pmwiki.php/Recap/TheSimpsonsS6E13AndMaggieMakesThree' data-format='W1tSZWNhcC9UaGVTaW1wc29uc1M2RTEzQW5kTWFnZ2llTWFrZXNUaHJlZSBBbmQgTWFnZ2llIE1ha2VzIFRocmVlXV0='>And Maggie Makes Three</a>", where it looks like Homer and Marge are about to have a wild, hot night on the beach, only for Marge to ask that they leave because they've both got sand in their underwear. After they leave, Homer runs back to put <em>more</em> sand in his underpants. </li><li> Bart was conceived inside the windmill on a miniature golf course. </li><li> Principal Skinner and Mrs. Krabappel caused some controversy by seemingly getting caught in the act of doing it in the school. In fact, they're found making out in the janitor's closet fully-clothed, but by the time <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GossipEvolution' title='/pmwiki/pmwiki.php/Main/GossipEvolution' data-format='R29zc2lwRXZvbHV0aW9u'>Gossip Evolution</a> has done its job they were actually caught having sex, and Skinner has to publicly confess (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmbiguousSituation' title='/pmwiki/pmwiki.php/Main/AmbiguousSituation' data-format='W1tBbWJpZ3VvdXNTaXR1YXRpb24gYWNjdXJhdGVseSBvciBub3RdXQ=='>accurately or not</a>) to being a virgin to save both of their jobs. It wouldn't be the last use they'd make of the space, though: <div class='indent'><strong>Skinner:</strong> Edna, look. A dimmer switch could ratchet up the romance in our love nest. </div><div class='indent'><strong>Krabappel:</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeadpanSnarker' title='/pmwiki/pmwiki.php/Main/DeadpanSnarker' data-format='W1tEZWFkcGFuU25hcmtlciBZb3UgbWVhbiB0aGUgamFuaXRvciYjMDM5O3MgY2xvc2V0P11d'>You mean the janitor's closet?</a> </div></li><li> The episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheSimpsonsS9E25NaturalBornKissers' title='/pmwiki/pmwiki.php/Recap/TheSimpsonsS9E25NaturalBornKissers' data-format='W1tSZWNhcC9UaGVTaW1wc29uc1M5RTI1TmF0dXJhbEJvcm5LaXNzZXJzIE5hdHVyYWwgQm9ybiBLaXNzZXJzXV0='>Natural Born Kissers</a>" has Marge and Homer finding that the fear of getting caught in the act adds some much-needed spark to their sex life. This leads to them doing it in (among other places) a hayloft and a miniature golf course (which turns out to be <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheSimpsonsS3E12IMarriedMarge' title='/pmwiki/pmwiki.php/Recap/TheSimpsonsS3E12IMarriedMarge' data-format='W1tSZWNhcC9UaGVTaW1wc29uc1MzRTEySU1hcnJpZWRNYXJnZSB0aGUgc2FtZSBjb3Vyc2UgQmFydCB3YXMgY29uY2VpdmVkIG9uXV0='>the same course Bart was conceived on</a>). </li><li> In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheSimpsonsS29E13ThreeScenesPlusATagFromAMarriage' title='/pmwiki/pmwiki.php/Recap/TheSimpsonsS29E13ThreeScenesPlusATagFromAMarriage' data-format='W1tSZWNhcC9UaGVTaW1wc29uc1MyOUUxM1RocmVlU2NlbmVzUGx1c0FUYWdGcm9tQU1hcnJpYWdlIDMgU2NlbmVzIFBsdXMgYSBUYWcgZnJvbSBhIE1hcnJpYWdlXV0='>3 Scenes Plus a Tag from a Marriage</a>", Lisa is said to have been conceived on the fire escape in Homer and Marge's first apartment (the only place they could go to avoid waking up Bart), making Maggie the <em>only</em> one of Homer and Marge's kids to have been conceived in bed. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder19');">&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;</div><div id="folder19" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WoodyAllen' title='/pmwiki/pmwiki.php/Creator/WoodyAllen' data-format='Q3JlYXRvci9Xb29keUFsbGVu'>Woody Allen</a>'s <em>Everything You Always Wanted To Know About Sex</em> has a segment on frigidity played as a mock Italian movie where Woody and his wife find she can only enjoy sex in public places. They manage to live with it. </li></ul></div> <hr data-format='&#8212;&#8212;' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div>&nbsp;</div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="4lbm3f" data-video-descrip="Wolf gets really horny whenever he sees the Corn Caddy and he can't control himself and Honeybee goes along with it. They end up doing the deed inside the food truck when the truck owner left the window open for them to enter inside. When Wolf opens the door to let some more air in, he accidentally activates the truck's alarm, forcing the couple to flee out of the truck in their underwear while they carry their clothes." data-video-title="Making Love in the Corn Caddy" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4lbm3f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4lbm3f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4lbm3f.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/tgn_s3e03_the_corn_caddy.png" data-video-trope="Main/OvercomeWithDesire" data-video-tropename="Overcome with Desire" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/AutoErotica,Main/MakingLoveInAllTheWrongPlaces,Recap/TheGreatNorthS3E03AutumnIfYouGotEmAdventure,WesternAnimation/TheGreatNorth" class="video-launch-link video-overlay-link featured-widget-vid"> <div class="featured-widget-vid-iframe"> <div id="tvtropes_no_volume_player" data-video-image="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/tgn_s3e03_the_corn_caddy.png" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4lbm3f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4lbm3f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4lbm3f.m3u8" data-controls="0" data-muted="1"> <script> tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); }); </script> </div> </div> </a> </div> <h2 class="bold font-l">Making Love in the Corn Caddy</h2> <p class="_pmvv-vidbox-descTxt"> Wolf gets really horny whenever he sees the Corn Caddy and he can't control himself and Honeybee goes along with it. They end up doing the deed inside the food truck when the truck owner left the window open for them to enter inside. When Wolf opens the door to let some more air in, he accidentally activates the truck's alarm, forcing the couple to flee out of the truck in their underwear while they carry their clothes. </p> <p class='example_row'>Example of:<br><a href="/pmwiki/pmwiki.php/Main/OvercomeWithDesire"class='trope-example-link'>Overcome with Desire</a></p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="o8w4ue" data-video-descrip="Peter and Lois decide to have sex in Peter's office in front of Opie and an open door. Lois wants people to watch them." data-video-title="In Peter's Office" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/o8w4ue_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/o8w4ue.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/o8w4ue.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o8w4ue.jpg" data-video-trope="Main/MakingLoveInAllTheWrongPlaces" data-video-tropename="Making Love in All the Wrong Places" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o8w4ue.jpg"> <p><span class="bold">In Peter's Office</span></p> </a> </div> </div> </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/MadonnaWhoreComplex">Madonna-Whore Complex</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SexTropes">Sex Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MaleToFemaleUniversalAdaptor">Male-to-Female Universal Adaptor</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/MakingASpectacleOfYourself">Making a Spectacle of Yourself</a> </li> <li> <a href="/pmwiki/pmwiki.php/JustForFun/PunnyTropeNames">JustForFun/Punny Trope Names</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MalcolmXerox">Malcolm Xerox</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/MakeTheDogTestify">Make the Dog Testify</a> </li> <li> <a href="/pmwiki/pmwiki.php/TruthInTelevision/MToO">TruthInTelevision/M to O</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MaliciousSlander">Malicious Slander</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/MakingASplash">Making a Splash</a> </li> <li> <a href="/pmwiki/pmwiki.php/NoRealLife/TropesLToO">NoRealLife/Tropes L to O</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MalcolmXerox">Malcolm Xerox</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/MagnumOpus">Magnum Opus</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesMToP">WeAreNotAlone/Tropes M to P</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Malaproper">Malaproper</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LimitBreak">Limit Break</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Webcomics">QuoteSource/Webcomics</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PhlebotinumDuJour">Phlebotinum du Jour</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ExecutiveMeddling">Executive Meddling</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/WebcomicsMToZ">ImageSource/Webcomics M To Z</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SuperDrowningSkills">Super Drowning Skills</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/MagicPlasticSurgery">Magic Plastic Surgery</a> </li> <li> <a href="/pmwiki/pmwiki.php/JustForFun/TelevisionIsTryingToKillUs">JustForFun/Television Is Trying to Kill Us</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MaliciousSlander">Malicious Slander</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-4lbm3f" data-video-image="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/tgn_s3e03_the_corn_caddy.png" data-video-title="Making Love in the Corn Caddy" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4lbm3f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4lbm3f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4lbm3f.m3u8" data-small-player="never" data-track-events="1" data-do-not-loop="1" data-starting-quality="1" data-autoplay="true"> </div> </div> </div> <div class="_pmvv-vidbox-desc"> <h1 id="overlay-title">Making Love in the Corn Caddy</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Wolf gets really horny whenever he sees the Corn Caddy and he can't control himself and Honeybee goes along with it. They end up doing the deed inside the food truck when the truck owner left the window open for them to enter inside. When Wolf opens the door to let some more air in, he accidentally activates the truck's alarm, forcing the couple to flee out of the truck in their underwear while they carry their clothes. </p> <div class="rating-row" data-video-id="4lbm3f" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">&starf;</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">&starf;</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">&starf;</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">&starf;</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">&starf;</label> </div> <div id="star-rating-total"> 5 (4 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / OvercomeWithDesire</div> </div> <div class="media_second_wrapper"> <div class="media-sources-overlay example-overlay"> <p>Media sources:</p> <div id="overlay-media"></div> </div> <div class="example-overlay"> <div id="secondary_tropes_row"></div> <div id="overlay-second"></div> </div> </div> </div> <p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)"> <!-- <i class="fa fa-eye"></i> 11,241--> <a href="#video-feedback" class="float-right" data-modal-target="login" >Report</a> </p> </div> </div> </div> <div class="_pmvv-foot"> <div class="_pmvv-foot-scrollwrapper"> <a href="#video-link" data-video-id="4lbm3f" data-vimeo-id="" data-video-descrip="Wolf gets really horny whenever he sees the Corn Caddy and he can't control himself and Honeybee goes along with it. They end up doing the deed inside the food truck when the truck owner left the window open for them to enter inside. When Wolf opens the door to let some more air in, he accidentally activates the truck's alarm, forcing the couple to flee out of the truck in their underwear while they carry their clothes." data-video-title="Making Love in the Corn Caddy" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4lbm3f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4lbm3f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4lbm3f.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/tgn_s3e03_the_corn_caddy.png" data-video-trope="Main/OvercomeWithDesire" data-video-tropename="Overcome with Desire" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/AutoErotica,Main/MakingLoveInAllTheWrongPlaces,Recap/TheGreatNorthS3E03AutumnIfYouGotEmAdventure,WesternAnimation/TheGreatNorth" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/tgn_s3e03_the_corn_caddy.png"> <p><span class="bold">Making Love in ...</span></p> </a> <a href="#video-link" data-video-id="o8w4ue" data-vimeo-id="" data-video-descrip="Peter and Lois decide to have sex in Peter's office in front of Opie and an open door. Lois wants people to watch them." data-video-title="In Peter's Office" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/o8w4ue_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/o8w4ue.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/o8w4ue.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o8w4ue.jpg" data-video-trope="Main/MakingLoveInAllTheWrongPlaces" data-video-tropename="Making Love in All the Wrong Places" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="3.80" data-video-rating-count="5" data-video-media-sources="" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o8w4ue.jpg"> <p><span class="bold">In Peter's Office</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

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