CINXE.COM

Alien Sea - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Alien Sea - TV Tropes</title> <meta name="description" content="The Alien Sea trope as used in popular culture. One of the quickest, easiest ways to establish an alien world as being very unlike Earth is to make its &quot; &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/AlienSea" /> <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="Alien Sea - TV Tropes" /> <meta name="twitter:description" content="The Alien Sea trope as used in popular culture. One of the quickest, easiest ways to establish an alien world as being very unlike Earth is to make its &quot; &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/rebuildsea.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="Alien Sea - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/AlienSea" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/rebuildsea.png" /> <meta property="og:description" content="One of the quickest, easiest ways to establish an alien world as being very unlike Earth is to make its &quot;water&quot; some wacky color, or give it some other unusual features or appearance. It's not always explained exactly what kind of chemicals or &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/SleepingSingle" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Music/ThreeLW" 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/AlienSea?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/AlienSea"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.AlienSea" 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.AlienSea" 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/AlienSea?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="AlienSea"/> <input type="hidden" id="article_id" value="374903" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/AlienSea</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"> Alien Sea </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": "Alien Sea", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/AlienSea" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Alien Sea", "headline": "Alien Sea", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/AlienSea", "image": "https://static.tvtropes.org/pmwiki/pub/images/rebuildsea.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2012-09-27T00:00:00-07:00", "dateModified": "2024-11-11T14:10:21-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/AlienSea" 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/AlienSea" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</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/AlienSea?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/AlienSea?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/AlienSea?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/AlienSea?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/AlienSea?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/AlienSea?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/AlienSea?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/AlienSea?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/AlienSea?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/AlienSea?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/AlienSea?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/AlienSea?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/AlienSea?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/AlienSea?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/AlienSea?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/AlienSea?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/AlienSea?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/AlienSea?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/AlienSea?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Quotes/AlienSea?action=edit">Quotes</option> <option value="/pmwiki/pmwiki.php/Recap/AlienSea?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/AlienSea?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/AlienSea?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/AlienSea?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/AlienSea?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/AlienSea?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/AlienSea?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/AlienSea?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--&#010;--> <!--&#010;--> <!--&#010;--> <!-- This page has been alphabetized. Please add new examples in the correct order. Thanks!--> <!--&#010;--> <!--&#010;--> <!--&#010;--> <!--&#010;--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=1636299279013572800--> <!-- Please do not replace or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' title='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' data-format='W1tBbmltZS9OZW9uR2VuZXNpc0V2YW5nZWxpb24gaHR0cHM6Ly9zdGF0aWMudHZ0cm9wZXMub3JnL3Btd2lraS9wdWIvaW1hZ2VzL3JlYnVpbGRzZWEucG5nXV0='><div class="lazy_load_img_box" style="padding-top:74.86%"><img src='https://static.tvtropes.org/pmwiki/pub/images/rebuildsea.png' class='embeddedimage' border='0' alt='Alien Sea (trope)' width=350 height=262></div></a></div> <div class="acaptionright" style="width:350px;" ><em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/Queen' title='/pmwiki/pmwiki.php/Music/Queen' data-format='W1tNdXNpYy97e1F1ZWVufX0gSXMgdGhpcyB0aGUgcmVhbCBsaWZlPyBJcyB0aGlzIGp1c3QgRmFudGEtc2VhP11d'>Is this the real life? Is this just Fanta-sea?</a></em></div> <!--&#010;--> <!-- Caption selected per above IP thread. Please do not replace or remove without discussion in the Caption Repair thread:--> <!-- https://tvtropes.org/pmwiki/posts.php?discussion=1404492079030138900--> <!--&#010;--> <div class='indent'><strong>Dax</strong>: If you ask me, the seas could be a little more purple.<br data-format="\\" /><strong>Kira</strong>: Funny, I was just thinking they weren't green enough.<br data-format="\\" /><strong>Bashir</strong>: I guess it's true what they say. There's no place like home, no matter what color the water is. <div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekDeepSpaceNine' title='/pmwiki/pmwiki.php/Series/StarTrekDeepSpaceNine' data-format='U2VyaWVzL1N0YXJUcmVrRGVlcFNwYWNlTmluZQ=='>Star Trek: Deep Space Nine</a></em>, "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekDeepSpaceNineS03E11PastTensePartI' title='/pmwiki/pmwiki.php/Recap/StarTrekDeepSpaceNineS03E11PastTensePartI' data-format='W1tSZWNhcC9TdGFyVHJla0RlZXBTcGFjZU5pbmVTMDNFMTFQYXN0VGVuc2VQYXJ0SSBQYXN0IFRlbnNlXV0='>Past Tense</a>" </div></div></p><p>One of the quickest, easiest ways to establish an alien world as being very unlike Earth is to make its "water" some wacky color, or give it some other unusual features or appearance. It's not always explained exactly what kind of chemicals or minerals are causing it to look this way, but regardless, it's still perfectly able to support the native flora and fauna (though <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperDrowningSkills' title='/pmwiki/pmwiki.php/Main/SuperDrowningSkills' data-format='W1tTdXBlckRyb3duaW5nU2tpbGxzIHRoYXQgZG9lc24mIzAzOTt0IG1lYW5dXQ=='>that doesn't mean</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrimyWater' title='/pmwiki/pmwiki.php/Main/GrimyWater' data-format='W1tHcmlteVdhdGVyIGl0IGlzIHNhZmUgZm9yIEVhcnRobGluZ3NdXQ=='>it is safe for Earthlings</a>). </p><p>See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlienSky' title='/pmwiki/pmwiki.php/Main/AlienSky' data-format='QWxpZW5Ta3k='>Alien Sky</a>, which serves the same purpose and may accompany it &#8212; the Earth's oceans are the same color as the sky due to similar refraction, so if the sky and sea don't match you must be someplace <em>exceptionally</em> alien. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlienLandmass' title='/pmwiki/pmwiki.php/Main/AlienLandmass' data-format='QWxpZW5MYW5kbWFzcw=='>Alien Landmass</a> is another sister trope, often used for the same reasons. If there's something very scary deep in those odd-colored waters, it may be an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchOceanAbyss' title='/pmwiki/pmwiki.php/Main/EldritchOceanAbyss' data-format='RWxkcml0Y2hPY2VhbkFieXNz'>Eldritch Ocean Abyss</a>. </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WaterfallIntoTheAbyss' title='/pmwiki/pmwiki.php/Main/WaterfallIntoTheAbyss' data-format='V2F0ZXJmYWxsSW50b1RoZUFieXNz'>Waterfall into the Abyss</a>. Contrast <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllPlanetsAreEarthLike' title='/pmwiki/pmwiki.php/Main/AllPlanetsAreEarthLike' data-format='QWxsUGxhbmV0c0FyZUVhcnRoTGlrZQ=='>All Planets Are Earth-Like</a>. </p><p><hr data-format='&#8212;&#8212;' /> <h2>Examples:</h2> <div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Anime &amp; Manga&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ChildrenOfTheWhales' title='/pmwiki/pmwiki.php/Manga/ChildrenOfTheWhales' data-format='TWFuZ2EvQ2hpbGRyZW5PZlRoZVdoYWxlcw=='>Children of the Whales</a></em>: The oceans are made up of sand rather than water, but come complete with waves, islands, phenomena such as waterspouts and whirlpools, and an abundance of marine life. Unlike water oceans, however, the sand isn't buoyant enough for people and boats to float on the surface without magical aid. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DragonBallZ' title='/pmwiki/pmwiki.php/Anime/DragonBallZ' data-format='QW5pbWUvRHJhZ29uQmFsbFo='>Dragon Ball Z</a></em>: The oceans of Namek are green (and the vegetation is blue). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' title='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' data-format='QW5pbWUvTmVvbkdlbmVzaXNFdmFuZ2VsaW9u'>Neon Genesis Evangelion</a></em>: Used in the movies: <ul ><li> By the ending of <em>The End of Evangelion</em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >the sea has turned into red-orange LCL, liquified human rests resulting from the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AssimilationPlot' title='/pmwiki/pmwiki.php/Main/AssimilationPlot' data-format='QXNzaW1pbGF0aW9uUGxvdA=='>Assimilation Plot</a>, containing their merged souls.</span> </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/RebuildOfEvangelion' title='/pmwiki/pmwiki.php/Anime/RebuildOfEvangelion' data-format='QW5pbWUvUmVidWlsZE9mRXZhbmdlbGlvbg=='>Rebuild of Evangelion</a></em> movies to highlight the ecological damage to Earth post-Second Impact: the sea has literally turned red with blood. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Fan Works&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/NoStarsInSight' title='/pmwiki/pmwiki.php/Fanfic/NoStarsInSight' data-format='RmFuZmljL05vU3RhcnNJblNpZ2h0'>No stars in sight</a></em>: At the start, Ikharos is exploring the surface of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoguePlanet' title='/pmwiki/pmwiki.php/Main/RoguePlanet' data-format='Um9ndWVQbGFuZXQ='>Rogue Planet</a> filled with seas of acidic chemicals that he speculates is some sort of primordial soup based on how the planet's only two complex lifeforms (alien slugs and lichen) lived on the rocks closest to these seas. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/SonicRunaways' title='/pmwiki/pmwiki.php/Fanfic/SonicRunaways' data-format='RmFuZmljL1NvbmljUnVuYXdheXM='>Sonic Runaways</a></em>: Collision Chaos' sea is neon, purple in some areas and orange in others, and also in the sky. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Literature&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Animorphs' title='/pmwiki/pmwiki.php/Literature/Animorphs' data-format='TGl0ZXJhdHVyZS97e0FuaW1vcnBoc319'>Animorphs</a></em>: <ul ><li> The Yeerk homeworld is covered with huge lakes of what look like melted lead, where the Yeerks live in their unhosted state. </li><li> Leera, meanwhile, is mentioned to have oceans so clear that you can see for miles, and lifeforms so bizarre a marine biologist would happily give up an arm to be there for an hour. Ax also suggests that it lacks predators, with geothermic energy pumping up to support everything. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Recap/AnimorphsTheEllimistChronicles' title='/pmwiki/pmwiki.php/Recap/AnimorphsTheEllimistChronicles' data-format='UmVjYXAvQW5pbW9ycGhzVGhlRWxsaW1pc3RDaHJvbmljbGVz'>Animorphs: The Ellimist Chronicles</a></em>, the Ketran remnant visit a strange ocean-moon with a lot of unusual electrical activity happening under the waves. <span class="spoiler" title="you can set spoilers visible by default on your profile" > The one survivor regrets this greatly, as most of the moon is covered by an entity calling itself Father which captures them and incorporates them into its body, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchOceanAbyss' title='/pmwiki/pmwiki.php/Main/EldritchOceanAbyss' data-format='W1tFbGRyaXRjaE9jZWFuQWJ5c3Mgc3VzcGVuZGVkIGRlZXAgdW5kZXJ3YXRlcl1d'>suspended deep underwater</a> with thousands of other dead aliens by its seaweed-like tentacles.</span> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ClarkAshtonSmith' title='/pmwiki/pmwiki.php/Creator/ClarkAshtonSmith' data-format='Q3JlYXRvci9DbGFya0FzaHRvblNtaXRo'>Clark Ashton Smith</a>'s short story "The Door to Saturn" (part of his Hyperborea Cycle) has two human characters travel through a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PortalDoor' title='/pmwiki/pmwiki.php/Main/PortalDoor' data-format='UG9ydGFsRG9vcg=='>Portal Door</a> to Saturn, which they find <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrollingOnJupiter' title='/pmwiki/pmwiki.php/Main/StrollingOnJupiter' data-format='W1tTdHJvbGxpbmdPbkp1cGl0ZXIgZXNzZW50aWFsbHkgaGFiaXRhYmxlXV0='>essentially habitable</a>, though very weird. One of the stranger sights they encounter is a lake of liquid metal. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCosmere' title='/pmwiki/pmwiki.php/Literature/TheCosmere' data-format='TGl0ZXJhdHVyZS9UaGVDb3NtZXJl'>The Cosmere</a></em>: <ul ><li> Oceans in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiritWorld' title='/pmwiki/pmwiki.php/Main/SpiritWorld' data-format='U3Bpcml0V29ybGQ='>Spirit World</a> of the Cognitive Realm are composed of tiny glass beads, each of which represents an inanimate object in the Physical Realm. They're still deceptively easy to drown in. </li><li> The world of <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TressOfTheEmeraldSea' title='/pmwiki/pmwiki.php/Literature/TressOfTheEmeraldSea' data-format='W1tMaXRlcmF0dXJlL1RyZXNzT2ZUaGVFbWVyYWxkU2VhIEx1bWFyXV0='>Lumar</a> has oceans composed of colorful pollen dropped by the planet's twelve moons. Air blown up from vents below causes the spores to act like a liquid, enough so that ships can sail on them. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDarkArtifices' title='/pmwiki/pmwiki.php/Literature/TheDarkArtifices' data-format='TGl0ZXJhdHVyZS9UaGVEYXJrQXJ0aWZpY2Vz'>The Dark Artifices</a></em>: The sea in Thule is stark black. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Dragaera' title='/pmwiki/pmwiki.php/Literature/Dragaera' data-format='TGl0ZXJhdHVyZS97e0RyYWdhZXJhfX0='>Dragaera</a></em>: The series reveals in passing that the ocean is orange, although it's unclear if this applies to the whole thing or just the portion that's blanketed by the Overcast. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Domain' title='/pmwiki/pmwiki.php/Literature/Domain' data-format='TGl0ZXJhdHVyZS97e0RvbWFpbn19'>Domain</a></em>: In <em>Resurrection</em>, Xibalba's seas and lakes are silver-colored. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheElricSaga' title='/pmwiki/pmwiki.php/Literature/TheElricSaga' data-format='TGl0ZXJhdHVyZS9UaGVFbHJpY1NhZ2E='>The Elric Saga</a></em>: The Heavy Sea that allows travel between worlds is thick like mercury. It's just barely drinkable but has to be chewed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Expedition' title='/pmwiki/pmwiki.php/Literature/Expedition' data-format='TGl0ZXJhdHVyZS97e0V4cGVkaXRpb259fQ=='>Expedition</a></em> (and its adaptation <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AlienPlanet' title='/pmwiki/pmwiki.php/Film/AlienPlanet' data-format='RmlsbS9BbGllblBsYW5ldA=='>Alien Planet</a></em>): The Amoebic Sea is actually a living gelatinous colloid composed of immense colonies of microorganisms. The edge of the sea towers over the surrounding beach. It was formed in response to the drying of Darwin IV, which some of its aquatic microorganisms responded to by locking as much water as possible inside of themselves until their huge, gelationous colony was the only "water" left. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HicSuntDracones' title='/pmwiki/pmwiki.php/Literature/HicSuntDracones' data-format='TGl0ZXJhdHVyZS9IaWNTdW50RHJhY29uZXM='>Hic Sunt Dracones</a>: <ul ><li> The oceans around the Farlands are made from freshwater. </li><li> The Maw of Damnation is a small ocean in the middle of the Farlands Supercontinent that is almost black in color and notably bitter. It has very unstable weather, with storms appearing and disappearing with no rhyme and reason and is inhabited by particularly nasty <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' data-format='W1tPdXJEcmFnb25zQXJlRGlmZmVyZW50IHNlYSBkcmFnb25zXV0='>sea dragons</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SeaMonster' title='/pmwiki/pmwiki.php/Main/SeaMonster' data-format='e3tzZWEgbW9uc3Rlcn19cw=='>sea monsters</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HumanxCommonwealth' title='/pmwiki/pmwiki.php/Literature/HumanxCommonwealth' data-format='TGl0ZXJhdHVyZS9IdW1hbnhDb21tb253ZWFsdGg='>Humanx Commonwealth</a></em>: The planet Quofum is best known for two things: being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VanishingVillage' title='/pmwiki/pmwiki.php/Main/VanishingVillage' data-format='W1tWYW5pc2hpbmdWaWxsYWdlIHByb25lIHRvIGRpc2FwcGVhcmluZ11d'>prone to disappearing</a> and having oceans that are 9% alcohol. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/JackelianSeries' title='/pmwiki/pmwiki.php/Literature/JackelianSeries' data-format='TGl0ZXJhdHVyZS9KYWNrZWxpYW5TZXJpZXM='>Jackelian Series</a></em>: The Fire Sea is a region of ocean underlain by intense volcanic activity, dominated by submarine-cooking Boils and fast-growing mutant corals that thrive on heat. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/JoelSuzuki' title='/pmwiki/pmwiki.php/Literature/JoelSuzuki' data-format='TGl0ZXJhdHVyZS9Kb2VsU3V6dWtp'>Joel Suzuki</a></em>: The oceans on the planet Greenseed are green. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ALordFromPlanetEarth' title='/pmwiki/pmwiki.php/Literature/ALordFromPlanetEarth' data-format='TGl0ZXJhdHVyZS9BTG9yZEZyb21QbGFuZXRFYXJ0aA=='>A Lord from Planet Earth</a></em>: In the third novel, aptly named <em>Sea of Glass</em>, all bodies of water on a remote uninhabited planet appear to be made of dust or sand. In fact, the water is perfectly consumable and hydrating, but it only turns to liquid when ingested by someone, although it does feel a bit like eating sand at first. It's a strange curiosity that no one has bothered to study since <span class="spoiler" title="you can set spoilers visible by default on your profile" >humanity is too busy fighting a war with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlueAndOrangeMorality' title='/pmwiki/pmwiki.php/Main/BlueAndOrangeMorality' data-format='Qmx1ZUFuZE9yYW5nZU1vcmFsaXR5'>Blue-and-Orange Morality</a> enemy</span>. The final <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CombatByChampion' title='/pmwiki/pmwiki.php/Main/CombatByChampion' data-format='Q29tYmF0QnlDaGFtcGlvbg=='>Combat by Champion</a> takes place on this planet on the shore of a "sand" sea. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The protagonist manages to deliver the killing blow, and then both his and the enemy's blood mixes and contacts the "water", which starts a chain reaction that turns the entire sea into regular liquid water</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ManifoldSpace' title='/pmwiki/pmwiki.php/Literature/ManifoldSpace' data-format='TGl0ZXJhdHVyZS9NYW5pZm9sZFNwYWNl'>Manifold: Space</a></em>: The Gaijin homeworld has a sea made of yellow, bubbling iron carbonyl and nickel carbonyl. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MonsterBloodTattoo' title='/pmwiki/pmwiki.php/Literature/MonsterBloodTattoo' data-format='TGl0ZXJhdHVyZS9Nb25zdGVyQmxvb2RUYXR0b28='>Monster Blood Tattoo</a></em>, set in a bio-alchemical-punk fantasy world, has strongly acidic, multicolored oceans that are the result of exotic salts from the sea floor dissolving into the water. Swimming in it is unhealthy: in half an hour, you will have a really bad rash, and over an hour and a half will kill you. There there's the colossal monsters and kraulschwimmen that stalk the sea lanes and prey on ships and sailors. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Phaeton' title='/pmwiki/pmwiki.php/Literature/Phaeton' data-format='TGl0ZXJhdHVyZS97e1BoYWV0b259fQ=='>Phaeton</a></em>: Carbonia has seas of amniotic fluid-like material, which allows humans to breathe in them. Interestingly, the air is toxic to humans. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Railsea' title='/pmwiki/pmwiki.php/Literature/Railsea' data-format='TGl0ZXJhdHVyZS97e1JhaWxzZWF9fQ=='>Railsea</a></em>: In an especially weird example, the book is set in a world where the seas are <em>dirt</em> &#8212; fathoms-deep, unfarmable dirt &#8212; that throngs with oversized hyper-predatory versions of all manner of burrowing creatures. A sprawling, intertwining network of rail lines covers the surface of these "seas", and carries specialized trains which fulfill all the roles which ships might perform on a conventional ocean. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RevelationSpaceSeries' title='/pmwiki/pmwiki.php/Literature/RevelationSpaceSeries' data-format='TGl0ZXJhdHVyZS9SZXZlbGF0aW9uU3BhY2VTZXJpZXM='>Revelation Space Series</a></em>: Planets which are inhabited by Pattern Jugglers usually have most of the surface covered by oceans. Their water contains numerous microscopic organisms that give the water an unusual color and density. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SkylarkSeries' title='/pmwiki/pmwiki.php/Literature/SkylarkSeries' data-format='TGl0ZXJhdHVyZS9Ta3lsYXJrU2VyaWVz'>Skylark Series</a></em>: The planet Osnome has literally blue oceans. This is because they are an ammoniacal copper sulphate solution &#8212; copper being exactly what the protagonists are in search of. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Solaris' title='/pmwiki/pmwiki.php/Literature/Solaris' data-format='TGl0ZXJhdHVyZS97e1NvbGFyaXN9fQ=='>Solaris</a></em> depicts a strange planet completely covered by a multicolored sea, which is actually one living, sentient organism. There were two film versions of the book which also contained this sea. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSpaceTrilogy' title='/pmwiki/pmwiki.php/Literature/TheSpaceTrilogy' data-format='TGl0ZXJhdHVyZS9UaGVTcGFjZVRyaWxvZ3k='>The Space Trilogy</a></em>: The waters of Malacandra have the peculiar quality of very pointy standing waves and are literally blue (not just reflective of the sky). The seas of Perelandra, on the other hand, are <em>orange</em>, and have floating mats of seaweed on which "land-dwelling" life grows instead of islands. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Starsnatcher' title='/pmwiki/pmwiki.php/Literature/Starsnatcher' data-format='TGl0ZXJhdHVyZS97e1N0YXJzbmF0Y2hlcn19'>Starsnatcher</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MulticulturalAlienPlanet' title='/pmwiki/pmwiki.php/Main/MulticulturalAlienPlanet' data-format='W1tNdWx0aWN1bHR1cmFsQWxpZW5QbGFuZXQgU2hhZG93bW9vbiYjMDM5O3NdXQ=='>Shadowmoon's</a> oceans turns pitch black just a few feet below the surface. This is a result of orbiting a red dwarf star whose infrared light has difficulties penetrating the water. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TalesOfTheFiveHundredKingdoms' title='/pmwiki/pmwiki.php/Literature/TalesOfTheFiveHundredKingdoms' data-format='TGl0ZXJhdHVyZS9UYWxlc09mVGhlRml2ZUh1bmRyZWRLaW5nZG9tcw=='>Tales of the Five Hundred Kingdoms</a></em>: <em>The Fairy Godmother</em>: Elena and Alexander's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EroticDream' title='/pmwiki/pmwiki.php/Main/EroticDream' data-format='e3tFcm90aWMgRHJlYW19fXM='>Erotic Dreams</a> take place on a "shore of purple sand by an amethyst sea" under an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlienSky' title='/pmwiki/pmwiki.php/Main/AlienSky' data-format='QWxpZW5Ta3k='>Alien Sky</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TaylorsArk' title='/pmwiki/pmwiki.php/Literature/TaylorsArk' data-format='TGl0ZXJhdHVyZS9UYXlsb3JzQXJr'>Taylor's Ark</a></em>: Erebus is an extremely hot world which often reaches lead-melting temperatures. Despite this, the air has just enough oxygen in it to support human life (if kept cool). This is because there are surprisingly large oceans that support oxygen-generating life, and a scientist mentions that the reasons why those haven't evaporated are fascinating, but doesn't share those reasons. Presumably they're not primarily water. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/XeeleeSequence' title='/pmwiki/pmwiki.php/Literature/XeeleeSequence' data-format='TGl0ZXJhdHVyZS9YZWVsZWVTZXF1ZW5jZQ=='>Xeelee Sequence</a></em>: On the Core of Cores, there are oceans of some quasi-liquid material, thick and red as blood. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Live-Action TV&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em>: <ul ><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS1E5TheKeysOfMarinus' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS1E5TheKeysOfMarinus' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMUU1VGhlS2V5c09mTWFyaW51cyBUaGUgS2V5cyBvZiBNYXJpbnVzXV0='>The Keys of Marinus</a>": Marinus has sands of glass and seas of sulfuric acid. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS23E2Mindwarp' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS23E2Mindwarp' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMjNFMk1pbmR3YXJwIE1pbmR3YXJwXV0='>Mindwarp</a>" opens with the TARDIS landing on the beach on a planet where the ocean is bright pink. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekDeepSpaceNine' title='/pmwiki/pmwiki.php/Series/StarTrekDeepSpaceNine' data-format='U2VyaWVzL1N0YXJUcmVrRGVlcFNwYWNlTmluZQ=='>Star Trek: Deep Space Nine</a></em>: <ul ><li> In on scene, various characters compare the tint of the oceans on their homeworlds. Earth's are blue. Bajor's are green. Trill's are purple. </li><li> The Great Link resembles a reddish ocean, but it's actually billions of Changelings in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapeshifterDefaultForm' title='/pmwiki/pmwiki.php/Main/ShapeshifterDefaultForm' data-format='W1tTaGFwZXNoaWZ0ZXJEZWZhdWx0Rm9ybSBsaXF1aWQgZm9ybV1d'>liquid form</a>, intermingling with each other. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekDeepSpaceNineS03E11PastTensePartI' title='/pmwiki/pmwiki.php/Recap/StarTrekDeepSpaceNineS03E11PastTensePartI' data-format='W1tSZWNhcC9TdGFyVHJla0RlZXBTcGFjZU5pbmVTMDNFMTFQYXN0VGVuc2VQYXJ0SSBQYXN0IFRlbnNlLCBQYXJ0IEldXQ=='>Past Tense, Part I</a>": To Dax and Kira, Earth's blue sea is rather odd &#8212; Trill's ocean is more purplish, while Bajor's is more green. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Tabletop Games&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/BattleTech' title='/pmwiki/pmwiki.php/TabletopGame/BattleTech' data-format='VGFibGV0b3BHYW1lL0JhdHRsZVRlY2g='>BattleTech</a></em> will occasionally have a note about an ocean, sea, or lake on a particular planet having a distinctive, exotic color. Usually because of the local marine microorganisms or unique mineral content in the water. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/BladesInTheDark' title='/pmwiki/pmwiki.php/TabletopGame/BladesInTheDark' data-format='VGFibGV0b3BHYW1lL0JsYWRlc0luVGhlRGFyaw=='>Blades in the Dark</a></em>: The sea is ink-dark with occasional hints of star patterns. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/CallOfCthulhu' title='/pmwiki/pmwiki.php/TabletopGame/CallOfCthulhu' data-format='VGFibGV0b3BHYW1lL0NhbGxPZkN0aHVsaHU='>Call of Cthulhu</a></em> <ul ><li> Campaign <em>The Fungi from Yuggoth</em>, adventure "Halls of Celaeno". The fourth planet of the star Celaeno (in the Pleaides) has a grey ocean. </li><li> <em>Fragments of Fear (second Cthulhu Companion)</em>, adventure "Valley of the Four Shrines". The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQbGF5ZXIgQ2hhcmFjdGVyfX1z'>Player Characters</a> can use a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrystalBall' title='/pmwiki/pmwiki.php/Main/CrystalBall' data-format='Q3J5c3RhbEJhbGw='>Crystal Ball</a>-like device to view the gray Lake of Hali where Hastur the Unspeakable lives (a planet circling the star Aldebaran). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em> <ul ><li> Adventure Q1 <em>Queen of the Demonweb Pits</em>. One of the alternate worlds the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQbGF5ZXIgQ2hhcmFjdGVyfX1z'>Player Characters</a> can visit from Lolth's Web is a planet with a pink ocean. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Exalted' title='/pmwiki/pmwiki.php/TabletopGame/Exalted' data-format='VGFibGV0b3BHYW1lL3t7RXhhbHRlZH19'>Exalted</a>: The sea of the demon realm of Malfeas is an intelligent, acidic, and very, very bitter Yozi named Kimbery, the Sea that Marched Against the Flame. According to some accounts, she is greater than every sea in Creation combined, and holds treasures and lore unending for those who are willing to scrape her acidic, benthic depths. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Planebreaker' title='/pmwiki/pmwiki.php/TabletopGame/Planebreaker' data-format='VGFibGV0b3BHYW1lL3t7UGxhbmVicmVha2VyfX0='>Planebreaker</a></em>: The Sea of Uncertainty on the Planebreaker is filled with detritus, artefacts and creatures it's picked up as it crashes through the infinite planes. The substance making up the sea shares many physical qualities with water, but differs from water in that it appears red from a distance, does not relieve thirst, and is oddly buoyant. No matter how far someone swims down, the seafloor continues to extend farther downward, although the light never fades to darkness. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/RocketAge' title='/pmwiki/pmwiki.php/TabletopGame/RocketAge' data-format='VGFibGV0b3BHYW1lL1JvY2tldEFnZQ=='>Rocket Age</a></em>'s Mars has silt seas, where the old seas of water slowly dried up and filled in as the planet's ecology collapsed. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlQXBvY2FseXBzZQ=='>Werewolf: The Apocalypse</a></em>: Lady Yul's Malfean abode is a multicolored sea of toxins </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Video Games&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Evolva' title='/pmwiki/pmwiki.php/VideoGame/Evolva' data-format='VmlkZW9HYW1lL3t7RXZvbHZhfX0='>Evolva</a></em>: The sea that appears during levels 9 and 10 is mentioned in the manual as being made of acid, and it proves it by being instantly lethal, should you dive into it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GuildWars' title='/pmwiki/pmwiki.php/VideoGame/GuildWars' data-format='VmlkZW9HYW1lL0d1aWxkV2Fycw=='>Guild Wars</a></em>: The Jade Sea is literally made of Jade due to Shiro transforming a normal sea with the Jade Wind. The waves are now frozen in place in the form of pure Jade as is the maelstrom known as Unawakening Waters. Bizarrely, fish such as kraken, carp, rays, jellyfish, and crustaceans still live on the Jade Sea's surface though have (with the obvious exception of crustaceans who <em>already</em> have legs) sprouted legs (carp and rays) or have taken to floating (kraken and jellyfish). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/IronLung' title='/pmwiki/pmwiki.php/VideoGame/IronLung' data-format='VmlkZW9HYW1lL0lyb25MdW5n'>Iron Lung</a></em> is set beneath a sea of blood on an alien moon. Note that the ocean is not bloodred, but actual blood. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KerbalSpaceProgram' title='/pmwiki/pmwiki.php/VideoGame/KerbalSpaceProgram' data-format='VmlkZW9HYW1lL0tlcmJhbFNwYWNlUHJvZ3JhbQ=='>Kerbal Space Program</a></em> has Eve, with its purple oceans (which may be partially made of rocket fuel.) Averted with Laythe, which from some angles looks as if you might still be on Kerbin. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheLegendOfSpyroTheEternalNight' title='/pmwiki/pmwiki.php/VideoGame/TheLegendOfSpyroTheEternalNight' data-format='VmlkZW9HYW1lL1RoZUxlZ2VuZE9mU3B5cm9UaGVFdGVybmFsTmlnaHQ='>The Legend of Spyro: The Eternal Night</a></em>: The seas around the Ancient Grove, and over which the Skavengers' pirate fleet flies, are the same vivid purple as its <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrimyWater' title='/pmwiki/pmwiki.php/Main/GrimyWater' data-format='R3JpbXlXYXRlcg=='>Grimy Water</a>. Later, the sea around the White Isle is a bright, glowing aqua shade. </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> The oceans of Kadara, as seen from orbit, are green. Also, if they're anything like the inland bodies of water, loaded with volcanic sulfur and pure poison to the touch. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Myst' title='/pmwiki/pmwiki.php/VideoGame/Myst' data-format='VmlkZW9HYW1lL3t7TXlzdH19'>Myst</a></em>: <ul ><li> Multiple Ages &#8212; Spire, Relto, and Kadish Tolesa among them &#8212; have a 'sea' consisting of a thick layer of fog. </li><li> The 37th Age has a sea filled with "dark currents"; when the seawater mixes with the freshwater that flows from the rivers of the one charted island, it releases a thick mist which the inhabitants worship as The Whiteness. </li><li> Torus' twin "seas" are connected through the hole in the centre of the ring; driven by a force of unknown origin, the water on one side drains through an enormous whirlpool and into an enormous fountain on the other, where it gushes into the upper atmosphere, evaporates, breezes to the "edge" of the ring, and condenses and falls as rain. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Riven' title='/pmwiki/pmwiki.php/VideoGame/Riven' data-format='VmlkZW9HYW1lL3t7Uml2ZW59fQ=='>Riven</a></em>: <ul ><li> While never explicitly stated, the oceans of Age 233 are known to be highly acidic. For one thing, Gehn collects his water from a giant bowl on the roof. For another... well, <a class='urllink' href='http://images.wikia.com/egamia/images/9/9a/Age_233.jpg'>try and guess the range of the tidal zone<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small>. </li><li> Riven has water that is more of a gelatinous colloid suspended in a mesh of microorganisms that are noticeably afraid of heat. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Uru' title='/pmwiki/pmwiki.php/VideoGame/Uru' data-format='VmlkZW9HYW1lL3t7VXJ1fX0='>Uru</a></em>: The enormous lake surrounding Ae'gura was filled with algae that caused it to glow in the dark 3/5 of the time, producing a day/night cycle. Until the algae were wiped out, of course. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MobfishHunter' title='/pmwiki/pmwiki.php/VideoGame/MobfishHunter' data-format='VmlkZW9HYW1lL01vYmZpc2hIdW50ZXI='>Mobfish Hunter</a></em>: Some of the levels have strange colored water and unusual rock formations underwater. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/NoMansSky' title='/pmwiki/pmwiki.php/VideoGame/NoMansSky' data-format='VmlkZW9HYW1lL05vTWFuc1NreQ=='>No Man's Sky</a></em>: Thanks to the 2018 Abyss update and the patch that followed it, the seas are filled with exotic alien marine life and the waters can be a wide array of colours. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Populous' title='/pmwiki/pmwiki.php/VideoGame/Populous' data-format='VmlkZW9HYW1lL3t7UG9wdWxvdXN9fQ=='>Populous</a></em>: Four of the terrains have differently-colored substances that function the same as water in the others: Rock &amp; Lava has red lava, Bit Plaius has floating letters spelling <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreatorCameo' title='/pmwiki/pmwiki.php/Main/CreatorCameo' data-format='W1tDcmVhdG9yQ2FtZW8gQlVMTEZST0csXV0='>BULLFROG,</a> Cake Land has caramel, and Silly Land has a checkerboard pattern. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ShadowMan' title='/pmwiki/pmwiki.php/VideoGame/ShadowMan' data-format='VmlkZW9HYW1lL1NoYWRvd01hbg=='>Shadow Man</a></em>: There is no water in Deadside. Instead, you will wade through rivers, lakes, and waterfalls of blood. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SonicTheHedgehogCD' title='/pmwiki/pmwiki.php/VideoGame/SonicTheHedgehogCD' data-format='VmlkZW9HYW1lL1NvbmljVGhlSGVkZ2Vob2dDRA=='>Sonic the Hedgehog CD</a></em>: The Special Stages are set on islands on other planets, each with a different color ocean. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Spore' title='/pmwiki/pmwiki.php/VideoGame/Spore' data-format='VmlkZW9HYW1lL3t7U3BvcmV9fQ=='>Spore</a></em>: Different planets' seas can be blue, green, or red. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SunlessSea' title='/pmwiki/pmwiki.php/VideoGame/SunlessSea' data-format='VmlkZW9HYW1lL1N1bmxlc3NTZWE='>Sunless Sea</a></em>: The Unterzee is pretty strange. To start with, most of the water is a sinister dark green, with the main exception being the far south (where it mingles with the blood of an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='RWxkcml0Y2hBYm9taW5hdGlvbg=='>Eldritch Abomination</a> and dissolves the hulls of ships). Various other areas are weird in new and interesting ways: the Sea of Voices, for example, has a seafloor made of moving faces, while Irem is unstuck in time and the entire northern side is arranged so that if you go off the map you invariably pop up at either Frostfound or the Avid Horizon with no idea how you got there. This is to say nothing of areas like the Iron Republic, where the zee's already loose application of the rules of reality is being intentionally undermined by Hell. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Webcomics&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Homestuck' title='/pmwiki/pmwiki.php/Webcomic/Homestuck' data-format='V2ViY29taWMve3tIb21lc3R1Y2t9fQ=='>Homestuck</a></em>: <ul ><li> The lakes and seas of John's planet, the Land of Wind and Shade, are made entirely of tar. </li><li> Rose's planet, the Land of Light and Rain, is covered in iridescent oceans whose surface is colored in a swirling mottled pattern of blue, gray, pink and yellow. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/GoodbyeStrangers' title='/pmwiki/pmwiki.php/Website/GoodbyeStrangers' data-format='V2Vic2l0ZS9Hb29kYnllU3RyYW5nZXJz'>Goodbye Strangers</a></em>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FloodedFutureWorld' title='/pmwiki/pmwiki.php/Main/FloodedFutureWorld' data-format='Rmxvb2RlZEZ1dHVyZVdvcmxk'>Flooded Future World</a> shown in the <em>Walltown</em> and <em>Infrared</em> modules is covered in red water. </li><li> The various <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SingleBiomePlanet' title='/pmwiki/pmwiki.php/Main/SingleBiomePlanet' data-format='W1tTaW5nbGVCaW9tZVBsYW5ldCBMYW5kc11d'>Lands</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Homestuck' title='/pmwiki/pmwiki.php/Webcomic/Homestuck' data-format='V2ViY29taWMve3tIb21lc3R1Y2t9fQ=='>Homestuck</a></em> feature rivers and seas made of things like magma, oil, blood, paint, and tea. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/OrionsArm' title='/pmwiki/pmwiki.php/Website/OrionsArm' data-format='V2Vic2l0ZS9PcmlvbnNBcm0='>Orion's Arm</a></em> has quite the variety, depending on the type of planet. There are seas of <a class='urllink' href='https://www.orionsarm.com/eg-article/4922c887f3436'>oil and tar<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, <a class='urllink' href='https://www.orionsarm.com/eg-article/48fe1a14962ff'>dilute hydrochloric acid<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (and these also tend to be quite shallow, due to high gravity of such planets), <a class='urllink' href='https://www.orionsarm.com/eg-article/497f12fdaf57c'>sulfuric acid<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and <a class='urllink' href='https://www.orionsarm.com/eg-article/49261d374b919'>lava<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/Website/SCPFoundation' title='/pmwiki/pmwiki.php/Website/SCPFoundation' data-format='V2Vic2l0ZS9TQ1BGb3VuZGF0aW9u'>SCP Foundation</a></em>, <a class='urllink' href='http://www.scp-wiki.net/scp-2264'>SCP-2264 ("In the Court of Alagadda").<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> The city inside SCP-2264 is surrounded by a black ocean. The nature of the liquid is unknown but it appears to be more viscous than water. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Serina' title='/pmwiki/pmwiki.php/Website/Serina' data-format='V2Vic2l0ZS97e1NlcmluYX19'>Serina</a></em>: Downplayed. The moon's oceans are largely similar to the ones of earth but a vast amount of phytoplankton in the water gives it a greenish tint. There's also the fact that when compared to earth, more of serina's oceans consist of shallow seas which allows a greater abundance of aquatic plant life and by extension, a more diverse array of animal life. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Western Animation&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ThePiratesOfDarkWater' title='/pmwiki/pmwiki.php/WesternAnimation/ThePiratesOfDarkWater' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVQaXJhdGVzT2ZEYXJrV2F0ZXI='>The Pirates of Dark Water</a></em> had the beautiful, bizarre, and geologically unstable alien water-world of Mer. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Real Life&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> Saturn's moon Titan has black <a class='urllink' href='http://en.wikipedia.org/wiki/Lakes_of_Titan'>seas composed of a mix of ethane and liquid methane<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> rather than water, and reflect the orange-brown sky. Needless to say, it is not an environment that would be well suited for human life. </li><li> Jupiter's moon Europa and Saturn's moon Enceladus are both suspected of having massive oceans hidden under miles of surface ice. </li><li> Earth can give the impression of not being itself in places, too: <ul ><li> <a class='urllink' href='http://en.wikipedia.org/wiki/Lake_Tahoe'>Lake Tahoe<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is noted for its <a class='urllink' href='http://www.flickr.com/photos/23155134@N06/5759049867/'>unusual color.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> The water appears to change from gold to green to blue to purple depending on the depth. </li><li> Similarly, <a class='urllink' href='http://www.marinelifephotography.com/diving/california/california.htm'>Emerald Bay.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> The Laguna Colorada in Bolivia is a red lake. <a class='urllink' href='http://www.odditycentral.com/pics/the-red-lake-of-bolivia.html'>No, really.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> <a class='urllink' href='https://polymathically.wordpress.com/2014/12/11/algae-on-a-gray-sand-beach/'>Ho'okena Beach on Hawaii's Big Island<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is one of the few <em>gray</em> sand beaches in the world. </li><li> Morning Glory Pool in the Yellowstone National Park used to be an example. It had originally been <a class='urllink' href='https://natmonitor.com/news/wp-content/uploads/morning-glory-pool.jpg'>rainbow-colored<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small> because of special bacteria that lived in the hot spring water, but because visitors threw trash into it which clogged the natural hot water entries, its color is <a class='urllink' href='https://upload.wikimedia.org/wikipedia/commons/3/36/Morning_Glory_Pool.jpg'>slowly fading,<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small> with estimations that it will soon be just another common hot spring. </li><li> Elsewhere in Yellowstone, the <a class='urllink' href='https://en.m.wikipedia.org/wiki/Grand_Prismatic_Spring'>Grand Prismatic Spring<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is also rainbow-colored and the largest hot spring in the United States. </li><li> There is also the Lake Retba or Lac Rose in Senegal and this lake <a class='urllink' href='http://www.buzzfeed.com/babymantis/lake-retba-senegals-pink-lake-1opu'>is pink<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. The color is caused by strange bacteria and, oddly, salt content. </li><li> The mountain Kelimutu as three lakes on its top, each with a <a class='urllink' href='https://3.bp.blogspot.com/-fG1z3e2HDKs/VSIST4YhsSI/AAAAAAAADU0/knpB4qBXZSc/s1600/Kelimutu-Flores.JPG'>different color:<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small> one is black, one is turquoise and one can range from red to blue depending on the minerals in it. </li><li> The <a class='urllink' href='http://www.atlasobscura.com/places/blood-falls'>Blood Falls of Antarctica,<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> which is a crack in a glacier out of which a large sea of dark red water is flowing, making the glacier look like it's bleeding. The coloration is due to the micro-organisms which live in the water, which have been frozen for millions of years inside the glacier. </li><li> In certain areas, large amounts of glass are worn smooth by erosion and washed to shore to form "glass beaches," entire beaches covered in what looks like many-hued and colored rocks. The most well known of these is <a class='urllink' href='https://en.wikipedia.org/wiki/Glass_Beach_(Fort_Bragg,_California)'>Glass Beach<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, but it's far from the only example. </li><li> The <a class='urllink' href='http://discovermagazine.com/1995/oct/hyperseainvasion571'>"hypersea" theory<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> of paleontologists Michael and Dianna <span class='esc-seq' title='non-wikiword'>McMenamin</span> attests that the <em>body fluids</em> &#8212; blood, endolymph, sap, cytoplasm, whatever &#8212; of eukaryotic land organisms can, in effect, be considered a highly-compartmentalized extension of the oceans. Like seawater, the liquids comprising terrestrial life are solute-rich, churned by seasonal "currents" (migration) and "upwellings" (rising sap in trees), and inhabited by untold millions of specialized life forms (pathogens and parasites) to which a host organism's body is just another aquatic habitat. </li><li> Bioluminescence makes sea glow in the dark. </li></ul></li><li> In the 80s and 90s, paleontologists asked themselves: what were the ancient seashores like? Real ancient, pre-Cambrian and early Palaeozoic. Current consensus is that without higher plants, erosion from wind and water was very rapid, and land was very flat low plains with occasional vertical rocks. There was no such thing as riverbeds; water flowed into the seas as an even layer all over the shoreline. Sediments were carried far into the sea, resulting in far stretches of shallow waters. There was no distinct border between sea and dry land, no shoreline, just kilometres of shallow pools and mud, that got slightly wetter at high tide. Creatures like modern mudskippers would thrive in such environment. Even in the deeper areas, a great deal of iron was suspended in the water, turning it a sickly green color. It wasn't until certain unicellular organisms began producing oxygen as a waste product that the iron content of the oceans dropped considerably (due to the oxygen binding to it, turning it to rust), leaving them their current blue hue. </li><li> As explained on the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlienSky' title='/pmwiki/pmwiki.php/Main/AlienSky' data-format='QWxpZW5Ta3k='>Alien Sky</a> page, the color of the daylight skies of other planets <a class='urllink' href='http://epod.usra.edu/blog/2009/02/sky-colors-for-exoearths.html'>vary depending of the type of star they're orbiting.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> As oceans reflect the color of the sky, this mean a habitable zone-planet orbiting a star hotter than the Sun would have even bluer oceans than ours and conversely if said star was cooler its oceans would look from a washed-out blue to white and even orange. </li><li> The oceans of lava theorized to exist in planets that orbit very close to their stars such as <a class='urllink' href='http://en.wikipedia.org/wiki/COROT-7_b'>CoRoT 7-B<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> or <a class='urllink' href='https://en.wikipedia.org/wiki/Kepler-78b'>Kepler-78b.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> Venus can be said to be covered in a sea of <a class='urllink' href='https://en.wikipedia.org/wiki/Supercritical_fluid'>supercritical<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> carbon dioxide thanks to its large atmospheric pressure and hot temperature. </li><li> Last, but not least, for something <em>really</em> alien the global oceans of <a class='urllink' href='https://en.wikipedia.org/wiki/Metallic_hydrogen'>metallic hydrogen<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that form the bulk of Jupiter-like planets, or especially the oceans of liquid diamond with bergs of diamond too, that likely exist in the depths of Uranus, Neptune, and similar planets. </li></ul></div> </p><p><hr data-format='&#8212;&#8212;' /> </p></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/AlienLandmass">Alien Landmass</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Spectacle">Spectacle</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AlienSky">Alien Sky</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AlienLandmass">Alien Landmass</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PlanetaryTropes">Planetary Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AlienSky">Alien Sky</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AlienLandmass">Alien Landmass</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OtherworldTropes">Otherworld Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AlienSky">Alien Sky</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AccordionToMostSailors">Accordion to Most Sailors</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TropesAtSea">Tropes at Sea</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ArtisticLicenseShips">Artistic License – Ships</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AfraidOfDoctors">Afraid of Doctors</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/StarTrek">QuoteSource/Star Trek</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheAlmightyDollar">The Almighty Dollar</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion">Neon Genesis Evangelion</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/NeonGenesisEvangelion">ImageSource/Neon Genesis Evangelion</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Angst">Angst</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AliensAreBastards">Aliens Are Bastards</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes">Speculative Fiction Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AliensInCardiff">Aliens in Cardiff</a> </li> </ul> </div> </div> <div id="proper_player_insert_div" class="outer_ads_by_salon_wrapper"> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=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