CINXE.COM

Big Bad - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "no", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; 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 : "a1fdc3097a55e179219cd1bf535ab41b48dc60da", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; // Check to see if this page is isolated, if so, run BCLighthouseTag.disableGoogleAdManager(); if(window.site_htl_settings.adx == "no"){ console.log("disabling google"); BCLighthouseTag.cmd.push(() => { BCLighthouseTag.disableGoogleAdManager(); }); } </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Big Bad - TV Tropes</title> <meta name="description" content="A cause of many or most of the bad happenings in a story, and often the main cause of most or all of them. A Big Bad could be a character with Evil Plans or &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/BigBad" /> <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="Big Bad - TV Tropes" /> <meta name="twitter:description" content="A cause of many or most of the bad happenings in a story, and often the main cause of most or all of them. A Big Bad could be a character with Evil Plans or &hellip;" /> <meta name="twitter:image:src" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/174_2fcinemovies_2fee7_2f7d6_2fb62492936ac52145c156ddd249_2fmovies_215094_21694460_waifu2x_art_noise2.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Big Bad - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/BigBad" /> <meta property="og:image" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/174_2fcinemovies_2fee7_2f7d6_2fb62492936ac52145c156ddd249_2fmovies_215094_21694460_waifu2x_art_noise2.png" /> <meta property="og:description" content="A cause of many or most of the bad happenings in a story, and often the main cause of most or all of them. A Big Bad could be a character with Evil Plans or it could be an omnipresent situation, such as a comet heading towards the Earth. In a &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=a1fdc3097a55e179219cd1bf535ab41b48dc60da" /> <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/TheLoinsSleepTonight" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Film/HighRisk" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, oauth_finalize, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (oauth_finalize ? '&oauth_finalize=' + encodeURIComponent(oauth_finalize) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]:not(#signup-form-toggles a)'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTargetId = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); const isExclusive = targetWithToggleTarget.getAttribute('data-click-toggle-exclusive') === 'true'; if (isExclusive) { // Exclusive mode: toggle target and clear siblings const toggleTarget = document.getElementById(toggleTargetId); if (toggleTarget) { // Remove the toggle class from all siblings const siblings = Array.from(toggleTarget.parentNode.children); for (let sibling of siblings) { if (sibling !== toggleTarget) { sibling.classList.remove(toggleClass); } } // Add the toggle class to the target element toggleTarget.classList.add(toggleClass); } } else { // Non-exclusive mode: toggle targets normally if (toggleTargetId.indexOf(',') > -1) { const targets = toggleTargetId.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTargetId).forEach(el => { el.classList.toggle(toggleClass); }); } } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/BigBad?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/BigBad"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.BigBad" 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.BigBad" 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/BigBad?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="BigBad"/> <input type="hidden" id="article_id" value="722" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/BigBad</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"> Big Bad </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Tropes" },{ "@type": "ListItem", "position": 3, "name": "Big Bad", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/BigBad" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Big Bad", "headline": "Big Bad", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/BigBad", "image": "https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/174_2fcinemovies_2fee7_2f7d6_2fb62492936ac52145c156ddd249_2fmovies_215094_21694460_waifu2x_art_noise2.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2007-06-14T00:00:00-07:00", "dateModified": "2025-02-24T11:07:54-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/BigBad" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Laconic/BigBad" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/BigBad" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Theatre/BigBad" class="subpage-link " title="The Theatre page"> <span class="wrapper"><span class="spi theatre"></span>Theatre</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/BigBad" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="more-subpages"> <a href="javascript:void(0);" class="subpage-toggle-button" > <span class="wrapper more">More <i class="fa fa-chevron-down"></i></span> <span class="wrapper less"><i class="fa fa-chevron-left"></i> Less</span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);" tabindex="0"> <option value="">- More -</option> <option value="/pmwiki/pmwiki.php/Br/BigBad">Br</option> <option value="/pmwiki/pmwiki.php/De/BigBad">De</option> <option value="/pmwiki/pmwiki.php/Es/BigBad">Es</option> <option value="/pmwiki/pmwiki.php/Fr/BigBad">Fr</option> <option value="/pmwiki/pmwiki.php/FrTraitement/BigBad">FrTraitement</option> <option value="/pmwiki/pmwiki.php/Haiku/BigBad">Haiku</option> <option value="/pmwiki/pmwiki.php/ImageLinks/BigBad">ImageLinks</option> <option value="/pmwiki/pmwiki.php/Nl/BigBad">Nl</option> <option value="/pmwiki/pmwiki.php/PlayingWith/BigBad">PlayingWith</option> </select> </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/BigBad?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/BigBad?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/BigBad?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/BigBad?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/BigBad?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/BigBad?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/BigBad?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/BigBad?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/BigBad?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Headscratchers/BigBad?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/BigBad?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageSource/BigBad?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/BigBad?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/BigBad?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/BigBad?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/BigBad?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/BigBad?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/BigBad?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/BigBad?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/BigBad?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/BigBad?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/BigBad?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/BigBad?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/BigBad?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=16655048340.45948700--> <!-- Previous thread: https://tvtropes.org/pmwiki/posts.php?discussion=1299448327072316600--> <!-- Please do not change or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheRiseOfSkywalker' title='/pmwiki/pmwiki.php/Film/TheRiseOfSkywalker' data-format='W1tGaWxtL1RoZVJpc2VPZlNreXdhbGtlciBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvMTc0XzJmY2luZW1vdmllc18yZmVlN18yZjdkNl8yZmI2MjQ5MjkzNmFjNTIxNDVjMTU2ZGRkMjQ5XzJmbW92aWVzXzIxNTA5NF8yMTY5NDQ2MF93YWlmdTJ4X2FydF9ub2lzZTIucG5nXV0='><div class="lazy_load_img_box" style="padding-top:146.4%"><img src='https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/174_2fcinemovies_2fee7_2f7d6_2fb62492936ac52145c156ddd249_2fmovies_215094_21694460_waifu2x_art_noise2.png' class='embeddedimage' border='0' alt='Big Bad (trope)' width=1200 height=1757></div></a></div> <div class="acaptionright" style="width:350px;" ><em>"Everything that has transpired in this trope has done so according to <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Characters/StarWarsEmperorPalpatine' title='/pmwiki/pmwiki.php/Characters/StarWarsEmperorPalpatine' data-format='W1tDaGFyYWN0ZXJzL1N0YXJXYXJzRW1wZXJvclBhbHBhdGluZSBteV1d'>my</a></strong> design."</em></div> <!--&#010;--> <!--Caption selected per above thread. Please don't change or remove without approval from here:--> <!--https://tvtropes.org/pmwiki/posts.php?discussion=1404492079030138900--> <!--&#010;--> </p><p><div class='indent'><em>"I've learned that, in every story, there is a big, bad something. An evil force that, no matter the size, corrupts the world of the story, and tries its best to destroy the hero."</em> <div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Lullaby' title='/pmwiki/pmwiki.php/Literature/Lullaby' data-format='e3tMaXRlcmF0dXJlL0x1bGxhYnl9fQ=='>Lullaby</a></em> </div></div></p><p>A cause of many or most of the bad happenings in a story, and often the main cause of most or all of them. A Big Bad could be a character with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilPlan' title='/pmwiki/pmwiki.php/Main/EvilPlan' data-format='e3tFdmlsIFBsYW59fXM='>Evil Plans</a> or it could be an omnipresent situation, such as a comet heading towards the Earth. In a serial story, the Big Bad exerts an effect across a number of episodes, even an entire season. Known as the Shadow in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHerosJourney' title='/pmwiki/pmwiki.php/Main/TheHerosJourney' data-format='VGhlSGVyb3NKb3VybmV5'>The Hero's Journey</a>. </p><p>This trope is not a catch-all term for the biggest, ugliest villain of any given story. In fact, it doesn't have to be a villain at all, as stated earlier. If it is a villain, though, it should be identified correctly; the badass leader of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/QuirkyMinibossSquad' title='/pmwiki/pmwiki.php/Main/QuirkyMinibossSquad' data-format='W1tRdWlya3lNaW5pYm9zc1NxdWFkIG91dGxhdyBnYW5nXV0='>outlaw gang</a> that causes the most personal trouble is <em>not</em> the Big Bad. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CorruptCorporateExecutive' title='/pmwiki/pmwiki.php/Main/CorruptCorporateExecutive' data-format='W1tDb3JydXB0Q29ycG9yYXRlRXhlY3V0aXZlIHJhaWxyb2FkIHR5Y29vbl1d'>railroad tycoon</a> who is <em>using</em> the gang as muscle is the Big Bad. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' title='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' data-format='VGhlTWFuQmVoaW5kVGhlTWFu'>The Man Behind the Man</a> is very common for this trope, leaving the reveal of the big bad as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheChessmaster' title='/pmwiki/pmwiki.php/Main/TheChessmaster' data-format='VGhlQ2hlc3NtYXN0ZXI='>The Chessmaster</a> behind it all and proving themselves far more clever and resourceful than the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainOfTheWeek' title='/pmwiki/pmwiki.php/Main/VillainOfTheWeek' data-format='VmlsbGFpbk9mVGhlV2Vlaw=='>Villain of the Week</a>. Sometimes the Big Bad is the grand enemy of an entire franchise. At other times, the Big Bad is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArcVillain' title='/pmwiki/pmwiki.php/Main/ArcVillain' data-format='QXJjVmlsbGFpbg=='>Arc Villain</a> who causes trouble for a period of time only to be replaced by another Big Bad. </p><p>In its most general form, a Big Bad will be at the center of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MythArc' title='/pmwiki/pmwiki.php/Main/MythArc' data-format='TXl0aEFyYw=='>Myth Arc</a> rather than just any <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StoryArc' title='/pmwiki/pmwiki.php/Main/StoryArc' data-format='U3RvcnlBcmM='>Story Arc</a>, but this doesn't always have to be the case; when you look at a season-long story or a major <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StoryArc' title='/pmwiki/pmwiki.php/Main/StoryArc' data-format='U3RvcnlBcmM='>Story Arc</a> and you can identify one problem being the cause of everything, that is the Big Bad. </p><p>The term "Big Bad" was popularized in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' title='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' data-format='U2VyaWVzL0J1ZmZ5VGhlVmFtcGlyZVNsYXllcg=='>Buffy the Vampire Slayer</a></em>. It was characteristic of Buffy's seasonal Big Bads for their identity or nature, or even the fact that they were the Big Bad at all, to remain unclear for a considerable time. Occasionally, characters would even refer to themselves as "the Big Bad" &#8212; whether they were a true Big Bad or just a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadWannabe' title='/pmwiki/pmwiki.php/Main/BigBadWannabe' data-format='QmlnQmFkV2FubmFiZQ=='>Big Bad Wannabe</a> is another matter. The structure of Buffy placed the Big Bad as being crucial to the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HalfArcSeason' title='/pmwiki/pmwiki.php/Main/HalfArcSeason' data-format='SGFsZkFyY1NlYXNvbg=='>Half-Arc Season</a>, half the episodes are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Filler' title='/pmwiki/pmwiki.php/Main/Filler' data-format='e3tmaWxsZXJ9fQ=='>filler</a> dealing with unrelated enemies while the other half involved the ongoing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MythArc' title='/pmwiki/pmwiki.php/Main/MythArc' data-format='TXl0aEFyYw=='>Myth Arc</a> with the Big Bad. Each season can easily be defined by who the Big Bad was. </p><p>If a show has a series of Big Bad jeopardies, they can function like a series of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' title='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' data-format='W1tNb25zdGVyT2ZUaGVXZWVrIE1vbnN0ZXJzIG9mIHRoZSBXZWVrXV0='>Monsters of the Week</a> that take more than one week to finish off. If there is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LegionOfDoom' title='/pmwiki/pmwiki.php/Main/LegionOfDoom' data-format='TGVnaW9uT2ZEb29t'>Legion of Doom</a>, you can expect the Big Bad to be involved somehow. They're probably sorted by power, with the strongest for last, following the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SortingAlgorithmOfEvil' title='/pmwiki/pmwiki.php/Main/SortingAlgorithmOfEvil' data-format='U29ydGluZ0FsZ29yaXRobU9mRXZpbA=='>Sorting Algorithm of Evil</a>. </p><p>In tabletop gaming circles, the Big Bad is often referred to as the BBEG (Big Bad Evil Guy). </p><p><a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilOverlord' title='/pmwiki/pmwiki.php/Main/EvilOverlord' data-format='RXZpbE92ZXJsb3Jk'>Evil Overlord</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiabolicalMastermind' title='/pmwiki/pmwiki.php/Main/DiabolicalMastermind' data-format='RGlhYm9saWNhbE1hc3Rlcm1pbmQ='>Diabolical Mastermind</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheChessmaster' title='/pmwiki/pmwiki.php/Main/TheChessmaster' data-format='VGhlQ2hlc3NtYXN0ZXI='>The Chessmaster</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArchEnemy' title='/pmwiki/pmwiki.php/Main/ArchEnemy' data-format='QXJjaEVuZW15'>Arch-Enemy</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' title='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' data-format='VGhlTWFuQmVoaW5kVGhlTWFu'>The Man Behind the Man</a>, and often <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManipulativeBastard' title='/pmwiki/pmwiki.php/Main/ManipulativeBastard' data-format='TWFuaXB1bGF0aXZlQmFzdGFyZA=='>Manipulative Bastard</a> are specific types of villains who are liable to show up as Big Bads. If they're a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagnificentBastard' title='/pmwiki/pmwiki.php/Main/MagnificentBastard' data-format='TWFnbmlmaWNlbnRCYXN0YXJk'>Magnificent Bastard</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeroKiller' title='/pmwiki/pmwiki.php/Main/HeroKiller' data-format='SGVyb0tpbGxlcg=='>Hero Killer</a>, the good guys are in <em>big</em> trouble. The heroic counterpart of this character is the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='QmlnR29vZA=='>Big Good</a>, who will very often be the focus of this character's attention over <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> at the beginning of a series. If a work of fiction is conspicuously lacking a Big Bad, it may be a case of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoAntagonist' title='/pmwiki/pmwiki.php/Main/NoAntagonist' data-format='Tm9BbnRhZ29uaXN0'>No Antagonist</a>. </p><p>See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadDuumvirate' title='/pmwiki/pmwiki.php/Main/BigBadDuumvirate' data-format='QmlnQmFkRHV1bXZpcmF0ZQ=='>Big Bad Duumvirate</a> for two (or more) Big Bads working together. Sometimes a Big Bad will get their start as a servant to another villain &#8212; if that's the case, they're a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DragonAscendant' title='/pmwiki/pmwiki.php/Main/DragonAscendant' data-format='RHJhZ29uQXNjZW5kYW50'>Dragon Ascendant</a>. If the character who fills the role of Big Bad in most meaningful ways is nominally subordinate to someone else (someone significantly less menacing by comparison), they are a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DragonInChief' title='/pmwiki/pmwiki.php/Main/DragonInChief' data-format='RHJhZ29uSW5DaGllZg=='>Dragon-in-Chief</a>. If the story has many Big Bads at once who <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilVersusEvil' title='/pmwiki/pmwiki.php/Main/EvilVersusEvil' data-format='W1tFdmlsVmVyc3VzRXZpbCBkb24mIzAzOTt0XV0='>don't</a></em> work together, see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadEnsemble' title='/pmwiki/pmwiki.php/Main/BigBadEnsemble' data-format='QmlnQmFkRW5zZW1ibGU='>Big Bad Ensemble</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigBadShuffle' title='/pmwiki/pmwiki.php/Main/TheBigBadShuffle' data-format='VGhlQmlnQmFkU2h1ZmZsZQ=='>The Big Bad Shuffle</a> occurs when there are multiple candidates for the Big Bad position. If the Big Bad doesn't start out as bad but develops over the course of the story, it's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadSlippage' title='/pmwiki/pmwiki.php/Main/BigBadSlippage' data-format='QmlnQmFkU2xpcHBhZ2U='>Big Bad Slippage</a>. If the Big Bad of one section of a work doesn't die on being defeated and stays around as a character in a different plot role (reformed or not), that's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExBigBad' title='/pmwiki/pmwiki.php/Main/ExBigBad' data-format='RXhCaWdCYWQ='>Ex-Big Bad</a>. Some may require you to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitThemInThePocketbook' title='/pmwiki/pmwiki.php/Main/HitThemInThePocketbook' data-format='SGl0VGhlbUluVGhlUG9ja2V0Ym9vaw=='>Hit Them in the Pocketbook</a>. </p><p>The Big Bad of a story is not always the most powerful or oldest existing evil force. Perhaps an evil presence along the lines of an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='RWxkcml0Y2hBYm9taW5hdGlvbg=='>Eldritch Abomination</a> overshadows the work's setting, but is mainly divorced from the story's events &#8212; that would be the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreaterScopeVillain' title='/pmwiki/pmwiki.php/Main/GreaterScopeVillain' data-format='R3JlYXRlclNjb3BlVmlsbGFpbg=='>Greater-Scope Villain</a>. A Big Bad who seeks the aid of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreaterScopeVillain' title='/pmwiki/pmwiki.php/Main/GreaterScopeVillain' data-format='R3JlYXRlclNjb3BlVmlsbGFpbg=='>Greater-Scope Villain</a>, possibly by freeing a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SealedEvilInACan' title='/pmwiki/pmwiki.php/Main/SealedEvilInACan' data-format='U2VhbGVkRXZpbEluQUNhbg=='>Sealed Evil in a Can</a> in the hopes of invoking <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SummonBiggerFish' title='/pmwiki/pmwiki.php/Main/SummonBiggerFish' data-format='U3VtbW9uQmlnZ2VyRmlzaA=='>Summon Bigger Fish</a> might find themselves very much on the end of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlatantlySelfDefeating' title='/pmwiki/pmwiki.php/Main/BlatantlySelfDefeating' data-format='QmxhdGFudGx5U2VsZkRlZmVhdGluZw=='>Blatantly Self-Defeating</a>. </p><p>It is one of the most well-known tropes on the <a class='twikilink' href='/pmwiki/pmwiki.php/Website/TVTropes' title='/pmwiki/pmwiki.php/Website/TVTropes' data-format='V2Vic2l0ZS9UVlRyb3Blcw=='>TV Tropes</a> community, being the first to have over <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/OverdosedTropes' title='/pmwiki/pmwiki.php/JustForFun/OverdosedTropes' data-format='W1tKdXN0Rm9yRnVuL092ZXJkb3NlZFRyb3BlcyBzaXh0eSB0aG91c2FuZCB3aWNrc11d'>sixty thousand wicks</a>, and is currently the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StealthPun' title='/pmwiki/pmwiki.php/Main/StealthPun' data-format='W1tTdGVhbHRoUHVuIG1vc3Qgd2lja2VkIHRyb3BlXV0='>most wicked trope</a> on the site. This is probably because it's incredibly common. </p><p>May overlap a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConclusiveConfession' title='/pmwiki/pmwiki.php/Main/ConclusiveConfession' data-format='Q29uY2x1c2l2ZUNvbmZlc3Npb24='>Conclusive Confession</a>, especially if their arch enemy is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreatDetective' title='/pmwiki/pmwiki.php/Main/GreatDetective' data-format='R3JlYXREZXRlY3RpdmU='>Great Detective</a>. See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OccupationalHazard' title='/pmwiki/pmwiki.php/Main/OccupationalHazard' data-format='T2NjdXBhdGlvbmFsSGF6YXJk'>Occupational Hazard</a> for the various fatesgat may await them, their underlings, and their adversaries. </p><p>If a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> accompanies <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OminousClouds' title='/pmwiki/pmwiki.php/Main/OminousClouds' data-format='T21pbm91c0Nsb3Vkcw=='>Ominous Clouds</a>, a hero is shown to be triumphant with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CloudClearingBurst' title='/pmwiki/pmwiki.php/Main/CloudClearingBurst' data-format='Q2xvdWRDbGVhcmluZ0J1cnN0'>Cloud-Clearing Burst</a>. <hr data-format='&#8212;&#8212;' /> <h2>Examples:</h2> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/AnimeAndManga' title='/pmwiki/pmwiki.php/BigBad/AnimeAndManga' data-format='QmlnQmFkL0FuaW1lQW5kTWFuZ2E='>Anime & Manga</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/ComicBooks' title='/pmwiki/pmwiki.php/BigBad/ComicBooks' data-format='QmlnQmFkL0NvbWljQm9va3M='>Comic Books</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/FanWorks' title='/pmwiki/pmwiki.php/BigBad/FanWorks' data-format='QmlnQmFkL0Zhbldvcmtz'>Fan Works</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/AnimatedFilms' title='/pmwiki/pmwiki.php/BigBad/AnimatedFilms' data-format='W1tCaWdCYWQvQW5pbWF0ZWRGaWxtcyBGaWxtcyDigJQgQW5pbWF0aW9uXV0='>Films — Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/LiveActionFilms' title='/pmwiki/pmwiki.php/BigBad/LiveActionFilms' data-format='W1tCaWdCYWQvTGl2ZUFjdGlvbkZpbG1zIEZpbG1zIOKAlCBMaXZlLUFjdGlvbl1d'>Films — Live-Action</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/Literature' title='/pmwiki/pmwiki.php/BigBad/Literature' data-format='e3tCaWdCYWQvTGl0ZXJhdHVyZX19'>Literature</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/LiveActionTV' title='/pmwiki/pmwiki.php/BigBad/LiveActionTV' data-format='QmlnQmFkL0xpdmVBY3Rpb25UVg=='>Live-Action TV</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/ProWrestling' title='/pmwiki/pmwiki.php/BigBad/ProWrestling' data-format='QmlnQmFkL1Byb1dyZXN0bGluZw=='>Pro Wrestling</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/TabletopGames' title='/pmwiki/pmwiki.php/BigBad/TabletopGames' data-format='QmlnQmFkL1RhYmxldG9wR2FtZXM='>Tabletop Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/VideoGames' title='/pmwiki/pmwiki.php/BigBad/VideoGames' data-format='QmlnQmFkL1ZpZGVvR2FtZXM='>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/VisualNovels' title='/pmwiki/pmwiki.php/BigBad/VisualNovels' data-format='QmlnQmFkL1Zpc3VhbE5vdmVscw=='>Visual Novels</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/Webcomics' title='/pmwiki/pmwiki.php/BigBad/Webcomics' data-format='QmlnQmFkL3t7V2ViY29taWNzfX0='>Webcomics</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/WebOriginal' title='/pmwiki/pmwiki.php/BigBad/WebOriginal' data-format='QmlnQmFkL1dlYk9yaWdpbmFs'>Web Original</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/WesternAnimation' title='/pmwiki/pmwiki.php/BigBad/WesternAnimation' data-format='QmlnQmFkL1dlc3Rlcm5BbmltYXRpb24='>Western Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BigBad/OtherMedia' title='/pmwiki/pmwiki.php/BigBad/OtherMedia' data-format='QmlnQmFkL090aGVyTWVkaWE='>Other Media</a> </li></ul><!&#8212;/index&#8212;> </p><p><hr data-format='&#8212;&#8212;' /> <h2>Related tropes:</h2> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArcVillain' title='/pmwiki/pmwiki.php/Main/ArcVillain' data-format='QXJjVmlsbGFpbg=='>Arc Villain</a>: The Big Bad of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StoryArc' title='/pmwiki/pmwiki.php/Main/StoryArc' data-format='U3RvcnlBcmM='>Story Arc</a>, but not of the story as a whole. They may or may not be working for the overall Big Bad. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArchEnemy' title='/pmwiki/pmwiki.php/Main/ArchEnemy' data-format='QXJjaEVuZW15'>Arch-Enemy</a>: The main villain of the story is usually (though not necessarily always) the primary nemesis of the main hero. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadDuumvirate' title='/pmwiki/pmwiki.php/Main/BigBadDuumvirate' data-format='QmlnQmFkRHV1bXZpcmF0ZQ=='>Big Bad Duumvirate</a>: There's two Big Bads working together! They might not get along, though. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadEnsemble' title='/pmwiki/pmwiki.php/Main/BigBadEnsemble' data-format='QmlnQmFkRW5zZW1ibGU='>Big Bad Ensemble</a>: Multiple Big Bads in the same story, but not necessarily on the same side. They still might not get along. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadFriend' title='/pmwiki/pmwiki.php/Main/BigBadFriend' data-format='QmlnQmFkRnJpZW5k'>Big Bad Friend</a>: The Big Bad was once such good friends with one of the main characters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigBadShuffle' title='/pmwiki/pmwiki.php/Main/TheBigBadShuffle' data-format='VGhlQmlnQmFkU2h1ZmZsZQ=='>The Big Bad Shuffle</a>: It's a toss-up as to who the Big Bad is. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadSlippage' title='/pmwiki/pmwiki.php/Main/BigBadSlippage' data-format='QmlnQmFkU2xpcHBhZ2U='>Big Bad Slippage</a>: The Big Bad slowly becomes ever more evil. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadWannabe' title='/pmwiki/pmwiki.php/Main/BigBadWannabe' data-format='QmlnQmFkV2FubmFiZQ=='>Big Bad Wannabe</a>: The villain isn't as big of a threat as they seem or try to be. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigBadWolf' title='/pmwiki/pmwiki.php/Main/TheBigBadWolf' data-format='VGhlQmlnQmFkV29sZg=='>The Big Bad Wolf</a>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamer' title='/pmwiki/pmwiki.php/Main/TropeNamer' data-format='VHJvcGVOYW1lcg=='>Trope Namer</a> of "Big Bad" is the evil Wolf from classic <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FairyTale' title='/pmwiki/pmwiki.php/Main/FairyTale' data-format='e3tGYWlyeSBUYWxlfX1z'>Fairy Tales</a>, such as <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheThreeLittlePigs' title='/pmwiki/pmwiki.php/Literature/TheThreeLittlePigs' data-format='TGl0ZXJhdHVyZS9UaGVUaHJlZUxpdHRsZVBpZ3M='>The Three Little Pigs</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/LittleRedRidingHood' title='/pmwiki/pmwiki.php/Literature/LittleRedRidingHood' data-format='TGl0ZXJhdHVyZS9MaXR0bGVSZWRSaWRpbmdIb29k'>Little Red Riding Hood</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemotedToDragon' title='/pmwiki/pmwiki.php/Main/DemotedToDragon' data-format='RGVtb3RlZFRvRHJhZ29u'>Demoted to Dragon</a>: The current Big Bad being revealed as the Dragon to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' title='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' data-format='W1tUaGVNYW5CZWhpbmRUaGVNYW4gYmlnZ2VyIHRocmVhdF1d'>bigger threat</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DragonInChief' title='/pmwiki/pmwiki.php/Main/DragonInChief' data-format='RHJhZ29uSW5DaGllZg=='>Dragon-in-Chief</a>: The <em>de facto</em> Big Bad is subordinate to another, lesser villain. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExBigBad' title='/pmwiki/pmwiki.php/Main/ExBigBad' data-format='RXhCaWdCYWQ='>Ex-Big Bad</a>: You either <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedemptionEqualsDeath' title='/pmwiki/pmwiki.php/Main/RedemptionEqualsDeath' data-format='W1tSZWRlbXB0aW9uRXF1YWxzRGVhdGggZGllIGEgaGVyb11d'>die a hero</a> or live long enough to see yourself <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeelFaceTurn' title='/pmwiki/pmwiki.php/Main/HeelFaceTurn' data-format='W1tIZWVsRmFjZVR1cm4gc3RvcCBiZWluZ11d'>stop being</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RetiredMonster' title='/pmwiki/pmwiki.php/Main/RetiredMonster' data-format='W1tSZXRpcmVkTW9uc3RlciB0aGUgKG1haW4pIHZpbGxhaW5dXQ=='>the (main) villain</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilOverlord' title='/pmwiki/pmwiki.php/Main/EvilOverlord' data-format='RXZpbE92ZXJsb3Jk'>Evil Overlord</a>: The classic Big Bad for many works of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HighFantasy' title='/pmwiki/pmwiki.php/Main/HighFantasy' data-format='SGlnaEZhbnRhc3k='>High Fantasy</a> and similar adventure tales is an evil dictator/emperor/warlord who runs <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEvilEmpire' title='/pmwiki/pmwiki.php/Main/TheEvilEmpire' data-format='VGhlRXZpbEVtcGlyZQ=='>The Evil Empire</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalBoss' title='/pmwiki/pmwiki.php/Main/FinalBoss' data-format='RmluYWxCb3Nz'>Final Boss</a>: The main villain also tends to be the final enemy for the heroes to defeat in the story's climax. In the context of video games (where the term comes from), then the Big Bad is usually the last (and most likely the toughest) <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BossBattle' title='/pmwiki/pmwiki.php/Main/BossBattle' data-format='Qm9zc0JhdHRsZQ=='>Boss Battle</a> for players to beat. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreaterScopeVillain' title='/pmwiki/pmwiki.php/Main/GreaterScopeVillain' data-format='R3JlYXRlclNjb3BlVmlsbGFpbg=='>Greater-Scope Villain</a>: A Bigger Bad who's (in)directly responsible for most of the story's conflict, but their role isn't quite as prominent as the actual main antagonist. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeavy' title='/pmwiki/pmwiki.php/Main/TheHeavy' data-format='VGhlSGVhdnk='>The Heavy</a>: The villain responsible for the obstacles the hero has to overcome. This is usually the role played by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDragon' title='/pmwiki/pmwiki.php/Main/TheDragon' data-format='VGhlRHJhZ29u'>The Dragon</a> but there have been a couple times where the Big Bad plays this role. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' title='/pmwiki/pmwiki.php/Main/TheManBehindTheMan' data-format='VGhlTWFuQmVoaW5kVGhlTWFu'>The Man Behind the Man</a>: The supposed <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> is secretly working for the real Big Bad. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonActionBigBad' title='/pmwiki/pmwiki.php/Main/NonActionBigBad' data-format='Tm9uQWN0aW9uQmlnQmFk'>Non-Action Big Bad</a>: A Big Bad who doesn't fight directly, instead relying on their underlings to do their dirty work. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReturningBigBad' title='/pmwiki/pmwiki.php/Main/ReturningBigBad' data-format='UmV0dXJuaW5nQmlnQmFk'>Returning Big Bad</a>: After a period of absence, a previous Big Bad returns to the story and acts as the main villain again. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VileVillainLaughableLackey' title='/pmwiki/pmwiki.php/Main/VileVillainLaughableLackey' data-format='VmlsZVZpbGxhaW5MYXVnaGFibGVMYWNrZXk='>Vile Villain, Laughable Lackey</a>: A duo consisting of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KnightOfCerebus' title='/pmwiki/pmwiki.php/Main/KnightOfCerebus' data-format='W1tLbmlnaHRPZkNlcmVidXMgc2VyaW91cyB2aWxsYWluXV0='>serious villain</a> with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LaughablyEvil' title='/pmwiki/pmwiki.php/Main/LaughablyEvil' data-format='W1tMYXVnaGFibHlFdmlsIGh1bW9yb3VzXV0='>humorous</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDragon' title='/pmwiki/pmwiki.php/Main/TheDragon' data-format='W1tUaGVEcmFnb24gc3Vib3JkaW5hdGVdXQ=='>subordinate</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainousFriendship' title='/pmwiki/pmwiki.php/Main/VillainousFriendship' data-format='VmlsbGFpbm91c0ZyaWVuZHNoaXA='>Villainous Friendship</a>: When the Big Bad is good friends with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDragon' title='/pmwiki/pmwiki.php/Main/TheDragon' data-format='VGhlRHJhZ29u'>The Dragon</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeakBossStrongUnderlings' title='/pmwiki/pmwiki.php/Main/WeakBossStrongUnderlings' data-format='V2Vha0Jvc3NTdHJvbmdVbmRlcmxpbmdz'>Weak Boss, Strong Underlings</a>: When the Big Bad is actually less physically powerful than their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilMinions' title='/pmwiki/pmwiki.php/Main/EvilMinions' data-format='RXZpbE1pbmlvbnM='>Evil Minions</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Mooks' title='/pmwiki/pmwiki.php/Main/Mooks' data-format='e3tNb29rc319'>Mooks</a> are. </li></ul><!&#8212;/index&#8212;> <hr data-format='&#8212;&#8212;' /> <div class='indent'><a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoAntagonist' title='/pmwiki/pmwiki.php/Main/NoAntagonist' data-format='W1tOb0FudGFnb25pc3QgSGVyZSYjMDM5O3Mgc29tZSBjb21mb3J0XV0='>Here's some comfort</a>. </div><hr data-format='&#8212;&#8212;' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div>&nbsp;</div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="2c272c" data-video-descrip="Scottyvich Baloneykov, the main antagonist of Microsoft Sam and the War in the ROFL Island Chain is the leader of the Soviet Lulz Brigade, the evil twin brother of Radar Overseer Scotty and the supporter of The Supreme AI who wants revenge against the United LOLs of ROFLica and its allies for the death of the evil ai. He starts by killing two members of the United Speakonian Soviet Republic when their refuses to join him." data-video-title="Scottyvich Baloneykov " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2c272c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2c272c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2c272c.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2c272c.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.00" data-video-rating-count="2" data-video-media-sources="Main/EstablishingCharacterMoment,WebAnimation/MicrosoftSamAndTheWarInTheRepublicOfMy,WebVideo/MicrosoftSamReadsFunnyWindowsErrors" class="video-launch-link video-overlay-link featured-widget-vid"> <div class="featured-widget-vid-iframe"> <div id="tvtropes_no_volume_player" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2c272c.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2c272c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2c272c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2c272c.m3u8" data-controls="0" data-muted="1"> <script> tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); }); </script> </div> </div> </a> </div> <h2 class="bold font-l">Scottyvich Baloneykov </h2> <p class="_pmvv-vidbox-descTxt"> Scottyvich Baloneykov, the main antagonist of Microsoft Sam and the War in the ROFL Island Chain is the leader of the Soviet Lulz Brigade, the evil twin brother of Radar Overseer Scotty and the supporter of The Supreme AI who wants revenge against the United LOLs of ROFLica and its allies for the death of the evil ai. He starts by killing two members of the United Speakonian Soviet Republic when their refuses to join him. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="q3j0so" data-video-descrip="We meet Forte, the castle's former maestro-turned-pipe organ, who vows to keep Beast and Belle apart so he can stay this way and be Beast's only friend." data-video-title="Forte" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/q3j0so_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/q3j0so.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/q3j0so.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q3j0so.jpg" data-video-trope="Main/OminousPipeOrgan" data-video-tropename="Ominous Pipe Organ" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/BeautyAndTheBeastTheEnchantedChristmas,Main/BigBad" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q3j0so.jpg"> <p><span class="bold">Forte</span></p> </a> <a href="#video-link" data-video-id="ucafhz" data-video-descrip="Abyss is the final boss of Marvel vs. Capcom 2: New Age of Heroes. It&amp;rsquo;s a multi-phase fight that sees the creature&amp;rsquo;s true, slimy form gradually revealed." data-video-title="Abyss" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ucafhz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ucafhz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ucafhz.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7978.jpeg" data-video-trope="Main/FinalBoss" data-video-tropename="Final Boss" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/BlobMonster,VideoGame/MarvelVsCapcom2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7978.jpeg"> <p><span class="bold">Abyss</span></p> </a> <a href="#video-link" data-video-id="zo12sz" data-video-descrip="Kefka Palazzo, having obtained godlike power and brought the planet to ruin, asks the heroes why they continue to live and hope in such a miserable world. Each of them gives a heartfelt reason for why they keep going, which Kefka scoffs at. Believing that existence itself is meaningless, Kefka proclaims his intention to destroy the entire universe just to satisfy his endless lust for destruction and prove that nothing really matters." data-video-title="Kefka Palazzo" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zo12sz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zo12sz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zo12sz.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7360_83.jpeg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AGodAmI,Main/AxCrazy,Main/BigBad,Main/EvilCannotComprehendGood,Main/MonsterClown,Main/OmnicidalManiac,Main/RedemptionRejection,Main/ShutUpKirk,Main/StrawNihilist,VideoGame/FinalFantasyVI" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7360_83.jpeg"> <p><span class="bold">Kefka Palazzo</span></p> </a> <a href="#video-link" data-video-id="pkcqmn" data-video-descrip="At the top of Hyrule Castle, Ganondorf sits upon the kingdom's throne with Princess Zelda herself as his captive, patiently awaiting the arrival of Link and Midna. When the heroes confront him, Ganondorf welcomes them to &amp;quot;his&amp;quot; castle before revealing how he used the Twili to regain his power, and with all three Triforce pieces now assembled in one place, he challenges the duo to an epic battle for the fate of two dimensions." data-video-title="Ganondorf" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/pkcqmn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/pkcqmn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/pkcqmn.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5554.jpeg" data-video-trope="Main/MagnificentBastard" data-video-tropename="Magnificent Bastard" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/EvilOverlord,Main/FauxAffablyEvil,Main/SlouchOfVillainy,Main/ThePowerOfHate,VideoGame/TheLegendOfZeldaTwilightPrincess" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5554.jpeg"> <p><span class="bold">Ganondorf</span></p> </a> <a href="#video-link" data-video-id="vndb2l" data-video-descrip="Ganondorf seeks to ravage over Hyrule and create a new world of darkness and monsters." data-video-title="Demon King Ganondorf" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vndb2l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vndb2l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vndb2l.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vndb2l.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/TheLegendOfZeldaTearsOfTheKingdom" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vndb2l.jpg"> <p><span class="bold">Demon King Gano...</span></p> </a> <a href="#video-link" data-video-id="trxvty" data-video-descrip="Ganondorf, the master of the Forsaken Fortress, reveals that Link had played right into his hands by drawing the now-useless Master Sword, thus breaking the seal on the Demon King's magic and restoring him to full power." data-video-title="Ganondorf" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/trxvty_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/trxvty.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/trxvty.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/trxvty.jpg" data-video-trope="Main/MagnificentBastard" data-video-tropename="Magnificent Bastard" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BatmanGambit,Main/BigBad,Main/NiceJobBreakingItHero,Main/TheChessmaster,VideoGame/TheLegendOfZeldaTheWindWaker" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/trxvty.jpg"> <p><span class="bold">Ganondorf</span></p> </a> <a href="#video-link" data-video-id="cv6cau" data-video-descrip="Odin's debut in God of War Ragnarok has him arrive at Kratos's home and quickly establishes himself as a haughty, arrogant tyrant who treats any place he's in as his own and openly insults his family members, including Thor's deceased sons. Any friendliness or charm is a facade that hides his cruel nature. Mimir himself even calls out Odin's deceptive and two-faced personality for what it is." data-video-title="Odin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cv6cau_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cv6cau.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cv6cau.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cv6cau.jpg" data-video-trope="Main/EstablishingCharacterMoment" data-video-tropename="Establishing Character Moment" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/CompulsiveLiar,Main/EnemyEatsYourLunch,Main/SpeakIllOfTheDead,VideoGame/GodOfWar,VideoGame/GodOfWarRagnarok" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cv6cau.jpg"> <p><span class="bold">Odin</span></p> </a> <a href="#video-link" data-video-id="l39a6f" data-video-descrip="Demon King Ganondorf gleefully taunts the sages on how the world shall be ravaged by his magic when he returns to his full power. He'll summon many monsters (Bokoblins, Moblins, Lizalfos, Aerocudas, Lynels, Gibdos, and others like Boss Bokoblins) from a fountain of Gloom and commands them to destroy Hyrule to make his new kingdom." data-video-title="Ganondorf (TotK)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l39a6f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l39a6f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l39a6f.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l39a6f.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/MonsterProgenitor,Main/OmnicidalManiac,VideoGame/TheLegendOfZeldaTearsOfTheKingdom,Main/BigBad" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l39a6f.jpg"> <p><span class="bold">Ganondorf (TotK)</span></p> </a> <a href="#video-link" data-video-id="vc9vq9" data-video-descrip="Simon Phoenix is a sociopathic criminal from the 20th century who kills and maims as he pleases. " data-video-title="Simon Phoenix" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vc9vq9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vc9vq9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vc9vq9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vc9vq9.jpg" data-video-trope="Main/LaughablyEvil" data-video-tropename="Laughably Evil" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/DemolitionMan,Main/AxCrazy,Main/BigBad,Main/CopKiller,Main/PoliceAreUseless" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vc9vq9.jpg"> <p><span class="bold">Simon Phoenix</span></p> </a> <a href="#video-link" data-video-id="tc5a1w" data-video-descrip="Ozai, enhanced with the power of Sozin's comet, begins his attack on the Earth Kingdom, scorching a forest before Aang intervenes." data-video-title="Ozai and Aang meet" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/tc5a1w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/tc5a1w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/tc5a1w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tc5a1w.jpg" data-video-trope="Main/KillItWithFire" data-video-tropename="Kill It with Fire" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/EvilOverlord,Main/ShooOutTheClowns,WesternAnimation/AvatarTheLastAirbender,Recap/AvatarTheLastAirbenderSozinsCometPart3IntoTheInferno" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tc5a1w.jpg"> <p><span class="bold">Ozai and Aang meet</span></p> </a> <a href="#video-link" data-video-id="ykzg47" data-video-descrip="&amp;quot;I reached into the dirt and made new life. I AM THE GOD OF ALL DALEKS!&amp;quot;" data-video-title="The Emperor of the Daleks" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ykzg47_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ykzg47.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ykzg47.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykzg47.jpg" data-video-trope="Main/EvilSoundsDeep" data-video-tropename="Evil Sounds Deep" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/GodEmperor,Recap/DoctorWhoS27E13ThePartingOfTheWays,Series/DoctorWho,Main/AGodAmI" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykzg47.jpg"> <p><span class="bold">The Emperor of ...</span></p> </a> <a href="#video-link" data-video-id="60frbe" data-video-descrip="A fat Kremling who acts as Donkey Kong's Arch-Enemy in the Donkey Kong Country series. Prone to adopting new personas (Kaptain K. Rool, Baron K. Roolenstein, etc.) in different games, complete with new powersets for battle. Whatever he likes to call himself, K. Rool's goals remain the same &amp;Atilde;ƒ&amp;Acirc;&amp;cent;&amp;Atilde;ƒ&amp;Atilde;‚&amp;acirc;€š&amp;Atilde;&amp;cent;&amp;Atilde;‚&amp;acirc;€š&amp;Acirc;&amp;not;&amp;Atilde;ƒ&amp;Atilde;‚&amp;acirc;€š&amp;Atilde;&amp;cent;&amp;Atilde;‚&amp;acirc;‚&amp;not;&amp;Atilde;‚&amp;Acirc; to get rid of the Kong clan and take over their island, and if he can't manage that, destroying the island along with every primate on it suits him just fine instead." data-video-title="King K. Rool" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/60frbe_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/60frbe.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/60frbe.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/60frbe.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/NeverSmileAtACrocodile,VideoGame/DonkeyKong64" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/60frbe.jpg"> <p><span class="bold">King K. Rool</span></p> </a> <a href="#video-link" data-video-id="gygqfn" data-video-descrip="Of The Suicide Squad. While Starro is a mind-controlling parasitic kaiju, but also a brightly colored starfish with rounded almost cuddly features and a puppy-dog eye, it doesn't become an active threat until the final quarter of the film, but the very reason Task Force X goes on the mission in the first place is because of Project Starfish, and while characters like the Thinker and Presidente Luna/Suarez attempt to exploit it for their own ends, all of them ultimately pay for it in the end." data-video-title="Starro the Conqueror" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/gygqfn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/gygqfn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/gygqfn.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gygqfn.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/TheSuicideSquad,Main/AdorableAbomination,Main/Kaiju" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gygqfn.jpg"> <p><span class="bold">Starro the Conq...</span></p> </a> <a href="#video-link" data-video-id="xfgkrb" data-video-descrip="Grimserver is the evil leader of the Grimwraths who wish to conquer all of Dragamar." data-video-title="Grimserver" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/xfgkrb_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/xfgkrb.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/xfgkrb.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xfgkrb.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/Dragamonz" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xfgkrb.jpg"> <p><span class="bold">Grimserver</span></p> </a> <a href="#video-link" data-video-id="hvqwj2" data-video-descrip="Dr. Reinhard, the game's Big Bad is a staff member of Sunny Meadows mental institute for the criminally insane." data-video-title="Dr. Reinhard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hvqwj2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hvqwj2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hvqwj2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvqwj2.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/HerrDoktor,Main/PsychoPsychologist,VideoGame/EvilDeadRegeneration" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvqwj2.jpg"> <p><span class="bold">Dr. Reinhard</span></p> </a> <a href="#video-link" data-video-id="j4v49k" data-video-descrip="The greatest evil in all the DC universe." data-video-title="Darkseid" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j4v49k_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j4v49k.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j4v49k.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/20221202_175746.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/SupermanTheAnimatedSeriesS2E25E26ApokolipsNow,WesternAnimation/SupermanTheAnimatedSeries,Main/GodOfEvil" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/20221202_175746.png"> <p><span class="bold">Darkseid</span></p> </a> <a href="#video-link" data-video-id="boz05a" data-video-descrip="The current monarch of the Kingdom. A selfish and tyrannical individual obsessed with finding a way to fix the table where he places his milk glass." data-video-title="The Panther King" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/boz05a_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/boz05a.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/boz05a.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/boz05a.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/ConkersBadFurDay" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/boz05a.jpg"> <p><span class="bold">The Panther King</span></p> </a> <a href="#video-link" data-video-id="mbomuw" data-video-descrip="The Classical Goddess of Chaos and Discord. Sexy and selfish, Eris lives only to sow suffering and strife among mortals." data-video-title="Eris" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mbomuw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mbomuw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mbomuw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mbomuw.jpg" data-video-trope="Main/JerkassGods" data-video-tropename="Jerkass Gods" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/GodOfChaos,Main/GodOfEvil,WesternAnimation/SinbadLegendOfTheSevenSeas" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mbomuw.jpg"> <p><span class="bold">Eris</span></p> </a> <a href="#video-link" data-video-id="k8x7ct" data-video-descrip="Though he answers directly to his owner Marcel, he is the more direct threat and is far more evil then his owner." data-video-title="Nigel The Cockatoo" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/k8x7ct_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/k8x7ct.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/k8x7ct.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2b682de2_22f2_472a_baee_87c3b453b478.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/Rio" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2b682de2_22f2_472a_baee_87c3b453b478.png"> <p><span class="bold">Nigel The Cockatoo</span></p> </a> <a href="#video-link" data-video-id="177p4i" data-video-descrip="Arlo encounters the Bog Lady, a treacherous swamp goddess who influenced Arlo his whole life and was furious when he left the swamp." data-video-title="The Bog Lady" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/177p4i_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/177p4i.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/177p4i.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/177p4i.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/EldritchAbomination,Main/FauxAffablyEvil,Main/Planimal,Recap/IHeartArloS1E19TheUncondemning,WesternAnimation/IHeartArlo,Main/INeverToldYouMyName" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/177p4i.jpg"> <p><span class="bold">The Bog Lady</span></p> </a> <a href="#video-link" data-video-id="nj6e4w" data-video-descrip="The big bad of The Little Mermaid II: Return to the Sea; Ursula's sister who wants revenge on Triton." data-video-title="Morgana" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nj6e4w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nj6e4w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nj6e4w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nj6e4w.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/TheLittleMermaidIIReturnToTheSea" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nj6e4w.jpg"> <p><span class="bold">Morgana</span></p> </a> <a href="#video-link" data-video-id="quydy3" data-video-descrip="The main villain of Miitopia, a wicked man of evil who wants to rule Miitopia by stealing the faces of its residents and giving them to monsters." data-video-title="The Dark Lord" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/quydy3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/quydy3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/quydy3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/quydy3.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/Miitopia" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/quydy3.jpg"> <p><span class="bold">The Dark Lord</span></p> </a> <a href="#video-link" data-video-id="51flb2" data-video-descrip="Leader of the Mongol invaders, cousin of Kublai Khan, ruler of the Mongol Empire, and grandson of Genghis Khan. Knowledgeable in the ways of the samurai, he invades Tsushima and comes into conflict with Jin, who he takes an interest in." data-video-title="Khotun Khan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/51flb2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/51flb2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/51flb2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51flb2.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/GhostOfTsushima" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51flb2.jpg"> <p><span class="bold">Khotun Khan</span></p> </a> <a href="#video-link" data-video-id="s767oe" data-video-descrip="An extra-dimensional, extremely hostile entity attempting to seize control of the Oldest House, the FBC and its occupants by corrupting the bodies of everyone it comes into contact with. Itself bodiless and intangible, it manifests as red light, rippling air/sonic distortion and the strange speech its victims recite." data-video-title="The Hiss" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/s767oe_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/s767oe.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/s767oe.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s767oe.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/Control" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s767oe.jpg"> <p><span class="bold">The Hiss</span></p> </a> <a href="#video-link" data-video-id="ybh9fl" data-video-descrip="The central antagonist of Alan Wake, a hostile, aggressive supernatural entity that exists within (or under, or is trapped by?) Cauldron Lake, which creates the Taken. In Alan Wake, its main &amp;quot;face&amp;quot; is that of its avatar, the &amp;quot;Scratching Hag&amp;quot; Barbara Jagger." data-video-title="The Dark Presence" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ybh9fl_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ybh9fl.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ybh9fl.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ybh9fl.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/AlanWakeEp4TheTruth,VideoGame/AlanWake" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ybh9fl.jpg"> <p><span class="bold">The Dark Presence</span></p> </a> <a href="#video-link" data-video-id="ct2tvc" data-video-descrip="A battle-hardened Samurai, Genichiro Ashina is the highest-ranking commander of the Ashina clan's army. Out of desperation, Genichiro kidnaps Wolf's master, and leaves him for dead after defeating him in a duel." data-video-title="Lord Genichiro Ashina" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ct2tvc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ct2tvc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ct2tvc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ct2tvc.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/SekiroShadowsDieTwice" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ct2tvc.jpg"> <p><span class="bold">Lord Genichiro ...</span></p> </a> <a href="#video-link" data-video-id="pmj7y3" data-video-descrip="Having taken over as the Wholesome Foods CEO, Chip Whistler generally devotes his time to running Cricket the Greens out of Big City forever." data-video-title="Chip Whistler" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/pmj7y3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/pmj7y3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/pmj7y3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pmj7y3.jpg" data-video-trope="Main/CorruptCorporateExecutive" data-video-tropename="Corrupt Corporate Executive" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/StalkerShot,Main/StringTheory,WesternAnimation/BigCityGreens,Main/NewspaperThinDisguise" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pmj7y3.jpg"> <p><span class="bold">Chip Whistler</span></p> </a> <a href="#video-link" data-video-id="hos8g6" data-video-descrip="Psychiatrist, philanthropist and leader of the Rapture Family, Dr Sofia Lamb has emerged from a long period of imprisonment to seize control of Rapture following the events of Bioshock 2. With her collectivist cult now running the city, she now plots to eliminate the concept of individuality altogether, intending to use her daughter Eleanor as the centrepiece of this mad quest - bringing her into conflict with Eleanor's Big Daddy protector, Subject Delta." data-video-title="Dr Sofia Lamb" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hos8g6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hos8g6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hos8g6.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hos8g6.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/BioShock2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hos8g6.jpg"> <p><span class="bold">Dr Sofia Lamb</span></p> </a> <a href="#video-link" data-video-id="1b7n42" data-video-descrip="The Mentor of the Levantine Assassin Order. He gives Altair the mission to assassinate nine corrupt head figures of the Holy Land as a way for him to earn redemption.&lt;br&gt;&lt;br&gt;In reality, he was a high-ranking member of the Templars, if not their leader. Once Al Mualim had the Piece of Eden, he sent Alta&amp;Atilde;&amp;macr;r to deal with the other nine Templars in the Holy Land to ensure he would remain unchallenged. Fortunately, Altair killed him once he discovered this treachery." data-video-title="Al Mualim" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/1b7n42_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/1b7n42.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/1b7n42.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1b7n42.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/AssassinsCreedI" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1b7n42.jpg"> <p><span class="bold">Al Mualim</span></p> </a> <a href="#video-link" data-video-id="51014e" data-video-descrip="Malachite is an evil sorcerer who wishes to regain his magic gauntlet and is the antagonist of Suburban Knights." data-video-title="Malachite" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/51014e_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/51014e.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/51014e.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51014e.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/SuburbanKnights" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51014e.jpg"> <p><span class="bold">Malachite</span></p> </a> <a href="#video-link" data-video-id="ylgrch" data-video-descrip="Kayako was an ordinary Housewife who has an obsessive crush on a teacher Peter Kirk. Unfortunately, her husband Takeo found out and brutally killed her, along with her son Toshio and the family cat Mar. Brought back by her family's rage as a Curse, Kayako appears as a Stringy-Haired Ghost Girl, crawling about to hunt down and kill anyone who enters her house to consume them in the curse. She is most iconic for crawling her way down the stairs, and lets out a chilling death rattle whenever she appears." data-video-title="Kayako Saeki" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ylgrch_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ylgrch.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ylgrch.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ylgrch.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/TheGrudge" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ylgrch.jpg"> <p><span class="bold">Kayako Saeki</span></p> </a> <a href="#video-link" data-video-id="zv8wk5" data-video-descrip="A sorcerer once in the employ of King Peregrin, eventually falling out of favor with the King due to his experiments on the bodies of the dead. He was banished from the kingdom and spent years perfecting his dark arts. He created an unholy army of undead soldiers and demons, which he used to conquer many major areas of Gallowmere until the King intervened and deployed Sir Daniel and his battalion for a titanic battle. Zarok's army was defeated, but Zarok's body was never accounted for. Though thought to be long dead, he returns after 100 years in a bid to take over Gallowmere once again. With a magic spell called the &amp;quot;Evernight&amp;quot;, he plunged the realm into perpetual darkness and robbed the living of their free will, along with raising the dead in the process." data-video-title="Zarok" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zv8wk5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zv8wk5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zv8wk5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zv8wk5.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/MediEvil" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zv8wk5.jpg"> <p><span class="bold">Zarok</span></p> </a> <a href="#video-link" data-video-id="s9n3rd" data-video-descrip="The Big Bad of Medievil 2, Palethorn acquired Zarok's spellbook and unleashed havoc on London. However, something went wrong with the spell, and as a result he was transformed into a red-skinned demon, and the pages of the spellbook were scattered across London, thus making the monsters he summoned almost uncontrollable. Palethorn now seeks the remaining pages of the spellbook so he can complete the spell and take over the world." data-video-title="Lord Palethorn" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/s9n3rd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/s9n3rd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/s9n3rd.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s9n3rd.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/MediEvil2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s9n3rd.jpg"> <p><span class="bold">Lord Palethorn</span></p> </a> <a href="#video-link" data-video-id="3swyeu" data-video-descrip="Malekith the Accursed is the ruler of Svartleheim, King of the Dark Elves and enemy of Asgard." data-video-title="Malekith the Accursed" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3swyeu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3swyeu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3swyeu.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3swyeu.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/ThorTheDarkWorld" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3swyeu.jpg"> <p><span class="bold">Malekith the Ac...</span></p> </a> <a href="#video-link" data-video-id="arxc73" data-video-descrip="Driven mad by his tech and hungry fr revenge against Norman Osbourne, Dr. Otto Octavius - better known as Doctor Octopus - becomes the main antagonist of the game. " data-video-title="Dr. Otto Octavius" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/arxc73_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/arxc73.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/arxc73.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/arxc73.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/SpiderManPS4" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/arxc73.jpg"> <p><span class="bold">Dr. Otto Octavius</span></p> </a> <a href="#video-link" data-video-id="irj431" data-video-descrip="King Olly is the titular main antagonist of Paper Mario The Origami King. He wants to fold the world into origami and brainwash people into serving him." data-video-title="King Olly" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/irj431_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/irj431.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/irj431.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/screen_shot_2020_08_20_at_24854_pm.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/PaperMarioTheOrigamiKing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/screen_shot_2020_08_20_at_24854_pm.png"> <p><span class="bold">King Olly</span></p> </a> <a href="#video-link" data-video-id="q5x56n" data-video-descrip="Jafar is the royal vizier of Agrabah and hungers for power, roping Aladdin into retrieving the magic lamp for him. " data-video-title="Jafar" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/q5x56n_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/q5x56n.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/q5x56n.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q5x56n.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/EvilSorcerer,Main/SorcerousOverlord,WesternAnimation/Aladdin1992Disney" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q5x56n.jpg"> <p><span class="bold">Jafar</span></p> </a> <a href="#video-link" data-video-id="wqc3j1" data-video-descrip="Lord Volcazar aspires to godhood by becoming the demon Kraal. " data-video-title="Lord Volcazar" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/wqc3j1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/wqc3j1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/wqc3j1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wqc3j1.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/RonalTheBarbarian" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wqc3j1.jpg"> <p><span class="bold">Lord Volcazar</span></p> </a> <a href="#video-link" data-video-id="mzfsm7" data-video-descrip="Norman Osbourne, AKA The Green Goblin, is the main antagonist of the first Sam Riami Spider-Man movie. " data-video-title="The Green Goblin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mzfsm7_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mzfsm7.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mzfsm7.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mzfsm7.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/SpiderMan1" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mzfsm7.jpg"> <p><span class="bold">The Green Goblin</span></p> </a> <a href="#video-link" data-video-id="3sydym" data-video-descrip="&amp;quot;Mr. Eye&amp;quot; is the leader of the Nether Race. He had actually been manipulating the Prog twins this whole time in order to free himself and the Nethers" data-video-title="&quot;Mr. Eye&quot;/Nether Leader" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3sydym_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3sydym.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3sydym.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3sydym.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/RatchetAndClankIntoTheNexus" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3sydym.jpg"> <p><span class="bold">"Mr. Eye"/Nethe...</span></p> </a> <a href="#video-link" data-video-id="27h878" data-video-descrip="When Captain Slag's head was grafted to Darkwater's undead body, they become the main antagonist of the Quest for Booty DLC." data-video-title="Captain Slag/Darkwater" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/27h878_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/27h878.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/27h878.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/27h878.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/RatchetAndClankFutureQuestForBooty,Main/NinjaPirateZombieRobot" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/27h878.jpg"> <p><span class="bold">Captain Slag/Da...</span></p> </a> <a href="#video-link" data-video-id="o1bcyq" data-video-descrip="Tachyon uses his first scene to call himself the ruler of the universe pending the extinction (read: genocide) of a few races. Even before he appears, he's willing to level an entire city and murder it's trillions of inhabitants (among them Sasha, who's the mayor, and Big Al) if it means getting to Ratchet." data-video-title="Emperor Percival Tachyon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/o1bcyq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/o1bcyq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/o1bcyq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o1bcyq.jpg" data-video-trope="Main/EstablishingCharacterMoment" data-video-tropename="Establishing Character Moment" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/GalacticConquerer,Main/TheEmperor,VideoGame/RatchetAndClankFutureToolsOfDestruction,Main/GalacticConqueror" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o1bcyq.jpg"> <p><span class="bold">Emperor Perciva...</span></p> </a> <a href="#video-link" data-video-id="les8v5" data-video-descrip="Qwark stole Fizzwidget's identity and turned the Protopet ravenous with the intent of saving the universe from it." data-video-title="Qwark's Plan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/les8v5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/les8v5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/les8v5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/les8v5.jpg" data-video-trope="Main/EvilPlan" data-video-tropename="Evil Plan" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigBad,Main/EngineeredHeroics,Main/EpicFail,VideoGame/RatchetAndClankGoingCommando,Main/SoundEffectBleep" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/les8v5.jpg"> <p><span class="bold">Qwark's Plan</span></p> </a> <a href="#video-link" data-video-id="kev8mt" data-video-descrip="Dr. Nefarious is the antagonist of Up Your Arsenal, A Crack in Time, and the 2016 reimagining. This makes him the most recurring villain in the series." data-video-title="Dr. Nefarious" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/kev8mt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/kev8mt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/kev8mt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5281075.jpeg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/RatchetAndClankUpYourArsenal" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5281075.jpeg"> <p><span class="bold">Dr. Nefarious</span></p> </a> <a href="#video-link" data-video-id="ctjx4z" data-video-descrip="The Big Bad of the Sonic the Hedgehog. The portly scientist whose one desire is to rule over everyone and everything using his technology. Eggman doesn't have a significant background, but he did seemingly look up to his grandfather, Gerald Robotnik. Eggman's plans almost never change, and he's always willing to pull out all of the stops to accomplish his goal.&lt;br&gt;&lt;br&gt;Eggman may possess a high IQ, but his personality is far from mature. He wants things his way, and is very temperamental when denied as such. However, despite his immaturity, he's every bit as clever as he claims to be, able to create almost anything for his goals, and possesses quite a bit of cunning and planning to carry them out. If there's one thing that stands out about the doctor, however, it's his ego, which may only be rivaled by his long-time nemesis, Sonic the Hedgehog." data-video-title="Dr. Ivo &quot;Eggman&quot; Robotnik " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ctjx4z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ctjx4z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ctjx4z.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ctjx4z.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/SonicColors" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ctjx4z.jpg"> <p><span class="bold">Dr. Ivo "Eggman...</span></p> </a> <a href="#video-link" data-video-id="c6qn1c" data-video-descrip="When Robotnik meets with the military, he wastes no time in showing everyone how insufferably vain and abrasive he is." data-video-title="Enter Robotnik" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/c6qn1c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/c6qn1c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/c6qn1c.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/c6qn1c.jpg" data-video-trope="Main/EstablishingCharacterMoment" data-video-tropename="Establishing Character Moment" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/SonicTheHedgehog2020,Main/BigBad,Main/InsufferableGenius,Main/RapidFireInterrupting,Main/ZeroPercentApprovalRating" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/c6qn1c.jpg"> <p><span class="bold">Enter Robotnik</span></p> </a> <a href="#video-link" data-video-id="xmmnou" data-video-descrip="Red was a former Dragon Elder that betrayed his kind with the intent of world conquest." data-video-title="Red" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/xmmnou_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/xmmnou.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/xmmnou.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xmmnou.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/SpyroAHerosTail" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xmmnou.jpg"> <p><span class="bold">Red</span></p> </a> <a href="#video-link" data-video-id="lcok6u" data-video-descrip="The King of the Apes and Malefor's &amp;quot;right hand man&amp;quot;, and the final boss of the second The Legend of Spyro game." data-video-title="Gaul" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lcok6u_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lcok6u.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lcok6u.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcok6u.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/TheLegendOfSpyroTheEternalNight,VideoGame/TheLegendOfSpyro" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcok6u.jpg"> <p><span class="bold">Gaul</span></p> </a> <a href="#video-link" data-video-id="zwym04" data-video-descrip="Cynder was an egg procured by Malefor, becoming his enforcer and the final boss in the first The Legend of Spyro game. " data-video-title="Cynder" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zwym04_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zwym04.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zwym04.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/spyro_evil_cynder.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/TheLegendOfSpyroANewBeginning,VideoGame/TheLegendOfSpyro" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/spyro_evil_cynder.png"> <p><span class="bold">Cynder</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>The Big Bad</span> </h3> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BFS">BFS</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TokusatsuTropes">Tokusatsu Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigGood">Big Good</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/EvilMinions">Evil Minions</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterCalculus">Character Calculus</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MainCharacters">Main Characters</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BeyondTheImpossible">Beyond the Impossible</a> </li> <li> <a href="/pmwiki/pmwiki.php/Pt/IndiceDeTraducao">Pt/Índice de Tradução</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigDamnHeroes">Big Damn Heroes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BeyondRedemption">Beyond Redemption</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ArchEnemy">Arch-Enemy</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigBadFriend">Big Bad Friend</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheBabyOfTheBunch">The Baby of the Bunch</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheIndexTeam">The Index Team</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigGood">Big Good</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BenevolentBoss">Benevolent Boss</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AuthorityTropes">Authority Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigGood">Big Good</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BetterWithNonHumanCompany">Better with Non-Human Company</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice">Characters as Device</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigBeautifulMan">Big Beautiful Man</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BFG">BFG</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesZeroToD">WeAreNotAlone/Tropes 0 to D</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheBigBadWolf">The Big Bad Wolf</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BeyondRedemption">Beyond Redemption</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/EvilTropes">Evil Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BlackMagic">Black Magic</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BeyondTheImpossible">Beyond the Impossible</a> </li> <li> <a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">JustForFun/Tropes of Legend</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigGood">Big Good</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheWarOnStraw">The War on Straw</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AllegoricalCharacter">Allegorical Character</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigGood">Big Good</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BetaCouple">Beta Couple</a> </li> <li> <a href="/pmwiki/pmwiki.php/Administrivia/PagesNeedingExampleContext">Administrivia/Pages Needing Example Context</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigBallOfViolence">Big Ball of Violence</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheLeader">The Leader</a> </li> <li> <a href="/pmwiki/pmwiki.php/SquarePegRoundTrope/EToK">SquarePegRoundTrope/E to K</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Flanderization">Flanderization</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BeyondTheImpossible">Beyond the Impossible</a> </li> <li> <a href="/pmwiki/pmwiki.php/SquarePegRoundTrope/AToD">SquarePegRoundTrope/A to D</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigGood">Big Good</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ArchEnemy">Arch-Enemy</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Villains">Villains</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheBully">The Bully</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BabyDontGotBack">Baby Don't Got Back</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexIsNotAnExample">This Index Is Not an Example</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigBadEnsemble">Big Bad Ensemble</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BestHerToBedHer">Best Her to Bed Her</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OlderThanFeudalism">Older Than Feudalism</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigHeroicRun">Big Heroic Run</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/Lullaby">Lullaby</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Literature">QuoteSource/Literature</a> </li> <li> <a href="/pmwiki/pmwiki.php/Literature/TheMachineriesOfEmpire">The Machineries of Empire</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ChekhovsGun">Chekhov's Gun</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MundaneFantastic">Mundane Fantastic</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MoneySpider">Money Spider</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Film/TheRiseOfSkywalker">The Rise of Skywalker</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/StarWars">ImageSource/Star Wars</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/NemesisWeapon">Nemesis Weapon</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BigApplesauce">Big Applesauce</a> </li> <li> <a href="/pmwiki/pmwiki.php/TimeImmemorial/TropesAToG">TimeImmemorial/Tropes A to G</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigCreepyCrawlies">Big Creepy-Crawlies</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BigAnimeEyes">Big Anime Eyes</a> </li> <li> <a href="/pmwiki/pmwiki.php/NoRealLife/Tropes0ToC">NoRealLife/Tropes 0 to C</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigBadDuumvirate">Big Bad Duumvirate</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BeTheBall">Be the Ball</a> </li> <li> <a href="/pmwiki/pmwiki.php/AlliterativeName/TropesAToE">AlliterativeName/Tropes A to E</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigBand">Big Band</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-2c272c" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2c272c.jpg" data-video-title="Scottyvich Baloneykov " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2c272c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2c272c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2c272c.m3u8" data-small-player="never" data-track-events="1" data-do-not-loop="1" data-starting-quality="1" data-autoplay="true"> </div> </div> </div> <div class="_pmvv-vidbox-desc"> <h1 id="overlay-title">Scottyvich Baloneykov </h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Scottyvich Baloneykov, the main antagonist of Microsoft Sam and the War in the ROFL Island Chain is the leader of the Soviet Lulz Brigade, the evil twin brother of Radar Overseer Scotty and the supporter of The Supreme AI who wants revenge against the United LOLs of ROFLica and its allies for the death of the evil ai. He starts by killing two members of the United Speakonian Soviet Republic when their refuses to join him. </p> <div class="rating-row" data-video-id="2c272c" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">&starf;</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">&starf;</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">&starf;</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">&starf;</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">&starf;</label> </div> <div id="star-rating-total"> 4 (2 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / BigBad</div> </div> <div class="media_second_wrapper"> <div class="media-sources-overlay example-overlay"> <p>Media sources:</p> <div id="overlay-media"></div> </div> <div class="example-overlay"> <div id="secondary_tropes_row"></div> <div id="overlay-second"></div> </div> </div> </div> <p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)"> <!-- <i class="fa fa-eye"></i> 11,241--> <a href="#video-feedback" class="float-right" data-modal-target="login" >Report</a> </p> </div> </div> </div> <div class="_pmvv-foot"> <div class="_pmvv-foot-scrollwrapper"> <a href="#video-link" data-video-id="2c272c" data-vimeo-id="" data-video-descrip="Scottyvich Baloneykov, the main antagonist of Microsoft Sam and the War in the ROFL Island Chain is the leader of the Soviet Lulz Brigade, the evil twin brother of Radar Overseer Scotty and the supporter of The Supreme AI who wants revenge against the United LOLs of ROFLica and its allies for the death of the evil ai. He starts by killing two members of the United Speakonian Soviet Republic when their refuses to join him." data-video-title="Scottyvich Baloneykov " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2c272c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2c272c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2c272c.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2c272c.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.00" data-video-rating-count="2" data-video-media-sources="Main/EstablishingCharacterMoment,WebAnimation/MicrosoftSamAndTheWarInTheRepublicOfMy,WebVideo/MicrosoftSamReadsFunnyWindowsErrors" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2c272c.jpg"> <p><span class="bold">Scottyvich Balo...</span></p> </a> <a href="#video-link" data-video-id="q3j0so" data-vimeo-id="379194908" data-video-descrip="We meet Forte, the castle's former maestro-turned-pipe organ, who vows to keep Beast and Belle apart so he can stay this way and be Beast's only friend." data-video-title="Forte" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/q3j0so_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/q3j0so.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/q3j0so.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q3j0so.jpg" data-video-trope="Main/OminousPipeOrgan" data-video-tropename="Ominous Pipe Organ" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="17" data-video-media-sources="WesternAnimation/BeautyAndTheBeastTheEnchantedChristmas,Main/BigBad" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q3j0so.jpg"> <p><span class="bold">Forte</span></p> </a> <a href="#video-link" data-video-id="ucafhz" data-vimeo-id="" data-video-descrip="Abyss is the final boss of Marvel vs. Capcom 2: New Age of Heroes. It&amp;rsquo;s a multi-phase fight that sees the creature&amp;rsquo;s true, slimy form gradually revealed." data-video-title="Abyss" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ucafhz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ucafhz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ucafhz.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7978.jpeg" data-video-trope="Main/FinalBoss" data-video-tropename="Final Boss" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Main/BigBad,Main/BlobMonster,VideoGame/MarvelVsCapcom2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7978.jpeg"> <p><span class="bold">Abyss</span></p> </a> <a href="#video-link" data-video-id="zo12sz" data-vimeo-id="" data-video-descrip="Kefka Palazzo, having obtained godlike power and brought the planet to ruin, asks the heroes why they continue to live and hope in such a miserable world. Each of them gives a heartfelt reason for why they keep going, which Kefka scoffs at. Believing that existence itself is meaningless, Kefka proclaims his intention to destroy the entire universe just to satisfy his endless lust for destruction and prove that nothing really matters." data-video-title="Kefka Palazzo" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zo12sz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zo12sz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zo12sz.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7360_83.jpeg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="17" data-video-media-sources="Main/AGodAmI,Main/AxCrazy,Main/BigBad,Main/EvilCannotComprehendGood,Main/MonsterClown,Main/OmnicidalManiac,Main/RedemptionRejection,Main/ShutUpKirk,Main/StrawNihilist,VideoGame/FinalFantasyVI" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_7360_83.jpeg"> <p><span class="bold">Kefka Palazzo</span></p> </a> <a href="#video-link" data-video-id="pkcqmn" data-vimeo-id="" data-video-descrip="At the top of Hyrule Castle, Ganondorf sits upon the kingdom's throne with Princess Zelda herself as his captive, patiently awaiting the arrival of Link and Midna. When the heroes confront him, Ganondorf welcomes them to &amp;quot;his&amp;quot; castle before revealing how he used the Twili to regain his power, and with all three Triforce pieces now assembled in one place, he challenges the duo to an epic battle for the fate of two dimensions." data-video-title="Ganondorf" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/pkcqmn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/pkcqmn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/pkcqmn.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5554.jpeg" data-video-trope="Main/MagnificentBastard" data-video-tropename="Magnificent Bastard" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.62" data-video-rating-count="16" data-video-media-sources="Main/BigBad,Main/EvilOverlord,Main/FauxAffablyEvil,Main/SlouchOfVillainy,Main/ThePowerOfHate,VideoGame/TheLegendOfZeldaTwilightPrincess" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5554.jpeg"> <p><span class="bold">Ganondorf</span></p> </a> <a href="#video-link" data-video-id="vndb2l" data-vimeo-id="" data-video-descrip="Ganondorf seeks to ravage over Hyrule and create a new world of darkness and monsters." data-video-title="Demon King Ganondorf" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vndb2l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vndb2l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vndb2l.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vndb2l.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="VideoGame/TheLegendOfZeldaTearsOfTheKingdom" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vndb2l.jpg"> <p><span class="bold">Demon King Gano...</span></p> </a> <a href="#video-link" data-video-id="trxvty" data-vimeo-id="" data-video-descrip="Ganondorf, the master of the Forsaken Fortress, reveals that Link had played right into his hands by drawing the now-useless Master Sword, thus breaking the seal on the Demon King's magic and restoring him to full power." data-video-title="Ganondorf" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/trxvty_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/trxvty.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/trxvty.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/trxvty.jpg" data-video-trope="Main/MagnificentBastard" data-video-tropename="Magnificent Bastard" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.86" data-video-rating-count="14" data-video-media-sources="Main/BatmanGambit,Main/BigBad,Main/NiceJobBreakingItHero,Main/TheChessmaster,VideoGame/TheLegendOfZeldaTheWindWaker" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/trxvty.jpg"> <p><span class="bold">Ganondorf</span></p> </a> <a href="#video-link" data-video-id="cv6cau" data-vimeo-id="" data-video-descrip="Odin's debut in God of War Ragnarok has him arrive at Kratos's home and quickly establishes himself as a haughty, arrogant tyrant who treats any place he's in as his own and openly insults his family members, including Thor's deceased sons. Any friendliness or charm is a facade that hides his cruel nature. Mimir himself even calls out Odin's deceptive and two-faced personality for what it is." data-video-title="Odin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cv6cau_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cv6cau.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cv6cau.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cv6cau.jpg" data-video-trope="Main/EstablishingCharacterMoment" data-video-tropename="Establishing Character Moment" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="8" data-video-media-sources="Main/BigBad,Main/CompulsiveLiar,Main/EnemyEatsYourLunch,Main/SpeakIllOfTheDead,VideoGame/GodOfWar,VideoGame/GodOfWarRagnarok" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cv6cau.jpg"> <p><span class="bold">Odin</span></p> </a> <a href="#video-link" data-video-id="l39a6f" data-vimeo-id="" data-video-descrip="Demon King Ganondorf gleefully taunts the sages on how the world shall be ravaged by his magic when he returns to his full power. He'll summon many monsters (Bokoblins, Moblins, Lizalfos, Aerocudas, Lynels, Gibdos, and others like Boss Bokoblins) from a fountain of Gloom and commands them to destroy Hyrule to make his new kingdom." data-video-title="Ganondorf (TotK)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l39a6f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l39a6f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l39a6f.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l39a6f.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.47" data-video-rating-count="17" data-video-media-sources="Main/MonsterProgenitor,Main/OmnicidalManiac,VideoGame/TheLegendOfZeldaTearsOfTheKingdom,Main/BigBad" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l39a6f.jpg"> <p><span class="bold">Ganondorf (TotK)</span></p> </a> <a href="#video-link" data-video-id="vc9vq9" data-vimeo-id="" data-video-descrip="Simon Phoenix is a sociopathic criminal from the 20th century who kills and maims as he pleases. " data-video-title="Simon Phoenix" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vc9vq9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vc9vq9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vc9vq9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vc9vq9.jpg" data-video-trope="Main/LaughablyEvil" data-video-tropename="Laughably Evil" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="Film/DemolitionMan,Main/AxCrazy,Main/BigBad,Main/CopKiller,Main/PoliceAreUseless" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vc9vq9.jpg"> <p><span class="bold">Simon Phoenix</span></p> </a> <a href="#video-link" data-video-id="tc5a1w" data-vimeo-id="" data-video-descrip="Ozai, enhanced with the power of Sozin's comet, begins his attack on the Earth Kingdom, scorching a forest before Aang intervenes." data-video-title="Ozai and Aang meet" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/tc5a1w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/tc5a1w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/tc5a1w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tc5a1w.jpg" data-video-trope="Main/KillItWithFire" data-video-tropename="Kill It with Fire" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="10" data-video-media-sources="Main/BigBad,Main/EvilOverlord,Main/ShooOutTheClowns,WesternAnimation/AvatarTheLastAirbender,Recap/AvatarTheLastAirbenderSozinsCometPart3IntoTheInferno" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tc5a1w.jpg"> <p><span class="bold">Ozai and Aang meet</span></p> </a> <a href="#video-link" data-video-id="ykzg47" data-vimeo-id="" data-video-descrip="&amp;quot;I reached into the dirt and made new life. I AM THE GOD OF ALL DALEKS!&amp;quot;" data-video-title="The Emperor of the Daleks" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ykzg47_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ykzg47.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ykzg47.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykzg47.jpg" data-video-trope="Main/EvilSoundsDeep" data-video-tropename="Evil Sounds Deep" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="14" data-video-media-sources="Main/BigBad,Main/GodEmperor,Recap/DoctorWhoS27E13ThePartingOfTheWays,Series/DoctorWho,Main/AGodAmI" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykzg47.jpg"> <p><span class="bold">The Emperor of ...</span></p> </a> <a href="#video-link" data-video-id="60frbe" data-vimeo-id="" data-video-descrip="A fat Kremling who acts as Donkey Kong's Arch-Enemy in the Donkey Kong Country series. Prone to adopting new personas (Kaptain K. Rool, Baron K. Roolenstein, etc.) in different games, complete with new powersets for battle. Whatever he likes to call himself, K. Rool's goals remain the same &amp;Atilde;ƒ&amp;Acirc;&amp;cent;&amp;Atilde;ƒ&amp;Atilde;‚&amp;acirc;€š&amp;Atilde;&amp;cent;&amp;Atilde;‚&amp;acirc;€š&amp;Acirc;&amp;not;&amp;Atilde;ƒ&amp;Atilde;‚&amp;acirc;€š&amp;Atilde;&amp;cent;&amp;Atilde;‚&amp;acirc;‚&amp;not;&amp;Atilde;‚&amp;Acirc; to get rid of the Kong clan and take over their island, and if he can't manage that, destroying the island along with every primate on it suits him just fine instead." data-video-title="King K. Rool" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/60frbe_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/60frbe.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/60frbe.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/60frbe.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="Main/NeverSmileAtACrocodile,VideoGame/DonkeyKong64" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/60frbe.jpg"> <p><span class="bold">King K. Rool</span></p> </a> <a href="#video-link" data-video-id="gygqfn" data-vimeo-id="" data-video-descrip="Of The Suicide Squad. While Starro is a mind-controlling parasitic kaiju, but also a brightly colored starfish with rounded almost cuddly features and a puppy-dog eye, it doesn't become an active threat until the final quarter of the film, but the very reason Task Force X goes on the mission in the first place is because of Project Starfish, and while characters like the Thinker and Presidente Luna/Suarez attempt to exploit it for their own ends, all of them ultimately pay for it in the end." data-video-title="Starro the Conqueror" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/gygqfn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/gygqfn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/gygqfn.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gygqfn.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.82" data-video-rating-count="11" data-video-media-sources="Film/TheSuicideSquad,Main/AdorableAbomination,Main/Kaiju" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gygqfn.jpg"> <p><span class="bold">Starro the Conq...</span></p> </a> <a href="#video-link" data-video-id="xfgkrb" data-vimeo-id="" data-video-descrip="Grimserver is the evil leader of the Grimwraths who wish to conquer all of Dragamar." data-video-title="Grimserver" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/xfgkrb_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/xfgkrb.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/xfgkrb.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xfgkrb.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="WesternAnimation/Dragamonz" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xfgkrb.jpg"> <p><span class="bold">Grimserver</span></p> </a> <a href="#video-link" data-video-id="hvqwj2" data-vimeo-id="" data-video-descrip="Dr. Reinhard, the game's Big Bad is a staff member of Sunny Meadows mental institute for the criminally insane." data-video-title="Dr. Reinhard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hvqwj2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hvqwj2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hvqwj2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvqwj2.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/HerrDoktor,Main/PsychoPsychologist,VideoGame/EvilDeadRegeneration" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hvqwj2.jpg"> <p><span class="bold">Dr. Reinhard</span></p> </a> <a href="#video-link" data-video-id="j4v49k" data-vimeo-id="" data-video-descrip="The greatest evil in all the DC universe." data-video-title="Darkseid" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j4v49k_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j4v49k.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j4v49k.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/20221202_175746.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="15" data-video-media-sources="Recap/SupermanTheAnimatedSeriesS2E25E26ApokolipsNow,WesternAnimation/SupermanTheAnimatedSeries,Main/GodOfEvil" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/20221202_175746.png"> <p><span class="bold">Darkseid</span></p> </a> <a href="#video-link" data-video-id="boz05a" data-vimeo-id="" data-video-descrip="The current monarch of the Kingdom. A selfish and tyrannical individual obsessed with finding a way to fix the table where he places his milk glass." data-video-title="The Panther King" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/boz05a_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/boz05a.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/boz05a.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/boz05a.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="VideoGame/ConkersBadFurDay" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/boz05a.jpg"> <p><span class="bold">The Panther King</span></p> </a> <a href="#video-link" data-video-id="mbomuw" data-vimeo-id="" data-video-descrip="The Classical Goddess of Chaos and Discord. Sexy and selfish, Eris lives only to sow suffering and strife among mortals." data-video-title="Eris" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mbomuw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mbomuw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mbomuw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mbomuw.jpg" data-video-trope="Main/JerkassGods" data-video-tropename="Jerkass Gods" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="22" data-video-media-sources="Main/BigBad,Main/GodOfChaos,Main/GodOfEvil,WesternAnimation/SinbadLegendOfTheSevenSeas" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mbomuw.jpg"> <p><span class="bold">Eris</span></p> </a> <a href="#video-link" data-video-id="k8x7ct" data-vimeo-id="" data-video-descrip="Though he answers directly to his owner Marcel, he is the more direct threat and is far more evil then his owner." data-video-title="Nigel The Cockatoo" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/k8x7ct_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/k8x7ct.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/k8x7ct.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2b682de2_22f2_472a_baee_87c3b453b478.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.46" data-video-rating-count="13" data-video-media-sources="WesternAnimation/Rio" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/2b682de2_22f2_472a_baee_87c3b453b478.png"> <p><span class="bold">Nigel The Cockatoo</span></p> </a> <a href="#video-link" data-video-id="177p4i" data-vimeo-id="" data-video-descrip="Arlo encounters the Bog Lady, a treacherous swamp goddess who influenced Arlo his whole life and was furious when he left the swamp." data-video-title="The Bog Lady" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/177p4i_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/177p4i.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/177p4i.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/177p4i.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.28" data-video-rating-count="18" data-video-media-sources="Main/EldritchAbomination,Main/FauxAffablyEvil,Main/Planimal,Recap/IHeartArloS1E19TheUncondemning,WesternAnimation/IHeartArlo,Main/INeverToldYouMyName" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/177p4i.jpg"> <p><span class="bold">The Bog Lady</span></p> </a> <a href="#video-link" data-video-id="nj6e4w" data-vimeo-id="" data-video-descrip="The big bad of The Little Mermaid II: Return to the Sea; Ursula's sister who wants revenge on Triton." data-video-title="Morgana" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nj6e4w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nj6e4w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nj6e4w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nj6e4w.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="WesternAnimation/TheLittleMermaidIIReturnToTheSea" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nj6e4w.jpg"> <p><span class="bold">Morgana</span></p> </a> <a href="#video-link" data-video-id="quydy3" data-vimeo-id="" data-video-descrip="The main villain of Miitopia, a wicked man of evil who wants to rule Miitopia by stealing the faces of its residents and giving them to monsters." data-video-title="The Dark Lord" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/quydy3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/quydy3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/quydy3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/quydy3.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="VideoGame/Miitopia" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/quydy3.jpg"> <p><span class="bold">The Dark Lord</span></p> </a> <a href="#video-link" data-video-id="51flb2" data-vimeo-id="" data-video-descrip="Leader of the Mongol invaders, cousin of Kublai Khan, ruler of the Mongol Empire, and grandson of Genghis Khan. Knowledgeable in the ways of the samurai, he invades Tsushima and comes into conflict with Jin, who he takes an interest in." data-video-title="Khotun Khan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/51flb2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/51flb2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/51flb2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51flb2.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="VideoGame/GhostOfTsushima" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51flb2.jpg"> <p><span class="bold">Khotun Khan</span></p> </a> <a href="#video-link" data-video-id="s767oe" data-vimeo-id="" data-video-descrip="An extra-dimensional, extremely hostile entity attempting to seize control of the Oldest House, the FBC and its occupants by corrupting the bodies of everyone it comes into contact with. Itself bodiless and intangible, it manifests as red light, rippling air/sonic distortion and the strange speech its victims recite." data-video-title="The Hiss" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/s767oe_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/s767oe.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/s767oe.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s767oe.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="VideoGame/Control" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s767oe.jpg"> <p><span class="bold">The Hiss</span></p> </a> <a href="#video-link" data-video-id="ybh9fl" data-vimeo-id="" data-video-descrip="The central antagonist of Alan Wake, a hostile, aggressive supernatural entity that exists within (or under, or is trapped by?) Cauldron Lake, which creates the Taken. In Alan Wake, its main &amp;quot;face&amp;quot; is that of its avatar, the &amp;quot;Scratching Hag&amp;quot; Barbara Jagger." data-video-title="The Dark Presence" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ybh9fl_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ybh9fl.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ybh9fl.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ybh9fl.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Recap/AlanWakeEp4TheTruth,VideoGame/AlanWake" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ybh9fl.jpg"> <p><span class="bold">The Dark Presence</span></p> </a> <a href="#video-link" data-video-id="ct2tvc" data-vimeo-id="" data-video-descrip="A battle-hardened Samurai, Genichiro Ashina is the highest-ranking commander of the Ashina clan's army. Out of desperation, Genichiro kidnaps Wolf's master, and leaves him for dead after defeating him in a duel." data-video-title="Lord Genichiro Ashina" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ct2tvc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ct2tvc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ct2tvc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ct2tvc.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.17" data-video-rating-count="6" data-video-media-sources="VideoGame/SekiroShadowsDieTwice" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ct2tvc.jpg"> <p><span class="bold">Lord Genichiro ...</span></p> </a> <a href="#video-link" data-video-id="pmj7y3" data-vimeo-id="" data-video-descrip="Having taken over as the Wholesome Foods CEO, Chip Whistler generally devotes his time to running Cricket the Greens out of Big City forever." data-video-title="Chip Whistler" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/pmj7y3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/pmj7y3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/pmj7y3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pmj7y3.jpg" data-video-trope="Main/CorruptCorporateExecutive" data-video-tropename="Corrupt Corporate Executive" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="Main/BigBad,Main/StalkerShot,Main/StringTheory,WesternAnimation/BigCityGreens,Main/NewspaperThinDisguise" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pmj7y3.jpg"> <p><span class="bold">Chip Whistler</span></p> </a> <a href="#video-link" data-video-id="hos8g6" data-vimeo-id="" data-video-descrip="Psychiatrist, philanthropist and leader of the Rapture Family, Dr Sofia Lamb has emerged from a long period of imprisonment to seize control of Rapture following the events of Bioshock 2. With her collectivist cult now running the city, she now plots to eliminate the concept of individuality altogether, intending to use her daughter Eleanor as the centrepiece of this mad quest - bringing her into conflict with Eleanor's Big Daddy protector, Subject Delta." data-video-title="Dr Sofia Lamb" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hos8g6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hos8g6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hos8g6.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hos8g6.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="VideoGame/BioShock2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hos8g6.jpg"> <p><span class="bold">Dr Sofia Lamb</span></p> </a> <a href="#video-link" data-video-id="1b7n42" data-vimeo-id="487902115" data-video-descrip="The Mentor of the Levantine Assassin Order. He gives Altair the mission to assassinate nine corrupt head figures of the Holy Land as a way for him to earn redemption.&lt;br&gt;&lt;br&gt;In reality, he was a high-ranking member of the Templars, if not their leader. Once Al Mualim had the Piece of Eden, he sent Alta&amp;Atilde;&amp;macr;r to deal with the other nine Templars in the Holy Land to ensure he would remain unchallenged. Fortunately, Altair killed him once he discovered this treachery." data-video-title="Al Mualim" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/1b7n42_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/1b7n42.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/1b7n42.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1b7n42.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="VideoGame/AssassinsCreedI" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/1b7n42.jpg"> <p><span class="bold">Al Mualim</span></p> </a> <a href="#video-link" data-video-id="51014e" data-vimeo-id="483215772" data-video-descrip="Malachite is an evil sorcerer who wishes to regain his magic gauntlet and is the antagonist of Suburban Knights." data-video-title="Malachite" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/51014e_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/51014e.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/51014e.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51014e.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="3.77" data-video-rating-count="13" data-video-media-sources="WebVideo/SuburbanKnights" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/51014e.jpg"> <p><span class="bold">Malachite</span></p> </a> <a href="#video-link" data-video-id="ylgrch" data-vimeo-id="469173248" data-video-descrip="Kayako was an ordinary Housewife who has an obsessive crush on a teacher Peter Kirk. Unfortunately, her husband Takeo found out and brutally killed her, along with her son Toshio and the family cat Mar. Brought back by her family's rage as a Curse, Kayako appears as a Stringy-Haired Ghost Girl, crawling about to hunt down and kill anyone who enters her house to consume them in the curse. She is most iconic for crawling her way down the stairs, and lets out a chilling death rattle whenever she appears." data-video-title="Kayako Saeki" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ylgrch_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ylgrch.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ylgrch.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ylgrch.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.40" data-video-rating-count="5" data-video-media-sources="Film/TheGrudge" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ylgrch.jpg"> <p><span class="bold">Kayako Saeki</span></p> </a> <a href="#video-link" data-video-id="zv8wk5" data-vimeo-id="465269310" data-video-descrip="A sorcerer once in the employ of King Peregrin, eventually falling out of favor with the King due to his experiments on the bodies of the dead. He was banished from the kingdom and spent years perfecting his dark arts. He created an unholy army of undead soldiers and demons, which he used to conquer many major areas of Gallowmere until the King intervened and deployed Sir Daniel and his battalion for a titanic battle. Zarok's army was defeated, but Zarok's body was never accounted for. Though thought to be long dead, he returns after 100 years in a bid to take over Gallowmere once again. With a magic spell called the &amp;quot;Evernight&amp;quot;, he plunged the realm into perpetual darkness and robbed the living of their free will, along with raising the dead in the process." data-video-title="Zarok" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zv8wk5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zv8wk5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zv8wk5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zv8wk5.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="VideoGame/MediEvil" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zv8wk5.jpg"> <p><span class="bold">Zarok</span></p> </a> <a href="#video-link" data-video-id="s9n3rd" data-vimeo-id="465270365" data-video-descrip="The Big Bad of Medievil 2, Palethorn acquired Zarok's spellbook and unleashed havoc on London. However, something went wrong with the spell, and as a result he was transformed into a red-skinned demon, and the pages of the spellbook were scattered across London, thus making the monsters he summoned almost uncontrollable. Palethorn now seeks the remaining pages of the spellbook so he can complete the spell and take over the world." data-video-title="Lord Palethorn" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/s9n3rd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/s9n3rd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/s9n3rd.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s9n3rd.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="VideoGame/MediEvil2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/s9n3rd.jpg"> <p><span class="bold">Lord Palethorn</span></p> </a> <a href="#video-link" data-video-id="3swyeu" data-vimeo-id="463994426" data-video-descrip="Malekith the Accursed is the ruler of Svartleheim, King of the Dark Elves and enemy of Asgard." data-video-title="Malekith the Accursed" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3swyeu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3swyeu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3swyeu.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3swyeu.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="10" data-video-media-sources="Film/ThorTheDarkWorld" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3swyeu.jpg"> <p><span class="bold">Malekith the Ac...</span></p> </a> <a href="#video-link" data-video-id="arxc73" data-vimeo-id="455152409" data-video-descrip="Driven mad by his tech and hungry fr revenge against Norman Osbourne, Dr. Otto Octavius - better known as Doctor Octopus - becomes the main antagonist of the game. " data-video-title="Dr. Otto Octavius" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/arxc73_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/arxc73.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/arxc73.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/arxc73.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="VideoGame/SpiderManPS4" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/arxc73.jpg"> <p><span class="bold">Dr. Otto Octavius</span></p> </a> <a href="#video-link" data-video-id="irj431" data-vimeo-id="449132357" data-video-descrip="King Olly is the titular main antagonist of Paper Mario The Origami King. He wants to fold the world into origami and brainwash people into serving him." data-video-title="King Olly" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/irj431_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/irj431.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/irj431.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/screen_shot_2020_08_20_at_24854_pm.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.43" data-video-rating-count="7" data-video-media-sources="VideoGame/PaperMarioTheOrigamiKing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/screen_shot_2020_08_20_at_24854_pm.png"> <p><span class="bold">King Olly</span></p> </a> <a href="#video-link" data-video-id="q5x56n" data-vimeo-id="448432025" data-video-descrip="Jafar is the royal vizier of Agrabah and hungers for power, roping Aladdin into retrieving the magic lamp for him. " data-video-title="Jafar" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/q5x56n_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/q5x56n.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/q5x56n.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q5x56n.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="14" data-video-media-sources="Main/EvilSorcerer,Main/SorcerousOverlord,WesternAnimation/Aladdin1992Disney" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/q5x56n.jpg"> <p><span class="bold">Jafar</span></p> </a> <a href="#video-link" data-video-id="wqc3j1" data-vimeo-id="448031526" data-video-descrip="Lord Volcazar aspires to godhood by becoming the demon Kraal. " data-video-title="Lord Volcazar" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/wqc3j1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/wqc3j1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/wqc3j1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wqc3j1.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="WesternAnimation/RonalTheBarbarian" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wqc3j1.jpg"> <p><span class="bold">Lord Volcazar</span></p> </a> <a href="#video-link" data-video-id="mzfsm7" data-vimeo-id="446921878" data-video-descrip="Norman Osbourne, AKA The Green Goblin, is the main antagonist of the first Sam Riami Spider-Man movie. " data-video-title="The Green Goblin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mzfsm7_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mzfsm7.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mzfsm7.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mzfsm7.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="18" data-video-media-sources="Film/SpiderMan1" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mzfsm7.jpg"> <p><span class="bold">The Green Goblin</span></p> </a> <a href="#video-link" data-video-id="3sydym" data-vimeo-id="446967073" data-video-descrip="&amp;quot;Mr. Eye&amp;quot; is the leader of the Nether Race. He had actually been manipulating the Prog twins this whole time in order to free himself and the Nethers" data-video-title="&quot;Mr. Eye&quot;/Nether Leader" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3sydym_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3sydym.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3sydym.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3sydym.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="VideoGame/RatchetAndClankIntoTheNexus" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3sydym.jpg"> <p><span class="bold">"Mr. Eye"/Nethe...</span></p> </a> <a href="#video-link" data-video-id="27h878" data-vimeo-id="442573843" data-video-descrip="When Captain Slag's head was grafted to Darkwater's undead body, they become the main antagonist of the Quest for Booty DLC." data-video-title="Captain Slag/Darkwater" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/27h878_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/27h878.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/27h878.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/27h878.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.89" data-video-rating-count="9" data-video-media-sources="VideoGame/RatchetAndClankFutureQuestForBooty,Main/NinjaPirateZombieRobot" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/27h878.jpg"> <p><span class="bold">Captain Slag/Da...</span></p> </a> <a href="#video-link" data-video-id="o1bcyq" data-vimeo-id="439839140" data-video-descrip="Tachyon uses his first scene to call himself the ruler of the universe pending the extinction (read: genocide) of a few races. Even before he appears, he's willing to level an entire city and murder it's trillions of inhabitants (among them Sasha, who's the mayor, and Big Al) if it means getting to Ratchet." data-video-title="Emperor Percival Tachyon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/o1bcyq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/o1bcyq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/o1bcyq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o1bcyq.jpg" data-video-trope="Main/EstablishingCharacterMoment" data-video-tropename="Establishing Character Moment" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.91" data-video-rating-count="11" data-video-media-sources="Main/BigBad,Main/GalacticConquerer,Main/TheEmperor,VideoGame/RatchetAndClankFutureToolsOfDestruction,Main/GalacticConqueror" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/o1bcyq.jpg"> <p><span class="bold">Emperor Perciva...</span></p> </a> <a href="#video-link" data-video-id="les8v5" data-vimeo-id="439083188" data-video-descrip="Qwark stole Fizzwidget's identity and turned the Protopet ravenous with the intent of saving the universe from it." data-video-title="Qwark's Plan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/les8v5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/les8v5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/les8v5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/les8v5.jpg" data-video-trope="Main/EvilPlan" data-video-tropename="Evil Plan" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Main/BigBad,Main/EngineeredHeroics,Main/EpicFail,VideoGame/RatchetAndClankGoingCommando,Main/SoundEffectBleep" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/les8v5.jpg"> <p><span class="bold">Qwark's Plan</span></p> </a> <a href="#video-link" data-video-id="kev8mt" data-vimeo-id="439088695" data-video-descrip="Dr. Nefarious is the antagonist of Up Your Arsenal, A Crack in Time, and the 2016 reimagining. This makes him the most recurring villain in the series." data-video-title="Dr. Nefarious" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/kev8mt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/kev8mt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/kev8mt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5281075.jpeg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="VideoGame/RatchetAndClankUpYourArsenal" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5281075.jpeg"> <p><span class="bold">Dr. Nefarious</span></p> </a> <a href="#video-link" data-video-id="ctjx4z" data-vimeo-id="439112719" data-video-descrip="The Big Bad of the Sonic the Hedgehog. The portly scientist whose one desire is to rule over everyone and everything using his technology. Eggman doesn't have a significant background, but he did seemingly look up to his grandfather, Gerald Robotnik. Eggman's plans almost never change, and he's always willing to pull out all of the stops to accomplish his goal.&lt;br&gt;&lt;br&gt;Eggman may possess a high IQ, but his personality is far from mature. He wants things his way, and is very temperamental when denied as such. However, despite his immaturity, he's every bit as clever as he claims to be, able to create almost anything for his goals, and possesses quite a bit of cunning and planning to carry them out. If there's one thing that stands out about the doctor, however, it's his ego, which may only be rivaled by his long-time nemesis, Sonic the Hedgehog." data-video-title="Dr. Ivo &quot;Eggman&quot; Robotnik " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ctjx4z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ctjx4z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ctjx4z.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ctjx4z.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="10" data-video-media-sources="VideoGame/SonicColors" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ctjx4z.jpg"> <p><span class="bold">Dr. Ivo "Eggman...</span></p> </a> <a href="#video-link" data-video-id="c6qn1c" data-vimeo-id="439107226" data-video-descrip="When Robotnik meets with the military, he wastes no time in showing everyone how insufferably vain and abrasive he is." data-video-title="Enter Robotnik" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/c6qn1c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/c6qn1c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/c6qn1c.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/c6qn1c.jpg" data-video-trope="Main/EstablishingCharacterMoment" data-video-tropename="Establishing Character Moment" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.98" data-video-rating-count="41" data-video-media-sources="Film/SonicTheHedgehog2020,Main/BigBad,Main/InsufferableGenius,Main/RapidFireInterrupting,Main/ZeroPercentApprovalRating" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/c6qn1c.jpg"> <p><span class="bold">Enter Robotnik</span></p> </a> <a href="#video-link" data-video-id="xmmnou" data-vimeo-id="436956518" data-video-descrip="Red was a former Dragon Elder that betrayed his kind with the intent of world conquest." data-video-title="Red" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/xmmnou_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/xmmnou.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/xmmnou.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xmmnou.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="VideoGame/SpyroAHerosTail" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/xmmnou.jpg"> <p><span class="bold">Red</span></p> </a> <a href="#video-link" data-video-id="lcok6u" data-vimeo-id="436958853" data-video-descrip="The King of the Apes and Malefor's &amp;quot;right hand man&amp;quot;, and the final boss of the second The Legend of Spyro game." data-video-title="Gaul" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lcok6u_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lcok6u.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lcok6u.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcok6u.jpg" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="VideoGame/TheLegendOfSpyroTheEternalNight,VideoGame/TheLegendOfSpyro" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcok6u.jpg"> <p><span class="bold">Gaul</span></p> </a> <a href="#video-link" data-video-id="zwym04" data-vimeo-id="436957170" data-video-descrip="Cynder was an egg procured by Malefor, becoming his enforcer and the final boss in the first The Legend of Spyro game. " data-video-title="Cynder" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zwym04_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zwym04.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zwym04.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/spyro_evil_cynder.png" data-video-trope="Main/BigBad" data-video-tropename="Big Bad" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="VideoGame/TheLegendOfSpyroANewBeginning,VideoGame/TheLegendOfSpyro" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/spyro_evil_cynder.png"> <p><span class="bold">Cynder</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da'; } 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