CINXE.COM

Politics Tropes - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Politics Tropes - TV Tropes</title> <meta name="description" content="An index page listing Politics Tropes content. Tropes that are related to governmental systems, political ideologies, policies, and practices, and the way &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/PoliticsTropes" /> <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="Politics Tropes - TV Tropes" /> <meta name="twitter:description" content="An index page listing Politics Tropes content. Tropes that are related to governmental systems, political ideologies, policies, and practices, and the way &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/06931_the_encyclopedia_of_politics_the_left_and_the_right_volume_two_the_right.jpg" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Politics Tropes - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/PoliticsTropes" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/06931_the_encyclopedia_of_politics_the_left_and_the_right_volume_two_the_right.jpg" /> <meta property="og:description" content="Tropes that are related to governmental systems, political ideologies, policies, and practices, and the way they shape historical/current events in both fiction and the real world. Political facts and useful notes can be found on the Useful Notes &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/WhatIsThisThingYouCallLove" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/VideoGame/TailsAdventure" 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/PoliticsTropes?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/PoliticsTropes"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.PoliticsTropes" 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.PoliticsTropes" 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/PoliticsTropes?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="PoliticsTropes"/> <input type="hidden" id="article_id" value="5144" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/PoliticsTropes</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"> Politics Tropes </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Politics Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/PoliticsTropes" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Politics Tropes", "headline": "Politics Tropes", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/PoliticsTropes", "image": "https://static.tvtropes.org/pmwiki/pub/images/06931_the_encyclopedia_of_politics_the_left_and_the_right_volume_two_the_right.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2007-08-28T00:00:00-07:00", "dateModified": "2024-11-23T10:14:28-08:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/PoliticsTropes" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/PoliticsTropes?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/PoliticsTropes?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/PoliticsTropes?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/PoliticsTropes?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/PoliticsTropes?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/PoliticsTropes?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/PoliticsTropes?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/PoliticsTropes?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/PoliticsTropes?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/PoliticsTropes?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/PoliticsTropes?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/PoliticsTropes?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/PoliticsTropes?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/PoliticsTropes?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/Laconic/PoliticsTropes?action=edit">Laconic</option> <option value="/pmwiki/pmwiki.php/MediaNotes/PoliticsTropes?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/PoliticsTropes?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/PoliticsTropes?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/PoliticsTropes?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/PoliticsTropes?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/PoliticsTropes?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/PoliticsTropes?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/PoliticsTropes?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/PoliticsTropes?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/PoliticsTropes?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/PoliticsTropes?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/PoliticsTropes?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/PoliticsTropes?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=16632609080.25396200--> <!--Please don't change or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:350px;" ><div class="lazy_load_img_box" style="padding-top:131.14%"><img src='https://static.tvtropes.org/pmwiki/pub/images/06931_the_encyclopedia_of_politics_the_left_and_the_right_volume_two_the_right.jpg' class='embeddedimage' border='0' alt='Politics Tropes' width=350 height=459></div></div> <!--&#010;--> <div class='indent'><em>"The art of the compromise<br data-format="\\" />Hold your nose and close your eyes<br data-format="\\" />We want our leaders to save the day<br data-format="\\" />But we don’t get a say in what they trade away"</em> <div class='indent'>&#8212; "The Room Where It Happens," <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Hamilton' title='/pmwiki/pmwiki.php/Theatre/Hamilton' data-format='VGhlYXRyZS97e0hhbWlsdG9ufX0='>Hamilton</a></em> </div></div></p><p>Tropes that are related to governmental systems, political ideologies, policies, and practices, and the way they shape historical/current events in both fiction and the real world. </p><p>Political facts and useful notes can be found on the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UsefulNotes' title='/pmwiki/pmwiki.php/Main/UsefulNotes' data-format='VXNlZnVsTm90ZXM='>Useful Notes</a> index. <!--&#010;--> <!--&#010;--> <!-- Politics by their very nature can be a very incendiary topic - please keep in mind the Rule of Cautious Editing Judgment when editing within this topic.--> <!--&#010;--> <!--&#010;--> <hr data-format='&#8212;&#8212;' /> <!&#8212;index&#8212;> <div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;General politics tropes&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <div class="floatboxright"> <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/UsefulNotes' title='/pmwiki/pmwiki.php/Main/UsefulNotes' data-format='VXNlZnVsTm90ZXM='>Useful Notes</a>:</strong> <ul ><li class='plus'> <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/Politicians' title='/pmwiki/pmwiki.php/Main/Politicians' data-format='e3tQb2xpdGljaWFuc319'>Politicians</a></strong> <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadsOfState' title='/pmwiki/pmwiki.php/Main/HeadsOfState' data-format='SGVhZHNPZlN0YXRl'>Heads of State</a> </li></ul></li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Activists' title='/pmwiki/pmwiki.php/UsefulNotes/Activists' data-format='e3tVc2VmdWxOb3Rlcy9BY3RpdmlzdHN9fQ=='>Activists</a> </li></ul></p><p><strong>Related indexes</strong> <ul ><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AuthorityTropes' title='/pmwiki/pmwiki.php/Main/AuthorityTropes' data-format='QXV0aG9yaXR5VHJvcGVz'>Authority Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CapitalismIsBad' title='/pmwiki/pmwiki.php/Main/CapitalismIsBad' data-format='Q2FwaXRhbGlzbUlzQmFk'>Capitalism Is Bad</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CensorshipTropes' title='/pmwiki/pmwiki.php/Main/CensorshipTropes' data-format='Q2Vuc29yc2hpcFRyb3Blcw=='>Censorship Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CivilUnrestTropes' title='/pmwiki/pmwiki.php/Main/CivilUnrestTropes' data-format='Q2l2aWxVbnJlc3RUcm9wZXM='>Civil Unrest Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClassRelationsIndex' title='/pmwiki/pmwiki.php/Main/ClassRelationsIndex' data-format='Q2xhc3NSZWxhdGlvbnNJbmRleA=='>Class Relations Index</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' data-format='Q3JpbWVBbmRQdW5pc2htZW50VHJvcGVz'>Crime and Punishment Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCommunists' title='/pmwiki/pmwiki.php/Main/DirtyCommunists' data-format='RGlydHlDb21tdW5pc3Rz'>Dirty Communists</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EspionageTropes' title='/pmwiki/pmwiki.php/Main/EspionageTropes' data-format='RXNwaW9uYWdlVHJvcGVz'>Espionage Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HelpHelpThisIndexIsBeingRepressed' title='/pmwiki/pmwiki.php/Main/HelpHelpThisIndexIsBeingRepressed' data-format='SGVscEhlbHBUaGlzSW5kZXhJc0JlaW5nUmVwcmVzc2Vk'>Help! Help! This Index Is Being Repressed!</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanRightsIssues' title='/pmwiki/pmwiki.php/Main/HumanRightsIssues' data-format='SHVtYW5SaWdodHNJc3N1ZXM='>Human Rights Issues</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheIndexIsWatchingYou' title='/pmwiki/pmwiki.php/Main/TheIndexIsWatchingYou' data-format='VGhlSW5kZXhJc1dhdGNoaW5nWW91'>The Index Is Watching You</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MilitaryAndWarfareTropes' title='/pmwiki/pmwiki.php/Main/MilitaryAndWarfareTropes' data-format='TWlsaXRhcnlBbmRXYXJmYXJlVHJvcGVz'>Military and Warfare Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoneyTropes' title='/pmwiki/pmwiki.php/Main/MoneyTropes' data-format='TW9uZXlUcm9wZXM='>Money Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheNationalIndex' title='/pmwiki/pmwiki.php/Main/TheNationalIndex' data-format='VGhlTmF0aW9uYWxJbmRleA=='>The National Index</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NewsTropes' title='/pmwiki/pmwiki.php/Main/NewsTropes' data-format='TmV3c1Ryb3Blcw=='>News Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheOnlyRighteousIndexOfFanatics' title='/pmwiki/pmwiki.php/Main/TheOnlyRighteousIndexOfFanatics' data-format='VGhlT25seVJpZ2h0ZW91c0luZGV4T2ZGYW5hdGljcw=='>The Only Righteous Index of Fanatics!</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PatrioticTropes' title='/pmwiki/pmwiki.php/Main/PatrioticTropes' data-format='UGF0cmlvdGljVHJvcGVz'>Patriotic Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticalCartoons' title='/pmwiki/pmwiki.php/Main/PoliticalCartoons' data-format='UG9saXRpY2FsQ2FydG9vbnM='>Political Cartoons</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrejudiceTropes' title='/pmwiki/pmwiki.php/Main/PrejudiceTropes' data-format='UHJlanVkaWNlVHJvcGVz'>Prejudice Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RebelTropes' title='/pmwiki/pmwiki.php/Main/RebelTropes' data-format='UmViZWxUcm9wZXM='>Rebel Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Reichstropen' title='/pmwiki/pmwiki.php/Main/Reichstropen' data-format='e3tSZWljaHN0cm9wZW59fQ=='>Reichstropen</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyaltyAndNobilityTropes' title='/pmwiki/pmwiki.php/Main/RoyaltyAndNobilityTropes' data-format='Um95YWx0eUFuZE5vYmlsaXR5VHJvcGVz'>Royalty and Nobility Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScrewThisIndexIHaveTropes' title='/pmwiki/pmwiki.php/Main/ScrewThisIndexIHaveTropes' data-format='U2NyZXdUaGlzSW5kZXhJSGF2ZVRyb3Blcw=='>Screw This Index, I Have Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TerrorismTropes' title='/pmwiki/pmwiki.php/Main/TerrorismTropes' data-format='VGVycm9yaXNtVHJvcGVz'>Terrorism Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WarCrimeTropes' title='/pmwiki/pmwiki.php/Main/WarCrimeTropes' data-format='V2FyQ3JpbWVUcm9wZXM='>War Crime Tropes</a> </li><li class='plus'> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWarOnStraw' title='/pmwiki/pmwiki.php/Main/TheWarOnStraw' data-format='VGhlV2FyT25TdHJhdw=='>The War on Straw</a> </li></ul></div> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtisticLicensePolitics' title='/pmwiki/pmwiki.php/Main/ArtisticLicensePolitics' data-format='QXJ0aXN0aWNMaWNlbnNlUG9saXRpY3M='>Artistic License – Politics</a>: Inaccurate depictions of real-life politics in fiction. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheChainOfCommand' title='/pmwiki/pmwiki.php/Main/TheChainOfCommand' data-format='VGhlQ2hhaW5PZkNvbW1hbmQ='>The Chain of Command</a>: The power structure that identifies the level of authority and responsibility members of a political system might have. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGovernment' title='/pmwiki/pmwiki.php/Main/TheGovernment' data-format='VGhlR292ZXJubWVudA=='>The Government</a>: The organized system in charge of making and enforcing the laws of society. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentProcedural' title='/pmwiki/pmwiki.php/Main/GovernmentProcedural' data-format='R292ZXJubWVudFByb2NlZHVyYWw='>Government Procedural</a>: Fiction that revolves around politicians and government officials at work. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IssueDrift' title='/pmwiki/pmwiki.php/Main/IssueDrift' data-format='SXNzdWVEcmlmdA=='>Issue Drift</a>: A work of fiction becomes more increasingly partisan in its politics. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticalProgrammes' title='/pmwiki/pmwiki.php/Main/PoliticalProgrammes' data-format='UG9saXRpY2FsUHJvZ3JhbW1lcw=='>Political Programmes</a>: Programs depicting <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a> political occurrences. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticalStrategyGame' title='/pmwiki/pmwiki.php/Main/PoliticalStrategyGame' data-format='UG9saXRpY2FsU3RyYXRlZ3lHYW1l'>Political Strategy Game</a>: Games focusing on political maneuvering in order to attain (or depending on the game, <em>maintain</em>) power. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyalMess' title='/pmwiki/pmwiki.php/Main/RoyalMess' data-format='Um95YWxNZXNz'>Royal Mess</a>: Royal authority is depicted in ways rarely if ever seen in reality. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpyFiction' title='/pmwiki/pmwiki.php/Main/SpyFiction' data-format='U3B5RmljdGlvbg=='>Spy Fiction</a>: Thriller fiction about international espionage and other forms of geopolitical conflict. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TatteredFlag' title='/pmwiki/pmwiki.php/Main/TatteredFlag' data-format='VGF0dGVyZWRGbGFn'>Tattered Flag</a>: A damaged flag is shown for dramatic effect. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWhiteHouse' title='/pmwiki/pmwiki.php/Main/TheWhiteHouse' data-format='VGhlV2hpdGVIb3VzZQ=='>The White House</a>: The official headquarters and residence of the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/PresidentOfTheUnitedStates' title='/pmwiki/pmwiki.php/UsefulNotes/PresidentOfTheUnitedStates' data-format='VXNlZnVsTm90ZXMvUHJlc2lkZW50T2ZUaGVVbml0ZWRTdGF0ZXM='>President of the United States</a> in <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/WashingtonDC' title='/pmwiki/pmwiki.php/UsefulNotes/WashingtonDC' data-format='VXNlZnVsTm90ZXMvV2FzaGluZ3RvbkRD'>Washington, D.C.</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Mass media politics&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntiPoliceSong' title='/pmwiki/pmwiki.php/Main/AntiPoliceSong' data-format='QW50aVBvbGljZVNvbmc='>Anti-Police Song</a>: A song specifically protesting against <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCop' title='/pmwiki/pmwiki.php/Main/DirtyCop' data-format='W1tEaXJ0eUNvcCBjb3JydXB0aW9uXV0='>corruption</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliceBrutality' title='/pmwiki/pmwiki.php/Main/PoliceBrutality' data-format='W1tQb2xpY2VCcnV0YWxpdHkgdmlvbGVuY2VdXQ=='>violence</a> by law enforcement. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BackedByThePentagon' title='/pmwiki/pmwiki.php/Main/BackedByThePentagon' data-format='QmFja2VkQnlUaGVQZW50YWdvbg=='>Backed by the Pentagon</a>: The entertainment industry maintains business connections with the national government; for example, Hollywood asking the US Department of Defense to loan military equipment for use in films. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BannedInChina' title='/pmwiki/pmwiki.php/Main/BannedInChina' data-format='QmFubmVkSW5DaGluYQ=='>Banned in China</a>: A work of media has been (legally) prohibited from being released or distributed in a specific country. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BookBurning' title='/pmwiki/pmwiki.php/Main/BookBurning' data-format='Qm9va0J1cm5pbmc='>Book Burning</a>: The physical desecration of literature, which may be done as an act of politically motivated censorship (or protest). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConvictedByPublicOpinion' title='/pmwiki/pmwiki.php/Main/ConvictedByPublicOpinion' data-format='Q29udmljdGVkQnlQdWJsaWNPcGluaW9u'>Convicted by Public Opinion</a>: When the public pre-assumes someone's guilt based on their feelings rather than facts. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DistancedFromCurrentEvents' title='/pmwiki/pmwiki.php/Main/DistancedFromCurrentEvents' data-format='RGlzdGFuY2VkRnJvbUN1cnJlbnRFdmVudHM='>Distanced from Current Events</a>: When media gets censored in order to avoid accidentally drawing parallels to controversial news stories from real life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoxNewsLiberal' title='/pmwiki/pmwiki.php/Main/FoxNewsLiberal' data-format='Rm94TmV3c0xpYmVyYWw='>Fox News Liberal</a>: A token liberal (or conservative) on a conservative (or liberal) talk show or news network. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HailToTheThief' title='/pmwiki/pmwiki.php/Main/HailToTheThief' data-format='SGFpbFRvVGhlVGhpZWY='>Hail to the Thief</a>: A satirical song which mocks a particular politician. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MediaWatchdog' title='/pmwiki/pmwiki.php/Main/MediaWatchdog' data-format='TWVkaWFXYXRjaGRvZw=='>Media Watchdog</a>: Activist groups who want to protest or censor objectionable content in the media, perhaps for ideological reasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MovementMascot' title='/pmwiki/pmwiki.php/Main/MovementMascot' data-format='TW92ZW1lbnRNYXNjb3Q='>Movement Mascot</a>: When a fictional character becomes political. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoSwastikas' title='/pmwiki/pmwiki.php/Main/NoSwastikas' data-format='Tm9Td2FzdGlrYXM='>No Swastikas</a>: Media depicting <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/NaziGermany' title='/pmwiki/pmwiki.php/UsefulNotes/NaziGermany' data-format='VXNlZnVsTm90ZXMvTmF6aUdlcm1hbnk='>Nazi Germany</a> avoids any display of swastikas. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NuclearWeaponsTaboo' title='/pmwiki/pmwiki.php/Main/NuclearWeaponsTaboo' data-format='TnVjbGVhcldlYXBvbnNUYWJvbw=='>Nuclear Weapons Taboo</a>: Media skirts around the depiction or discussion of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AtomicHate' title='/pmwiki/pmwiki.php/Main/AtomicHate' data-format='W1tBdG9taWNIYXRlIG51a2VzXV0='>nukes</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticalCorrectnessIsEvil' title='/pmwiki/pmwiki.php/Main/PoliticalCorrectnessIsEvil' data-format='UG9saXRpY2FsQ29ycmVjdG5lc3NJc0V2aWw='>Political Correctness Is Evil</a>: The belief that society has gone to pot because too many people are overly concerned about being politically correct. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticalOvercorrectness' title='/pmwiki/pmwiki.php/Main/PoliticalOvercorrectness' data-format='UG9saXRpY2FsT3ZlcmNvcnJlY3RuZXNz'>Political Overcorrectness</a>: Exaggerated depictions of political correctness <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs' data-format='UGxheWVkRm9yTGF1Z2hz'>Played for Laughs</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PropagandaMachine' title='/pmwiki/pmwiki.php/Main/PropagandaMachine' data-format='UHJvcGFnYW5kYU1hY2hpbmU='>Propaganda Machine</a>: When mass media is used as an instrument of state propaganda that promotes the government's policies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PropagandaPiece' title='/pmwiki/pmwiki.php/Main/PropagandaPiece' data-format='UHJvcGFnYW5kYVBpZWNl'>Propaganda Piece</a>: A work of media or entertainment which was intended to politically indoctrinate its viewers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProtestSong' title='/pmwiki/pmwiki.php/Main/ProtestSong' data-format='UHJvdGVzdFNvbmc='>Protest Song</a>: A song opposing some sort of government policy or political ideology. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawmanNewsMedia' title='/pmwiki/pmwiki.php/Main/StrawmanNewsMedia' data-format='U3RyYXdtYW5OZXdzTWVkaWE='>Strawman News Media</a>: Journalism is portrayed as a corrupt industry which only exists to brainwash people with biased propaganda serving corporate/political interests. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WartimeCartoon' title='/pmwiki/pmwiki.php/Main/WartimeCartoon' data-format='V2FydGltZUNhcnRvb24='>Wartime Cartoon</a>: Animated films as pro-war propaganda, meant to instill viewers with militaristic and nationalistic sentiments against the enemy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatDoYouMeanItsNotPolitical' title='/pmwiki/pmwiki.php/Main/WhatDoYouMeanItsNotPolitical' data-format='V2hhdERvWW91TWVhbkl0c05vdFBvbGl0aWNhbA=='>What Do You Mean, It's Not Political?</a>: Audiences see political undertones in works where none were intended. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WrittenByTheWinners' title='/pmwiki/pmwiki.php/Main/WrittenByTheWinners' data-format='V3JpdHRlbkJ5VGhlV2lubmVycw=='>Written by the Winners</a>: Political news and historical accounts are biased in favor of whoever came out victorious and stayed in power. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Political officials and citizens&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActionPolitician' title='/pmwiki/pmwiki.php/Main/ActionPolitician' data-format='QWN0aW9uUG9saXRpY2lhbg=='>Action Politician</a>: An elected official who happens to be an awesome badass. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Ambadassador' title='/pmwiki/pmwiki.php/Main/Ambadassador' data-format='e3tBbWJhZGFzc2Fkb3J9fQ=='>Ambadassador</a>: A diplomat who can be brave and tough when negotiations break down. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntagonisticGovernor' title='/pmwiki/pmwiki.php/Main/AntagonisticGovernor' data-format='QW50YWdvbmlzdGljR292ZXJub3I='>Antagonistic Governor</a>: The corrupt leader of a sub-national (provincial/regional/state) government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ApatheticCitizens' title='/pmwiki/pmwiki.php/Main/ApatheticCitizens' data-format='QXBhdGhldGljQ2l0aXplbnM='>Apathetic Citizens</a>: The average person either knows or cares very little about politics and other important social issues. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AssInAmbassador' title='/pmwiki/pmwiki.php/Main/AssInAmbassador' data-format='QXNzSW5BbWJhc3NhZG9y'>"Ass" in Ambassador</a>: A dignitary who is very mean towards their host nation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentDictator' title='/pmwiki/pmwiki.php/Main/BenevolentDictator' data-format='QmVuZXZvbGVudERpY3RhdG9y'>Benevolent Dictator</a>: A dictator or throne usurper who has good intentions and is liked by most people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackRepublican' title='/pmwiki/pmwiki.php/Main/BlackRepublican' data-format='QmxhY2tSZXB1YmxpY2Fu'>Black Republican</a>: African-American members of the US Republican Party (or any conservative people from a mostly progressive-aligned demographic). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlondeRepublicanSexKitten' title='/pmwiki/pmwiki.php/Main/BlondeRepublicanSexKitten' data-format='QmxvbmRlUmVwdWJsaWNhblNleEtpdHRlbg=='>Blonde Republican Sex Kitten</a>: A conventionally attractive woman, often blonde, who is touted as the face of conservative groups. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCaligula' title='/pmwiki/pmwiki.php/Main/TheCaligula' data-format='VGhlQ2FsaWd1bGE='>The Caligula</a>: A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='W1tBeENyYXp5IGNvbXBsZXRlbHldXQ=='>completely</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Cloudcuckoolander' title='/pmwiki/pmwiki.php/Main/Cloudcuckoolander' data-format='W1t7e0Nsb3VkY3Vja29vbGFuZGVyfX0gaW5zYW5lXV0='>insane</a> king who is definitely not mentally fit to lead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CategoryTraitor' title='/pmwiki/pmwiki.php/Main/CategoryTraitor' data-format='Q2F0ZWdvcnlUcmFpdG9y'>Category Traitor</a>: Someone who's a member of a particular group is labelled a traitor for holding beliefs or opinions that the rest of their particular community strongly disagrees with. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConspiracyTheorist' title='/pmwiki/pmwiki.php/Main/ConspiracyTheorist' data-format='Q29uc3BpcmFjeVRoZW9yaXN0'>Conspiracy Theorist</a>: Someone who believes in conspiracy theories. They especially like to claim that various alleged <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentConspiracy' title='/pmwiki/pmwiki.php/Main/GovernmentConspiracy' data-format='e3tHb3Zlcm5tZW50IENvbnNwaXJhY3x5fX1pZXM='>Government Conspiracies</a> are completely real. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CorruptBureaucrat' title='/pmwiki/pmwiki.php/Main/CorruptBureaucrat' data-format='Q29ycnVwdEJ1cmVhdWNyYXQ='>Corrupt Bureaucrat</a>: An unelected government official who uses their position to enrich themselves and undermine beneficial policies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CorruptPolitician' title='/pmwiki/pmwiki.php/Main/CorruptPolitician' data-format='Q29ycnVwdFBvbGl0aWNpYW4='>Corrupt Politician</a>: Government officials who are very immoral and self-serving. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrowningTheCriminal' title='/pmwiki/pmwiki.php/Main/CrowningTheCriminal' data-format='Q3Jvd25pbmdUaGVDcmltaW5hbA=='>Crowning the Criminal</a>: Villainous characters get elected to office, even though the public is aware of their evil history. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CultOfPersonality' title='/pmwiki/pmwiki.php/Main/CultOfPersonality' data-format='Q3VsdE9mUGVyc29uYWxpdHk='>Cult of Personality</a>: Using mass media to promote an (idealized) politician. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DepartmentOfMajorVexation' title='/pmwiki/pmwiki.php/Main/DepartmentOfMajorVexation' data-format='RGVwYXJ0bWVudE9mTWFqb3JWZXhhdGlvbg=='>Department of Major Vexation</a>: A government agency (like the Department of Motor Vehicles) is filled with too much <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ObstructiveBureaucracy' title='/pmwiki/pmwiki.php/Main/ObstructiveBureaucracy' data-format='T2JzdHJ1Y3RpdmVCdXJlYXVjcmFjeQ=='>Obstructive Bureaucracy</a> and general incompetence/inconvenience for anyone who's forced to interact with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ADoormatToHisMen' title='/pmwiki/pmwiki.php/Main/ADoormatToHisMen' data-format='QURvb3JtYXRUb0hpc01lbg=='>A Doormat to His Men</a>: The government is effectively <em>too</em> nice to exercise authority. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EasilySwayedPopulation' title='/pmwiki/pmwiki.php/Main/EasilySwayedPopulation' data-format='RWFzaWx5U3dheWVkUG9wdWxhdGlvbg=='>Easily Swayed Population</a>: The people are easy to manipulate. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EliteAgentsAboveTheLaw' title='/pmwiki/pmwiki.php/Main/EliteAgentsAboveTheLaw' data-format='RWxpdGVBZ2VudHNBYm92ZVRoZUxhdw=='>Elite Agents Above the Law</a>: Government agents who operate without the normal oversight structures, answering only to the state's leader, or possibly to no one but themselves. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmperor' title='/pmwiki/pmwiki.php/Main/TheEmperor' data-format='VGhlRW1wZXJvcg=='>The Emperor</a>: A monarch who rules <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpire' title='/pmwiki/pmwiki.php/Main/TheEmpire' data-format='VGhlRW1waXJl'>The Empire</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilChancellor' title='/pmwiki/pmwiki.php/Main/EvilChancellor' data-format='RXZpbENoYW5jZWxsb3I='>Evil Chancellor</a>: The king's top royal adviser is evil and disloyal to their boss. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilOverlord' title='/pmwiki/pmwiki.php/Main/EvilOverlord' data-format='RXZpbE92ZXJsb3Jk'>Evil Overlord</a>: The emperor is a cruel tyrant who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DespotismJustifiesTheMeans' title='/pmwiki/pmwiki.php/Main/DespotismJustifiesTheMeans' data-format='W1tEZXNwb3Rpc21KdXN0aWZpZXNUaGVNZWFucyBydWxlcyB0aHJvdWdoIGZlYXIgYW5kIGJydXRhbGl0eV1d'>rules through fear and brutality</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEvilPrince' title='/pmwiki/pmwiki.php/Main/TheEvilPrince' data-format='VGhlRXZpbFByaW5jZQ=='>The Evil Prince</a>: A ruthlessly ambitious royal who plots to take the throne for himself and get crowned as the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilOverlord' title='/pmwiki/pmwiki.php/Main/EvilOverlord' data-format='RXZpbE92ZXJsb3Jk'>Evil Overlord</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FeudalOverlord' title='/pmwiki/pmwiki.php/Main/FeudalOverlord' data-format='RmV1ZGFsT3ZlcmxvcmQ='>Feudal Overlord</a>: A powerful nobleman in a feudal social system. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GayConservative' title='/pmwiki/pmwiki.php/Main/GayConservative' data-format='R2F5Q29uc2VydmF0aXZl'>Gay Conservative</a>: LGBT people who identify as being more right-wing instead of left-wing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GeneralRipper' title='/pmwiki/pmwiki.php/Main/GeneralRipper' data-format='R2VuZXJhbFJpcHBlcg=='>General Ripper</a>: A brutal and often insane military leader who is obsessed with the idea of a particular enemy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGeneralissimo' title='/pmwiki/pmwiki.php/Main/TheGeneralissimo' data-format='VGhlR2VuZXJhbGlzc2ltbw=='>The Generalissimo</a>: Military leader who rises to become dictator of a nation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGoodChancellor' title='/pmwiki/pmwiki.php/Main/TheGoodChancellor' data-format='VGhlR29vZENoYW5jZWxsb3I='>The Good Chancellor</a>: The king's top royal adviser is honest and loyal to their boss. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GloriousLeader' title='/pmwiki/pmwiki.php/Main/GloriousLeader' data-format='R2xvcmlvdXNMZWFkZXI='>Glorious Leader</a>: A political outsider who uses romantic and idealist rhetoric to hide some malevolent agenda. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHighQueen' title='/pmwiki/pmwiki.php/Main/TheHighQueen' data-format='VGhlSGlnaFF1ZWVu'>The High Queen</a>: The ultimate female monarch: regal, beautiful, moral, powerful. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InfamousButInCharge' title='/pmwiki/pmwiki.php/Main/InfamousButInCharge' data-format='SW5mYW1vdXNCdXRJbkNoYXJnZQ=='>Infamous, but in Charge</a>: Politician does terrible and immoral things, but is still in power for whatever reason. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IntimidatingRevenueService' title='/pmwiki/pmwiki.php/Main/IntimidatingRevenueService' data-format='SW50aW1pZGF0aW5nUmV2ZW51ZVNlcnZpY2U='>Intimidating Revenue Service</a>: Nobody likes having to deal with tax collection agencies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InvisiblePresident' title='/pmwiki/pmwiki.php/Main/InvisiblePresident' data-format='SW52aXNpYmxlUHJlc2lkZW50'>Invisible President</a>: The president exists, but we never see them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IronLady' title='/pmwiki/pmwiki.php/Main/IronLady' data-format='SXJvbkxhZHk='>Iron Lady</a>: A powerful, non-royal, no-nonsense female politician. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustTheFirstCitizen' title='/pmwiki/pmwiki.php/Main/JustTheFirstCitizen' data-format='SnVzdFRoZUZpcnN0Q2l0aXplbg=='>Just the First Citizen</a>: A ruler has ultimate power but settles for a simple, humble title. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoyalToThePosition' title='/pmwiki/pmwiki.php/Main/LoyalToThePosition' data-format='TG95YWxUb1RoZVBvc2l0aW9u'>Loyal to the Position</a>: A character's loyalty is to the position of power, not whoever has held it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManifestoMakingMalcontent' title='/pmwiki/pmwiki.php/Main/ManifestoMakingMalcontent' data-format='TWFuaWZlc3RvTWFraW5nTWFsY29udGVudA=='>Manifesto-Making Malcontent</a>: When an individual writes a manifesto explaining their beliefs. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MayorPain' title='/pmwiki/pmwiki.php/Main/MayorPain' data-format='TWF5b3JQYWlu'>Mayor Pain</a>: The leader of a local/municipal government is either corrupt, incompetent, or both. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotInMyBackyard' title='/pmwiki/pmwiki.php/Main/NotInMyBackyard' data-format='Tm90SW5NeUJhY2t5YXJk'>Not in My Backyard!</a>: I support building that prison or landfill, as long as it's not built near me. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ObstructiveBureaucrat' title='/pmwiki/pmwiki.php/Main/ObstructiveBureaucrat' data-format='T2JzdHJ1Y3RpdmVCdXJlYXVjcmF0'>Obstructive Bureaucrat</a>: A government official or employee who makes everything far more frustratingly complicated than they need to be. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OnlyServesForLife' title='/pmwiki/pmwiki.php/Main/OnlyServesForLife' data-format='T25seVNlcnZlc0ZvckxpZmU='>Only Serves for Life</a>: A ruler for life learns the hard way that their reign will be cut short when their life ends prematurely. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurPresidentsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurPresidentsAreDifferent' data-format='T3VyUHJlc2lkZW50c0FyZURpZmZlcmVudA=='>Our Presidents Are Different</a>: Various types of fictional <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadsOfState' title='/pmwiki/pmwiki.php/Main/HeadsOfState' data-format='SGVhZHNPZlN0YXRl'>Heads of State</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PenPushingPresident' title='/pmwiki/pmwiki.php/Main/PenPushingPresident' data-format='UGVuUHVzaGluZ1ByZXNpZGVudA=='>Pen-Pushing President</a>: The president is buried under so much paperwork they never get to do anything else. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PermanentElectedOfficial' title='/pmwiki/pmwiki.php/Main/PermanentElectedOfficial' data-format='UGVybWFuZW50RWxlY3RlZE9mZmljaWFs'>Permanent Elected Official</a>: A politician who is serving an indefinite, if not lifelong, term in office without limits. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PersonaNonGrata' title='/pmwiki/pmwiki.php/Main/PersonaNonGrata' data-format='UGVyc29uYU5vbkdyYXRh'>Persona Non Grata</a>: Someone is banned from a particular location. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePoliticalOfficer' title='/pmwiki/pmwiki.php/Main/ThePoliticalOfficer' data-format='VGhlUG9saXRpY2FsT2ZmaWNlcg=='>The Political Officer</a>: A politician oversees the country's military and ensure their subordination to the civilian government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticallyActivePrincess' title='/pmwiki/pmwiki.php/Main/PoliticallyActivePrincess' data-format='UG9saXRpY2FsbHlBY3RpdmVQcmluY2Vzcw=='>Politically-Active Princess</a>: A female member of the monarchy (but not <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHighQueen' title='/pmwiki/pmwiki.php/Main/TheHighQueen' data-format='VGhlSGlnaFF1ZWVu'>The High Queen</a>) who is involved with politics. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticallyMotivatedTeacher' title='/pmwiki/pmwiki.php/Main/PoliticallyMotivatedTeacher' data-format='UG9saXRpY2FsbHlNb3RpdmF0ZWRUZWFjaGVy'>Politically Motivated Teacher</a>: An educator who is (not so) subtly trying to indoctrinate their students. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticianGuestStar' title='/pmwiki/pmwiki.php/Main/PoliticianGuestStar' data-format='UG9saXRpY2lhbkd1ZXN0U3Rhcg=='>Politician Guest-Star</a>: A real-life politician makes an appearance <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AsHimself' title='/pmwiki/pmwiki.php/Main/AsHimself' data-format='QXNIaW1zZWxm'>As Himself</a> in a work of fiction. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PompousPoliticalPundit' title='/pmwiki/pmwiki.php/Main/PompousPoliticalPundit' data-format='UG9tcG91c1BvbGl0aWNhbFB1bmRpdA=='>Pompous Political Pundit</a>: Highly arrogant political commentators. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerHair' title='/pmwiki/pmwiki.php/Main/PowerHair' data-format='UG93ZXJIYWly'>Power Hair</a>: Women in politics keep a specific short hairstyle. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PresidentEvil' title='/pmwiki/pmwiki.php/Main/PresidentEvil' data-format='UHJlc2lkZW50RXZpbA=='>President Evil</a>: The nation's president is ruthlessly corrupt and sinister. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PresidentForLife' title='/pmwiki/pmwiki.php/Main/PresidentForLife' data-format='UHJlc2lkZW50Rm9yTGlmZQ=='>President for Life</a>: A nation's democratically elected president changes the rules to ensure they stay in the position for life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PresidentSuperhero' title='/pmwiki/pmwiki.php/Main/PresidentSuperhero' data-format='UHJlc2lkZW50U3VwZXJoZXJv'>President Superhero</a>: When <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Superhero' title='/pmwiki/pmwiki.php/Main/Superhero' data-format='e3tzdXBlcmhlcm99fWVz'>superheroes</a> decide to run for the highest political office in their country. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReasonableAuthorityFigure' title='/pmwiki/pmwiki.php/Main/ReasonableAuthorityFigure' data-format='UmVhc29uYWJsZUF1dGhvcml0eUZpZ3VyZQ=='>Reasonable Authority Figure</a>: A government official who actually cares about fulfilling the responsibilities of their job, and is willing to listen to whoever they're supposed to be accountable for. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReluctantRuler' title='/pmwiki/pmwiki.php/Main/ReluctantRuler' data-format='UmVsdWN0YW50UnVsZXI='>Reluctant Ruler</a>: Some monarchs or other government leaders never really had a strong desire to become a big authority figure, because the role was just thrust upon them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyalFavorite' title='/pmwiki/pmwiki.php/Main/RoyalFavorite' data-format='Um95YWxGYXZvcml0ZQ=='>Royal Favorite</a>: Often enjoys a great deal of political power due to the monarch's favoritism. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyalsWhoActuallyDoSomething' title='/pmwiki/pmwiki.php/Main/RoyalsWhoActuallyDoSomething' data-format='Um95YWxzV2hvQWN0dWFsbHlEb1NvbWV0aGluZw=='>Royals Who Actually Do Something</a>: Royalty who are actually interested in being personally involved with politics rather than just lounging around in their palaces all day. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RulerProtagonist' title='/pmwiki/pmwiki.php/Main/RulerProtagonist' data-format='UnVsZXJQcm90YWdvbmlzdA=='>Ruler Protagonist</a>: The protagonist happens to be the ruler or leader of a state. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SketchySuccessor' title='/pmwiki/pmwiki.php/Main/SketchySuccessor' data-format='U2tldGNoeVN1Y2Nlc3Nvcg=='>Sketchy Successor</a>: The new (hereditary) leader is far less competent than the old one was. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleazyPolitician' title='/pmwiki/pmwiki.php/Main/SleazyPolitician' data-format='U2xlYXp5UG9saXRpY2lhbg=='>Sleazy Politician</a>: A government official who takes bribes and embezzles state funds to personally enrich themselves or their family and friends, all at the expense of their taxpaying constituents. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TopWife' title='/pmwiki/pmwiki.php/Main/TopWife' data-format='VG9wV2lmZQ=='>Top Wife</a>: The favorite spouse (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/Polyamory' title='/pmwiki/pmwiki.php/Main/Polyamory' data-format='W1t7e1BvbHlhbW9yeX19IG91dCBvZiBtYW55XV0='>out of many</a>) of a powerful person. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Trumplica' title='/pmwiki/pmwiki.php/Main/Trumplica' data-format='e3tUcnVtcGxpY2F9fQ=='>Trumplica</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoCelebritiesWereHarmed' title='/pmwiki/pmwiki.php/Main/NoCelebritiesWereHarmed' data-format='W1tOb0NlbGVicml0aWVzV2VyZUhhcm1lZCBBbiBleHB5IG9mXV0='>An expy of</a> <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ThePresidentsOfTheUnitedStates' title='/pmwiki/pmwiki.php/UsefulNotes/ThePresidentsOfTheUnitedStates' data-format='W1tVc2VmdWxOb3Rlcy9UaGVQcmVzaWRlbnRzT2ZUaGVVbml0ZWRTdGF0ZXMgdGhlIDQ1dGggVS5TLiBQcmVzaWRlbnRdXQ=='>the 45th U.S. President</a> <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/DonaldTrump' title='/pmwiki/pmwiki.php/UsefulNotes/DonaldTrump' data-format='VXNlZnVsTm90ZXMvRG9uYWxkVHJ1bXA='>Donald Trump</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UltimateAuthorityMayor' title='/pmwiki/pmwiki.php/Main/UltimateAuthorityMayor' data-format='VWx0aW1hdGVBdXRob3JpdHlNYXlvcg=='>Ultimate Authority Mayor</a>: A mayor who is the highest elected official portrayed and who holds immense executive power. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnexpectedSuccessor' title='/pmwiki/pmwiki.php/Main/UnexpectedSuccessor' data-format='VW5leHBlY3RlZFN1Y2Nlc3Nvcg=='>Unexpected Successor</a>: The successor to a ruler who no one saw coming. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VicePresidentWho' title='/pmwiki/pmwiki.php/Main/VicePresidentWho' data-format='VmljZVByZXNpZGVudFdobw=='>Vice President Who?</a>: Nobody cares about the second-in-command of a national government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WindbagPolitician' title='/pmwiki/pmwiki.php/Main/WindbagPolitician' data-format='V2luZGJhZ1BvbGl0aWNpYW4='>Windbag Politician</a>: A politician who is impressed with the sound of their voice (and is the only one impressed). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWisePrince' title='/pmwiki/pmwiki.php/Main/TheWisePrince' data-format='VGhlV2lzZVByaW5jZQ=='>The Wise Prince</a>: A male member of the monarchy (but not the king) who is learned and kind, and manages to rule with some degree of competence. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Political concepts and philosophies&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllIssuesArePoliticalIssues' title='/pmwiki/pmwiki.php/Main/AllIssuesArePoliticalIssues' data-format='QWxsSXNzdWVzQXJlUG9saXRpY2FsSXNzdWVz'>All Issues Are Political Issues</a>: Some people view all problems through their political lens. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnarchyIsChaos' title='/pmwiki/pmwiki.php/Main/AnarchyIsChaos' data-format='QW5hcmNoeUlzQ2hhb3M='>Anarchy Is Chaos</a>: The belief that having no government leads to utter chaos and lawlessness. Also related to the stereotype that anarchists hold no political goals beyond abolishing statism, and just want to live without any laws or rules. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnimalWrongsGroup' title='/pmwiki/pmwiki.php/Main/AnimalWrongsGroup' data-format='QW5pbWFsV3JvbmdzR3JvdXA='>Animal Wrongs Group</a>: Animal rights activism is often portrayed as just a useless movement for whiny vegans who think animals deserve to be treated equally to humans, if not outright valuing animals over people. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BanOnPolitics' title='/pmwiki/pmwiki.php/Main/BanOnPolitics' data-format='QmFuT25Qb2xpdGljcw=='>Ban on Politics</a>: Talking about politics in a non-political forum is considered bad form. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BombThrowingAnarchists' title='/pmwiki/pmwiki.php/Main/BombThrowingAnarchists' data-format='Qm9tYlRocm93aW5nQW5hcmNoaXN0cw=='>Bomb-Throwing Anarchists</a>: Militant anarchists who believe that violent revolution is the best way to overthrow governments, corporations, and the mainstream social order. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChummyCommies' title='/pmwiki/pmwiki.php/Main/ChummyCommies' data-format='Q2h1bW15Q29tbWllcw=='>Chummy Commies</a>: Communists who are not so bad. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CommieLand' title='/pmwiki/pmwiki.php/Main/CommieLand' data-format='Q29tbWllTGFuZA=='>Commie Land</a>: A country ruled by a communist government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CommieNazis' title='/pmwiki/pmwiki.php/Main/CommieNazis' data-format='Q29tbWllTmF6aXM='>Commie Nazis</a>: The evil bastard offspring of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCommunists' title='/pmwiki/pmwiki.php/Main/DirtyCommunists' data-format='RGlydHlDb21tdW5pc3Rz'>Dirty Communists</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThoseWackyNazis' title='/pmwiki/pmwiki.php/Main/ThoseWackyNazis' data-format='VGhvc2VXYWNreU5hemlz'>Those Wacky Nazis</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemocracyIsBad' title='/pmwiki/pmwiki.php/Main/DemocracyIsBad' data-format='RGVtb2NyYWN5SXNCYWQ='>Democracy Is Bad</a>: Democratic governments are depicted as being terribly corrupt and incompetent, to the point that autocracy or anarchy is preferable. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemocracyIsFlawed' title='/pmwiki/pmwiki.php/Main/DemocracyIsFlawed' data-format='RGVtb2NyYWN5SXNGbGF3ZWQ='>Democracy Is Flawed</a>: While democratic governments are overly bureaucratic and inefficient, they're still better than any other alternatives. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DivideAndConquer' title='/pmwiki/pmwiki.php/Main/DivideAndConquer' data-format='RGl2aWRlQW5kQ29ucXVlcg=='>Divide and Conquer</a>: Keeping groups in disharmony to prevent them from allying. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElectiveMonarchy' title='/pmwiki/pmwiki.php/Main/ElectiveMonarchy' data-format='RWxlY3RpdmVNb25hcmNoeQ=='>Elective Monarchy</a>: A system of government in which kings are voted into power instead of inheriting it by blood relations. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnlightenedSelfInterest' title='/pmwiki/pmwiki.php/Main/EnlightenedSelfInterest' data-format='RW5saWdodGVuZWRTZWxmSW50ZXJlc3Q='>Enlightened Self-Interest</a>: The belief that helping others will create benefits for oneself. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FailedState' title='/pmwiki/pmwiki.php/Main/FailedState' data-format='RmFpbGVkU3RhdGU='>Failed State</a>: A country unable to provide for its citizens. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FascistButInefficient' title='/pmwiki/pmwiki.php/Main/FascistButInefficient' data-format='RmFzY2lzdEJ1dEluZWZmaWNpZW50'>Fascist, but Inefficient</a>: Autocratic governments may promise to bring order and stability, but they ultimately fail to even accomplish that. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GodwinsLaw' title='/pmwiki/pmwiki.php/Main/GodwinsLaw' data-format='R29kd2luc0xhdw=='>Godwin's Law</a>: A (fallacious) accusation that one's political opponents are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThoseWackyNazis' title='/pmwiki/pmwiki.php/Main/ThoseWackyNazis' data-format='W1tUaG9zZVdhY2t5TmF6aXMgbGl0ZXJhbCBmYXNjaXN0cywgTmF6aXMsIG9yIGV2ZW4gSGl0bGVyIHJlaW5jYXJuYXRlZF1d'>literal fascists, Nazis, or even Hitler reincarnated</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoldenMeanFallacy' title='/pmwiki/pmwiki.php/Main/GoldenMeanFallacy' data-format='R29sZGVuTWVhbkZhbGxhY3k='>Golden Mean Fallacy</a>: Coming to the conclusion that the right answer is moderation between the two extremes, even if that doesn't actually make much sense. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGoldenRule' title='/pmwiki/pmwiki.php/Main/TheGoldenRule' data-format='VGhlR29sZGVuUnVsZQ=='>The Golden Rule</a>: The principle of treating others the way you would want to be treated. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoodCapitalismEvilCapitalism' title='/pmwiki/pmwiki.php/Main/GoodCapitalismEvilCapitalism' data-format='R29vZENhcGl0YWxpc21FdmlsQ2FwaXRhbGlzbQ=='>Good Capitalism, Evil Capitalism</a>: A work includes positive and negative examples of capitalistic practices. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHacktivist' title='/pmwiki/pmwiki.php/Main/TheHacktivist' data-format='VGhlSGFja3RpdmlzdA=='>The Hacktivist</a>: A person or group that uses computer-based techniques such as hacking to promote a political agenda or social change. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HatesRichPeople' title='/pmwiki/pmwiki.php/Main/HatesRichPeople' data-format='SGF0ZXNSaWNoUGVvcGxl'>Hates Rich People</a>: Extreme hatred for wealthy people for various reasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HereditaryRepublic' title='/pmwiki/pmwiki.php/Main/HereditaryRepublic' data-format='SGVyZWRpdGFyeVJlcHVibGlj'>Hereditary Republic</a>: A system of government in which presidents inherit their power from relatives instead of being chosen by voters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HobbesWasRight' title='/pmwiki/pmwiki.php/Main/HobbesWasRight' data-format='SG9iYmVzV2FzUmlnaHQ='>Hobbes Was Right</a>: The belief that humans are inherently base and cruel, and that they require tyranny to be kept in line. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHorseshoeEffect' title='/pmwiki/pmwiki.php/Main/TheHorseshoeEffect' data-format='VGhlSG9yc2VzaG9lRWZmZWN0'>The Horseshoe Effect</a>: When two political extremes aren't that different from each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LibertyOverProsperity' title='/pmwiki/pmwiki.php/Main/LibertyOverProsperity' data-format='TGliZXJ0eU92ZXJQcm9zcGVyaXR5'>Liberty Over Prosperity</a>: A character chooses to be free and impoverished rather than to be prosperous but controlled. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMagocracy' title='/pmwiki/pmwiki.php/Main/TheMagocracy' data-format='VGhlTWFnb2NyYWN5'>The Magocracy</a>: A government run by magicians and mages. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MajoredInWesternHypocrisy' title='/pmwiki/pmwiki.php/Main/MajoredInWesternHypocrisy' data-format='TWFqb3JlZEluV2VzdGVybkh5cG9jcmlzeQ=='>Majored in Western Hypocrisy</a>: A character who is educated in the West comes to believe it to be evil (or at least severely flawed). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MightMakesRight' title='/pmwiki/pmwiki.php/Main/MightMakesRight' data-format='TWlnaHRNYWtlc1JpZ2h0'>Might Makes Right</a>: Using superior military strength to determine what is moral and good. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ANaziByAnyOtherName' title='/pmwiki/pmwiki.php/Main/ANaziByAnyOtherName' data-format='QU5hemlCeUFueU90aGVyTmFtZQ=='>A Nazi by Any Other Name</a>: A not-so-subtle expy or parody of Nazis and their ideology. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheNecrocracy' title='/pmwiki/pmwiki.php/Main/TheNecrocracy' data-format='VGhlTmVjcm9jcmFjeQ=='>The Necrocracy</a>: A government run by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheUndead' title='/pmwiki/pmwiki.php/Main/TheUndead' data-format='VGhlVW5kZWFk'>The Undead</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneNationUnderCopyright' title='/pmwiki/pmwiki.php/Main/OneNationUnderCopyright' data-format='T25lTmF0aW9uVW5kZXJDb3B5cmlnaHQ='>One Nation Under Copyright</a>: A system of government where corporations are the supreme authority. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OpinionOverride' title='/pmwiki/pmwiki.php/Main/OpinionOverride' data-format='T3Bpbmlvbk92ZXJyaWRl'>Opinion Override</a>: Someone complains about something that they see as offensive to a particular group that they are not a part of, when actual members of that group make it clear that they don't care. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PatrioticFervor' title='/pmwiki/pmwiki.php/Main/PatrioticFervor' data-format='UGF0cmlvdGljRmVydm9y'>Patriotic Fervor</a>: Nationalistic pride for one's country. </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 place run by private corporations instead of public governments, where capitalist economics are prioritized over rule of law. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRepublic' title='/pmwiki/pmwiki.php/Main/TheRepublic' data-format='VGhlUmVwdWJsaWM='>The Republic</a>: Governments run by appointed/elected officials (presidents, prime ministers) instead of hereditary aristocrats (monarchs). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedAndBlackTotalitarianism' title='/pmwiki/pmwiki.php/Main/RedAndBlackTotalitarianism' data-format='UmVkQW5kQmxhY2tUb3RhbGl0YXJpYW5pc20='>Red and Black Totalitarianism</a>: A repressive regime uses red and black colors. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedScare' title='/pmwiki/pmwiki.php/Main/RedScare' data-format='UmVkU2NhcmU='>Red Scare</a>: Fear and paranoia over radical socialists (like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirtyCommunists' title='/pmwiki/pmwiki.php/Main/DirtyCommunists' data-format='RGlydHlDb21tdW5pc3Rz'>Dirty Communists</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BombThrowingAnarchists' title='/pmwiki/pmwiki.php/Main/BombThrowingAnarchists' data-format='Qm9tYlRocm93aW5nQW5hcmNoaXN0cw=='>Bomb-Throwing Anarchists</a>), or anyone alleged to be such, supposedly being great menaces to society. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RepressiveButEfficient' title='/pmwiki/pmwiki.php/Main/RepressiveButEfficient' data-format='UmVwcmVzc2l2ZUJ1dEVmZmljaWVudA=='>Repressive, but Efficient</a>: An autocratic government succeeds at achieving its policy goals due to being able to circumvent the factional/partisan squabbling and legislative chaos associated with democracy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRightOfASuperiorSpecies' title='/pmwiki/pmwiki.php/Main/TheRightOfASuperiorSpecies' data-format='VGhlUmlnaHRPZkFTdXBlcmlvclNwZWNpZXM='>The Right of a Superior Species</a>: A more-advanced species justifies its mistreatment of a lower species. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RobotRepublic' title='/pmwiki/pmwiki.php/Main/RobotRepublic' data-format='Um9ib3RSZXB1YmxpYw=='>Robot Republic</a>: A government run by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Robot' title='/pmwiki/pmwiki.php/Main/Robot' data-format='e3tyb2JvdH19cw=='>robots</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlidingScaleOfLibertarianismAndAuthoritarianism' title='/pmwiki/pmwiki.php/Main/SlidingScaleOfLibertarianismAndAuthoritarianism' data-format='U2xpZGluZ1NjYWxlT2ZMaWJlcnRhcmlhbmlzbUFuZEF1dGhvcml0YXJpYW5pc20='>Sliding Scale of Libertarianism and Authoritarianism</a>: Personal freedom vs state control. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SoapboxSadie' title='/pmwiki/pmwiki.php/Main/SoapboxSadie' data-format='U29hcGJveFNhZGll'>Soapbox Sadie</a>: A super-preachy activist girl. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSocialDarwinist' title='/pmwiki/pmwiki.php/Main/TheSocialDarwinist' data-format='VGhlU29jaWFsRGFyd2luaXN0'>The Social Darwinist</a>: Survival of the fittest. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawCharacter' title='/pmwiki/pmwiki.php/Main/StrawCharacter' data-format='U3RyYXdDaGFyYWN0ZXI='>Straw Character</a>: A character who mainly serves as a political strawman (a one-dimensional caricature of any beliefs that the author disagrees with). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawCivilian' title='/pmwiki/pmwiki.php/Main/StrawCivilian' data-format='U3RyYXdDaXZpbGlhbg=='>Straw Civilian</a>: A civilian (usually a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ObstructiveBureaucrat' title='/pmwiki/pmwiki.php/Main/ObstructiveBureaucrat' data-format='W1tPYnN0cnVjdGl2ZUJ1cmVhdWNyYXQgZ292ZXJubWVudCBvZmZpY2lhbC9lbXBsb3llZV1d'>government official/employee</a>) who is portrayed as an obstacle to the military or war effort. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawFeminist' title='/pmwiki/pmwiki.php/Main/StrawFeminist' data-format='U3RyYXdGZW1pbmlzdA=='>Straw Feminist</a>: The stereotype that feminists are misandrists who use fighting for equal rights as an excuse to demean, insult, harm, and discriminate against men. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawHypocrite' title='/pmwiki/pmwiki.php/Main/StrawHypocrite' data-format='U3RyYXdIeXBvY3JpdGU='>Straw Hypocrite</a>: When the political strawman fails to practice whatever they preach, with hints that their beliefs and goals are just an insincere facade for more selfish motives. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawmanU' title='/pmwiki/pmwiki.php/Main/StrawmanU' data-format='U3RyYXdtYW5V'>Strawman U</a>: Unflattering stereotypes of (usually left-wing) political activism amongst college/university students or their professors. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawMisogynist' title='/pmwiki/pmwiki.php/Main/StrawMisogynist' data-format='U3RyYXdNaXNvZ3luaXN0'>Straw Misogynist</a>: The stereotype of sexist men who strongly believe that women don't deserve equal human rights and should just <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StayInTheKitchen' title='/pmwiki/pmwiki.php/Main/StayInTheKitchen' data-format='U3RheUluVGhlS2l0Y2hlbg=='>Stay in the Kitchen</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawVegetarian' title='/pmwiki/pmwiki.php/Main/StrawVegetarian' data-format='U3RyYXdWZWdldGFyaWFu'>Straw Vegetarian</a>: Unflattering stereotypes of vegans and other vegetarians who refuse to consume meat for ideological reasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSuffragette' title='/pmwiki/pmwiki.php/Main/TheSuffragette' data-format='VGhlU3VmZnJhZ2V0dGU='>The Suffragette</a>: Feminist activists who fought for the right of female citizens to vote in elections or run for political offices. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheTheocracy' title='/pmwiki/pmwiki.php/Main/TheTheocracy' data-format='VGhlVGhlb2NyYWN5'>The Theocracy</a>: A government run by priests and clergymen through religious laws, as opposed to a secular state. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThoseWackyNazis' title='/pmwiki/pmwiki.php/Main/ThoseWackyNazis' data-format='VGhvc2VXYWNreU5hemlz'>Those Wacky Nazis</a>: (Neo-)Nazis and similar fascist movements. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TooGoodForExploiters' title='/pmwiki/pmwiki.php/Main/TooGoodForExploiters' data-format='VG9vR29vZEZvckV4cGxvaXRlcnM='>Too Good for Exploiters</a>: A system is exploited, and those who exploit it seek to keep it in place so they can keep exploiting it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhyWeAreBummedCommunismFell' title='/pmwiki/pmwiki.php/Main/WhyWeAreBummedCommunismFell' data-format='V2h5V2VBcmVCdW1tZWRDb21tdW5pc21GZWxs'>Why We Are Bummed Communism Fell</a>: Missing the benefits of Communism and/or the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ColdWar' title='/pmwiki/pmwiki.php/UsefulNotes/ColdWar' data-format='VXNlZnVsTm90ZXMvQ29sZFdhcg=='>Cold War</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WindmillCrusader' title='/pmwiki/pmwiki.php/Main/WindmillCrusader' data-format='V2luZG1pbGxDcnVzYWRlcg=='>Windmill Crusader</a>: Someone is obsessed with taking down a threat that doesn't really exist. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WindmillPolitical' title='/pmwiki/pmwiki.php/Main/WindmillPolitical' data-format='V2luZG1pbGxQb2xpdGljYWw='>Windmill Political</a>: Someone whose ideology is based around nonexistent issues or problems. </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>: Political ideologies can survive even the most brutally violent forms of political repression, and even outlast its original proponents. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Political actions and policies&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwentyFifthAmendment' title='/pmwiki/pmwiki.php/Main/TwentyFifthAmendment' data-format='VHdlbnR5RmlmdGhBbWVuZG1lbnQ='>Twenty-fifth Amendment</a>: The 25th Amendment to the United States Constitution, which details the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ThePresidentsOfTheUnitedStates' title='/pmwiki/pmwiki.php/UsefulNotes/ThePresidentsOfTheUnitedStates' data-format='W1tVc2VmdWxOb3Rlcy9UaGVQcmVzaWRlbnRzT2ZUaGVVbml0ZWRTdGF0ZXMgVS5TLiBwcmVzaWRlbnRpYWxdXQ=='>U.S. presidential</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccessionCrisis' title='/pmwiki/pmwiki.php/Main/SuccessionCrisis' data-format='W1tTdWNjZXNzaW9uQ3Jpc2lzIGxpbmUgb2Ygc3VjY2Vzc2lvbl1d'>line of succession</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ApocalypticGagOrder' title='/pmwiki/pmwiki.php/Main/ApocalypticGagOrder' data-format='QXBvY2FseXB0aWNHYWdPcmRlcg=='>Apocalyptic Gag Order</a>: An apocalyptic event is on the way but the government denies it or keeps knowledge of it under wraps. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AwesomeMomentOfCrowning' title='/pmwiki/pmwiki.php/Main/AwesomeMomentOfCrowning' data-format='QXdlc29tZU1vbWVudE9mQ3Jvd25pbmc='>Awesome Moment of Crowning</a>: A royal assumes their place on the throne, and everyone rejoices. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrainDrain' title='/pmwiki/pmwiki.php/Main/BrainDrain' data-format='QnJhaW5EcmFpbg=='>Brain Drain</a>: A group or country becomes less competent because all their talented people leave. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EasilyElected' title='/pmwiki/pmwiki.php/Main/EasilyElected' data-format='RWFzaWx5RWxlY3RlZA=='>Easily Elected</a>: A nation/organization seems to have no screening process or election protocol, that anyone can rise to the highest position of power without any qualification. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EasyEvangelism' title='/pmwiki/pmwiki.php/Main/EasyEvangelism' data-format='RWFzeUV2YW5nZWxpc20='>Easy Evangelism</a>: You can instantly convert a person to a different belief just by informing them that this other belief exists. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElectionDenial' title='/pmwiki/pmwiki.php/Main/ElectionDenial' data-format='RWxlY3Rpb25EZW5pYWw='>Election Denial</a>: The democratic process is dismissed by the losing party. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EmergencyPresidentialAddress' title='/pmwiki/pmwiki.php/Main/EmergencyPresidentialAddress' data-format='RW1lcmdlbmN5UHJlc2lkZW50aWFsQWRkcmVzcw=='>Emergency Presidential Address</a>: The lead authority official gives a national address to let the public know of a sudden danger. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoodGirlsAvoidAbortion' title='/pmwiki/pmwiki.php/Main/GoodGirlsAvoidAbortion' data-format='R29vZEdpcmxzQXZvaWRBYm9ydGlvbg=='>Good Girls Avoid Abortion</a>: Pregnant women are portrayed as being more good for choosing to carry their pregnancies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentConspiracy' title='/pmwiki/pmwiki.php/Main/GovernmentConspiracy' data-format='R292ZXJubWVudENvbnNwaXJhY3k='>Government Conspiracy</a>: When the government is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheConspiracy' title='/pmwiki/pmwiki.php/Main/TheConspiracy' data-format='W1tUaGVDb25zcGlyYWN5IHNlY3JldGx5IHBsb3R0aW5nIHNvbWUgc2luaXN0ZXIgc2NoZW1lc11d'>secretly plotting some sinister schemes</a>... </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentDrugEnforcement' title='/pmwiki/pmwiki.php/Main/GovernmentDrugEnforcement' data-format='R292ZXJubWVudERydWdFbmZvcmNlbWVudA=='>Government Drug Enforcement</a>: The state pumps its citizens full of toxic substances to keep them complacent. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeadInTheSandManagement' title='/pmwiki/pmwiki.php/Main/HeadInTheSandManagement' data-format='SGVhZEluVGhlU2FuZE1hbmFnZW1lbnQ='>Head-in-the-Sand Management</a>: Ignoring a problem that should be acted on. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustFollowingOrders' title='/pmwiki/pmwiki.php/Main/JustFollowingOrders' data-format='SnVzdEZvbGxvd2luZ09yZGVycw=='>Just Following Orders</a>: Someone excuses their bad actions because they were ordered to do it by a superior. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustGivingOrders' title='/pmwiki/pmwiki.php/Main/JustGivingOrders' data-format='SnVzdEdpdmluZ09yZGVycw=='>Just Giving Orders</a>: Someone excuses their bad actions because they just gave the orders, it was their subordinates who carried it out in a bad way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LegallyOustedLeader' title='/pmwiki/pmwiki.php/Main/LegallyOustedLeader' data-format='TGVnYWxseU91c3RlZExlYWRlcg=='>Legally Ousted Leader</a>: A leader is removed by non-violent, democratic means. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LetNoCrisisGoToWaste' title='/pmwiki/pmwiki.php/Main/LetNoCrisisGoToWaste' data-format='TGV0Tm9DcmlzaXNHb1RvV2FzdGU='>Let No Crisis Go to Waste</a>: Taking advantage of a crisis in some way. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MyCountryRightOrWrong' title='/pmwiki/pmwiki.php/Main/MyCountryRightOrWrong' data-format='TXlDb3VudHJ5UmlnaHRPcldyb25n'>My Country, Right or Wrong</a>: When patriots and nationalists refuse to accept that their country can do any wrong. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MyCountryTisOfTheeThatISting' title='/pmwiki/pmwiki.php/Main/MyCountryTisOfTheeThatISting' data-format='TXlDb3VudHJ5VGlzT2ZUaGVlVGhhdElTdGluZw=='>My Country Tis of Thee That I Sting</a>: A character expresses disagreement or despair over their country's perceived wrong actions. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NewEraSpeech' title='/pmwiki/pmwiki.php/Main/NewEraSpeech' data-format='TmV3RXJhU3BlZWNo'>New Era Speech</a>: A speech that talks about how things are about to change. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NominatedAsAPrank' title='/pmwiki/pmwiki.php/Main/NominatedAsAPrank' data-format='Tm9taW5hdGVkQXNBUHJhbms='>Nominated as a Prank</a>: Someone is nominated for an office, not out of genuine support, but for malicious reasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonAnswer' title='/pmwiki/pmwiki.php/Main/NonAnswer' data-format='Tm9uQW5zd2Vy'>Non-Answer</a>: A character - often a politician - is asked a difficult questions with potentially-controversial answers, and chooses to deflect the question instead. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PhotoOpWithTheDog' title='/pmwiki/pmwiki.php/Main/PhotoOpWithTheDog' data-format='UGhvdG9PcFdpdGhUaGVEb2c='>Photo Op with the Dog</a>: A shady politician does good things in public in order to build up their public image. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticiansKissBabies' title='/pmwiki/pmwiki.php/Main/PoliticiansKissBabies' data-format='UG9saXRpY2lhbnNLaXNzQmFiaWVz'>Politicians Kiss Babies</a>: A tradition for politicians to kiss their constituents' infants, especially during election time. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PointlessCivicProject' title='/pmwiki/pmwiki.php/Main/PointlessCivicProject' data-format='UG9pbnRsZXNzQ2l2aWNQcm9qZWN0'>Pointless Civic Project</a>: The government spends money on a completely unnecessary project. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrideParade' title='/pmwiki/pmwiki.php/Main/PrideParade' data-format='UHJpZGVQYXJhZGU='>Pride Parade</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/LGBT' title='/pmwiki/pmwiki.php/UsefulNotes/LGBT' data-format='e3tVc2VmdWxOb3Rlcy9MR0JUfX0='>LGBT</a> activists have a public rally or demonstration to celebrate their gender/sexual identities. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Scandalgate' title='/pmwiki/pmwiki.php/Main/Scandalgate' data-format='e3tTY2FuZGFsZ2F0ZX19'>Scandalgate</a>: Political scandals tend to be nicknamed after the Watergate scandal. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SarcasmMode' title='/pmwiki/pmwiki.php/Main/SarcasmMode' data-format='W1tTYXJjYXNtTW9kZSBIb3cgb3JpZ2luYWxdXQ=='>How original</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccessionCrisis' title='/pmwiki/pmwiki.php/Main/SuccessionCrisis' data-format='U3VjY2Vzc2lvbkNyaXNpcw=='>Succession Crisis</a>: When the most recent former ruler doesn't have a designated heir, this will obviously cause some huge problems. <!--* SuperficialSolution--> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThereShouldBeALaw' title='/pmwiki/pmwiki.php/Main/ThereShouldBeALaw' data-format='VGhlcmVTaG91bGRCZUFMYXc='>There Should Be a Law</a>: A character wants something to be made illegal because they don't like it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThinkOfTheChildren' title='/pmwiki/pmwiki.php/Main/ThinkOfTheChildren' data-format='VGhpbmtPZlRoZUNoaWxkcmVu'>Think of the Children!</a>: Emotional appeals on how a policy may affect our precious youths. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TreacheryCoverUp' title='/pmwiki/pmwiki.php/Main/TreacheryCoverUp' data-format='VHJlYWNoZXJ5Q292ZXJVcA=='>Treachery Cover Up</a>: It's better if the public doesn't learn of someone's acts of betrayal. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainousGentrification' title='/pmwiki/pmwiki.php/Main/VillainousGentrification' data-format='VmlsbGFpbm91c0dlbnRyaWZpY2F0aW9u'>Villainous Gentrification</a>: The act of building new apartments in place of older ones (usually in poorer locations) is done by people with malicious intent, or at least portrayed as an act of aggression against prior residents. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Warhawk' title='/pmwiki/pmwiki.php/Main/Warhawk' data-format='e3tXYXJoYXdrfX0='>Warhawk</a>: Someone who's really eager to start bombing their country's (real or imagined) enemies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WithUsOrAgainstUs' title='/pmwiki/pmwiki.php/Main/WithUsOrAgainstUs' data-format='V2l0aFVzT3JBZ2FpbnN0VXM='>With Us or Against Us</a>: You're either part of our sociopolitical group, or you're our sociopolitical enemy. No exceptions! </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Democratic and bureaucratic politics&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllElectionsAreSeriousBusiness' title='/pmwiki/pmwiki.php/Main/AllElectionsAreSeriousBusiness' data-format='QWxsRWxlY3Rpb25zQXJlU2VyaW91c0J1c2luZXNz'>All Elections Are Serious Business</a>: If there's an election being held, then expect the main characters to go all in, no matter how minor the post. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttackOfThePoliticalAd' title='/pmwiki/pmwiki.php/Main/AttackOfThePoliticalAd' data-format='QXR0YWNrT2ZUaGVQb2xpdGljYWxBZA=='>Attack of the Political Ad</a>: Electoral candidates are fond of mudslinging against their rivals through media advertisements. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BloodOnTheDebateFloor' title='/pmwiki/pmwiki.php/Main/BloodOnTheDebateFloor' data-format='Qmxvb2RPblRoZURlYmF0ZUZsb29y'>Blood on the Debate Floor</a>: Just when you thought that watching politics was too boring, suddenly the legislators start fighting each other in a physical brawl. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkHorseVictory' title='/pmwiki/pmwiki.php/Main/DarkHorseVictory' data-format='RGFya0hvcnNlVmljdG9yeQ=='>Dark Horse Victory</a>: When the least expected candidate manages to win the election. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DecidedByOneVote' title='/pmwiki/pmwiki.php/Main/DecidedByOneVote' data-format='RGVjaWRlZEJ5T25lVm90ZQ=='>Decided by One Vote</a>: Someone won an election by a minuscule - but significant - margin. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DisasterDemocracy' title='/pmwiki/pmwiki.php/Main/DisasterDemocracy' data-format='RGlzYXN0ZXJEZW1vY3JhY3k='>Disaster Democracy</a>: A democracy rising out of some catastrophic event. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ElectionDayEpisode' title='/pmwiki/pmwiki.php/Main/ElectionDayEpisode' data-format='RWxlY3Rpb25EYXlFcGlzb2Rl'>Election Day Episode</a>: A storyline about an election commencing. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FictionalPoliticalParty' title='/pmwiki/pmwiki.php/Main/FictionalPoliticalParty' data-format='RmljdGlvbmFsUG9saXRpY2FsUGFydHk='>Fictional Political Party</a>: A political organization that only exists in-universe instead of real-life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenericistGovernment' title='/pmwiki/pmwiki.php/Main/GenericistGovernment' data-format='R2VuZXJpY2lzdEdvdmVybm1lbnQ='>Genericist Government</a>: There are some elements of a ruling body (such as royalty) here and there but no clear indication of the system of government that's actually in place. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentAgencyOfFiction' title='/pmwiki/pmwiki.php/Main/GovernmentAgencyOfFiction' data-format='R292ZXJubWVudEFnZW5jeU9mRmljdGlvbg=='>Government Agency of Fiction</a>: A fictional, often secretive, agency belonging to a real-world government which usually deals with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpeculativeFiction' title='/pmwiki/pmwiki.php/Main/SpeculativeFiction' data-format='U3BlY3VsYXRpdmVGaWN0aW9u'>Speculative Fiction</a> elements. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HauledBeforeASenateSubcommittee' title='/pmwiki/pmwiki.php/Main/HauledBeforeASenateSubcommittee' data-format='SGF1bGVkQmVmb3JlQVNlbmF0ZVN1YmNvbW1pdHRlZQ=='>Hauled Before a Senate Subcommittee</a>: A character is required to publicly answer questions in front of a governmental body. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IApprovedThisMessage' title='/pmwiki/pmwiki.php/Main/IApprovedThisMessage' data-format='SUFwcHJvdmVkVGhpc01lc3NhZ2U='>I Approved This Message</a>: Parodies of political advertisements and their messages of approval. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InherentInTheSystem' title='/pmwiki/pmwiki.php/Main/InherentInTheSystem' data-format='SW5oZXJlbnRJblRoZVN5c3RlbQ=='>Inherent in the System</a>: Societal problems portrayed as being part of the established system, rather than due to the actions of any individual or group. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LandslideElection' title='/pmwiki/pmwiki.php/Main/LandslideElection' data-format='TGFuZHNsaWRlRWxlY3Rpb24='>Landslide Election</a>: A particular candidate enjoys an overwhelming victory over their opponents. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NeverFilledOutOfficialPaperwork' title='/pmwiki/pmwiki.php/Main/NeverFilledOutOfficialPaperwork' data-format='TmV2ZXJGaWxsZWRPdXRPZmZpY2lhbFBhcGVyd29yaw=='>Never Filled Out Official Paperwork</a>: A candidate is disqualified due to not filling out the proper paperwork declaring them an official candidate. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoPartyGiven' title='/pmwiki/pmwiki.php/Main/NoPartyGiven' data-format='Tm9QYXJ0eUdpdmVu'>No Party Given</a>: A politician's political affiliation is not mentioned. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoSuchAgency' title='/pmwiki/pmwiki.php/Main/NoSuchAgency' data-format='Tm9TdWNoQWdlbmN5'>No Such Agency</a>: The government says this agency does not exist, no matter what you see or hear. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotSoOmniscientCouncilOfBickering' title='/pmwiki/pmwiki.php/Main/NotSoOmniscientCouncilOfBickering' data-format='Tm90U29PbW5pc2NpZW50Q291bmNpbE9mQmlja2VyaW5n'>Not-So-Omniscient Council of Bickering</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OmniscientCouncilOfVagueness' title='/pmwiki/pmwiki.php/Main/OmniscientCouncilOfVagueness' data-format='T21uaXNjaWVudENvdW5jaWxPZlZhZ3VlbmVzcw=='>Omniscient Council of Vagueness</a> is a lot less organized than you might think. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScareCampaign' title='/pmwiki/pmwiki.php/Main/ScareCampaign' data-format='U2NhcmVDYW1wYWlnbg=='>Scare Campaign</a>: Fearmongering propaganda against your opponents can be a great way of energizing your own supporters to rally behind you. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SkeletonGovernment' title='/pmwiki/pmwiki.php/Main/SkeletonGovernment' data-format='U2tlbGV0b25Hb3Zlcm5tZW50'>Skeleton Government</a>: There is a government but very little is shown of how it is actually run. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VastBureaucracy' title='/pmwiki/pmwiki.php/Main/VastBureaucracy' data-format='VmFzdEJ1cmVhdWNyYWN5'>Vast Bureaucracy</a>: A bureaucratic entity is far more expansive than what we see in real life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VetinariJobSecurity' title='/pmwiki/pmwiki.php/Main/VetinariJobSecurity' data-format='VmV0aW5hcmlKb2JTZWN1cml0eQ=='>Vetinari Job Security</a>: A character will always have their job purely because nobody else can do it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VoteEarlyVoteOften' title='/pmwiki/pmwiki.php/Main/VoteEarlyVoteOften' data-format='Vm90ZUVhcmx5Vm90ZU9mdGVu'>Vote Early, Vote Often</a>: Someone votes! ...multiple times in a single election, as an act of election fraud. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Rebellious and repressive politics&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoPlusTortureMakesFive' title='/pmwiki/pmwiki.php/Main/TwoPlusTortureMakesFive' data-format='VHdvUGx1c1RvcnR1cmVNYWtlc0ZpdmU='>2 + Torture = 5</a>: Torturing prisoners into accepting a government-mandated idea that is factually (often obviously) false. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllowedInternalWar' title='/pmwiki/pmwiki.php/Main/AllowedInternalWar' data-format='QWxsb3dlZEludGVybmFsV2Fy'>Allowed Internal War</a>: Civil war is an accepted part of internal politics. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnarchoTyranny' title='/pmwiki/pmwiki.php/Main/AnarchoTyranny' data-format='QW5hcmNob1R5cmFubnk='>Anarcho-Tyranny</a>: A corrupt government or tyrannical regime creates a state of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnarchyIsChaos' title='/pmwiki/pmwiki.php/Main/AnarchyIsChaos' data-format='W1tBbmFyY2h5SXNDaGFvcyBwZXJwZXR1YWwgbGF3bGVzc25lc3NdXQ=='>perpetual lawlessness</a>, so that everyone is too busy fighting each other to worry about them, which is criminal neglect on a nationwide scale. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AssassinationAttempt' title='/pmwiki/pmwiki.php/Main/AssassinationAttempt' data-format='QXNzYXNzaW5hdGlvbkF0dGVtcHQ='>Assassination Attempt</a>: Government officials and political activists of all kinds tend to attract enemies who want them to be killed, sometimes successfully. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BananaRepublic' title='/pmwiki/pmwiki.php/Main/BananaRepublic' data-format='QmFuYW5hUmVwdWJsaWM='>Banana Republic</a>: An <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Expy' title='/pmwiki/pmwiki.php/Main/Expy' data-format='e3tleHB5fX0='>expy</a> of a Latin American country, usually portrayed as being poor and weak due to being ruled by a cruel and/or incompetent leader. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBrotherIsEmployingYou' title='/pmwiki/pmwiki.php/Main/BigBrotherIsEmployingYou' data-format='QmlnQnJvdGhlcklzRW1wbG95aW5nWW91'>Big Brother Is Employing You</a>: A character, up to and including the protagonist, works for the dystopian government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBrotherIsWatching' title='/pmwiki/pmwiki.php/Main/BigBrotherIsWatching' data-format='QmlnQnJvdGhlcklzV2F0Y2hpbmc='>Big Brother Is Watching</a>: Mass surveillance of the general population by state security forces. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigotWithABadge' title='/pmwiki/pmwiki.php/Main/BigotWithABadge' data-format='Qmlnb3RXaXRoQUJhZGdl'>Bigot with a Badge</a>: A racist law enforcement officer. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreadAndCircuses' title='/pmwiki/pmwiki.php/Main/BreadAndCircuses' data-format='QnJlYWRBbmRDaXJjdXNlcw=='>Bread and Circuses</a>: When media, entertainment, and other distractions are used to keep the masses too content and stupid to care about whatever shady shit that the government or corporations are up to. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrokenSystemDogmatist' title='/pmwiki/pmwiki.php/Main/BrokenSystemDogmatist' data-format='QnJva2VuU3lzdGVtRG9nbWF0aXN0'>Broken-System Dogmatist</a>: Someone defends a broken sociopolitical system, even if it's clear it's beyond saving. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BurningTheFlag' title='/pmwiki/pmwiki.php/Main/BurningTheFlag' data-format='QnVybmluZ1RoZUZsYWc='>Burning the Flag</a>: The desecration of a national flag (whether of one's own country or a foreign one), often as a statement of protest. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChurchPolice' title='/pmwiki/pmwiki.php/Main/ChurchPolice' data-format='Q2h1cmNoUG9saWNl'>Church Police</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheTheocracy' title='/pmwiki/pmwiki.php/Main/TheTheocracy' data-format='VGhlVGhlb2NyYWN5'>The Theocracy</a> has an agency which enforces religious laws, cracking down on infidels and sinners. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CivilWar' title='/pmwiki/pmwiki.php/Main/CivilWar' data-format='Q2l2aWxXYXI='>Civil War</a>: An internal military conflict in which the government and their security forces fight with rebel factions that want to overthrow them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LesCollaborateurs' title='/pmwiki/pmwiki.php/Main/LesCollaborateurs' data-format='TGVzQ29sbGFib3JhdGV1cnM='>Les Collaborateurs</a>: Traitors who actively serve a foreign military occupation in their own country. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Conscription' title='/pmwiki/pmwiki.php/Main/Conscription' data-format='e3tDb25zY3JpcHRpb259fQ=='>Conscription</a>: When the state legally forces people to join the military rather than only recruiting volunteers. Can become a political controversy when draft-dodgers and anti-war activists oppose the practice. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCoup' title='/pmwiki/pmwiki.php/Main/TheCoup' data-format='VGhlQ291cA=='>The Coup</a>: The current government leader(s) get overthrown and replaced by some of their own subordinates. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrushingThePopulace' title='/pmwiki/pmwiki.php/Main/CrushingThePopulace' data-format='Q3J1c2hpbmdUaGVQb3B1bGFjZQ=='>Crushing the Populace</a>: A ruler of a newly-conquered land proceeds to oppress much of its population. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CulturePolice' title='/pmwiki/pmwiki.php/Main/CulturePolice' data-format='Q3VsdHVyZVBvbGljZQ=='>Culture Police</a>: Law enforcement agencies that enforce cultural policies, such as by censoring any media the government deems unacceptable. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DayOfTheJackboot' title='/pmwiki/pmwiki.php/Main/DayOfTheJackboot' data-format='RGF5T2ZUaGVKYWNrYm9vdA=='>Day of the Jackboot</a>: A democracy is successfully taken over by evil dictators. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathFlight' title='/pmwiki/pmwiki.php/Main/DeathFlight' data-format='RGVhdGhGbGlnaHQ='>Death Flight</a>: Throwing prisoners out of aircraft to their deaths. Often used by authoritarian regimes. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDictatorship' title='/pmwiki/pmwiki.php/Main/TheDictatorship' data-format='VGhlRGljdGF0b3JzaGlw'>The Dictatorship</a>: An autocratic government where every decision is made by one person. Distinct from an absolute monarchy due to using a quasi-republican government system. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DraftDodging' title='/pmwiki/pmwiki.php/Main/DraftDodging' data-format='RHJhZnREb2RnaW5n'>Draft Dodging</a>: Someone refuses to follow draft laws which compel them to enlist in the military, whether out of moral/political/religious beliefs or for more personal (self-serving) reasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DystopianEdict' title='/pmwiki/pmwiki.php/Main/DystopianEdict' data-format='RHlzdG9waWFuRWRpY3Q='>Dystopian Edict</a>: A dystopian nation is built around one very specific, very absurd law. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EatTheRich' title='/pmwiki/pmwiki.php/Main/EatTheRich' data-format='RWF0VGhlUmljaA=='>Eat the Rich</a>: Blame is placed on the wealthy upper-class elites for causing all of society's problems, and therefore they all need to be punished. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EcoTerrorist' title='/pmwiki/pmwiki.php/Main/EcoTerrorist' data-format='RWNvVGVycm9yaXN0'>Eco-Terrorist</a>: An individual or organization commits violent acts in the name of protecting nature/the environment. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EmergencyAuthority' title='/pmwiki/pmwiki.php/Main/EmergencyAuthority' data-format='RW1lcmdlbmN5QXV0aG9yaXR5'>Emergency Authority</a>: A public official is given more power than they normally have in order to deal with an emergency situation, which often ends badly. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasticTerrorists' title='/pmwiki/pmwiki.php/Main/FantasticTerrorists' data-format='RmFudGFzdGljVGVycm9yaXN0cw=='>Fantastic Terrorists</a>: Terrorists in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpeculativeFiction' title='/pmwiki/pmwiki.php/Main/SpeculativeFiction' data-format='U3BlY3VsYXRpdmVGaWN0aW9u'>Speculative Fiction</a> setting. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FascistButInefficient' title='/pmwiki/pmwiki.php/Main/FascistButInefficient' data-format='RmFzY2lzdEJ1dEluZWZmaWNpZW50'>Fascist, but Inefficient</a>: A repressive government is both cruel and ineffective. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FascistsBedtime' title='/pmwiki/pmwiki.php/Main/FascistsBedtime' data-format='RmFzY2lzdHNCZWR0aW1l'>Fascists Bedtime</a>: Curfews. Never leave home with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalSolution' title='/pmwiki/pmwiki.php/Main/FinalSolution' data-format='RmluYWxTb2x1dGlvbg=='>Final Solution</a>: Genocide, or the systematic mass murder of entire ethnic/religious communities that are strongly despised and persecuted by the state. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FullCircleRevolution' title='/pmwiki/pmwiki.php/Main/FullCircleRevolution' data-format='RnVsbENpcmNsZVJldm9sdXRpb24='>Full-Circle Revolution</a>: When an old tyrannical government gets replaced by another new government that is just as (if not even more) repressive as the old regime. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentExploitedCrisis' title='/pmwiki/pmwiki.php/Main/GovernmentExploitedCrisis' data-format='R292ZXJubWVudEV4cGxvaXRlZENyaXNpcw=='>Government-Exploited Crisis</a>: The government causes or exploits a disaster to further its own goals. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappinessIsMandatory' title='/pmwiki/pmwiki.php/Main/HappinessIsMandatory' data-format='SGFwcGluZXNzSXNNYW5kYXRvcnk='>Happiness Is Mandatory</a>: Pretend that you're completely okay with your mediocre living conditions or else... </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IOwnThisTown' title='/pmwiki/pmwiki.php/Main/IOwnThisTown' data-format='SU93blRoaXNUb3du'>I Own This Town</a>: A rich and powerful member of the elite who runs a city like their own personal fiefdom. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IconOfRebellion' title='/pmwiki/pmwiki.php/Main/IconOfRebellion' data-format='SWNvbk9mUmViZWxsaW9u'>Icon of Rebellion</a>: A symbol for resistance against the establishment. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IllegalReligion' title='/pmwiki/pmwiki.php/Main/IllegalReligion' data-format='SWxsZWdhbFJlbGlnaW9u'>Illegal Religion</a>: The government bans an entire religious sect, and punishes anyone caught practicing it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KangarooCourt' title='/pmwiki/pmwiki.php/Main/KangarooCourt' data-format='S2FuZ2Fyb29Db3VydA=='>Kangaroo Court</a>: An authoritarian sham court. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KillThePoor' title='/pmwiki/pmwiki.php/Main/KillThePoor' data-format='S2lsbFRoZVBvb3I='>Kill the Poor</a>: When the "war on poverty" becomes a horrifyingly literal campaign to persecute the poorest of lower-class folks. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheKingslayer' title='/pmwiki/pmwiki.php/Main/TheKingslayer' data-format='VGhlS2luZ3NsYXllcg=='>The Kingslayer</a>: Someone who has committed regicide (the murder of a monarch). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LegalizedEvil' title='/pmwiki/pmwiki.php/Main/LegalizedEvil' data-format='TGVnYWxpemVkRXZpbA=='>Legalized Evil</a>: Acts of evil and malevolence against another are permitted and unpunished under the law of the land. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LingeringSocialTensions' title='/pmwiki/pmwiki.php/Main/LingeringSocialTensions' data-format='TGluZ2VyaW5nU29jaWFsVGVuc2lvbnM='>Lingering Social Tensions</a>: Tensions remain between certain groups after society goes through a major cultural shift . </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MandatoryMotherhood' title='/pmwiki/pmwiki.php/Main/MandatoryMotherhood' data-format='TWFuZGF0b3J5TW90aGVyaG9vZA=='>Mandatory Motherhood</a>: Everyone <em>must</em> make babies or else. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MilitaryCoup' title='/pmwiki/pmwiki.php/Main/MilitaryCoup' data-format='TWlsaXRhcnlDb3Vw'>Military Coup</a>: When military commanders seize power from (usually civilian) government leaders. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MinoritySupremacist' title='/pmwiki/pmwiki.php/Main/MinoritySupremacist' data-format='TWlub3JpdHlTdXByZW1hY2lzdA=='>Minority Supremacist</a>: An extremist civil rights activist who doesn't want equality, but a total inversion of the social hierarchy. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Newspeak' title='/pmwiki/pmwiki.php/Main/Newspeak' data-format='e3tOZXdzcGVha319'>Newspeak</a>: Politically charged alterations of language, especially in the context of certain groups trying to manipulate people's speech and thoughts through propaganda. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OppressiveStatesOfAmerica' title='/pmwiki/pmwiki.php/Main/OppressiveStatesOfAmerica' data-format='T3BwcmVzc2l2ZVN0YXRlc09mQW1lcmljYQ=='>Oppressive States of America</a>: A dystopian version of the United States of America. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PeoplesRepublicOfTyranny' title='/pmwiki/pmwiki.php/Main/PeoplesRepublicOfTyranny' data-format='UGVvcGxlc1JlcHVibGljT2ZUeXJhbm55'>People's Republic of Tyranny</a>: The common tendency for dictatorships to (poorly) masquerade as democracies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PersecutedIntellectuals' title='/pmwiki/pmwiki.php/Main/PersecutedIntellectuals' data-format='UGVyc2VjdXRlZEludGVsbGVjdHVhbHM='>Persecuted Intellectuals</a>: Smart people are discriminated against. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliceBrutality' title='/pmwiki/pmwiki.php/Main/PoliceBrutality' data-format='UG9saWNlQnJ1dGFsaXR5'>Police Brutality</a>: It can become politically charged when law enforcement officers engage in excessively violent force against political protesters and anti-government dissidents. Also, the whole phenomenon of police violence can inspire protests and activism against this specifically. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliceState' title='/pmwiki/pmwiki.php/Main/PoliceState' data-format='UG9saWNlU3RhdGU='>Police State</a>: Totalitarian governments make sure to monitor and control as much of their citizens' lives as possible. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PopulationControl' title='/pmwiki/pmwiki.php/Main/PopulationControl' data-format='UG9wdWxhdGlvbkNvbnRyb2w='>Population Control</a>: The government tries to keep their country's population from growing out of control, usually through coercive methods (like forced abortions and sterilizations). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePurge' title='/pmwiki/pmwiki.php/Main/ThePurge' data-format='VGhlUHVyZ2U='>The Purge</a>: When the government (or another political faction) cracks down on all (real or imagined, usually internal) dissent and opposition; often through mass arrests and detention of these alleged enemies, or even by executions and massacres. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReignOfTerror' title='/pmwiki/pmwiki.php/Main/ReignOfTerror' data-format='UmVpZ25PZlRlcnJvcg=='>Reign of Terror</a>: When a rebel movement trying to overthrow the old regime eliminate all their loyalists. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RenegadeSplinterFaction' title='/pmwiki/pmwiki.php/Main/RenegadeSplinterFaction' data-format='UmVuZWdhZGVTcGxpbnRlckZhY3Rpb24='>Renegade Splinter Faction</a>: A faction splits off from its parent group due to ideological differences, and is often considered dangerous (or at least <em>more</em> dangerous than the parent group). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RepressiveButEfficient' title='/pmwiki/pmwiki.php/Main/RepressiveButEfficient' data-format='UmVwcmVzc2l2ZUJ1dEVmZmljaWVudA=='>Repressive, but Efficient</a>: A dictatorship is cruel, but efficient. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LaResistance' title='/pmwiki/pmwiki.php/Main/LaResistance' data-format='TGFSZXNpc3RhbmNl'>La Résistance</a>: Underground rebel forces who oppose the current regime in power. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RevolutionariesWhoDontDoAnything' title='/pmwiki/pmwiki.php/Main/RevolutionariesWhoDontDoAnything' data-format='UmV2b2x1dGlvbmFyaWVzV2hvRG9udERvQW55dGhpbmc='>Revolutionaries Who Don't Do Anything</a>: Activists who talk a great deal about overthrowing the government or resisting political corruption, but don't actually try to even make any meaningful changes to the status quo. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRevolutionWillNotBeBureaucratized' title='/pmwiki/pmwiki.php/Main/TheRevolutionWillNotBeBureaucratized' data-format='VGhlUmV2b2x1dGlvbldpbGxOb3RCZUJ1cmVhdWNyYXRpemVk'>The Revolution Will Not Be Bureaucratized</a>: A regime was just overthrown, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NowWhat' title='/pmwiki/pmwiki.php/Main/NowWhat' data-format='Tm93V2hhdA=='>Now What?</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRevolutionWillNotBeCivilized' title='/pmwiki/pmwiki.php/Main/TheRevolutionWillNotBeCivilized' data-format='VGhlUmV2b2x1dGlvbldpbGxOb3RCZUNpdmlsaXplZA=='>The Revolution Will Not Be Civilized</a>: Rebels and revolutionaries are not too merciful towards pro-government loyalists (or even their own allies who start getting the wrong ideas). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRevolutionWillNotBeVilified' title='/pmwiki/pmwiki.php/Main/TheRevolutionWillNotBeVilified' data-format='VGhlUmV2b2x1dGlvbldpbGxOb3RCZVZpbGlmaWVk'>The Revolution Will Not Be Vilified</a>: A rebel revolutionary force are the good guys. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RevolvingDoorRevolution' title='/pmwiki/pmwiki.php/Main/RevolvingDoorRevolution' data-format='UmV2b2x2aW5nRG9vclJldm9sdXRpb24='>Revolving Door Revolution</a>: A politically unstable country keeps getting new governments that seem to rise and fall with the changing seasons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RightWingMilitiaFanatic' title='/pmwiki/pmwiki.php/Main/RightWingMilitiaFanatic' data-format='UmlnaHRXaW5nTWlsaXRpYUZhbmF0aWM='>Right-Wing Militia Fanatic</a>: Extremist conservatives who <em>really</em> like their guns and violence, and <em>really</em> dislike the government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretPolice' title='/pmwiki/pmwiki.php/Main/SecretPolice' data-format='U2VjcmV0UG9saWNl'>Secret Police</a>: A covert intelligence/law-enforcement agency that is responsible for monitoring and suppressing political dissent. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SentencedWithoutTrial' title='/pmwiki/pmwiki.php/Main/SentencedWithoutTrial' data-format='U2VudGVuY2VkV2l0aG91dFRyaWFs'>Sentenced Without Trial</a>: Sentencing someone without giving them a trial. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShadowGovernment' title='/pmwiki/pmwiki.php/Main/ShadowGovernment' data-format='U2hhZG93R292ZXJubWVudA=='>Shadow Government</a>: Democracy is a lie. These people are the <em>real</em> authority behind everything. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlaveLiberation' title='/pmwiki/pmwiki.php/Main/SlaveLiberation' data-format='U2xhdmVMaWJlcmF0aW9u'>Slave Liberation</a>: Freeing people who live in forced servitude, whether by peaceful or violent means. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlaveryIsASpecialKindOfEvil' title='/pmwiki/pmwiki.php/Main/SlaveryIsASpecialKindOfEvil' data-format='U2xhdmVyeUlzQVNwZWNpYWxLaW5kT2ZFdmls'>Slavery Is a Special Kind of Evil</a>: Slavery is such an awful violation of human rights, that it has inspired political movements to legally abolish this system. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StagedPopulistUprising' title='/pmwiki/pmwiki.php/Main/StagedPopulistUprising' data-format='U3RhZ2VkUG9wdWxpc3RVcHJpc2luZw=='>Staged Populist Uprising</a>: A popular rebellion that is actually being led by an elite or outsider who isn't loyal to the people's cause. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheStateless' title='/pmwiki/pmwiki.php/Main/TheStateless' data-format='VGhlU3RhdGVsZXNz'>The Stateless</a>: Someone who is not a citizen or national of any sovereign nation-state. Sometimes this can be done voluntarily, but otherwise it happens because no country is willing to legally recognize them (or the government of their homeland may have even forcibly stripped them of their former citizenship/nationality). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StateSec' title='/pmwiki/pmwiki.php/Main/StateSec' data-format='U3RhdGVTZWM='>State Sec</a>: A paramilitary police force designed for terrorizing all enemies of the state. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperRegistrationAct' title='/pmwiki/pmwiki.php/Main/SuperRegistrationAct' data-format='U3VwZXJSZWdpc3RyYXRpb25BY3Q='>Super Registration Act</a>: When the state attempts to legally regulate <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DifferentlyPoweredIndividual' title='/pmwiki/pmwiki.php/Main/DifferentlyPoweredIndividual' data-format='W1tEaWZmZXJlbnRseVBvd2VyZWRJbmRpdmlkdWFsIHN1cGVyaHVtYW4gYmVpbmdzIHdpdGggc3BlY2lhbCBwb3dlcnNdXQ=='>superhuman beings with special powers</a>, or at least <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Superhero' title='/pmwiki/pmwiki.php/Main/Superhero' data-format='W1t7e1N1cGVyaGVyb319IGNvc3R1bWVkIHZpZ2lsYW50ZXNdXQ=='>costumed vigilantes</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Supervillain' title='/pmwiki/pmwiki.php/Main/Supervillain' data-format='W1t7e1N1cGVydmlsbGFpbn19IGNvc3R1bWVkIGNyaW1pbmFsc11d'>costumed criminals</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TaughtToHate' title='/pmwiki/pmwiki.php/Main/TaughtToHate' data-format='VGF1Z2h0VG9IYXRl'>Taught to Hate</a>: When society teaches hatred of an outgroup to its members. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThousandYearReign' title='/pmwiki/pmwiki.php/Main/ThousandYearReign' data-format='VGhvdXNhbmRZZWFyUmVpZ24='>Thousand-Year Reign</a>: A faction declares it will rule for a very, <em>very</em> long time. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Thoughtcrime' title='/pmwiki/pmwiki.php/Main/Thoughtcrime' data-format='e3tUaG91Z2h0Y3JpbWV9fQ=='>Thoughtcrime</a>: When it's not enough for a totalitarian government to just censor whatever you try to say; they need to ensure you're unable to even <em>feel</em> any disagreement with them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TyrantTakesTheHelm' title='/pmwiki/pmwiki.php/Main/TyrantTakesTheHelm' data-format='VHlyYW50VGFrZXNUaGVIZWxt'>Tyrant Takes the Helm</a>: A repressive autocrat replaces a former <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReasonableAuthorityFigure' title='/pmwiki/pmwiki.php/Main/ReasonableAuthorityFigure' data-format='UmVhc29uYWJsZUF1dGhvcml0eUZpZ3VyZQ=='>Reasonable Authority Figure</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VelvetRevolution' title='/pmwiki/pmwiki.php/Main/VelvetRevolution' data-format='VmVsdmV0UmV2b2x1dGlvbg=='>Velvet Revolution</a>: A revolution that is fought with little to no violence (at least, from the rebels). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VoiceOfTheResistance' title='/pmwiki/pmwiki.php/Main/VoiceOfTheResistance' data-format='Vm9pY2VPZlRoZVJlc2lzdGFuY2U='>Voice of the Resistance</a>: All rebel propaganda requires a good spokesperson to represent them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeAreEverywhere' title='/pmwiki/pmwiki.php/Main/WeAreEverywhere' data-format='V2VBcmVFdmVyeXdoZXJl'>We Are Everywhere</a>: A member of a group is taken out, but they assert that other members of that group are so pervasive in society. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeAreStrugglingTogether' title='/pmwiki/pmwiki.php/Main/WeAreStrugglingTogether' data-format='V2VBcmVTdHJ1Z2dsaW5nVG9nZXRoZXI='>We ARE Struggling Together</a>: Factions that are nominally allied find it hard to focus on their common enemy because they're too preoccupied with fighting each other. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WouldBeRudeToSayGenocide' title='/pmwiki/pmwiki.php/Main/WouldBeRudeToSayGenocide' data-format='V291bGRCZVJ1ZGVUb1NheUdlbm9jaWRl'>Would Be Rude to Say "Genocide"</a>: The denial, whitewashing, or justification of a genocide. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YourTerroristsAreOurFreedomFighters' title='/pmwiki/pmwiki.php/Main/YourTerroristsAreOurFreedomFighters' data-format='WW91clRlcnJvcmlzdHNBcmVPdXJGcmVlZG9tRmlnaHRlcnM='>Your Terrorists Are Our Freedom Fighters</a>: Depending on one's personal bias, political militants can be either villains or heroes in their eyes. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;International and interstellar politics&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AgentProvocateur' title='/pmwiki/pmwiki.php/Main/AgentProvocateur' data-format='QWdlbnRQcm92b2NhdGV1cg=='>Agent Provocateur</a>: An individual who pretends to be on the other side and who tries to provoke the other side. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllNationsAreSuperpowers' title='/pmwiki/pmwiki.php/Main/AllNationsAreSuperpowers' data-format='QWxsTmF0aW9uc0FyZVN1cGVycG93ZXJz'>All Nations Are Superpowers</a>: Every country is far more powerful than they are in real life. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheAlliance' title='/pmwiki/pmwiki.php/Main/TheAlliance' data-format='VGhlQWxsaWFuY2U='>The Alliance</a>: When two or more sovereign countries agree to team up together for common diplomatic/economic/military interests. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AltarDiplomacy' title='/pmwiki/pmwiki.php/Main/AltarDiplomacy' data-format='QWx0YXJEaXBsb21hY3k='>Altar Diplomacy</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArrangedMarriage' title='/pmwiki/pmwiki.php/Main/ArrangedMarriage' data-format='QXJyYW5nZWRNYXJyaWFnZQ=='>Arranged Marriage</a> between members of different royal/noble families to build a political alliance tying them together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmericaTakesOverTheWorld' title='/pmwiki/pmwiki.php/Main/AmericaTakesOverTheWorld' data-format='QW1lcmljYVRha2VzT3ZlclRoZVdvcmxk'>America Takes Over the World</a>: The whole world is led by the USA. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArmiesAreEvil' title='/pmwiki/pmwiki.php/Main/ArmiesAreEvil' data-format='QXJtaWVzQXJlRXZpbA=='>Armies Are Evil</a>: A work portrays formal military as being a violent group of warmongers. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BalanceOfPower' title='/pmwiki/pmwiki.php/Main/BalanceOfPower' data-format='QmFsYW5jZU9mUG93ZXI='>Balance of Power</a>: An international status quo between states of relatively-even power and influence, with several smaller states allying themselves with one or the other in order to preserve the balance and, ultimately, peace. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BindingAncientTreaty' title='/pmwiki/pmwiki.php/Main/BindingAncientTreaty' data-format='QmluZGluZ0FuY2llbnRUcmVhdHk='>Binding Ancient Treaty</a>: A formal agreement from an era long gone is still applicable in the present day. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChinaTakesOverTheWorld' title='/pmwiki/pmwiki.php/Main/ChinaTakesOverTheWorld' data-format='Q2hpbmFUYWtlc092ZXJUaGVXb3JsZA=='>China Takes Over the World</a>: The whole world is led by China. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CulturalPosturing' title='/pmwiki/pmwiki.php/Main/CulturalPosturing' data-format='Q3VsdHVyYWxQb3N0dXJpbmc='>Cultural Posturing</a>: A character invokes their culture as being superior to another culture. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiplomaticBackChannel' title='/pmwiki/pmwiki.php/Main/DiplomaticBackChannel' data-format='RGlwbG9tYXRpY0JhY2tDaGFubmVs'>Diplomatic Back Channel</a>: Unofficial means for governments to talk. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiplomaticCoverSpy' title='/pmwiki/pmwiki.php/Main/DiplomaticCoverSpy' data-format='RGlwbG9tYXRpY0NvdmVyU3B5'>Diplomatic Cover Spy</a>: When employees of an embassy or consulate hide behind the cover of diplomatic immunity to engage in espionage. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiplomaticImpunity' title='/pmwiki/pmwiki.php/Main/DiplomaticImpunity' data-format='RGlwbG9tYXRpY0ltcHVuaXR5'>Diplomatic Impunity</a>: When foreign dignitaries abuse their legal immunity to the laws of the country they are staying in. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiversionaryForeignPolicy' title='/pmwiki/pmwiki.php/Main/DiversionaryForeignPolicy' data-format='RGl2ZXJzaW9uYXJ5Rm9yZWlnblBvbGljeQ=='>Diversionary Foreign Policy</a>: The deliberate invasion of a foreign party to quell domestic disputes. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpire' title='/pmwiki/pmwiki.php/Main/TheEmpire' data-format='VGhlRW1waXJl'>The Empire</a>: An aggressively expansionist and militaristic empire bent on conquering everyone else. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnforcedColdWar' title='/pmwiki/pmwiki.php/Main/EnforcedColdWar' data-format='RW5mb3JjZWRDb2xkV2Fy'>Enforced Cold War</a>: An ongoing proxy conflict stays "cold", because turning it into an outright "hot" war would be more counterproductive to international interests. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExpandedStatesOfAmerica' title='/pmwiki/pmwiki.php/Main/ExpandedStatesOfAmerica' data-format='RXhwYW5kZWRTdGF0ZXNPZkFtZXJpY2E='>Expanded States of America</a>: The USA has expanded and incorporated other countries into itself. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FalseFlagOperation' title='/pmwiki/pmwiki.php/Main/FalseFlagOperation' data-format='RmFsc2VGbGFnT3BlcmF0aW9u'>False Flag Operation</a>: Some entity (such as a government) stages some sort of violent act, and then frames their enemies for it as a pretext to declare a war against them. A very common component of countless conspiracy theories. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFederation' title='/pmwiki/pmwiki.php/Main/TheFederation' data-format='VGhlRmVkZXJhdGlvbg=='>The Federation</a>: A large (con)federacy/federation of various states which are partially or completely united together as one political force, sometimes even under a single centralized (federal) government. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FictionalCountry' title='/pmwiki/pmwiki.php/Main/FictionalCountry' data-format='RmljdGlvbmFsQ291bnRyeQ=='>Fictional Country</a>: Many examples of fictitious nations are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Expy' title='/pmwiki/pmwiki.php/Main/Expy' data-format='e3tleHB8eX19aWVz'>expies</a> of real-world nations, or at least allegories for real-life international politics. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FictionalGenevaConventions' title='/pmwiki/pmwiki.php/Main/FictionalGenevaConventions' data-format='RmljdGlvbmFsR2VuZXZhQ29udmVudGlvbnM='>Fictional Geneva Conventions</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheLawsAndCustomsOfWar' title='/pmwiki/pmwiki.php/UsefulNotes/TheLawsAndCustomsOfWar' data-format='VXNlZnVsTm90ZXMvVGhlTGF3c0FuZEN1c3RvbXNPZldhcg=='>The Laws and Customs of War</a> are a bit different in fantasy/science-fiction settings. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FictionalUnitedNations' title='/pmwiki/pmwiki.php/Main/FictionalUnitedNations' data-format='RmljdGlvbmFsVW5pdGVkTmF0aW9ucw=='>Fictional United Nations</a>: An international diplomatic organization that acts an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Expy' title='/pmwiki/pmwiki.php/Main/Expy' data-format='e3tleHB5fX0='>expy</a> for the real-life <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/UnitedNations' title='/pmwiki/pmwiki.php/UsefulNotes/UnitedNations' data-format='VXNlZnVsTm90ZXMvVW5pdGVkTmF0aW9ucw=='>United Nations</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GalacticSuperpower' title='/pmwiki/pmwiki.php/Main/GalacticSuperpower' data-format='R2FsYWN0aWNTdXBlcnBvd2Vy'>Galactic Superpower</a>: A supremely powerful spacefaring nation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenericFederationNamedEmpire' title='/pmwiki/pmwiki.php/Main/GenericFederationNamedEmpire' data-format='R2VuZXJpY0ZlZGVyYXRpb25OYW1lZEVtcGlyZQ=='>Generic Federation, Named Empire</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFederation' title='/pmwiki/pmwiki.php/Main/TheFederation' data-format='VGhlRmVkZXJhdGlvbg=='>The Federation</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheAlliance' title='/pmwiki/pmwiki.php/Main/TheAlliance' data-format='VGhlQWxsaWFuY2U='>The Alliance</a> doesn't have much of a unique name, while <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpire' title='/pmwiki/pmwiki.php/Main/TheEmpire' data-format='VGhlRW1waXJl'>The Empire</a> does. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoodRepublicEvilEmpire' title='/pmwiki/pmwiki.php/Main/GoodRepublicEvilEmpire' data-format='R29vZFJlcHVibGljRXZpbEVtcGlyZQ=='>Good Republic, Evil Empire</a>: A (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFederation' title='/pmwiki/pmwiki.php/Main/TheFederation' data-format='W1tUaGVGZWRlcmF0aW9uIGZlZGVyYWxdXQ=='>federal</a>) republic is portrayed as being good, while <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpire' title='/pmwiki/pmwiki.php/Main/TheEmpire' data-format='VGhlRW1waXJl'>The Empire</a> is a force of evil. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GovernmentInExile' title='/pmwiki/pmwiki.php/Main/GovernmentInExile' data-format='R292ZXJubWVudEluRXhpbGU='>Government in Exile</a>: The leaders of a former national government now live in another country (while still claiming sovereign authority which they no longer have). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGreatWall' title='/pmwiki/pmwiki.php/Main/TheGreatWall' data-format='VGhlR3JlYXRXYWxs'>The Great Wall</a>: A city or nation builds a big border wall in order to keep invading armies, foreign migrants, and other unwanted outsiders out of their territory. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GunboatDiplomacy' title='/pmwiki/pmwiki.php/Main/GunboatDiplomacy' data-format='R3VuYm9hdERpcGxvbWFjeQ=='>Gunboat Diplomacy</a>: Efforts to create ties between two (or more) states are backed by military threat. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HegemonicEmpire' title='/pmwiki/pmwiki.php/Main/HegemonicEmpire' data-format='SGVnZW1vbmljRW1waXJl'>Hegemonic Empire</a>: An Empire built through soft power (economics and culture) instead of hard power (military). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HufflepuffHouse' title='/pmwiki/pmwiki.php/Main/HufflepuffHouse' data-format='SHVmZmxlcHVmZkhvdXNl'>Hufflepuff House</a>: A faction is important to the setting's politics, but largely irrelevant to the story. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumansAreDiplomats' title='/pmwiki/pmwiki.php/Main/HumansAreDiplomats' data-format='SHVtYW5zQXJlRGlwbG9tYXRz'>Humans Are Diplomats</a>: Humans constantly find themselves as the peacemaker between warring alien races. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InternationalShowdownByProxy' title='/pmwiki/pmwiki.php/Main/InternationalShowdownByProxy' data-format='SW50ZXJuYXRpb25hbFNob3dkb3duQnlQcm94eQ=='>International Showdown by Proxy</a>: Sports (or some other mundane activity) representing conflict between two countries. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JapanTakesOverTheWorld' title='/pmwiki/pmwiki.php/Main/JapanTakesOverTheWorld' data-format='SmFwYW5UYWtlc092ZXJUaGVXb3JsZA=='>Japan Takes Over the World</a>: The whole world is led by Japan. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LensmanArmsRace' title='/pmwiki/pmwiki.php/Main/LensmanArmsRace' data-format='TGVuc21hbkFybXNSYWNl'>Lensman Arms Race</a>: Two nations trying to outdo one another in military might and weaponry end up creating fantastically powerful (and destructive) technology. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LibertariansInSpace' title='/pmwiki/pmwiki.php/Main/LibertariansInSpace' data-format='TGliZXJ0YXJpYW5zSW5TcGFjZQ=='>Libertarians IN SPACE!</a>: Outer space is the ideal place for anti-statists to live out their fantasies of life without much governmental intervention. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MiddleEasternCoalition' title='/pmwiki/pmwiki.php/Main/MiddleEasternCoalition' data-format='TWlkZGxlRWFzdGVybkNvYWxpdGlvbg=='>Middle Eastern Coalition</a>: Countries in North Africa or West Asia (whether real or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Qurac' title='/pmwiki/pmwiki.php/Main/Qurac' data-format='W1t7e1F1cmFjfX0gZmljdGlvbmFsXV0='>fictional</a>) unify to form a single, formally-governed Islamic nation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MultipleGovernmentPolity' title='/pmwiki/pmwiki.php/Main/MultipleGovernmentPolity' data-format='TXVsdGlwbGVHb3Zlcm5tZW50UG9saXR5'>Multiple Government Polity</a>: A federalized entity of multiple distinct states united together. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NeutralInNameOnly' title='/pmwiki/pmwiki.php/Main/NeutralInNameOnly' data-format='TmV1dHJhbEluTmFtZU9ubHk='>Neutral in Name Only</a>: A faction professes neutrality but in practice is heavily aligned with one side. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NGOSuperpower' title='/pmwiki/pmwiki.php/Main/NGOSuperpower' data-format='TkdPU3VwZXJwb3dlcg=='>N.G.O. Superpower</a>: A non-state actor that is so powerful and influential, that it can rival or challenge actual governments in geopolitical affairs. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoMereWindmill' title='/pmwiki/pmwiki.php/Main/NoMereWindmill' data-format='Tm9NZXJlV2luZG1pbGw='>No Mere Windmill</a>: It turns out that the supposedly-imaginary threat that the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WindmillCrusader' title='/pmwiki/pmwiki.php/Main/WindmillCrusader' data-format='V2luZG1pbGxDcnVzYWRlcg=='>Windmill Crusader</a> was trying to warn everyone about, is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealAfterAll' title='/pmwiki/pmwiki.php/Main/RealAfterAll' data-format='W1tSZWFsQWZ0ZXJBbGwgYWN0dWFsbHkgcXVpdGUgcmVhbF1d'>actually quite real</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonGovernmentalOrganization' title='/pmwiki/pmwiki.php/Main/NonGovernmentalOrganization' data-format='Tm9uR292ZXJubWVudGFsT3JnYW5pemF0aW9u'>Non-Governmental Organization</a>: A private group that engages in political activities, independently of any state apparatus. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OccupiersOutOfOurCountry' title='/pmwiki/pmwiki.php/Main/OccupiersOutOfOurCountry' data-format='T2NjdXBpZXJzT3V0T2ZPdXJDb3VudHJ5'>Occupiers Out of Our Country</a>: When nationalists yearn for the independence of their homeland from a ruling central government or foreign power that they despise. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffendingAForeignCountry' title='/pmwiki/pmwiki.php/Main/OffendingAForeignCountry' data-format='T2ZmZW5kaW5nQUZvcmVpZ25Db3VudHJ5'>Offending a Foreign Country</a>: A character's actions or words offend a foreign country. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneWorldOrder' title='/pmwiki/pmwiki.php/Main/OneWorldOrder' data-format='T25lV29ybGRPcmRlcg=='>One World Order</a>: A global government that completely rules over all of Earth (or another planet). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PatriotInExile' title='/pmwiki/pmwiki.php/Main/PatriotInExile' data-format='UGF0cmlvdEluRXhpbGU='>Patriot in Exile</a>: A person loves their country despite being barred there. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PeaceConference' title='/pmwiki/pmwiki.php/Main/PeaceConference' data-format='UGVhY2VDb25mZXJlbmNl'>Peace Conference</a>: When warring factions sit down to negotiate peace treaties. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoliticalHostage' title='/pmwiki/pmwiki.php/Main/PoliticalHostage' data-format='UG9saXRpY2FsSG9zdGFnZQ=='>Political Hostage</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpire' title='/pmwiki/pmwiki.php/Main/TheEmpire' data-format='VGhlRW1waXJl'>The Empire</a> wants to keep a vassal state in line, so they hold someone important to them as an indefinite "guest". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PostSovietReunion' title='/pmwiki/pmwiki.php/Main/PostSovietReunion' data-format='UG9zdFNvdmlldFJldW5pb24='>Post-Soviet Reunion</a>: Russia reunites with post-Soviet states into an alliance, supranational union or superstate. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PretextForWar' title='/pmwiki/pmwiki.php/Main/PretextForWar' data-format='UHJldGV4dEZvcldhcg=='>Pretext for War</a>: A <em>casus belli</em>, or an excuse/justification for nations to declare war on one another. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrisonerExchange' title='/pmwiki/pmwiki.php/Main/PrisonerExchange' data-format='UHJpc29uZXJFeGNoYW5nZQ=='>Prisoner Exchange</a>: When warring factions mutually agree to free their prisoners. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProxyWar' title='/pmwiki/pmwiki.php/Main/ProxyWar' data-format='UHJveHlXYXI='>Proxy War</a>: When two or more rival nations each support different factions of a military conflict, instead of directly fighting with each other in open warfare. For example, the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ColdWar' title='/pmwiki/pmwiki.php/UsefulNotes/ColdWar' data-format='VXNlZnVsTm90ZXMvQ29sZFdhcg=='>Cold War</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PuppetState' title='/pmwiki/pmwiki.php/Main/PuppetState' data-format='UHVwcGV0U3RhdGU='>Puppet State</a>: A nominally independent country, which is actually a client/protectorate/satellite/tributary/vassal that is (in)directly controlled or dominated by another, more powerful nation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheQueenWillBeWatching' title='/pmwiki/pmwiki.php/Main/TheQueenWillBeWatching' data-format='VGhlUXVlZW5XaWxsQmVXYXRjaGluZw=='>The Queen Will Be Watching</a>: A head of state, dignitary, or other important person catches a performance by a theatre group or attends a movie premiere. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheQuisling' title='/pmwiki/pmwiki.php/Main/TheQuisling' data-format='VGhlUXVpc2xpbmc='>The Quisling</a>: A nation's puppet leader who is appointed by a foreign military occupation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Realpolitik' title='/pmwiki/pmwiki.php/Main/Realpolitik' data-format='e3tSZWFscG9saXRpa319'>Realpolitik</a>: The ruthlessly pragmatic conduct of political affairs for personal advantage, without any regard for moral principles. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RegimeChange' title='/pmwiki/pmwiki.php/Main/RegimeChange' data-format='UmVnaW1lQ2hhbmdl'>Regime Change</a>: The forceful overthrow and replacement of a national government, supported by a foreign power; usually done by covertly sponsoring <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCoup' title='/pmwiki/pmwiki.php/Main/TheCoup' data-format='W1tUaGVDb3VwIGEgY291cCBvciByZXZvbHV0aW9uXV0='>a coup or revolution</a>, and sometimes much more overtly through invasion and occupation by that foreign power. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RussiaTakesOverTheWorld' title='/pmwiki/pmwiki.php/Main/RussiaTakesOverTheWorld' data-format='UnVzc2lhVGFrZXNPdmVyVGhlV29ybGQ='>Russia Takes Over the World</a>: The whole world is led by Russia or the USSR. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SillyReasonForWar' title='/pmwiki/pmwiki.php/Main/SillyReasonForWar' data-format='U2lsbHlSZWFzb25Gb3JXYXI='>Silly Reason for War</a>: When a <em>casus belli</em> is overly contrived, petty, or downright illogical. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpaceColdWar' title='/pmwiki/pmwiki.php/Main/SpaceColdWar' data-format='U3BhY2VDb2xkV2Fy'>Space Cold War</a>: A fictional proxy conflict which parallels the historical <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ColdWar' title='/pmwiki/pmwiki.php/UsefulNotes/ColdWar' data-format='VXNlZnVsTm90ZXMvQ29sZFdhcg=='>Cold War</a> between the USA and the USSR. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StateVisit' title='/pmwiki/pmwiki.php/Main/StateVisit' data-format='U3RhdGVWaXNpdA=='>State Visit</a>: An official diplomatic visitation by a foreign national leader. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeOverTheWorld' title='/pmwiki/pmwiki.php/Main/TakeOverTheWorld' data-format='VGFrZU92ZXJUaGVXb3JsZA=='>Take Over the World</a>: A specific nation coming to total (or near-total) global domination as the sole superpower. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UngovernableGalaxy' title='/pmwiki/pmwiki.php/Main/UngovernableGalaxy' data-format='VW5nb3Zlcm5hYmxlR2FsYXh5'>Ungovernable Galaxy</a>: A whole galaxy is just way too big for one centralized state to effectively control. <!--* TheUnifier: Someone who unifies two or more warring factions into a single nation. - Rogue Launched Trope; restore once properly relaunched.--> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnitedAfrica' title='/pmwiki/pmwiki.php/Main/UnitedAfrica' data-format='VW5pdGVkQWZyaWNh'>United Africa</a>: The countries of Africa (or at least its sub-Saharan part) have united into one state. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnitedEurope' title='/pmwiki/pmwiki.php/Main/UnitedEurope' data-format='VW5pdGVkRXVyb3Bl'>United Europe</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheEuropeanUnion' title='/pmwiki/pmwiki.php/UsefulNotes/TheEuropeanUnion' data-format='VXNlZnVsTm90ZXMvVGhlRXVyb3BlYW5Vbmlvbg=='>The European Union</a> (plus a few more) as a formally-governed nation. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnitedNationsIsASuperpower' title='/pmwiki/pmwiki.php/Main/UnitedNationsIsASuperpower' data-format='VW5pdGVkTmF0aW9uc0lzQVN1cGVycG93ZXI='>United Nations Is a Superpower</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/UnitedNations' title='/pmwiki/pmwiki.php/UsefulNotes/UnitedNations' data-format='VXNlZnVsTm90ZXMvVW5pdGVkTmF0aW9ucw=='>United Nations</a> are far more powerful than they are in reality, wielding actual power over individual nation-states </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnitedSpaceOfAmerica' title='/pmwiki/pmwiki.php/Main/UnitedSpaceOfAmerica' data-format='VW5pdGVkU3BhY2VPZkFtZXJpY2E='>United Space of America</a>: Human colonies in space are portrayed as being socioculturally like the United States of America. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VoluntaryVassal' title='/pmwiki/pmwiki.php/Main/VoluntaryVassal' data-format='Vm9sdW50YXJ5VmFzc2Fs'>Voluntary Vassal</a>: A state is willingly subservient to another, more powerful one. Usually allowed to run their own domestic affairs, but foreign policy and trade terms are effectively dictated by their master. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WallsOfTyranny' title='/pmwiki/pmwiki.php/Main/WallsOfTyranny' data-format='V2FsbHNPZlR5cmFubnk='>Walls of Tyranny</a>: The border walls aren't just for keeping foreigners outside; they're also meant to keep <em>citizens trapped inside</em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatTheRomansHaveDoneForUs' title='/pmwiki/pmwiki.php/Main/WhatTheRomansHaveDoneForUs' data-format='V2hhdFRoZVJvbWFuc0hhdmVEb25lRm9yVXM='>What the Romans Have Done for Us</a>: A people's livelihood improves under the rule of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEmpire' title='/pmwiki/pmwiki.php/Main/TheEmpire' data-format='VGhlRW1waXJl'>The Empire</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WonTheWarLostThePeace' title='/pmwiki/pmwiki.php/Main/WonTheWarLostThePeace' data-format='V29uVGhlV2FyTG9zdFRoZVBlYWNl'>Won the War, Lost the Peace</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PyrrhicVictory' title='/pmwiki/pmwiki.php/Main/PyrrhicVictory' data-format='UHlycmhpY1ZpY3Rvcnk='>Pyrrhic Victory</a> in war only leads to more conflict down the line. </li></ul></div> </p><p><!&#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/MoralityTropes">Morality Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PhilosophyTropes">Philosophy Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PsychologyTropes">Psychology Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OrganizationIndex">Organization Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SociologyTropes">Sociology Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/APoliteIndex">A Polite Index</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/PirateTropes">Pirate Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OccupationTropes">Occupation Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PovertyTropes">Poverty Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ParentalIssues">Parental Issues</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CynicismTropes">Cynicism Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PoorCommunicationKills">Poor Communication Kills</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/PlausibleDeniability">Plausible Deniability</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Theatre">QuoteSource/Theatre</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TenPacesAndTurn">Ten Paces and Turn</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OrganizedCrimeTropes">Organized Crime Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OrganizationIndex">Organization Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/RecruitmentIndex">Recruitment Index</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/APoliteIndex">A Polite Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TopicalTropes">Topical Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PovertyTropes">Poverty Tropes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/PatrioticTropes">Patriotic Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheOnlyRighteousIndexOfFanatics">The Only Righteous Index of Fanatics!</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PrejudiceTropes">Prejudice Tropes</a> </li> </ul> <ul> <li> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AuthorityTropes">Authority Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/RoyaltyAndNobilityTropes">Royalty and Nobility Tropes</a> </li> </ul> </div> </div> <div id="proper_player_insert_div" class="outer_ads_by_salon_wrapper"> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

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