CINXE.COM

Older Than Print - 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" : "no", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "2ee58fb49f74484952c2d172f55c446e74ca485c", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "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>Older Than Print - TV Tropes</title> <meta name="description" content="An index page listing Older Than Print content. The Oldest Ones in the BookOlder Than the NES | Before 1985Older Than Cable TV | 1939 &mdash; 1980Older Than &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/OlderThanPrint" /> <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="Older Than Print - TV Tropes" /> <meta name="twitter:description" content="An index page listing Older Than Print content. The Oldest Ones in the BookOlder Than the NES | Before 1985Older Than Cable TV | 1939 &mdash; 1980Older Than &hellip;" /> <meta name="twitter:image:src" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/bestiary.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="Older Than Print - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/OlderThanPrint" /> <meta property="og:image" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/bestiary.png" /> <meta property="og:description" content="The Oldest Ones in the BookOlder Than the NES | Before 1985Older Than Cable TV | 1939 &mdash; 1980Older Than Television | 1890 &mdash; 1939Older Than Radio | 1698 &mdash; 1890Older Than Steam | 1439 &mdash; 1698Older Than Print | 476 &mdash; &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=2ee58fb49f74484952c2d172f55c446e74ca485c" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#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/LawfulEvil" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Creator/GuilhermeBriggs" 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/OlderThanPrint?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/OlderThanPrint"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.OlderThanPrint" 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.OlderThanPrint" 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/OlderThanPrint?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="OlderThanPrint"/> <input type="hidden" id="article_id" value="13408" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/OlderThanPrint</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"> Older Than Print </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": "Older Than Print", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/OlderThanPrint" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Older Than Print", "headline": "Older Than Print", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/OlderThanPrint", "image": "https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/bestiary.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-05-11T00:00:00-07:00", "dateModified": "2024-10-14T09:49:53-07: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/OlderThanPrint" 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/Br/OlderThanPrint" class="subpage-link " title="The Br page"> <span class="wrapper">Br</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/OlderThanPrint?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/OlderThanPrint?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/OlderThanPrint?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/OlderThanPrint?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/OlderThanPrint?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/OlderThanPrint?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/OlderThanPrint?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/OlderThanPrint?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/OlderThanPrint?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/OlderThanPrint?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/OlderThanPrint?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/OlderThanPrint?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/OlderThanPrint?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/OlderThanPrint?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/Laconic/OlderThanPrint?action=edit">Laconic</option> <option value="/pmwiki/pmwiki.php/MediaNotes/OlderThanPrint?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/OlderThanPrint?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/OlderThanPrint?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/OlderThanPrint?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/OlderThanPrint?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Quotes/OlderThanPrint?action=edit">Quotes</option> <option value="/pmwiki/pmwiki.php/Recap/OlderThanPrint?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/OlderThanPrint?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/OlderThanPrint?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/OlderThanPrint?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/OlderThanPrint?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/OlderThanPrint?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/OlderThanPrint?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/OlderThanPrint?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><div class="wmglead" data-attribute="wmg"><center><span class="font-s"><strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheOldestOnesInTheBook' title='/pmwiki/pmwiki.php/Main/TheOldestOnesInTheBook' data-format='VGhlT2xkZXN0T25lc0luVGhlQm9vaw=='>The Oldest Ones in the Book</a></strong><br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanTheNES' title='/pmwiki/pmwiki.php/Main/OlderThanTheNES' data-format='T2xkZXJUaGFuVGhlTkVT'>Older Than the NES</a> | Before 1985<br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanCableTV' title='/pmwiki/pmwiki.php/Main/OlderThanCableTV' data-format='T2xkZXJUaGFuQ2FibGVUVg=='>Older Than Cable TV</a> | 1939 &#8212; 1980<br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanTelevision' title='/pmwiki/pmwiki.php/Main/OlderThanTelevision' data-format='T2xkZXJUaGFuVGVsZXZpc2lvbg=='>Older Than Television</a> | 1890 &#8212; 1939<br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanRadio' title='/pmwiki/pmwiki.php/Main/OlderThanRadio' data-format='T2xkZXJUaGFuUmFkaW8='>Older Than Radio</a> | 1698 &#8212; 1890<br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanSteam' title='/pmwiki/pmwiki.php/Main/OlderThanSteam' data-format='T2xkZXJUaGFuU3RlYW0='>Older Than Steam</a> | 1439 &#8212; 1698<br data-format="\" /><strong>Older Than Print</strong> | 476 &#8212; 1439<br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanFeudalism' title='/pmwiki/pmwiki.php/Main/OlderThanFeudalism' data-format='T2xkZXJUaGFuRmV1ZGFsaXNt'>Older Than Feudalism</a> | ~800 BC &#8212; 476 AD<br data-format="\" /><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanDirt' title='/pmwiki/pmwiki.php/Main/OlderThanDirt' data-format='T2xkZXJUaGFuRGlydA=='>Older Than Dirt</a> | Before ~800 BC</span></div></center> <!--&#010;--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=17231759810.86133600--> <!-- Please don't change or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:350px;" ><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/AberdeenBestiary' title='/pmwiki/pmwiki.php/Literature/AberdeenBestiary' data-format='W1tMaXRlcmF0dXJlL0FiZXJkZWVuQmVzdGlhcnkgaHR0cHM6Ly9zdGF0aWMudHZ0cm9wZXMub3JnL3Btd2lraS9wdWIvaW1hZ2VzL2Jlc3RpYXJ5LnBuZ11d'><div class="lazy_load_img_box" style="padding-top:152.29%"><img src='https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/bestiary.png' class='embeddedimage' border='0' alt='Older Than Print' width=1200 height=1827></div></a></div> <div class="acaptionright" style="width:350px;" >The <em><a class='urllink' href='http://www.abdn.ac.uk/bestiary/'>Aberdeen Bestiary<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, c. late 12th century<br data-format="\\" /><span class="font-s">Licensed under <a class='urllink' href='https://creativecommons.org/licenses/by/4.0/deed.en'>CC BY 4.0<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></span></div> <!--&#010;--> </p><p>From the fall of Rome during the 5th century (c. 476 CE) to the invention of movable-type printing. The precise dates vary from region to region, but this was a time when literacy was low and books were rare and cost a king's ransom. In the era before movable type, most documents were hand-written, so if you were a wealthy, educated <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlueBlood' title='/pmwiki/pmwiki.php/Main/BlueBlood' data-format='Qmx1ZUJsb29k'>Blue Blood</a> or church leader and you wanted to read a book, you got your scribes to <em>hand copy</em> the book. Most Western folklore originated here, often echoing earlier tropes. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CourtlyLove' title='/pmwiki/pmwiki.php/Main/CourtlyLove' data-format='Q291cnRseUxvdmU='>Courtly Love</a> developed in this era. </p><p>Note: this is older than <em><a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/JohannesGutenberg' title='/pmwiki/pmwiki.php/UsefulNotes/JohannesGutenberg' data-format='VXNlZnVsTm90ZXMvSm9oYW5uZXNHdXRlbmJlcmc='>Johannes Gutenberg</a>'s printing press</em> (1439 CE), not metal movable-type characters (ca. 1230 CE, Korea), movable-type printing (1040 CE, China), and certainly not wood-block printing (220 CE or earlier, China again). These earlier printing methods could be used to cut down the cost of reproduction to 90 percent lower than hand-copying, but they each had drawbacks. Wood blocks used for printing had to be laboriously carved by hand, and then they'd wear out and have to re-carve the entire page. </p><p>In short, the Middle Ages &#8212; assuming you don't take Petrarch's definition for it, as he lived in the 1300s. Even <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' title='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' data-format='W1tDcmVhdG9yL1dpbGxpYW1TaGFrZXNwZWFyZSBhbGwgdGhpbmdzIFNoYWtlc3BlYXJlXV0='>all things Shakespeare</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DonQuixote' title='/pmwiki/pmwiki.php/Literature/DonQuixote' data-format='TGl0ZXJhdHVyZS9Eb25RdWl4b3Rl'>Don Quixote</a>, and many late medieval and high Renaissance era books are only <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanSteam' title='/pmwiki/pmwiki.php/Main/OlderThanSteam' data-format='T2xkZXJUaGFuU3RlYW0='>Older Than Steam</a>. </p><p>Specific works from this time period include: </p><p><ul ><li> <em>The <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>, mostly (though "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Aladdin' title='/pmwiki/pmwiki.php/Literature/Aladdin' data-format='TGl0ZXJhdHVyZS97e0FsYWRkaW59fQ=='>Aladdin</a>" and "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AliBaba' title='/pmwiki/pmwiki.php/Literature/AliBaba' data-format='TGl0ZXJhdHVyZS9BbGlCYWJh'>Ali Baba</a>" have no known source before Galland's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanRadio' title='/pmwiki/pmwiki.php/Main/OlderThanRadio' data-format='T2xkZXJUaGFuUmFkaW8='>Older Than Radio</a> French translation.) </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Beowulf' title='/pmwiki/pmwiki.php/Literature/Beowulf' data-format='TGl0ZXJhdHVyZS97e0Jlb3d1bGZ9fQ=='>Beowulf</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GeoffreyChaucer' title='/pmwiki/pmwiki.php/Creator/GeoffreyChaucer' data-format='Q3JlYXRvci9HZW9mZnJleUNoYXVjZXI='>Geoffrey Chaucer</a> </li><li> Almost everything we know of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/CelticMythology' title='/pmwiki/pmwiki.php/Myth/CelticMythology' data-format='TXl0aC9DZWx0aWNNeXRob2xvZ3k='>Celtic Mythology</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a> was first written down during this period. </li><li> Giovanni Boccacio's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Decameron' title='/pmwiki/pmwiki.php/Literature/Decameron' data-format='TGl0ZXJhdHVyZS97e0RlY2FtZXJvbn19'>Decameron</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em> by Dante Alighieri </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Art/TheGhentAltarpiece' title='/pmwiki/pmwiki.php/Art/TheGhentAltarpiece' data-format='QXJ0L1RoZUdoZW50QWx0YXJwaWVjZQ=='>The Ghent Altarpiece</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='TGl0ZXJhdHVyZS9UaGVJY2VsYW5kaWNTYWdhcw=='>The Icelandic Sagas</a> </li><li> Most sources of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='TXl0aC9BcnRodXJpYW5MZWdlbmQ='>Arthurian Legend</a>, from Geoffrey of Monmouth's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HistoriaRegumBritanniae' title='/pmwiki/pmwiki.php/Literature/HistoriaRegumBritanniae' data-format='TGl0ZXJhdHVyZS9IaXN0b3JpYVJlZ3VtQnJpdGFubmlhZQ=='>Historia Regum Britanniae</a></em> (12th century) to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SirGawainAndTheGreenKnight' title='/pmwiki/pmwiki.php/Literature/SirGawainAndTheGreenKnight' data-format='TGl0ZXJhdHVyZS9TaXJHYXdhaW5BbmRUaGVHcmVlbktuaWdodA=='>Sir Gawain and the Green Knight</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Nibelungenlied' title='/pmwiki/pmwiki.php/Literature/Nibelungenlied' data-format='e3tMaXRlcmF0dXJlL05pYmVsdW5nZW5saWVkfX0='>Nibelungenlied</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' title='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZUaGVCYW1ib29DdXR0ZXI='>The Tale of the Bamboo Cutter</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZHZW5qaQ=='>The Tale of Genji</a></em> </li><li> Various versions of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ReynardTheFox' title='/pmwiki/pmwiki.php/Literature/ReynardTheFox' data-format='TGl0ZXJhdHVyZS9SZXluYXJkVGhlRm94'>Reynard the Fox</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em> (though set in the 2nd and 3rd centuries CE) </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSongOfRoland' title='/pmwiki/pmwiki.php/Literature/TheSongOfRoland' data-format='TGl0ZXJhdHVyZS9UaGVTb25nT2ZSb2xhbmQ='>The Song of Roland</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheShahnameh' title='/pmwiki/pmwiki.php/Literature/TheShahnameh' data-format='TGl0ZXJhdHVyZS9UaGVTaGFobmFtZWg='>The Shahnameh</a></em> by Ferdowsi </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Hinduism' title='/pmwiki/pmwiki.php/UsefulNotes/Hinduism' data-format='W1t7e1VzZWZ1bE5vdGVzL0hpbmR1aXNtfX0gSGluZHVdXQ=='>Hindu</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/HinduMythology' title='/pmwiki/pmwiki.php/Myth/HinduMythology' data-format='W1tNeXRoL0hpbmR1TXl0aG9sb2d5IFB1cmFuYXNdXQ=='>Puranas</a> were composed in more-or-less their present form during the centuries before about 1000 CE, although their origins and some portions of the texts go back to at least 300 BCE. </li><li> The <em>Kojiki</em> and <em>Nihon Shoki</em>, which chronicle most of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/JapaneseMythology' title='/pmwiki/pmwiki.php/Myth/JapaneseMythology' data-format='TXl0aC9KYXBhbmVzZU15dGhvbG9neQ=='>Japanese Mythology</a> and the nation's early history, were first compiled in 711-712 and 720 CE respectively. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheQuran' title='/pmwiki/pmwiki.php/Literature/TheQuran' data-format='TGl0ZXJhdHVyZS9UaGVRdXJhbg=='>The Qur'an</a>. It was orally transmitted throughout <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheProphetMuhammad' title='/pmwiki/pmwiki.php/UsefulNotes/TheProphetMuhammad' data-format='W1tVc2VmdWxOb3Rlcy9UaGVQcm9waGV0TXVoYW1tYWQgdGhlIFByb3BoZXRdXQ=='>the Prophet</a>'s lifetime and was only codified by his successors. Final canonization was done during the reign of caliph Uthman (644-656 CE). <!--&#010;--> <!-- Before adding a Fairy Tale example to this page, please check when the Fairy Tale was--> <!-- written. Many are actually only Older Than Radio.--> <!--&#010;--> </li></ul></p><p><hr data-format='&#8212;&#8212;' /> <h2> Tropes from this time period:</h2> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbhorrentAdmirer' title='/pmwiki/pmwiki.php/Main/AbhorrentAdmirer' data-format='QWJob3JyZW50QWRtaXJlcg=='>Abhorrent Admirer</a>: Seen in the Wife of Bath's Tale in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AboveTheInfluence' title='/pmwiki/pmwiki.php/Main/AboveTheInfluence' data-format='QWJvdmVUaGVJbmZsdWVuY2U='>Above the Influence</a>: Kamar and Budur in <em>The <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AccidentallyCorrectZoology' title='/pmwiki/pmwiki.php/Main/AccidentallyCorrectZoology' data-format='QWNjaWRlbnRhbGx5Q29ycmVjdFpvb2xvZ3k='>Accidentally Correct Zoology</a>: While dragon myths are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanDirt' title='/pmwiki/pmwiki.php/Main/OlderThanDirt' data-format='T2xkZXJUaGFuRGlydA=='>Older Than Dirt</a>, depictions of winged dragons first appeared around this time, long before pterosaurs were discovered. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdjectiveAnimalAlehouse' title='/pmwiki/pmwiki.php/Main/AdjectiveAnimalAlehouse' data-format='QWRqZWN0aXZlQW5pbWFsQWxlaG91c2U='>Adjective Animal Alehouse</a>: European <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHighMiddleAges' title='/pmwiki/pmwiki.php/Main/TheHighMiddleAges' data-format='W1tUaGVIaWdoTWlkZGxlQWdlcyBIaWdoIE1pZGRsZSBBZ2VzXV0='>High Middle Ages</a> practice. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheAgeless' title='/pmwiki/pmwiki.php/Main/TheAgeless' data-format='VGhlQWdlbGVzcw=='>The Ageless</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='W1tNeXRoL05vcnNlTXl0aG9sb2d5IE5vcnNlIGdvZHNdXQ=='>Norse gods</a> are unaging, so long as they continue to eat the Apples of Idun. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlasPoorYorick' title='/pmwiki/pmwiki.php/Main/AlasPoorYorick' data-format='QWxhc1Bvb3JZb3JpY2s='>Alas, Poor Yorick</a>: St. Catherine of Siena did this, supposedly. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllWitchesHaveCats' title='/pmwiki/pmwiki.php/Main/AllWitchesHaveCats' data-format='QWxsV2l0Y2hlc0hhdmVDYXRz'>All Witches Have Cats</a>: 'A woman with a black cat is a witch' dates to this time period. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnatomicallyImpossibleSex' title='/pmwiki/pmwiki.php/Main/AnatomicallyImpossibleSex' data-format='QW5hdG9taWNhbGx5SW1wb3NzaWJsZVNleA=='>Anatomically Impossible Sex</a>: Works by Duke William IX of Aquitaine. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheAntiNihilist' title='/pmwiki/pmwiki.php/Main/TheAntiNihilist' data-format='VGhlQW50aU5paGlsaXN0'>The Anti-Nihilist</a>: A major theme of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. Everyone dies, but how one meets one's death is up to them, and the fame they have earned in life will live on afterwards. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArrowCatch' title='/pmwiki/pmwiki.php/Main/ArrowCatch' data-format='QXJyb3dDYXRjaA=='>Arrow Catch</a>: Odin in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a> and Jiang Wei in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em> can both do this. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AscendedFanboy' title='/pmwiki/pmwiki.php/Main/AscendedFanboy' data-format='QXNjZW5kZWRGYW5ib3k='>Ascended Fanboy</a>: Back in 12th century Europe, a lot of knights <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JumpedAtTheCall' title='/pmwiki/pmwiki.php/Main/JumpedAtTheCall' data-format='SnVtcGVkQXRUaGVDYWxs'>Jumped at the Call</a> of the Second Crusade. Why? They were raised on stories of the First Crusade. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttendingYourOwnFuneral' title='/pmwiki/pmwiki.php/Main/AttendingYourOwnFuneral' data-format='QXR0ZW5kaW5nWW91ck93bkZ1bmVyYWw='>Attending Your Own Funeral</a>: One year after his uncle Feng has sent Amleth to England <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PleaseShootTheMessenger' title='/pmwiki/pmwiki.php/Main/PleaseShootTheMessenger' data-format='W1tQbGVhc2VTaG9vdFRoZU1lc3NlbmdlciB3aXRoIHRoZSBpbnRlbnQgb2YgaGF2aW5nIGhpbSBraWxsZWRdXQ=='>with the intent of having him killed</a>, Amleth is presumed dead and his obsequies are being held. Just the same day Amleth returns to the royal palace. Later the same night he executes vengeance on Feng (<em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GestaDanorum' title='/pmwiki/pmwiki.php/Literature/GestaDanorum' data-format='TGl0ZXJhdHVyZS9HZXN0YURhbm9ydW0='>Gesta Danorum</a></em>). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttractiveBentGender' title='/pmwiki/pmwiki.php/Main/AttractiveBentGender' data-format='QXR0cmFjdGl2ZUJlbnRHZW5kZXI='>Attractive Bent-Gender</a>: "Prince Camaralzaman and Princess Badoura" in <em>The <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BehemothBattle' title='/pmwiki/pmwiki.php/Main/BehemothBattle' data-format='QmVoZW1vdGhCYXR0bGU='>Behemoth Battle</a>: St. Brendan and his crew in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheVoyageOfStBrendan' title='/pmwiki/pmwiki.php/Literature/TheVoyageOfStBrendan' data-format='TGl0ZXJhdHVyZS9UaGVWb3lhZ2VPZlN0QnJlbmRhbg=='>The Voyage of St. Brendan</a></em> witness two sea-monsters as well as a two giant birds fight each other to the death. Both times a "good" monster sent by God defeats and kills a "bad" monster that had tried to harm the voyagers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BerserkButton' title='/pmwiki/pmwiki.php/Main/BerserkButton' data-format='QmVyc2Vya0J1dHRvbg=='>Berserk Button</a>: Liu Bei in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BewareOfHitchHikingGhosts' title='/pmwiki/pmwiki.php/Main/BewareOfHitchHikingGhosts' data-format='QmV3YXJlT2ZIaXRjaEhpa2luZ0dob3N0cw=='>Beware Of Hitch Hiking Ghosts</a>: Mi Zhu picks up a hitchhiking <span class="spoiler" title="you can set spoilers visible by default on your profile" >fire spirit</span> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Bishonen' title='/pmwiki/pmwiki.php/Main/Bishonen' data-format='e3tCaXNob25lbn19'>Bish&#333;nen</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' data-format='W1tMaXRlcmF0dXJlL1RoZVRhbGVPZkdlbmppIFByaW5jZSBHZW5qaV1d'>Prince Genji</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackKnight' title='/pmwiki/pmwiki.php/Main/BlackKnight' data-format='QmxhY2tLbmlnaHQ='>Black Knight</a>: The two black knights from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='TXl0aC9BcnRodXJpYW5MZWdlbmQ='>Arthurian Legend</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BladeBelowTheShoulder' title='/pmwiki/pmwiki.php/Main/BladeBelowTheShoulder' data-format='QmxhZGVCZWxvd1RoZVNob3VsZGVy'>Blade Below the Shoulder</a>: In the Icelandic <em>Saga of Egil One-Hand and Asmund the Berserkerslayer</em>, the young warrior Egil loses his right hand in combat, but later he earns the gratitude of a dwarf who heals his wound and then forges a special sword for him which can be fixed on Egil's arm stump. With this device Egil can fight as before, and in fact becomes a feared swordsman. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BladeSpam' title='/pmwiki/pmwiki.php/Main/BladeSpam' data-format='QmxhZGVTcGFt'>Blade Spam</a>: Gunnar Hámundarson, one of the heroes of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NjalsSaga' title='/pmwiki/pmwiki.php/Literature/NjalsSaga' data-format='TGl0ZXJhdHVyZS9OamFsc1NhZ2E='>Njal's Saga</a></em>, "could deal blows so swiftly that three swords seemed to flash through the air at the same time." </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BolivianArmyEnding' title='/pmwiki/pmwiki.php/Main/BolivianArmyEnding' data-format='Qm9saXZpYW5Bcm15RW5kaW5n'>Bolivian Army Ending</a>: The game of <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Chess' title='/pmwiki/pmwiki.php/TabletopGame/Chess' data-format='VGFibGV0b3BHYW1lL3t7Q2hlc3N9fQ=='>Chess</a> ends when the king is surrounded with no chance of escape, but has not yet been killed or captured. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCallLeftAMessage' title='/pmwiki/pmwiki.php/Main/TheCallLeftAMessage' data-format='VGhlQ2FsbExlZnRBTWVzc2FnZQ=='>The Call Left a Message</a>: The Sword in the Stone and the Siege Perilous from the <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Myth/AruthrianLegend' title='/pmwiki/pmwiki.php/Myth/AruthrianLegend' data-format='W1tNeXRoL0FydXRocmlhbkxlZ2VuZCBBcnRodXJpYW4gbGVnZW5kc11d'>Arthurian legends</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCaptivityNarrative' title='/pmwiki/pmwiki.php/Main/TheCaptivityNarrative' data-format='VGhlQ2FwdGl2aXR5TmFycmF0aXZl'>The Captivity Narrative</a>: There was a particular brand of fiction in Medieval Europe wherein Christian travellers were captured by Muslim corsairs and imprisoned for lengthy periods, tortured and offered to convert to Islam, then <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InspirationalMartyr' title='/pmwiki/pmwiki.php/Main/InspirationalMartyr' data-format='W1tJbnNwaXJhdGlvbmFsTWFydHlyIGR5aW5nIGluIHRoZSBuYW1lIG9mIHRoZSBmYWl0aF1d'>dying in the name of the faith</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CatchAndReturn' title='/pmwiki/pmwiki.php/Main/CatchAndReturn' data-format='Q2F0Y2hBbmRSZXR1cm4='>Catch and Return</a>: Catching a spear from mid-flight and throwing it back is a feat mastered by various heroes of <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='TGl0ZXJhdHVyZS9UaGVJY2VsYW5kaWNTYWdhcw=='>The Icelandic Sagas</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChainOfDeals' title='/pmwiki/pmwiki.php/Main/ChainOfDeals' data-format='Q2hhaW5PZkRlYWxz'>Chain of Deals</a>: The Japanese legend of the straw millionaire, a poor man who prayed to the goddess of mercy. She granted him a piece of straw, which he traded through his travels until he managed to win the heart of an heiress. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChangelingTale' title='/pmwiki/pmwiki.php/Main/ChangelingTale' data-format='Q2hhbmdlbGluZ1RhbGU='>Changeling Tale</a>: Supernatural beings enticing humans away into the Otherworld is a trope of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/IrishMythology' title='/pmwiki/pmwiki.php/Myth/IrishMythology' data-format='TXl0aC9JcmlzaE15dGhvbG9neQ=='>Irish Mythology</a>, though this is not done from malice. The folk belief (common to most of Western Europe) that malicious supernatural beings outright kidnap people (especially babies) and substitute them with changelings is documented from the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLateMiddleAges' title='/pmwiki/pmwiki.php/Main/TheLateMiddleAges' data-format='e3t0aGUgTGF0ZSBNaWRkbGUgQWdlc319'>the Late Middle Ages</a> onwards. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CharacterNameAndTheNounPhrase' title='/pmwiki/pmwiki.php/Main/CharacterNameAndTheNounPhrase' data-format='Q2hhcmFjdGVyTmFtZUFuZFRoZU5vdW5QaHJhc2U='>Character Name and the Noun Phrase</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SirGawainAndTheGreenKnight' title='/pmwiki/pmwiki.php/Literature/SirGawainAndTheGreenKnight' data-format='TGl0ZXJhdHVyZS9TaXJHYXdhaW5BbmRUaGVHcmVlbktuaWdodA=='>Sir Gawain and the Green Knight</a></em>, 14th century. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChessMotifs' title='/pmwiki/pmwiki.php/Main/ChessMotifs' data-format='Q2hlc3NNb3RpZnM='>Chess Motifs</a>: Chaturanga existed by the 7th century CE. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a>: Hallmark of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHighMiddleAges' title='/pmwiki/pmwiki.php/Main/TheHighMiddleAges' data-format='W1tUaGVIaWdoTWlkZGxlQWdlcyBIaWdoIE1pZGRsZSBBZ2VzXV0='>High Middle Ages</a> literature. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChromaticArrangement' title='/pmwiki/pmwiki.php/Main/ChromaticArrangement' data-format='Q2hyb21hdGljQXJyYW5nZW1lbnQ='>Chromatic Arrangement</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Art/TheGhentAltarpiece' title='/pmwiki/pmwiki.php/Art/TheGhentAltarpiece' data-format='QXJ0L1RoZUdoZW50QWx0YXJwaWVjZQ=='>The Ghent Altarpiece</a>, painted before 1432, demonstrates this trope in its depiction of God the Father, St. John the Baptist, and the Virgin Mary, demonstrably bringing it in <em>just</em> before the dividing line. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ColdIron' title='/pmwiki/pmwiki.php/Main/ColdIron' data-format='Q29sZElyb24='>Cold Iron</a>: The traditional bane of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFairFolk' title='/pmwiki/pmwiki.php/Main/TheFairFolk' data-format='VGhlRmFpckZvbGs='>The Fair Folk</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CoitusUninterruptus' title='/pmwiki/pmwiki.php/Main/CoitusUninterruptus' data-format='Q29pdHVzVW5pbnRlcnJ1cHR1cw=='>Coitus Uninterruptus</a>: The travel writer Ahmad Ibn Fadlān who visited the land of the Volga Bulghars in 921-22 CE says of slave traders from <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/KievanRus' title='/pmwiki/pmwiki.php/UsefulNotes/KievanRus' data-format='W1tVc2VmdWxOb3Rlcy9LaWV2YW5SdXMgdGhlIFLFq3NdXQ=='>the Rūs</a> visiting the Bulghars that they frequently have sex with the girls they offer for sale, and if a customer happens to come into their quarters to buy slaves from a slaver who is just having intercourse, the man won't attend to his customer "until he has satisfied himself". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContentWarnings' title='/pmwiki/pmwiki.php/Main/ContentWarnings' data-format='Q29udGVudFdhcm5pbmdz'>Content Warnings</a>: Chaucer uses them in "The Miller's Prologue" of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CoolBoat' title='/pmwiki/pmwiki.php/Main/CoolBoat' data-format='Q29vbEJvYXQ='>Cool Boat</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a> gives us Skíðblaðnir, ship of the god Freyr, made by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDwarvesAreAllTheSame' title='/pmwiki/pmwiki.php/Main/OurDwarvesAreAllTheSame' data-format='W1tNYWluL091ckR3YXJ2ZXNBcmVBbGxUaGVTYW1lIGR3YXJ2ZXNdXQ=='>dwarves</a>. It was a full-sized ship, big enough to carry the entire Norse pantheon, that you could fold up and store in your pocket when you were done. Also, whenever you opened the sail, a favorable wind for taking you where you wanted to go would spring up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CorruptChurch' title='/pmwiki/pmwiki.php/Main/CorruptChurch' data-format='Q29ycnVwdENodXJjaA=='>Corrupt Church</a>: Medieval Western Europe allegedly got it bad enough to be commented on in several contemporary sources. The most notable of these is Dante, who puts several popes in Hell for corruption in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='W1tMaXRlcmF0dXJlL1RoZURpdmluZUNvbWVkeSBJbmZlcm5vXV0='>Inferno</a></em>, and the one pope we meet in the <em>Purgatorio</em> is also there for being too greedy before he repented. The same complaint is also what sparked the Protestant Reformation in the first place, which closely follows Gutenberg's invention of the Western printing press. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCorpseStopsHere' title='/pmwiki/pmwiki.php/Main/TheCorpseStopsHere' data-format='VGhlQ29ycHNlU3RvcHNIZXJl'>The Corpse Stops Here</a>: "The Story of the Hunchback" from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CountryMatters' title='/pmwiki/pmwiki.php/Main/CountryMatters' data-format='Q291bnRyeU1hdHRlcnM='>Country Matters</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em> <!--* CourtroomEpisode: Elaborate law court scenes are found in many of the [[Literature/TheIcelandicSagas Sagas of Icelanders]].--> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CourtlyLove' title='/pmwiki/pmwiki.php/Main/CourtlyLove' data-format='Q291cnRseUxvdmU='>Courtly Love</a>: A staple of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DamselErrant' title='/pmwiki/pmwiki.php/Main/DamselErrant' data-format='RGFtc2VsRXJyYW50'>Damsel Errant</a>: In <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='W1tNeXRoL0FydGh1cmlhbkxlZ2VuZCBBcnRodXJpYW4gbXl0aHNdXQ=='>Arthurian myths</a>, such as in the Forest of Arroy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DangerousBackswing' title='/pmwiki/pmwiki.php/Main/DangerousBackswing' data-format='RGFuZ2Vyb3VzQmFja3N3aW5n'>Dangerous Backswing</a>: Examples of fighters killing an attacker that stands behind them by swinging their weapons over their head occur in various <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIEljZWxhbmRpYyBzYWdhc11d'>Icelandic sagas</a>, such as <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NjalsSaga' title='/pmwiki/pmwiki.php/Literature/NjalsSaga' data-format='TGl0ZXJhdHVyZS9OamFsc1NhZ2E='>Njal's Saga</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfThePeopleOfVatnsdal' title='/pmwiki/pmwiki.php/Literature/TheSagaOfThePeopleOfVatnsdal' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZUaGVQZW9wbGVPZlZhdG5zZGFs'>The Saga of the People of Vatnsdal</a></em>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Heimskringla' title='/pmwiki/pmwiki.php/Literature/Heimskringla' data-format='TGl0ZXJhdHVyZS97e0hlaW1za3JpbmdsYX19'>Heimskringla</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDeadCanDance' title='/pmwiki/pmwiki.php/Main/TheDeadCanDance' data-format='VGhlRGVhZENhbkRhbmNl'>The Dead Can Dance</a>: The <em>danse macabre</em> motif in art (first in 1425), and various morality plays. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemonOfHumanOrigin' title='/pmwiki/pmwiki.php/Main/DemonOfHumanOrigin' data-format='RGVtb25PZkh1bWFuT3JpZ2lu'>Demon of Human Origin</a>: In the "Tale of Thorstein Shiver", an <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIEljZWxhbmRpYyBzaG9ydCB0YWxlXV0='>Icelandic short tale</a> from the <em>Book of Flatey</em> (c. 1390 CE), the Christian Thorstein encounters an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheImp' title='/pmwiki/pmwiki.php/Main/TheImp' data-format='W1tUaGVJbXAgaW1wIGZyb20gSGVsbF1d'>imp from Hell</a> who introduces himself as a certain Thorkel the Thin, a warrior of the pagan times who died in the famous Battle of Bravellir. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DigitalPiracyIsEvil' title='/pmwiki/pmwiki.php/Main/DigitalPiracyIsEvil' data-format='RGlnaXRhbFBpcmFjeUlzRXZpbA=='>Digital Piracy Is Evil</a>: The first known example of copyright law comes from a dispute between St. Finian and St. Columba over whether the latter had the right to freely copy the former's books, which was one of the causes of the Battle of Cúl Dreimhne. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirectLineToTheAuthor' title='/pmwiki/pmwiki.php/Main/DirectLineToTheAuthor' data-format='RGlyZWN0TGluZVRvVGhlQXV0aG9y'>Direct Line to the Author</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZHZW5qaQ=='>The Tale of Genji</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em> both have this. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyOldMonk' title='/pmwiki/pmwiki.php/Main/DirtyOldMonk' data-format='RGlydHlPbGRNb25r'>Dirty Old Monk</a>: The Friar, Summoner, Pardoner, and Monk, all from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DisposableWoman' title='/pmwiki/pmwiki.php/Main/DisposableWoman' data-format='RGlzcG9zYWJsZVdvbWFu'>Disposable Woman</a>: <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/VitaeSanctorumBritanniae' title='/pmwiki/pmwiki.php/Literature/VitaeSanctorumBritanniae' data-format='TGl0ZXJhdHVyZS9WaXRhZVNhbmN0b3J1bUJyaXRhbm5pYWU='>Vitae Sanctorum Britanniae</a></em>, before the 9th century. Also <em>Shui Hu Zhuan,</em> aka <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/OutlawsOfTheMarsh' title='/pmwiki/pmwiki.php/Literature/OutlawsOfTheMarsh' data-format='TGl0ZXJhdHVyZS9PdXRsYXdzT2ZUaGVNYXJzaA=='>Outlaws of the Marsh</a></em> or <em>The Water Margin</em> (mid-14th century). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DraconicHumanoid' title='/pmwiki/pmwiki.php/Main/DraconicHumanoid' data-format='RHJhY29uaWNIdW1hbm9pZA=='>Draconic Humanoid</a>: A few <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIE9sZCBOb3JzZSBzYWdhc11d'>Old Norse sagas</a> (for example, "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfStyrbjorn' title='/pmwiki/pmwiki.php/Literature/TheTaleOfStyrbjorn' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZTdHlyYmpvcm4='>The Tale of Styrbjorn</a>") mention a monster called <em>finngalkn</em>, a gigantic creature with the head and shoulders of a man and the lower body of a dragon. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DragonAncestry' title='/pmwiki/pmwiki.php/Main/DragonAncestry' data-format='RHJhZ29uQW5jZXN0cnk='>Dragon Ancestry</a>: Emperor Jimmu, the mythical first Emperor of Japan in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/JapaneseMythology' title='/pmwiki/pmwiki.php/Myth/JapaneseMythology' data-format='TXl0aC9KYXBhbmVzZU15dGhvbG9neQ=='>Japanese Mythology</a>, was the grandson of Otohime, the daughter of the dragon god of the sea Ryujin. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrawSwordDrawBlood' title='/pmwiki/pmwiki.php/Main/DrawSwordDrawBlood' data-format='RHJhd1N3b3JkRHJhd0Jsb29k'>Draw Sword, Draw Blood</a>: From <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>, King Högni's dwarf-made sword Dáinsleif could not be sheathed until it had drawn blood or taken life. Another dwarf-forged sword, Tyrfing, was cursed so that it would kill a man every time it was drawn. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDulcineaEffect' title='/pmwiki/pmwiki.php/Main/TheDulcineaEffect' data-format='VGhlRHVsY2luZWFFZmZlY3Q='>The Dulcinea Effect</a>: Chivalric stories, such as the 12th-century tale of the Troubadour Jaufre Rudel. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DyingDealUpgrade' title='/pmwiki/pmwiki.php/Main/DyingDealUpgrade' data-format='RHlpbmdEZWFsVXBncmFkZQ=='>Dying Deal Upgrade</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GestaDanorum' title='/pmwiki/pmwiki.php/Literature/GestaDanorum' data-format='TGl0ZXJhdHVyZS9HZXN0YURhbm9ydW0='>Gesta Danorum</a></em> Sigurd, son of Ragnar Lodbrog, is mortally wounded in his first battle. Odin appears to him and offers to heal him if Sigurd in turn will dedicate all opponents he will defeat in his life to Odin. Sigurd accepts and is cured instantly. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElectionDenial' title='/pmwiki/pmwiki.php/Main/ElectionDenial' data-format='RWxlY3Rpb25EZW5pYWw='>Election Denial</a>: Questions of the Prophet Muhammad's supposed successor by early Muslim leaders causing a succession crisis. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEveryman' title='/pmwiki/pmwiki.php/Main/TheEveryman' data-format='VGhlRXZlcnltYW4='>The Everyman</a>: These were often the protagonists of medieval everyman plays. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EverythingsBetterWithRainbows' title='/pmwiki/pmwiki.php/Main/EverythingsBetterWithRainbows' data-format='RXZlcnl0aGluZ3NCZXR0ZXJXaXRoUmFpbmJvd3M='>Everything's Better with Rainbows</a> (Rainbows as solid objects): In <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a> the rainbow is Bifrost, the bridge between Asgard and Midgard, a solid road on which the gods travel. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilDetectingDog' title='/pmwiki/pmwiki.php/Main/EvilDetectingDog' data-format='RXZpbERldGVjdGluZ0RvZw=='>Evil-Detecting Dog</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HistoriaRegumBritanniae' title='/pmwiki/pmwiki.php/Literature/HistoriaRegumBritanniae' data-format='TGl0ZXJhdHVyZS9IaXN0b3JpYVJlZ3VtQnJpdGFubmlhZQ=='>Historia Regum Britanniae</a></em>, in which Merlin uses magic to disguise Uther as Gorlois but a dog is not fooled. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilTowerOfOminousness' title='/pmwiki/pmwiki.php/Main/EvilTowerOfOminousness' data-format='RXZpbFRvd2VyT2ZPbWlub3VzbmVzcw=='>Evil Tower of Ominousness</a>: Kajebi fortress in <a class='urllink' href='http://en.wikipedia.org/wiki/The_Knight_in_the_Panther%27s_Skin'>''The Knight in the Tiger's Skin''<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (12th century). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvolutionaryPressureCooker' title='/pmwiki/pmwiki.php/Main/EvolutionaryPressureCooker' data-format='RXZvbHV0aW9uYXJ5UHJlc3N1cmVDb29rZXI='>Evolutionary Pressure Cooker</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeMaker' title='/pmwiki/pmwiki.php/Main/TropeMaker' data-format='VHJvcGVNYWtlcg=='>Trope Maker</a> and inspiration for most depictions in Eastern media is <em><a class='urllink' href='https://en.wikipedia.org/wiki/Gu_(poison)'>jincan<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> (later called <em>gu</em> in China and <em>kodoku</em> in Japan), a Chinese <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Curse' title='/pmwiki/pmwiki.php/Main/Curse' data-format='e3tjdXJzZX19'>curse</a> technique first recorded in the 7th century. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EyeBeams' title='/pmwiki/pmwiki.php/Main/EyeBeams' data-format='RXllQmVhbXM='>Eye Beams</a>: The Fomor Balor from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/IrishMythology' title='/pmwiki/pmwiki.php/Myth/IrishMythology' data-format='TXl0aC9JcmlzaE15dGhvbG9neQ=='>Irish Mythology</a> had a magic eye that could burn men "like leaves cast into a forge" (<em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBattleOfMaghTuireadh' title='/pmwiki/pmwiki.php/Literature/TheBattleOfMaghTuireadh' data-format='TGl0ZXJhdHVyZS9UaGVCYXR0bGVPZk1hZ2hUdWlyZWFkaA=='>The Battle of Magh Tuireadh</a></em>). In the <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/MatsyaPurana' title='/pmwiki/pmwiki.php/Literature/MatsyaPurana' data-format='TGl0ZXJhdHVyZS9NYXRzeWFQdXJhbmE='>Matsya Purana</a></em>, Shiva used his third eye to burn the love-god Kama to ash in wrath over being forced to fall in love with Parvati. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EyeObscuringHat' title='/pmwiki/pmwiki.php/Main/EyeObscuringHat' data-format='RXllT2JzY3VyaW5nSGF0'>Eye-Obscuring Hat</a>: Odin from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EyepatchOfPower' title='/pmwiki/pmwiki.php/Main/EyepatchOfPower' data-format='RXllcGF0Y2hPZlBvd2Vy'>Eyepatch of Power</a>: The god Odin in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFairFolk' title='/pmwiki/pmwiki.php/Main/TheFairFolk' data-format='VGhlRmFpckZvbGs='>The Fair Folk</a>: Ancient <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/IrishMythology' title='/pmwiki/pmwiki.php/Myth/IrishMythology' data-format='TXl0aC9JcmlzaE15dGhvbG9neQ=='>Irish Mythology</a>, bleeding through into British folk tales. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Fanfare' title='/pmwiki/pmwiki.php/Main/Fanfare' data-format='e3tGYW5mYXJlfX0='>Fanfare</a>: European practice heralding the arrival of a King. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FamilyEyeResemblance' title='/pmwiki/pmwiki.php/Main/FamilyEyeResemblance' data-format='RmFtaWx5RXllUmVzZW1ibGFuY2U='>Family Eye Resemblance</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/VolsungaSaga' title='/pmwiki/pmwiki.php/Literature/VolsungaSaga' data-format='TGl0ZXJhdHVyZS9Wb2xzdW5nYVNhZ2E='>Völsunga saga</a></em>, all the Volsungs have unusually bright, piercing eyes. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasticFoxes' title='/pmwiki/pmwiki.php/Main/FantasticFoxes' data-format='RmFudGFzdGljRm94ZXM='>Fantastic Foxes</a>: Oral traditions in Europe and Asia. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasticReligiousWeirdness' title='/pmwiki/pmwiki.php/Main/FantasticReligiousWeirdness' data-format='RmFudGFzdGljUmVsaWdpb3VzV2VpcmRuZXNz'>Fantastic Religious Weirdness</a>: In Islamic tradition, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent' title='/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent' data-format='W1tPdXJHZW5pZXNBcmVEaWZmZXJlbnQgamlubl1d'>jinn</a> follow religions like <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Islam' title='/pmwiki/pmwiki.php/UsefulNotes/Islam' data-format='VXNlZnVsTm90ZXMve3tJc2xhbX19'>Islam</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Christianity' title='/pmwiki/pmwiki.php/UsefulNotes/Christianity' data-format='VXNlZnVsTm90ZXMve3tDaHJpc3RpYW5pdHl9fQ=='>Christianity</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Judaism' title='/pmwiki/pmwiki.php/UsefulNotes/Judaism' data-format='VXNlZnVsTm90ZXMve3tKdWRhaXNtfX0='>Judaism</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FauxDeath' title='/pmwiki/pmwiki.php/Main/FauxDeath' data-format='RmF1eERlYXRo'>Faux Death</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/CelticMythology' title='/pmwiki/pmwiki.php/Myth/CelticMythology' data-format='W1tNeXRoL0NlbHRpY015dGhvbG9neSBDZWx0aWNdXQ=='>Celtic</a> precursor of "Sleeping Beauty". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FedToPigs' title='/pmwiki/pmwiki.php/Main/FedToPigs' data-format='RmVkVG9QaWdz'>Fed to Pigs</a>: Amleth in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GestaDanorum' title='/pmwiki/pmwiki.php/Literature/GestaDanorum' data-format='TGl0ZXJhdHVyZS9HZXN0YURhbm9ydW0='>Gesta Danorum</a></em> kills his uncle's spying courtier that tries to eavesdrop on Amleth's conversation with his mother, then cuts the body to pieces, boils it, and throws it into a sewer for pigs to eat. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FemalePope' title='/pmwiki/pmwiki.php/Main/FemalePope' data-format='RmVtYWxlUG9wZQ=='>Female Pope</a>: The legend of "Pope Joan," a woman who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SweetPollyOliver' title='/pmwiki/pmwiki.php/Main/SweetPollyOliver' data-format='W1tTd2VldFBvbGx5T2xpdmVyIGRpc2d1aXNlZCBoZXJzZWxmIGFzIGEgbWFuXV0='>disguised herself as a man</a> and was elected as <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ThePope' title='/pmwiki/pmwiki.php/UsefulNotes/ThePope' data-format='VXNlZnVsTm90ZXMvVGhlUG9wZQ=='>The Pope</a>, first appeared in the 13th century. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FencePainting' title='/pmwiki/pmwiki.php/Main/FencePainting' data-format='RmVuY2VQYWludGluZw=='>Fence Painting</a>: The modus operandi of the West African trickster Anansi the Spider. It eventually backfires on him. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FeudingFamilies' title='/pmwiki/pmwiki.php/Main/FeudingFamilies' data-format='RmV1ZGluZ0ZhbWlsaWVz'>Feuding Families</a>: Many <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIFNhZ2FzIG9mIEljZWxhbmRlcnNdXQ=='>Sagas of Icelanders</a>, such as <em>Njáls saga</em>, <em>Laxdæla saga</em>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EyrbyggjaSaga' title='/pmwiki/pmwiki.php/Literature/EyrbyggjaSaga' data-format='TGl0ZXJhdHVyZS9FeXJieWdnamFTYWdh'>Eyrbyggja Saga</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FictionalDisability' title='/pmwiki/pmwiki.php/Main/FictionalDisability' data-format='RmljdGlvbmFsRGlzYWJpbGl0eQ=='>Fictional Disability</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RagnarLothbrokAndHisSons' title='/pmwiki/pmwiki.php/Literature/RagnarLothbrokAndHisSons' data-format='TGl0ZXJhdHVyZS9SYWduYXJMb3RoYnJva0FuZEhpc1NvbnM='>Ragnar Lothbrok And His Sons</a></em>, Ragnar's new wife Kraka (a.k.a. Aslaug) prophetically warns that a child conceived within the first three nights after the wedding will "have no bones", but Ragnar insists on consummating the marriage without delay. Accordingly, Kraka's first son Ivar is born "boneless", "as if there were gristle where his bones should be". Ivar is unable to walk and has to be carried everywhere; nevertheless, he is "so large that no one was his equal" and "the handsomest of all men", and he has great strength in his upper body which makes him an excellent archer. Ivar's condition (which, despite the statement that Ivar has <em>no</em> bones whatsoever, does not seem to affect his upper body at all) does not seem to match any real-life disability. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FieryRedhead' title='/pmwiki/pmwiki.php/Main/FieryRedhead' data-format='RmllcnlSZWRoZWFk'>Fiery Redhead</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='W1tNeXRoL05vcnNlTXl0aG9sb2d5IFRob3JdXQ=='>Thor</a>, in spite of what later adaptations (and not just the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MarvelComics' title='/pmwiki/pmwiki.php/Creator/MarvelComics' data-format='Q3JlYXRvci9NYXJ2ZWxDb21pY3M='>Marvel Comics</a> one) would have you believe, was always described as red-haired and red-bearded. As for his temper, his description in <em>The Eddas</em> is: <div class='indent'> He was merry and blithe of spirit, but terrible in his wrath. </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FirstContactFarmer' title='/pmwiki/pmwiki.php/Main/FirstContactFarmer' data-format='Rmlyc3RDb250YWN0RmFybWVy'>First-Contact Farmer</a>: Kaguya in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' title='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZUaGVCYW1ib29DdXR0ZXI='>The Tale of the Bamboo Cutter</a></em> is a princess of the moon who is found and raised by a lowly bamboo cutter until she decides to return to it after becoming an adult. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FleurDeLis' title='/pmwiki/pmwiki.php/Main/FleurDeLis' data-format='RmxldXJEZUxpcw=='>Fleur-de-lis</a>: European heraldry. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FlyingSaucer' title='/pmwiki/pmwiki.php/Main/FlyingSaucer' data-format='Rmx5aW5nU2F1Y2Vy'>Flying Saucer</a>: A spaceship shaped like this is depicted in an illustration of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' title='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZUaGVCYW1ib29DdXR0ZXI='>The Tale of the Bamboo Cutter</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FootsieUnderTheTable' title='/pmwiki/pmwiki.php/Main/FootsieUnderTheTable' data-format='Rm9vdHNpZVVuZGVyVGhlVGFibGU='>Footsie Under the Table</a>: In the Icelandic <em>Saga of Bósi and Herraud</em>, Bósi initiates his one-night stand with a farmgirl of Bjarmaland by "touching her foot with his toe" at table, "and she did the same to him". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoxChickenGrainPuzzle' title='/pmwiki/pmwiki.php/Main/FoxChickenGrainPuzzle' data-format='Rm94Q2hpY2tlbkdyYWluUHV6emxl'>Fox-Chicken-Grain Puzzle</a>: The earliest recorded variation of this puzzle is found in <em>Propositiones ad Acuendos Juvenes</em>, which dates to the late ninth century. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenerationalSaga' title='/pmwiki/pmwiki.php/Main/GenerationalSaga' data-format='R2VuZXJhdGlvbmFsU2FnYQ=='>Generational Saga</a>: Various <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIEljZWxhbmRpYyBzYWdhc11d'>Icelandic sagas</a>, such as <em>Laxdæla saga</em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EyrbyggjaSaga' title='/pmwiki/pmwiki.php/Literature/EyrbyggjaSaga' data-format='TGl0ZXJhdHVyZS9FeXJieWdnamFTYWdh'>Eyrbyggja Saga</a></em>, or <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/VolsungaSaga' title='/pmwiki/pmwiki.php/Literature/VolsungaSaga' data-format='TGl0ZXJhdHVyZS9Wb2xzdW5nYVNhZ2E='>Völsunga saga</a></em> (all 13th century). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GeneHunting' title='/pmwiki/pmwiki.php/Main/GeneHunting' data-format='R2VuZUh1bnRpbmc='>Gene Hunting</a>: Máel Dúin, the hero of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheVoyageOfMaelDuin' title='/pmwiki/pmwiki.php/Literature/TheVoyageOfMaelDuin' data-format='TGl0ZXJhdHVyZS9UaGVWb3lhZ2VPZk1hZWxEdWlu'>The Voyage of Máel Dúin</a></em>, is the son of a nun and a noble who raped her, but is raised by a local king and queen as their own son. As a young adult, he learns that he is adopted, and insists on learning the truth about his birth parents. Eventually he leaves his adoptive parents to live with the family of his birth father (who has been killed by pirates years ago), and after a while makes it his mission to avenge his birth father. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='R2VuaWVJbkFCb3R0bGU='>Genie in a Bottle</a>: Arabian myth and legend. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GentleGiant' title='/pmwiki/pmwiki.php/Main/GentleGiant' data-format='R2VudGxlR2lhbnQ='>Gentle Giant</a>: Saint Christopher, post-<a class='twikilink' href='/pmwiki/pmwiki.php/Main/CharacterDevelopment' title='/pmwiki/pmwiki.php/Main/CharacterDevelopment' data-format='Q2hhcmFjdGVyRGV2ZWxvcG1lbnQ='>Character Development</a>, in the <em>Golden Legend</em> c. 1260 CE. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GourmetPetFood' title='/pmwiki/pmwiki.php/Main/GourmetPetFood' data-format='R291cm1ldFBldEZvb2Q='>Gourmet Pet Food</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>, the Prioress feeds her beloved dogs roast meat and fine bread with milk. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreedyJew' title='/pmwiki/pmwiki.php/Main/GreedyJew' data-format='R3JlZWR5SmV3'>Greedy Jew</a>: Medieval European prejudice. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGrimReaper' title='/pmwiki/pmwiki.php/Main/TheGrimReaper' data-format='VGhlR3JpbVJlYXBlcg=='>The Grim Reaper</a>: The personification of Death as a skeletal figure with a scythe was common in the middle ages in Europe, starting in the 14th century. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGuardsMustBeCrazy' title='/pmwiki/pmwiki.php/Main/TheGuardsMustBeCrazy' data-format='VGhlR3VhcmRzTXVzdEJlQ3Jhenk='>The Guards Must Be Crazy</a>: The mobility limitations of the Advisors<span class='esc-seq' title='non-wikiword'>/</span>Guards in <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Xiangqi' title='/pmwiki/pmwiki.php/TabletopGame/Xiangqi' data-format='VGFibGV0b3BHYW1lL3t7WGlhbmdxaX19'>Xiangqi</a> means they're often getting in each other's way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HandCannon' title='/pmwiki/pmwiki.php/Main/HandCannon' data-format='SGFuZENhbm5vbg=='>Hand Cannon</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamer' title='/pmwiki/pmwiki.php/Main/TropeNamer' data-format='VHJvcGVOYW1lcg=='>Trope Namer</a> was a late 13th-century Chinese invention, the precursor to all modern handheld firearms; the earliest models were literally miniaturised handheld cannons, hence the name. (In some cases it was also already called a handgun, sometimes spelled "hand<em>gonne</em>".<span class="notelabel" onclick="togglenote('note0dxvl');"><sup>note&nbsp;</sup></span><span id="note0dxvl" class="inlinefolder" isnote="true" onclick="togglenote('note0dxvl');" style="cursor:pointer;font-size:smaller;display:none;">What, you thought <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TerryPratchett' title='/pmwiki/pmwiki.php/Creator/TerryPratchett' data-format='Q3JlYXRvci9UZXJyeVByYXRjaGV0dA=='>Terry Pratchett</a> invented <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MenAtArms' title='/pmwiki/pmwiki.php/Literature/MenAtArms' data-format='W1tMaXRlcmF0dXJlL01lbkF0QXJtcyB0aGF0IHNwZWxsaW5nXV0='>that spelling</a>?</span>) It reached Europe around the early 14th century. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HammerSpace' title='/pmwiki/pmwiki.php/Main/HammerSpace' data-format='SGFtbWVyU3BhY2U='>Hammerspace</a>: Thunder-god Thor of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a> could make his hammer shrink to an incredibly tiny size, and be pulled out of seemingly nowhere, and is both the first user and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamer' title='/pmwiki/pmwiki.php/Main/TropeNamer' data-format='W1tUcm9wZU5hbWVyIG5hbWVyIG9mIHRoaXMgdHJvcGVdXQ=='>namer of this trope</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadTurnedBackwards' title='/pmwiki/pmwiki.php/Main/HeadTurnedBackwards' data-format='SGVhZFR1cm5lZEJhY2t3YXJkcw=='>Head Turned Backwards</a>: In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='W1tMaXRlcmF0dXJlL1RoZURpdmluZUNvbWVkeSBJbmZlcm5vXV0='>Inferno</a></em>, fortune-tellers have to walk forwards with their heads on backwards, unable to see what is ahead, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IronicHell' title='/pmwiki/pmwiki.php/Main/IronicHell' data-format='W1tJcm9uaWNIZWxsIGJlY2F1c2Ugb2YgdGhlaXIgZm9yYmlkZGVuIGF0dGVtcHRzIHRvIHNlZSB0aGUgZnV0dXJlIGluIGxpZmVdXQ=='>because of their forbidden attempts to see the future in life</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HoldingTheFloor' title='/pmwiki/pmwiki.php/Main/HoldingTheFloor' data-format='SG9sZGluZ1RoZUZsb29y'>Holding the Floor</a>: Scheherezade in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em> dragged this on a <em>long</em> time. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HollywoodAtheist' title='/pmwiki/pmwiki.php/Main/HollywoodAtheist' data-format='SG9sbHl3b29kQXRoZWlzdA=='>Hollywood Atheist</a>: Despite the name, this shows up at least as early as the Arabic <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HayyIbnYaqzan' title='/pmwiki/pmwiki.php/Literature/HayyIbnYaqzan' data-format='W1tMaXRlcmF0dXJlL0hheXlJYm5ZYXF6YW4gSGF5eSBpYm4gWWFxemFuXV0='>Hayy ibn Yaqzan</a></em> of the 11th and 12th centuries. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HormoneAddledTeenager' title='/pmwiki/pmwiki.php/Main/HormoneAddledTeenager' data-format='SG9ybW9uZUFkZGxlZFRlZW5hZ2Vy'>Hormone-Addled Teenager</a>: Serious scholarship says this about the narrators of <em>Decameron</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HowTheyTreatTheHelp' title='/pmwiki/pmwiki.php/Main/HowTheyTreatTheHelp' data-format='SG93VGhleVRyZWF0VGhlSGVscA=='>How They Treat the Help</a>: In <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGamelyn' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGamelyn' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZHYW1lbHlu'>The Tale Of Gamelyn</a></em>, c. 1350. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ICallHimMisterHappy' title='/pmwiki/pmwiki.php/Main/ICallHimMisterHappy' data-format='SUNhbGxIaW1NaXN0ZXJIYXBweQ=='>I Call Him "Mister Happy"</a>: "The Porter and the Three Ladies of Baghdad" in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IKEAErotica' title='/pmwiki/pmwiki.php/Main/IKEAErotica' data-format='SUtFQUVyb3RpY2E='>IKEA Erotica</a>: The gods Izanagi and Izanami, in the <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/JapaneseMythology' title='/pmwiki/pmwiki.php/Myth/JapaneseMythology' data-format='TXl0aC97e0phcGFuZXNlfE15dGhvbG9neX19'>Japanese</a> creation myth. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncrediblyConspicuousDrag' title='/pmwiki/pmwiki.php/Main/IncrediblyConspicuousDrag' data-format='SW5jcmVkaWJseUNvbnNwaWN1b3VzRHJhZw=='>Incredibly Conspicuous Drag</a>: In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PoeticEdda' title='/pmwiki/pmwiki.php/Literature/PoeticEdda' data-format='TGl0ZXJhdHVyZS9Qb2V0aWNFZGRh'>Poetic Edda</a></em>, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManlyMan' title='/pmwiki/pmwiki.php/Main/ManlyMan' data-format='W1tNYW5seU1hbiBleHRyZW1lbHkgbWFubHldXQ=='>extremely manly</a> god Thor <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItMakesSenseInContext' title='/pmwiki/pmwiki.php/Main/ItMakesSenseInContext' data-format='W1tJdE1ha2VzU2Vuc2VJbkNvbnRleHQgaGFzIHRvIGRyZXNzIHVwIGFzIHRoZSBiZWF1dGlmdWwgZ29kZGVzcyBGcmV5YSBpbiBvcmRlciB0byBnZXQgaGlzIGhhbW1lciBiYWNrXV0='>has to dress up as the beautiful goddess Freya in order to get his hammer back</a>. Loki has to make many excuses to explain why "Freya" has an enormous appetite, is incredibly large, takes thunderous steps, and has a <em>beard</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InsubstantialIngredients' title='/pmwiki/pmwiki.php/Main/InsubstantialIngredients' data-format='SW5zdWJzdGFudGlhbEluZ3JlZGllbnRz'>Insubstantial Ingredients</a>: The sound of a cat's footfall is one of several impossible ingredients in the unbreakable ribbon <a class='urllink' href='http://en.wikipedia.org/wiki/Gleipnir'>Gleipnir<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IronicNickname' title='/pmwiki/pmwiki.php/Main/IronicNickname' data-format='SXJvbmljTmlja25hbWU='>Ironic Nickname</a>: Little John from the <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/RobinHood' title='/pmwiki/pmwiki.php/Myth/RobinHood' data-format='TXl0aC9Sb2Jpbkhvb2Q='>Robin Hood</a> legends (14th century) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KingInTheMountain' title='/pmwiki/pmwiki.php/Main/KingInTheMountain' data-format='S2luZ0luVGhlTW91bnRhaW4='>King in the Mountain</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/KingArthur' title='/pmwiki/pmwiki.php/Myth/KingArthur' data-format='TXl0aC9LaW5nQXJ0aHVy'>King Arthur</a> in Cadbury Hill, Frederick Barbarossa in Kyffhäuser, King Wenceslas in Blaník, to only name a few. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Knighting' title='/pmwiki/pmwiki.php/Main/Knighting' data-format='e3tLbmlnaHRpbmd9fQ=='>Knighting</a>: Medieval European practice. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KnightErrant' title='/pmwiki/pmwiki.php/Main/KnightErrant' data-format='S25pZ2h0RXJyYW50'>Knight Errant</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KnightInShiningArmor' title='/pmwiki/pmwiki.php/Main/KnightInShiningArmor' data-format='S25pZ2h0SW5TaGluaW5nQXJtb3I='>Knight in Shining Armor</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLadysFavour' title='/pmwiki/pmwiki.php/Main/TheLadysFavour' data-format='VGhlTGFkeXNGYXZvdXI='>The Lady's Favour</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LampshadeHanging' title='/pmwiki/pmwiki.php/Main/LampshadeHanging' data-format='TGFtcHNoYWRlSGFuZ2luZw=='>Lampshade Hanging</a>: Dante's reaction to seeing so many Florentines he recognizes in Hell in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em>. The narrator of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZHZW5qaQ=='>The Tale of Genji</a></em> concludes her glamorous description of Genji's awesomeness with the note that if she mentioned <em>all</em> the ways he was amazing, it would only look absurd. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LandOfFaerie' title='/pmwiki/pmwiki.php/Main/LandOfFaerie' data-format='TGFuZE9mRmFlcmll'>Land of Faerie</a>: The Otherworld, inhabited by the Sidhe of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/IrishMythology' title='/pmwiki/pmwiki.php/Myth/IrishMythology' data-format='TXl0aC9JcmlzaE15dGhvbG9neQ=='>Irish Mythology</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LifeDeathJuxtaposition' title='/pmwiki/pmwiki.php/Main/LifeDeathJuxtaposition' data-format='TGlmZURlYXRoSnV4dGFwb3NpdGlvbg=='>Life/Death Juxtaposition</a>: The goddesses Hel and Idunna (goddesses of death and rejuvination respectively) from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LineOfSightName' title='/pmwiki/pmwiki.php/Main/LineOfSightName' data-format='TGluZU9mU2lnaHROYW1l'>Line-of-Sight Name</a>: <em>The Romance of the Three Kingdoms</em>, 1300s </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralAssKissing' title='/pmwiki/pmwiki.php/Main/LiteralAssKissing' data-format='TGl0ZXJhbEFzc0tpc3Npbmc='>Literal Ass-Kissing</a>: "The Miller's Tale" in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>, late 14th century </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoonWithAHeartOfGold' title='/pmwiki/pmwiki.php/Main/LoonWithAHeartOfGold' data-format='TG9vbldpdGhBSGVhcnRPZkdvbGQ='>Loon with a Heart of Gold</a>: Many saints and blessed ones were extremely quirky, at least by today's standards (one can remember Frances of Assisi who talked to birds and animals, etc.) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MadEye' title='/pmwiki/pmwiki.php/Main/MadEye' data-format='TWFkRXll'>Mad Eye</a>: Cuchulain, <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/CelticMythology' title='/pmwiki/pmwiki.php/Myth/CelticMythology' data-format='W1tNeXRoL0NlbHRpY015dGhvbG9neSBJcmlzaF1d'>Irish</a> folk hero, sucks one eye all the way into his skull while the other pops right out when he gets into a rage. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicIsFeminine' title='/pmwiki/pmwiki.php/Main/MagicIsFeminine' data-format='TWFnaWNJc0ZlbWluaW5l'>Magic Is Feminine</a>: In ancient Norse culture, men using magic were considered <em>ergi</em>, or unmanly, for doing so and greatly scorned. This is even brought up by the magical trickster god Loki in <em>Lokasenna</em> where Loki openly mocked Odin, the king of the Norse gods, for being a magic-user after Odin mocked him for shapeshifting into a female and bearing children. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicKnight' title='/pmwiki/pmwiki.php/Main/MagicKnight' data-format='TWFnaWNLbmlnaHQ='>Magic Knight</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='W1tNeXRoL05vcnNlTXl0aG9sb2d5IE5vcnNlIGdvZF1d'>Norse god</a> Odin. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MartialArtsStaff' title='/pmwiki/pmwiki.php/Main/MartialArtsStaff' data-format='TWFydGlhbEFydHNTdGFmZg=='>Martial Arts Staff</a>: Little John, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Myth/RobinHood' title='/pmwiki/pmwiki.php/Myth/RobinHood' data-format='TXl0aC9Sb2Jpbkhvb2Q='>Robin Hood</a></em>, 14th century </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MaskingTheDeformity' title='/pmwiki/pmwiki.php/Main/MaskingTheDeformity' data-format='TWFza2luZ1RoZURlZm9ybWl0eQ=='>Masking the Deformity</a>: After the eponymous hero of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfArrowOdd' title='/pmwiki/pmwiki.php/Literature/TheSagaOfArrowOdd' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZBcnJvd09kZA=='>The Saga of Arrow-Odd</a></em> has <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TearOffYourFace' title='/pmwiki/pmwiki.php/Main/TearOffYourFace' data-format='W1tUZWFyT2ZmWW91ckZhY2UgdG9ybiBvZmYgdGhlIGZhY2VdXQ=='>torn off the face</a> of his archenemy Ogmund, Ogmund adopts a new identity as Kvillanus and always wears a mask to hide his mutilated face. It is implied Ogmund's motive is not so much shame or vanity but that he does not want to be recognized because he knows that Odd is still seeking revenge on him. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/Merlin' title='/pmwiki/pmwiki.php/Myth/Merlin' data-format='TXl0aC97e01lcmxpbn19'>Merlin</a>: The "modern" incarnation of him began in this time period, along with the modern <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='W1tNeXRoL0FydGh1cmlhbkxlZ2VuZCBBcnRodXJpYW4gbXl0aG9zXV0='>Arthurian mythos</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MerlinAndNimue' title='/pmwiki/pmwiki.php/Main/MerlinAndNimue' data-format='TWVybGluQW5kTmltdWU='>Merlin and Nimue</a> (a relationship between two magic-users): The pair from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='TXl0aC9BcnRodXJpYW5MZWdlbmQ='>Arthurian Legend</a> are the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamer' title='/pmwiki/pmwiki.php/Main/TropeNamer' data-format='e3tUcm9wZSBOYW1lcn19cw=='>Trope Namers</a> and makers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MetaphorIsMyMiddleName' title='/pmwiki/pmwiki.php/Main/MetaphorIsMyMiddleName' data-format='TWV0YXBob3JJc015TWlkZGxlTmFtZQ=='>"Metaphor" Is My Middle Name</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em>, early 14th century </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MineralMacGuffin' title='/pmwiki/pmwiki.php/Main/MineralMacGuffin' data-format='TWluZXJhbE1hY0d1ZmZpbg=='>Mineral MacGuffin</a>: In <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a>, the magical jewel that shone of its own light is a stock magical item. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoneySlap' title='/pmwiki/pmwiki.php/Main/MoneySlap' data-format='TW9uZXlTbGFw'>Money Slap</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIEdpc2xpJiMwMzk7cyBTYWdhXV0='>Gisli's Saga</a></em>, Aud smashes the heavy purse with the silver money that Eyjolf offers her for betraying her husband Gisli into Eyjolf's face. In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FridthjofsSaga' title='/pmwiki/pmwiki.php/Literature/FridthjofsSaga' data-format='TGl0ZXJhdHVyZS9GcmlkdGhqb2ZzU2FnYQ=='>Fridthjof's Saga</a></em>, Fridthjof, upon discovering that King Helgi has treacherously broken their peace agreement, slams a bag full of silver money he has collected for Helgi full-force into Helgi's face. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonoNoAware' title='/pmwiki/pmwiki.php/Main/MonoNoAware' data-format='TW9ub05vQXdhcmU='>Mono no Aware</a>: While the term was first used in Heian-era literature, it's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeCodifier' title='/pmwiki/pmwiki.php/Main/TropeCodifier' data-format='W1tUcm9wZUNvZGlmaWVyIG1vc3RseSBrbm93biBmb3JdXQ=='>mostly known for</a> its use by Motoori Norinaga <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanRadio' title='/pmwiki/pmwiki.php/Main/OlderThanRadio' data-format='W1tPbGRlclRoYW5SYWRpbyBpbiB0aGUgMTh0aCBjZW50dXJ5XV0='>in the 18th century</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMourningAfter' title='/pmwiki/pmwiki.php/Main/TheMourningAfter' data-format='VGhlTW91cm5pbmdBZnRlcg=='>The Mourning After</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> <em>Floris and Blanchefleur</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MurderInc' title='/pmwiki/pmwiki.php/Main/MurderInc' data-format='TXVyZGVySW5j'>Murder, Inc.</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHashshashin' title='/pmwiki/pmwiki.php/Main/TheHashshashin' data-format='VGhlSGFzaHNoYXNoaW4='>The Hashshashin</a>, the original assassins, come from this period. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NameAndName' title='/pmwiki/pmwiki.php/Main/NameAndName' data-format='TmFtZUFuZE5hbWU='>Name and Name</a>: "Troilus and Criseyde", <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GeoffreyChaucer' title='/pmwiki/pmwiki.php/Creator/GeoffreyChaucer' data-format='Q3JlYXRvci9HZW9mZnJleUNoYXVjZXI='>Geoffrey Chaucer</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NaughtyNuns' title='/pmwiki/pmwiki.php/Main/NaughtyNuns' data-format='TmF1Z2h0eU51bnM='>Naughty Nuns</a>: <em>Decameron</em>, c. 1350 </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Nerf' title='/pmwiki/pmwiki.php/Main/Nerf' data-format='e3tOZXJmfX0='>Nerf</a>: Generals in Xiangqi. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffOnATechnicality' title='/pmwiki/pmwiki.php/Main/OffOnATechnicality' data-format='T2ZmT25BVGVjaG5pY2FsaXR5'>Off on a Technicality</a>: When Njál's friends and relations sue the Burners of Njál and his household with the purpose of having them outlawed, the Burners succeed twice in invalidating a verdict disfavorable to them because their legal advisor has tricked the persecution into making technical errors: The first time the lawsuit was not instituted before the legally competent court, the second time the jury contained more than the allowed number of judges (<em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NjalsSaga' title='/pmwiki/pmwiki.php/Literature/NjalsSaga' data-format='TGl0ZXJhdHVyZS9OamFsc1NhZ2E='>Njal's Saga</a></em>). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OnceUponATime' title='/pmwiki/pmwiki.php/Main/OnceUponATime' data-format='T25jZVVwb25BVGltZQ=='>Once Upon a Time</a>: Per Webster's, started around 1380. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneHitPointWonder' title='/pmwiki/pmwiki.php/Main/OneHitPointWonder' data-format='T25lSGl0UG9pbnRXb25kZXI='>One-Hit-Point Wonder</a>: Pieces in Chaturanga. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent' title='/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent' data-format='T3VyR2VuaWVzQXJlRGlmZmVyZW50'>Our Genies Are Different</a>: The varying portrayal of genies in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em> are often quite different from what the Western world expects of genies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Outlaw' title='/pmwiki/pmwiki.php/Main/Outlaw' data-format='e3tPdXRsYXd9fQ=='>Outlaw</a>: Outlawry was a common punishment in many ancient and medieval societies. In fiction, outlaws and their precarious situation are frequently represented in the Sagas of Icelanders (13th-14th century), where outlaws can play villainous, ambiguous or even heroic roles. Sympathetic outlaws are also the heroes of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/OutlawsOfTheMarsh' title='/pmwiki/pmwiki.php/Literature/OutlawsOfTheMarsh' data-format='TGl0ZXJhdHVyZS9PdXRsYXdzT2ZUaGVNYXJzaA=='>Outlaws of the Marsh</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PopGoesTheHuman' title='/pmwiki/pmwiki.php/Main/PopGoesTheHuman' data-format='UG9wR29lc1RoZUh1bWFu'>"Pop!" Goes the Human</a>: There's a Celtic yarn about a boy who is mad at his brother for being a glutton, and makes a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChainOfDeals' title='/pmwiki/pmwiki.php/Main/ChainOfDeals' data-format='Q2hhaW5PZkRlYWxz'>Chain of Deals</a> so he can hang him. When he finally gets the materials to build a gibbet, he returns home to discover that his brother burst. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrivatelyOwnedSociety' title='/pmwiki/pmwiki.php/Main/PrivatelyOwnedSociety' data-format='UHJpdmF0ZWx5T3duZWRTb2NpZXR5'>Privately Owned Society</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a> Gaelic Ireland, between 650 and 1650, and the Icelandic Commonwealth, between 930 and 1262. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePromise' title='/pmwiki/pmwiki.php/Main/ThePromise' data-format='VGhlUHJvbWlzZQ=='>The Promise</a>: In the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> <em>Sir Orfeo</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProxyWar' title='/pmwiki/pmwiki.php/Main/ProxyWar' data-format='UHJveHlXYXI='>Proxy War</a>: The 6th century conflict between the Eastern Roman (Byzantine) Empire and its chief rival the Sassanid (Persian) Empire saw one of these play out over Yemen, with both powers sending rival missionaries to convert the Yemenis and gain their allegiance. The Romans supported efforts by their East African ally Axum to convert Yemen to <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/OrthodoxChristianity' title='/pmwiki/pmwiki.php/UsefulNotes/OrthodoxChristianity' data-format='VXNlZnVsTm90ZXMvT3J0aG9kb3hDaHJpc3RpYW5pdHk='>Orthodox Christianity</a>,<span class="notelabel" onclick="togglenote('note1ispn');"><sup>note&nbsp;</sup></span><span id="note1ispn" class="inlinefolder" isnote="true" onclick="togglenote('note1ispn');" style="cursor:pointer;font-size:smaller;display:none;">Which had not at this point fully split into the Eastern and Oriental Orthodox branches</span> while the Sasanids encouraged the spread of <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Judaism' title='/pmwiki/pmwiki.php/UsefulNotes/Judaism' data-format='VXNlZnVsTm90ZXMve3tKdWRhaXNtfX0='>Judaism</a> (not because they were Jewish&#8212;they were actually <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Zoroastrianism' title='/pmwiki/pmwiki.php/UsefulNotes/Zoroastrianism' data-format='W1tVc2VmdWxOb3Rlcy97e1pvcm9hc3RyaWFuaXNtfX0gWm9yb2FzdHJpYW5zXV0='>Zoroastrians</a>&#8212;but because they had a strategic alliance with the Jewish leadership to oppose Christian/Roman power and there was a longstanding Jewish community in Yemen). When the Sassanids succeeded, the Romans got Axum to invade and conquer Yemen. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RandomEventsPlot' title='/pmwiki/pmwiki.php/Main/RandomEventsPlot' data-format='UmFuZG9tRXZlbnRzUGxvdA=='>Random Events Plot</a>: <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/ApolloniusOfTyre' title='/pmwiki/pmwiki.php/Literature/ApolloniusOfTyre' data-format='TGl0ZXJhdHVyZS9BcG9sbG9uaXVzT2ZUeXJl'>Apollonius Of Tyre</a></em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RageAgainstTheReflection' title='/pmwiki/pmwiki.php/Main/RageAgainstTheReflection' data-format='UmFnZUFnYWluc3RUaGVSZWZsZWN0aW9u'>Rage Against the Reflection</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em> Xiahou Dun, after getting his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EyepatchOfPower' title='/pmwiki/pmwiki.php/Main/EyepatchOfPower' data-format='RXllcGF0Y2hPZlBvd2Vy'>Eyepatch of Power</a>, is said to have a "wanting to break things" expression on his face whenever he got near a mirror. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealEventFictionalCause' title='/pmwiki/pmwiki.php/Main/RealEventFictionalCause' data-format='UmVhbEV2ZW50RmljdGlvbmFsQ2F1c2U='>Real Event, Fictional Cause</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em>, one saint on Venus attributes the creation of Florence to the Devil. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RediscoveringRootsTrip' title='/pmwiki/pmwiki.php/Main/RediscoveringRootsTrip' data-format='UmVkaXNjb3ZlcmluZ1Jvb3RzVHJpcA=='>"Rediscovering Roots" Trip</a>: According to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Heimskringla' title='/pmwiki/pmwiki.php/Literature/Heimskringla' data-format='TGl0ZXJhdHVyZS97e0hlaW1za3JpbmdsYX19'>Heimskringla</a></em>, King Sveigdir, the fourth successor of Odin as ruler of Sweden, went looking for Godheim (the "land of the Gods") from whence his ancestors came to Sweden four generations earlier. He spends five years in Asgard and Vanaheim and there "met many of his relatives". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReforgedBlade' title='/pmwiki/pmwiki.php/Main/ReforgedBlade' data-format='UmVmb3JnZWRCbGFkZQ=='>Reforged Blade</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeMaker' title='/pmwiki/pmwiki.php/Main/TropeMaker' data-format='VHJvcGVNYWtlcg=='>Trope Maker</a> is the Icelandic <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SagaOfTheVolsungs' title='/pmwiki/pmwiki.php/Literature/SagaOfTheVolsungs' data-format='TGl0ZXJhdHVyZS9TYWdhT2ZUaGVWb2xzdW5ncw=='>Saga of the Volsungs</a></em>: When no other blade meets his requirements, the hero Sigurd makes the dwarf Regin forge the pieces of his father's sword into a new weapon of superior quality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RevealingReflection' title='/pmwiki/pmwiki.php/Main/RevealingReflection' data-format='UmV2ZWFsaW5nUmVmbGVjdGlvbg=='>Revealing Reflection</a>: Thorkel Eyjolfsson in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfThePeopleOfLaxardal' title='/pmwiki/pmwiki.php/Literature/TheSagaOfThePeopleOfLaxardal' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZUaGVQZW9wbGVPZkxheGFyZGFs'>The Saga of the People of Laxardal</a></em> attempts to sneak up on the outlaw Grim with a drawn sword while the latter is fishing at the brink of a lake. At the last moment, Grim sees Thorkel's reflection in the water und manages to fight off Thorkel. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RobeAndWizardHat' title='/pmwiki/pmwiki.php/Main/RobeAndWizardHat' data-format='Um9iZUFuZFdpemFyZEhhdA=='>Robe and Wizard Hat</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='W1tNeXRoL05vcnNlTXl0aG9sb2d5IE5vcnNlIGdvZF1d'>Norse god</a> Odin invented it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RollInTheHay' title='/pmwiki/pmwiki.php/Main/RollInTheHay' data-format='Um9sbEluVGhlSGF5'>Roll in the Hay</a>: A popular pastime for couples on the countryside. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RumpRoast' title='/pmwiki/pmwiki.php/Main/RumpRoast' data-format='UnVtcFJvYXN0'>Rump Roast</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='W1tMaXRlcmF0dXJlL1RoZUNhbnRlcmJ1cnlUYWxlcyBUaGUgTWlsbGVyJiMwMzk7cyBUYWxlXV0='>The Miller's Tale</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SandIsWater' title='/pmwiki/pmwiki.php/Main/SandIsWater' data-format='U2FuZElzV2F0ZXI='>Sand Is Water</a>: According to <em>Mandeville's Travels</em> (14th century), there is a "Sea of Sand" in India which consists of sand that flows like water, and which even has fish that are "different from other fishes" but still edible. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SandNecktie' title='/pmwiki/pmwiki.php/Main/SandNecktie' data-format='U2FuZE5lY2t0aWU='>Sand Necktie</a>: Domenico I Contarini, doge of Venice, captured the patriarch of Aquileia, Poppo of Treffenand, in 1045, and let him be buried up to his neck, and left guards to watch over him until he died. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SapientShip' title='/pmwiki/pmwiki.php/Main/SapientShip' data-format='U2FwaWVudFNoaXA='>Sapient Ship</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FridthjofsSaga' title='/pmwiki/pmwiki.php/Literature/FridthjofsSaga' data-format='TGl0ZXJhdHVyZS9GcmlkdGhqb2ZzU2FnYQ=='>Fridthjof's Saga</a></em>, Fridthjof's ship Ellidi is enchanted "so that she had learned to understand human speech", and one time Fridthjof's life is saved in a sea-storm because the ship seemingly reacts to his call. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SassyBlackWoman' title='/pmwiki/pmwiki.php/Main/SassyBlackWoman' data-format='U2Fzc3lCbGFja1dvbWFu'>Sassy Black Woman</a>: Brunhild the Moor in <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/DieMorin' title='/pmwiki/pmwiki.php/Literature/DieMorin' data-format='W1tMaXRlcmF0dXJlL0RpZU1vcmluIERpZSBNw7ZyaW5dXQ=='>Die Mörin</a></em> by Hermann von Sachsenheim, 1453 </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretIdentity' title='/pmwiki/pmwiki.php/Main/SecretIdentity' data-format='U2VjcmV0SWRlbnRpdHk='>Secret Identity</a>: The protagonist of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChivalricRomance' title='/pmwiki/pmwiki.php/Main/ChivalricRomance' data-format='Q2hpdmFscmljUm9tYW5jZQ=='>Chivalric Romance</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RoswallAndLillian' title='/pmwiki/pmwiki.php/Literature/RoswallAndLillian' data-format='TGl0ZXJhdHVyZS9Sb3N3YWxsQW5kTGlsbGlhbg=='>Roswall And Lillian</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretStabWound' title='/pmwiki/pmwiki.php/Main/SecretStabWound' data-format='U2VjcmV0U3RhYldvdW5k'>Secret Stab Wound</a>: In one <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='TXl0aC97e0FydGh1cmlhbnxMZWdlbmR9fQ=='>Arthurian</a> story, Sir Gareth inflicted one of these on a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackKnight' title='/pmwiki/pmwiki.php/Main/BlackKnight' data-format='QmxhY2tLbmlnaHQ='>Black Knight</a> in a joust; said knight abruptly fell dead during the ensuing swordfight. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfInsertFic' title='/pmwiki/pmwiki.php/Main/SelfInsertFic' data-format='U2VsZkluc2VydEZpYw=='>Self-Insert Fic</a>: Dante's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapeshiftingLover' title='/pmwiki/pmwiki.php/Main/ShapeshiftingLover' data-format='U2hhcGVzaGlmdGluZ0xvdmVy'>Shapeshifting Lover</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/JapaneseMythology' title='/pmwiki/pmwiki.php/Myth/JapaneseMythology' data-format='TXl0aC97e0phcGFuZXNlfE15dGhvbG9neX19'>Japanese</a> kitsune and tanuki, <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/CelticMythology' title='/pmwiki/pmwiki.php/Myth/CelticMythology' data-format='W1tNeXRoL0NlbHRpY015dGhvbG9neSBJcmlzaF1d'>Irish</a> selkies, European swan maidens, and others. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapeShifterShowdown' title='/pmwiki/pmwiki.php/Main/ShapeShifterShowdown' data-format='U2hhcGVTaGlmdGVyU2hvd2Rvd24='>Shapeshifter Showdown</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/CelticMythology' title='/pmwiki/pmwiki.php/Myth/CelticMythology' data-format='W1tNeXRoL0NlbHRpY015dGhvbG9neSBXZWxzaCBteXRoXV0='>Welsh myth</a> of Cerridwen and Taliesin. The Tale of the Kalandar Prince in The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapeshiftingSquick' title='/pmwiki/pmwiki.php/Main/ShapeshiftingSquick' data-format='U2hhcGVzaGlmdGluZ1NxdWljaw=='>Shapeshifting Squick</a>: Foxes in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/JapaneseMythology' title='/pmwiki/pmwiki.php/Myth/JapaneseMythology' data-format='TXl0aC97e0phcGFuZXNlfE15dGhvbG9neX19'>Japanese</a> folklore who seduced men, then turned back into foxes after a one night stand. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShortLivedBigImpact' title='/pmwiki/pmwiki.php/Main/ShortLivedBigImpact' data-format='U2hvcnRMaXZlZEJpZ0ltcGFjdA=='>Short-Lived, Big Impact</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em> were never finished yet have influenced all of Western literature. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShutUpKirk' title='/pmwiki/pmwiki.php/Main/ShutUpKirk' data-format='U2h1dFVwS2lyaw=='>Shut Up, Kirk!</a>: In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ChansonDeRoland' title='/pmwiki/pmwiki.php/Literature/ChansonDeRoland' data-format='TGl0ZXJhdHVyZS9DaGFuc29uRGVSb2xhbmQ='>Chanson de Roland</a></em>, Charlemagne calls on the Pagan leader Baligant to repent and be baptized, and then the Emperor his "first friend will be." Baligant tells him, "Your sermon's but ill preached." Of course, the medieval belief that being non-Christian necessarily makes Baligant the villian of the piece hits modern <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ValuesDissonance' title='/pmwiki/pmwiki.php/Main/ValuesDissonance' data-format='VmFsdWVzRGlzc29uYW5jZQ=='>Values Dissonance</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SideEffectsInclude' title='/pmwiki/pmwiki.php/Main/SideEffectsInclude' data-format='U2lkZUVmZmVjdHNJbmNsdWRl'>Side Effects Include...</a>: The 6th-century Chinese medical text <em>Records of the Rock Chamber</em> list the following side effects for an alleged elixir of immortality, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RefugeInAudacity' title='/pmwiki/pmwiki.php/Main/RefugeInAudacity' data-format='W1tSZWZ1Z2VJbkF1ZGFjaXR5IHN1Z2dlc3RzIHRoYXQgdGhpcyBtZWFucyB0aGUgZWxpeGlyIGlzIHdvcmtpbmddXQ=='>suggests that this means the elixir is working</a>: <dl><dd><div class='indent'> After taking an elixir, if your face and body itch as though insects were crawling over them, if your hands and feet swell dropsically, if you cannot stand the smell of food and bring it up after you have eaten it, if you feel as though you were going to be sick most of the time, if you experience weakness in the four limbs, if you have to go often to the latrine, or if your head or stomach violently ache—do not be alarmed or disturbed. All these effects are merely proofs that the elixir you are taking is successfully dispelling your latent disorders. </div></dd></dl><ul ><li> One problem: As any modern toxicologist would tell you, these are classic signs and symptoms of acute mercury poisoning&#8212;and indeed, cinnabar (mercury (II) sulfide) is a primary ingredient in most Chinese "elixirs of immortality" of the era. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SingleTear' title='/pmwiki/pmwiki.php/Main/SingleTear' data-format='U2luZ2xlVGVhcg=='>Single Tear</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em>, "Purgatory" part, Dante meets a soldier who was spared damnation because he wept a single tear of repentance in his dying moments. Aslaug in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RagnarLodbrokAndHisSons' title='/pmwiki/pmwiki.php/Literature/RagnarLodbrokAndHisSons' data-format='W1tMaXRlcmF0dXJlL1JhZ25hckxvZGJyb2tBbmRIaXNTb25zIFNhZ2Egb2YgUmFnbmFyIExvZGJyb2tdXQ=='>Saga of Ragnar Lodbrok</a></em> weeps a single tear of blood over the death of her stepsons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SituationalHandSwitch' title='/pmwiki/pmwiki.php/Main/SituationalHandSwitch' data-format='U2l0dWF0aW9uYWxIYW5kU3dpdGNo'>Situational Hand Switch</a>: When the eponymous hero of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Waltharius' title='/pmwiki/pmwiki.php/Literature/Waltharius' data-format='TGl0ZXJhdHVyZS97e1dhbHRoYXJpdXN9fQ=='>Waltharius</a></em> gets his right hand cut off in combat, he draws his backup sword with his left hand and fights the battle to a draw. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SkyPirate' title='/pmwiki/pmwiki.php/Main/SkyPirate' data-format='U2t5UGlyYXRl'>Sky Pirate</a>: Agobard of Lyon's "On Hail and Thunder", written around 815 CE, is centered around debunking the common belief that larcenous sailors from the cloud realm of Magonia would come on flying ships to steal crops damaged by storms. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlasherSmile' title='/pmwiki/pmwiki.php/Main/SlasherSmile' data-format='U2xhc2hlclNtaWxl'>Slasher Smile</a>: Skarp-Héðinn Njálsson in <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' title='/pmwiki/pmwiki.php/Literature/TheIcelandicSagas' data-format='W1tMaXRlcmF0dXJlL1RoZUljZWxhbmRpY1NhZ2FzIHRoZSBJY2VsYW5kaWNdXQ=='>the Icelandic</a> <em>Brennu-Njáls Saga</em>. Loki in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SnakePit' title='/pmwiki/pmwiki.php/Main/SnakePit' data-format='U25ha2VQaXQ='>Snake Pit</a>: In <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>, Gunnar the Niflung as well as Ragnar Lothbrok are executed in this way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SneakySpider' title='/pmwiki/pmwiki.php/Main/SneakySpider' data-format='U25lYWt5U3BpZGVy'>Sneaky Spider</a>: Anansi of Akan oral tradition is a spider-trickster figure. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SortingAlgorithmOfEvil' title='/pmwiki/pmwiki.php/Main/SortingAlgorithmOfEvil' data-format='U29ydGluZ0FsZ29yaXRobU9mRXZpbA=='>Sorting Algorithm of Evil</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Beowulf' title='/pmwiki/pmwiki.php/Literature/Beowulf' data-format='TGl0ZXJhdHVyZS97e0Jlb3d1bGZ9fQ=='>Beowulf</a></em>, in the order in which he fights the three monsters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpoiledSweet' title='/pmwiki/pmwiki.php/Main/SpoiledSweet' data-format='U3BvaWxlZFN3ZWV0'>Spoiled Sweet</a>: Kaguya-hime, the Shining Princess from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' title='/pmwiki/pmwiki.php/Literature/TheTaleOfTheBambooCutter' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZUaGVCYW1ib29DdXR0ZXI='>The Tale of the Bamboo Cutter</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StandardFantasySetting' title='/pmwiki/pmwiki.php/Main/StandardFantasySetting' data-format='U3RhbmRhcmRGYW50YXN5U2V0dGluZw=='>Standard Fantasy Setting</a>: The setting of most of <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>, most notably <em>The Eddas</em>. Long before the modern <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Fantasy' title='/pmwiki/pmwiki.php/Main/Fantasy' data-format='e3tmYW50YXN5fX0='>fantasy</a> genre took shape, Norse Mythology envisioned a world where rugged warriors lived alongside semi-human elves, dwarves, and giants, questing for treasure and doing battle with monsters. Much of the standard vocabulary of fantasy is even ripped directly from the tales of the Norsemen, with terms like "Elf" and "Dwarf" derived from the Old Norse <em>"Alfar"</em> and <em>"Dvergr"</em>; even <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' title='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' data-format='W1tMaXRlcmF0dXJlL1RoZUxvcmRPZlRoZVJpbmdzICJNaWRkbGUgRWFydGgiXV0='>"Middle Earth"</a> is a literal English translation of the Old Norse <em>"Midgard"</em>. In short: the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StandardFantasySetting' title='/pmwiki/pmwiki.php/Main/StandardFantasySetting' data-format='U3RhbmRhcmRGYW50YXN5U2V0dGluZw=='>Standard Fantasy Setting</a> was the Standard Norse Setting before the fantasy genre existed. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StarvingStudent' title='/pmwiki/pmwiki.php/Main/StarvingStudent' data-format='U3RhcnZpbmdTdHVkZW50'>Starving Student</a>: The Clerk of Oxford from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrangeSalute' title='/pmwiki/pmwiki.php/Main/StrangeSalute' data-format='U3RyYW5nZVNhbHV0ZQ=='>Strange Salute</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDivineComedy' title='/pmwiki/pmwiki.php/Literature/TheDivineComedy' data-format='TGl0ZXJhdHVyZS9UaGVEaXZpbmVDb21lZHk='>The Divine Comedy</a></em>, some demons salute each other by <em>farting</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StylisticSuck' title='/pmwiki/pmwiki.php/Main/StylisticSuck' data-format='U3R5bGlzdGljU3Vjaw=='>Stylistic Suck</a>: The tale of Sir Thopas in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuicideAsComedy' title='/pmwiki/pmwiki.php/Main/SuicideAsComedy' data-format='U3VpY2lkZUFzQ29tZWR5'>Suicide as Comedy</a>: The family of insane hillbillies in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GautreksSaga' title='/pmwiki/pmwiki.php/Literature/GautreksSaga' data-format='TGl0ZXJhdHVyZS9HYXV0cmVrc1NhZ2E='>Gautrek's Saga</a></em> is so shaken by trivial or imaginary mishaps that all except one daughter decide to "go to Odin" by jumping from a high rock called the 'Family Cliff'. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuicideAttack' title='/pmwiki/pmwiki.php/Main/SuicideAttack' data-format='U3VpY2lkZUF0dGFjaw=='>Suicide Attack</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHashshashin' title='/pmwiki/pmwiki.php/Main/TheHashshashin' data-format='VGhlSGFzaHNoYXNoaW4='>The Hashshashin</a>, the original assassins. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TalkingWeapon' title='/pmwiki/pmwiki.php/Main/TalkingWeapon' data-format='VGFsa2luZ1dlYXBvbg=='>Talking Weapon</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBattleOfMaghTuireadh' title='/pmwiki/pmwiki.php/Literature/TheBattleOfMaghTuireadh' data-format='TGl0ZXJhdHVyZS9UaGVCYXR0bGVPZk1hZ2hUdWlyZWFkaA=='>The Battle of Magh Tuireadh</a></em> from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/IrishMythology' title='/pmwiki/pmwiki.php/Myth/IrishMythology' data-format='TXl0aC9JcmlzaE15dGhvbG9neQ=='>Irish Mythology</a> mentions Oghma's talking sword Orna, formerly owned by the Fomor king Tethra, which, when taken out of its sheath, tells every deed that has been done with it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TearOffYourFace' title='/pmwiki/pmwiki.php/Main/TearOffYourFace' data-format='VGVhck9mZllvdXJGYWNl'>Tear Off Your Face</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfArrowOdd' title='/pmwiki/pmwiki.php/Literature/TheSagaOfArrowOdd' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZBcnJvd09kZA=='>The Saga of Arrow-Odd</a></em>, the half-troll Ogmund tries to get away from Odd by sinking into the earth (as trolls can). Odd gets hold of Ogmund's beard and rips "off the whole beard with the skin underneath right down the bone, including the entire face and both cheeks". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TearsOfBlood' title='/pmwiki/pmwiki.php/Main/TearsOfBlood' data-format='VGVhcnNPZkJsb29k'>Tears of Blood</a>: A common trope in Heian era Japanese literature, for example <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZHZW5qaQ=='>The Tale of Genji</a></em>. Also shed by Kriemhild for her husband Siegfried in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Nibelungenlied' title='/pmwiki/pmwiki.php/Literature/Nibelungenlied' data-format='TGl0ZXJhdHVyZS97e05pYmVsdW5nZW5saWVkfX0='>Nibelungenlied</a></em>, and by Aslaug for her stepsons in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfRagnarLodbrok' title='/pmwiki/pmwiki.php/Literature/TheSagaOfRagnarLodbrok' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZSYWduYXJMb2Ricm9r'>The Saga of Ragnar Lodbrok</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheNewRockAndRoll' title='/pmwiki/pmwiki.php/Main/TheNewRockAndRoll' data-format='VGhlTmV3Um9ja0FuZFJvbGw='>The New Rock &amp; Roll</a>: In the 12th century, the Church denied all sacraments, including last rites, to all minstrels and street performers, effectively damning them all to Hell. The reason? Supposedly, what they did was unproductive and seduced people away from a "proper" Christian life. During the Middle Ages, musicians were seen as corruptors of youth who presumably learned their skills in Hell. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThievingMagpie' title='/pmwiki/pmwiki.php/Main/ThievingMagpie' data-format='VGhpZXZpbmdNYWdwaWU='>Thieving Magpie</a>: <em>The Arabian Nights</em> story "the Stolen Necklace". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheReasonYouSuckSpeech' title='/pmwiki/pmwiki.php/Main/TheReasonYouSuckSpeech' data-format='VGhlUmVhc29uWW91U3Vja1NwZWVjaA=='>"The Reason You Suck" Speech</a>: In pre-Islamic Arabic poetry, the poetic form of <em>Hijaa<span class='esc-seq' title='non-wikiword'>'</span></em>, although called satire by more polite historians, is actually a kind of insult poetry directed at an enemy, explaining all the reasons why he was an awful, terrible, dishonorable, no-good human being. Like satire, <em>Hijaa<span class='esc-seq' title='non-wikiword'>'</span></em> is supposed to be funny to the general audience, but it was mostly supposed to be read or heard by its target, who would be gravely insulted. Essentially the world's first diss tracks. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThirdEye' title='/pmwiki/pmwiki.php/Main/ThirdEye' data-format='VGhpcmRFeWU='>Third Eye</a>: The Hindu <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/MatsyaPurana' title='/pmwiki/pmwiki.php/Literature/MatsyaPurana' data-format='TGl0ZXJhdHVyZS9NYXRzeWFQdXJhbmE='>Matsya Purana</a></em> tells of the fear of the gods when Shiva mourned unceasingly for his dead wife Sati, because a prophecy stated that a new son of Shiva was needed to save the gods from a coming catastrophe. Kama, god of love, shot Shiva to make him fall in love with Parvati, so Shiva grew a third eye and burnt him to a crisp with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EyeBeams' title='/pmwiki/pmwiki.php/Main/EyeBeams' data-format='RXllQmVhbXM='>Eye Beams</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThrowingOffTheDisability' title='/pmwiki/pmwiki.php/Main/ThrowingOffTheDisability' data-format='VGhyb3dpbmdPZmZUaGVEaXNhYmlsaXR5'>Throwing Off the Disability</a>: Thórhall Ásgrimsson of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NjalsSaga' title='/pmwiki/pmwiki.php/Literature/NjalsSaga' data-format='TGl0ZXJhdHVyZS9OamFsc1NhZ2E='>Njal's Saga</a></em> is so infuriated that the Burners of Njál and his household have evaded a sentence of outlawry by exploiting a technicality that he drives a spear through the boil on his foot which made him walk with a cane, then storms off without a cane and without limping and kills the first man of the Burners he meets. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThrowingYourSwordAlwaysWorks' title='/pmwiki/pmwiki.php/Main/ThrowingYourSwordAlwaysWorks' data-format='VGhyb3dpbmdZb3VyU3dvcmRBbHdheXNXb3Jrcw=='>Throwing Your Sword Always Works</a>: From <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='W1tNeXRoL05vcnNlTXl0aG9sb2d5IE5vcnNlIGhlcm9pYyBsZWdlbmRdXQ=='>Norse heroic legend</a>: When the hero Sigurd is stabbed in his sleep, he throws his sword after the fleeing murderer that cuts him clean in two. The incident is related identically in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ProseEdda' title='/pmwiki/pmwiki.php/Literature/ProseEdda' data-format='TGl0ZXJhdHVyZS9Qcm9zZUVkZGE='>Prose Edda</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PoeticEdda' title='/pmwiki/pmwiki.php/Literature/PoeticEdda' data-format='TGl0ZXJhdHVyZS9Qb2V0aWNFZGRh'>Poetic Edda</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/VolsungaSaga' title='/pmwiki/pmwiki.php/Literature/VolsungaSaga' data-format='TGl0ZXJhdHVyZS9Wb2xzdW5nYVNhZ2E='>Völsunga saga</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TradingBarsForStripes' title='/pmwiki/pmwiki.php/Main/TradingBarsForStripes' data-format='VHJhZGluZ0JhcnNGb3JTdHJpcGVz'>Trading Bars for Stripes</a>: One of the earliest known examples comes from the Ottoman Empire in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a>. The bashi-bazouk were a type of irregular soldier dating back to the 1300s who were recruited from criminals, vagrants, and the homeless. Instead of being salaried, their pay consisted solely of whatever they could steal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TranslationWithAnAgenda' title='/pmwiki/pmwiki.php/Main/TranslationWithAnAgenda' data-format='VHJhbnNsYXRpb25XaXRoQW5BZ2VuZGE='>Translation with an Agenda</a>: Many translations of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBible' title='/pmwiki/pmwiki.php/Literature/TheBible' data-format='TGl0ZXJhdHVyZS9UaGVCaWJsZQ=='>The Bible</a></em> are accused of this. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrickTakingCardGame' title='/pmwiki/pmwiki.php/Main/TrickTakingCardGame' data-format='VHJpY2tUYWtpbmdDYXJkR2FtZQ=='>Trick-Taking Card Game</a>: Records of such games existing in China date back to the early second millenium. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TurnOutLikeHisFather' title='/pmwiki/pmwiki.php/Main/TurnOutLikeHisFather' data-format='VHVybk91dExpa2VIaXNGYXRoZXI='>Turn Out Like His Father</a>: Some variants of Percival, from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ArthurianLegend' title='/pmwiki/pmwiki.php/Myth/ArthurianLegend' data-format='TXl0aC9BcnRodXJpYW5MZWdlbmQ='>Arthurian Legend</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnableToCry' title='/pmwiki/pmwiki.php/Main/UnableToCry' data-format='VW5hYmxlVG9Dcnk='>Unable to Cry</a>: In the "First Lay of Gudrun" of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PoeticEdda' title='/pmwiki/pmwiki.php/Literature/PoeticEdda' data-format='TGl0ZXJhdHVyZS9Qb2V0aWNFZGRh'>Poetic Edda</a></em>, Gudrun does not weep over her murdered husband Sigurd. Several women attempt to console her by relating her own sad stories, but fail to get a reaction. Only when Gudrun's sister uncovers the dead Sigurd's face does Gudrun weep. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UptownGirl' title='/pmwiki/pmwiki.php/Main/UptownGirl' data-format='VXB0b3duR2lybA=='>Uptown Girl</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ByzantineEmpire' title='/pmwiki/pmwiki.php/UsefulNotes/ByzantineEmpire' data-format='W1tVc2VmdWxOb3Rlcy9CeXphbnRpbmVFbXBpcmUgUHJpbmNlIEp1c3RpbmlhbiBJXV0='>Prince Justinian I</a> married Theodora, a low-class actress/prostitute. As emperor he actually <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScrewTheRulesIMakeThem' title='/pmwiki/pmwiki.php/Main/ScrewTheRulesIMakeThem' data-format='W1tTY3Jld1RoZVJ1bGVzSU1ha2VUaGVtIGFib2xpc2hlZCB0aGUgbGF3cyBwcm9oaWJpdGluZyB0aGVpciBtYXJyaWFnZS5dXQ=='>abolished the laws prohibiting their marriage.</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Valkyries' title='/pmwiki/pmwiki.php/Main/Valkyries' data-format='e3tWYWxreXJpZXN9fQ=='>Valkyries</a>: May have dated from earlier, but the age of Vikings was in full-swing during this period, and most <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a> was codified and recorded during this period. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VikingFuneral' title='/pmwiki/pmwiki.php/Main/VikingFuneral' data-format='VmlraW5nRnVuZXJhbA=='>Viking Funeral</a>: The first instances are the funerals of King Scyld Scefing of Denmark in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Beowulf' title='/pmwiki/pmwiki.php/Literature/Beowulf' data-format='TGl0ZXJhdHVyZS97e0Jlb3d1bGZ9fQ=='>Beowulf</a></em> (no fire), of the god Baldur in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SnorraEdda' title='/pmwiki/pmwiki.php/Literature/SnorraEdda' data-format='TGl0ZXJhdHVyZS9Tbm9ycmFFZGRh'>Snorra Edda</a></em> (fire), and of King Haki of Sweden in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Heimskringla' title='/pmwiki/pmwiki.php/Literature/Heimskringla' data-format='TGl0ZXJhdHVyZS97e0hlaW1za3JpbmdsYX19'>Heimskringla</a></em> (fire. Probably neither variant represents real-life burial customs). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainousBreakdown' title='/pmwiki/pmwiki.php/Main/VillainousBreakdown' data-format='VmlsbGFpbm91c0JyZWFrZG93bg=='>Villainous Breakdown</a>: In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em>, Zhou Yu is completely unhinged by the failure of his last plan against Zhuge Liang. Zhou Yu's rage causes a wound to reopen and he sickens and dies shortly thereafter. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WackyFratboyHijinx' title='/pmwiki/pmwiki.php/Main/WackyFratboyHijinx' data-format='V2Fja3lGcmF0Ym95SGlqaW54'>Wacky Fratboy Hijinx</a>: The first recognizable Western universities were founded in the High Middle Ages, as far back as the 11th–13th centuries... and already students were being condemned for drunkenness, getting into violent brawls, and engaging in all sorts of mistreatment of women, up to and including rape. It was worse in some ways because medieval university students in those days were younger on average than their modern descendants. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeHaveToGetTheBulletOut' title='/pmwiki/pmwiki.php/Main/WeHaveToGetTheBulletOut' data-format='V2VIYXZlVG9HZXRUaGVCdWxsZXRPdXQ='>We Have to Get the Bullet Out!</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfTheSwornBrothers' title='/pmwiki/pmwiki.php/Literature/TheSagaOfTheSwornBrothers' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZUaGVTd29ybkJyb3RoZXJz'>The Saga of the Sworn Brothers</a></em> ends with protagonist Thormod&#8212;after fighting gloriously in the Battle of Stiklestad&#8212;drawing out the arrowhead buried in his chest with a pair of tongs, then dropping dead moments later. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeNamedTheMonkeyJack' title='/pmwiki/pmwiki.php/Main/WeNamedTheMonkeyJack' data-format='V2VOYW1lZFRoZU1vbmtleUphY2s='>We Named the Monkey "Jack"</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSagaOfHrolfKraki' title='/pmwiki/pmwiki.php/Literature/TheSagaOfHrolfKraki' data-format='TGl0ZXJhdHVyZS9UaGVTYWdhT2ZIcm9sZktyYWtp'>The Saga of Hrolf Kraki</a></em> has Queen Olof of Saxony bearing a baby daughter after being raped. She names the girl Yrsa after one of her dogs and has her raised as a serf. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhereDaWhiteWomenAt' title='/pmwiki/pmwiki.php/Main/WhereDaWhiteWomenAt' data-format='V2hlcmVEYVdoaXRlV29tZW5BdA=='>Where da White Women At?</a>: In the framing story of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>, as well as within more than one tale. The women in question are Persian, but the dynamic with black male slaves is the same. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhoNeedsTheirWholeBody' title='/pmwiki/pmwiki.php/Main/WhoNeedsTheirWholeBody' data-format='V2hvTmVlZHNUaGVpcldob2xlQm9keQ=='>Who Needs Their Whole Body?</a>: In the Arthurian story of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SirGawainAndTheGreenKnight' title='/pmwiki/pmwiki.php/Literature/SirGawainAndTheGreenKnight' data-format='TGl0ZXJhdHVyZS9TaXJHYXdhaW5BbmRUaGVHcmVlbktuaWdodA=='>Sir Gawain and the Green Knight</a></em>, the Green Knight gets beheaded and then calmly talks and walks while carrying his head. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WifeHusbandry' title='/pmwiki/pmwiki.php/Main/WifeHusbandry' data-format='V2lmZUh1c2JhbmRyeQ=='>Wife Husbandry</a>: Hikaru Genji does this with/to Murasaki in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' title='/pmwiki/pmwiki.php/Literature/TheTaleOfGenji' data-format='TGl0ZXJhdHVyZS9UaGVUYWxlT2ZHZW5qaQ=='>The Tale of Genji</a></em>. King Conchobar of Ulster tries to do this with Deirdre in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheExileOfTheSonsOfUisnech' title='/pmwiki/pmwiki.php/Literature/TheExileOfTheSonsOfUisnech' data-format='TGl0ZXJhdHVyZS9UaGVFeGlsZU9mVGhlU29uc09mVWlzbmVjaA=='>The Exile of the Sons of Uisnech</a></em>, but it doesn't work. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWildHunt' title='/pmwiki/pmwiki.php/Main/TheWildHunt' data-format='VGhlV2lsZEh1bnQ='>The Wild Hunt</a>: Unequivocal instances of this trope date to this era, the oldest probably found in the <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/BhagavataPurana' title='/pmwiki/pmwiki.php/Literature/BhagavataPurana' data-format='TGl0ZXJhdHVyZS9CaGFnYXZhdGFQdXJhbmE='>Bhagavata Purana</a></em> of Hindu literature (9th or 10th century), where mention is made of a travelling army of ghosts, headed by Shiva. For Europe, this supernatural phenomenon is probably first described by the chronicler Ordericus Vitalis in the 1130s.<span class="notelabel" onclick="togglenote('note2r4zd');"><sup>note&nbsp;</sup></span><span id="note2r4zd" class="inlinefolder" isnote="true" onclick="togglenote('note2r4zd');" style="cursor:pointer;font-size:smaller;display:none;">The "Wild Hunt" myth is also often connected to the army of the <em>Harii</em> described by Tacitus in <em>Germania</em> (c. 100 AD). The <em>Harii</em> supposedly attack at night, with their bodies painted black, thus willfully spreading fear. However, Tacitus says they are a real, living tribe.</span> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WilliamTelling' title='/pmwiki/pmwiki.php/Main/WilliamTelling' data-format='V2lsbGlhbVRlbGxpbmc='>William Telling</a>: The earliest instance is that of Palnatoki or Toko, recorded in the 12th century in Saxo Grammaticus' <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DanishHistory' title='/pmwiki/pmwiki.php/Literature/DanishHistory' data-format='TGl0ZXJhdHVyZS9EYW5pc2hIaXN0b3J5'>Danish History</a></em>. William Tell, in contrast, is first described performing the feat in the 15th century in the <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/WhiteBookOfSarnen' title='/pmwiki/pmwiki.php/Literature/WhiteBookOfSarnen' data-format='TGl0ZXJhdHVyZS9XaGl0ZUJvb2tPZlNhcm5lbg=='>White Book Of Sarnen</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WonderfulWerewolf' title='/pmwiki/pmwiki.php/Main/WonderfulWerewolf' data-format='V29uZGVyZnVsV2VyZXdvbGY='>Wonderful Werewolf</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Bisclavret' title='/pmwiki/pmwiki.php/Literature/Bisclavret' data-format='TGl0ZXJhdHVyZS97e0Jpc2NsYXZyZXR9fQ=='>Bisclavret</a></em> has the titular character transform into a wolf once a week, but still keep his morals. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Wishplosion' title='/pmwiki/pmwiki.php/Main/Wishplosion' data-format='e3tXaXNocGxvc2lvbn19'>Wishplosion</a>: In the original <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em> a man's wife gets rid of an evil genie by wishing he would straighten out a single hair. (In today's age of salons, this wouldn't work.) </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AWizardDidIt' title='/pmwiki/pmwiki.php/Main/AWizardDidIt' data-format='QVdpemFyZERpZEl0'>A Wizard Did It</a>: The Man of Law's Tale from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>. Constance was alone on a ship, adrift at sea, for years. Why didn't the ship sink? Why didn't she run out of food or fresh water? Conclusion: Jesus did it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorldOfFunnyAnimals' title='/pmwiki/pmwiki.php/Main/WorldOfFunnyAnimals' data-format='V29ybGRPZkZ1bm55QW5pbWFscw=='>World of Funny Animals</a>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ReynardTheFox' title='/pmwiki/pmwiki.php/Literature/ReynardTheFox' data-format='TGl0ZXJhdHVyZS9SZXluYXJkVGhlRm94'>Reynard the Fox</a></em> features both anthropomorphic animals as well as plenty of stuff that would not be out of place in an actual city such as houses, churches and an actual court. Although the story is not funny in the slightest. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouAllMeetInAnInn' title='/pmwiki/pmwiki.php/Main/YouAllMeetInAnInn' data-format='WW91QWxsTWVldEluQW5Jbm4='>You All Meet in an Inn</a>: The pilgrims in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' title='/pmwiki/pmwiki.php/Literature/TheCanterburyTales' data-format='TGl0ZXJhdHVyZS9UaGVDYW50ZXJidXJ5VGFsZXM='>The Canterbury Tales</a></em>, and Liu Bei and his (future) sworn brothers in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' title='/pmwiki/pmwiki.php/Literature/RomanceOfTheThreeKingdoms' data-format='TGl0ZXJhdHVyZS9Sb21hbmNlT2ZUaGVUaHJlZUtpbmdkb21z'>Romance of the Three Kingdoms</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouCannotKillAnIdea' title='/pmwiki/pmwiki.php/Main/YouCannotKillAnIdea' data-format='WW91Q2Fubm90S2lsbEFuSWRlYQ=='>You Cannot Kill An Idea</a>: Quoth <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='W1tNeXRoL05vcnNlTXl0aG9sb2d5IE9kaW5dXQ=='>Odin</a> in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PoeticEdda' title='/pmwiki/pmwiki.php/Literature/PoeticEdda' data-format='TGl0ZXJhdHVyZS9Qb2V0aWNFZGRh'>Poetic Edda</a></em> (more specifically, in the poem <em><a class='urllink' href='https://en.wikipedia.org/wiki/H<!--C3-->A1vam<!--C3-->A1l'>Hávamál<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>): "Cattle die, kinsmen die, you yourself will also die; but the fair fame never dies of him who has earned it." </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouthIsWastedOnTheDumb' title='/pmwiki/pmwiki.php/Main/YouthIsWastedOnTheDumb' data-format='WW91dGhJc1dhc3RlZE9uVGhlRHVtYg=='>Youth Is Wasted on the Dumb</a>: In <em>Beowulf</em>, the eponymous hero describes his and his cousin's swimming across the sea as something they did when they were young and prideful. </li></ul><!&#8212;/index&#8212;> <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/OlderThanFeudalism">Older Than Feudalism</a> </li> <li> <a href="/pmwiki/pmwiki.php/Nl/DeOudstenInHetBoek">Nl/De Oudsten In Het Boek</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OlderThanSteam">Older Than Steam</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OlderThanFeudalism">Older Than Feudalism</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheOldestOnesInTheBook">The Oldest Ones in the Book</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OlderThanSteam">Older Than Steam</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/PushedAtTheMonster">Pushed at the Monster</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/Literature">ImageSource/Literature</a> </li> <li> <a href="/pmwiki/pmwiki.php/Literature/TheAdventuresOfTomSawyer">The Adventures of Tom Sawyer</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=2ee58fb49f74484952c2d172f55c446e74ca485c'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=2ee58fb49f74484952c2d172f55c446e74ca485c'; } 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