CINXE.COM
Jekyll & Hyde - TV Tropes
<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; 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 : "ec043c03feebb9abf9e24e78a6643a300f7ab871", 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>Jekyll & Hyde - TV Tropes</title> <meta name="description" content="The Jekyll & Hyde trope as used in popular culture. You may be looking for The Strange Case of Dr. Jekyll and Mr. Hyde or its stage musical adaptation Jekyll …" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/JekyllAndHyde" /> <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="Jekyll & Hyde - TV Tropes" /> <meta name="twitter:description" content="The Jekyll & Hyde trope as used in popular culture. You may be looking for The Strange Case of Dr. Jekyll and Mr. Hyde or its stage musical adaptation Jekyll …" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/drjekyllmrhyde_01.jpg" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Jekyll & Hyde - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/JekyllAndHyde" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/drjekyllmrhyde_01.jpg" /> <meta property="og:description" content="You may be looking for The Strange Case of Dr. Jekyll and Mr. Hyde or its stage musical adaptation Jekyll & Hyde. When a character and his Evil Twin, Evil Counterpart, or Shadow Archetype are really the same guy after all. Or, sometimes, a …" /> <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=ec043c03feebb9abf9e24e78a6643a300f7ab871" /> <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="" /> <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/SwordDrag" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Creator/Zerocalcare" 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="" /> <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/JekyllAndHyde?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/JekyllAndHyde"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.JekyllAndHyde" 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.JekyllAndHyde" 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/JekyllAndHyde?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="JekyllAndHyde"/> <input type="hidden" id="article_id" value="3456" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/JekyllAndHyde</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"> Jekyll & Hyde </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": "Jekyll & Hyde", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/JekyllAndHyde" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Jekyll & Hyde", "headline": "Jekyll & Hyde", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/JekyllAndHyde", "image": "https://static.tvtropes.org/pmwiki/pub/images/drjekyllmrhyde_01.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2007-06-14T00:00:00-07:00", "dateModified": "2025-02-07T04:14:53-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/JekyllAndHyde" 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/Awesome/JekyllAndHyde" class="subpage-link " title="The Awesome page"> <span class="wrapper"><span class="spi awesome"></span>Awesome</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Characters/JekyllAndHyde" class="subpage-link " title="The Characters page"> <span class="wrapper"><span class="spi characters"></span>Characters</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Funny/JekyllAndHyde" class="subpage-link " title="The Funny page"> <span class="wrapper"><span class="spi funny"></span>Funny</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Laconic/JekyllAndHyde" 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/NightmareFuel/JekyllAndHyde" class="subpage-link " title="The NightmareFuel page"> <span class="wrapper"><span class="spi nightmarefuel"></span>NightmareFuel</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/JekyllAndHyde" 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/TearJerker/JekyllAndHyde" class="subpage-link " title="The TearJerker page"> <span class="wrapper"><span class="spi tearjerker"></span>TearJerker</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Theatre/JekyllAndHyde" 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/Trivia/JekyllAndHyde" class="subpage-link " title="The Trivia page"> <span class="wrapper"><span class="spi trivia"></span>Trivia</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/YMMV/JekyllAndHyde" class="subpage-link " title="The YMMV page"> <span class="wrapper"><span class="spi ymmv"></span>YMMV</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Es/JekyllAndHyde" class="subpage-link " title="The Es page"> <span class="wrapper">Es</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/PlayingWith/JekyllAndHyde" class="subpage-link " title="The PlayingWith page"> <span class="wrapper">PlayingWith</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/JekyllAndHyde" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/JekyllAndHyde?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/JekyllAndHyde?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/JekyllAndHyde?action=edit">DerivativeWork…</option> <option value="/pmwiki/pmwiki.php/FanWorks/JekyllAndHyde?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/JekyllAndHyde?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/JekyllAndHyde?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Haiku/JekyllAndHyde?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/JekyllAndHyde?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/JekyllAndHyde?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/JekyllAndHyde?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/JekyllAndHyde?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/JekyllAndHyde?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/JekyllAndHyde?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/QuoteSource/JekyllAndHyde?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/JekyllAndHyde?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/JekyllAndHyde?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/JekyllAndHyde?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/Timeline/JekyllAndHyde?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/WMG/JekyllAndHyde?action=edit">WMG</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><h3><strong>You may be looking for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='TGl0ZXJhdHVyZS9UaGVTdHJhbmdlQ2FzZU9mRHJKZWt5bGxBbmRNckh5ZGU='>The Strange Case of Dr. Jekyll and Mr. Hyde</a></em> or its stage musical adaptation <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/JekyllAndHyde' title='/pmwiki/pmwiki.php/Theatre/JekyllAndHyde' data-format='VGhlYXRyZS9KZWt5bGxBbmRIeWRl'>Jekyll & Hyde</a></em>.</strong></h3> <!--Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=1528470641033829900--> <!--Please do not change or remove without starting a new thread.--> </p><p><div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='W1tMaXRlcmF0dXJlL1RoZVN0cmFuZ2VDYXNlT2ZEckpla3lsbEFuZE1ySHlkZSBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvZHJqZWt5bGxtcmh5ZGVfMDEuanBnXV0='><div class="lazy_load_img_box" style="padding-top:83.43%"><img src='https://static.tvtropes.org/pmwiki/pub/images/drjekyllmrhyde_01.jpg' class='embeddedimage' border='0' alt='Jekyll & Hyde (trope)' width=350 height=292></div></a></div> <div class="acaptionright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/MemeticMutation' title='/pmwiki/pmwiki.php/Main/MemeticMutation' data-format='W1tNZW1ldGljTXV0YXRpb24gSGUgY2FuIGJlIHlvdXIgYW5nZWwuLi4gb3IgeW91ciBkZXZpbC5dXQ=='>He can be your angel... or your devil.</a></div> </p><p><div class='indent'><em>"I guess we're all two people. One daylight, and the one we keep in shadow."</em> <div class='indent'>— <strong>Bruce Wayne/Batman</strong>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BatmanForever' title='/pmwiki/pmwiki.php/Film/BatmanForever' data-format='RmlsbS9CYXRtYW5Gb3JldmVy'>Batman Forever</a></em> </div></div></p><p>When a character and his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilTwin' title='/pmwiki/pmwiki.php/Main/EvilTwin' data-format='RXZpbFR3aW4='>Evil Twin</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilCounterpart' title='/pmwiki/pmwiki.php/Main/EvilCounterpart' data-format='RXZpbENvdW50ZXJwYXJ0'>Evil Counterpart</a>, or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShadowArchetype' title='/pmwiki/pmwiki.php/Main/ShadowArchetype' data-format='U2hhZG93QXJjaGV0eXBl'>Shadow Archetype</a> are really the same guy after all. Or, sometimes, a completely different character is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoBeingsOneBody' title='/pmwiki/pmwiki.php/Main/TwoBeingsOneBody' data-format='W1tUd29CZWluZ3NPbmVCb2R5IHNoYXJpbmcgYm9keSBzcGFjZV1d'>sharing body space</a> with another. The point is, the villain <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnemyWithin' title='/pmwiki/pmwiki.php/Main/EnemyWithin' data-format='W1tFbmVteVdpdGhpbiBsaXZlcyBpbnNpZGUgdGhlIGhlcm8mIzAzOTtzIGJvZHldXQ=='>lives inside the hero's body</a>, and therefore hides in plain sight. The hero is trying to catch himself. </p><p>If the two personalities are aware of each other, this becomes a case of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GollumMadeMeDoIt' title='/pmwiki/pmwiki.php/Main/GollumMadeMeDoIt' data-format='R29sbHVtTWFkZU1lRG9JdA=='>Gollum Made Me Do It</a>. For a more mundane version, see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoodSwinger' title='/pmwiki/pmwiki.php/Main/MoodSwinger' data-format='TW9vZFN3aW5nZXI='>Mood-Swinger</a>. See <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InVinoVeritas' title='/pmwiki/pmwiki.php/Main/InVinoVeritas' data-format='SW5WaW5vVmVyaXRhcw=='>In Vino Veritas</a> if the change is alcohol-induced (you could call it "Dr. Jekyll and Mr. Jack Daniels"). As an evil "Hyde" personality's crimes are outside the good "Jekyll's" control and the "Jekyll" is usually unable to stop the "Hyde" emerging, this is often a case of being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrivenToVillainy' title='/pmwiki/pmwiki.php/Main/DrivenToVillainy' data-format='RHJpdmVuVG9WaWxsYWlueQ=='>Driven to Villainy</a>. </p><p>Sometimes, though, the "Hyde" is not really <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' title='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' data-format='W1tEYXJrSXNOb3RFdmlsIGV2aWw7IGl0IG1heSBqdXN0IGJlIG1vcmUgaW5zdGluY3R1YWwgb3IgY2FwYWJsZSBvZiB1c2luZyB2aW9sZW5jZSB3aGVuIG5lY2Vzc2FyeV1d'>evil; it may just be more instinctual or capable of using violence when necessary</a>... See <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/WikipediaBehavior' title='/pmwiki/pmwiki.php/JustForFun/WikipediaBehavior' data-format='SnVzdEZvckZ1bi9XaWtpcGVkaWFCZWhhdmlvcg=='>Wikipedia Behavior</a> for the wiki version of this, also known as "Dr. Pedia and Mr. Trope". Also, a "Jekyll" persona isn't necessarily entirely "good" either — it may just be subtler or more self-controlled. After all, in the original story, Jekyll created Hyde as an outlet for his darker impulses, thus acknowledging that he <em>had</em> such impulses. Occasionally, the situation can be resolved (not necessarily favorably) with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonalityTakeover' title='/pmwiki/pmwiki.php/Main/SplitPersonalityTakeover' data-format='U3BsaXRQZXJzb25hbGl0eVRha2VvdmVy'>Split-Personality Takeover</a>, or with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonalityMerge' title='/pmwiki/pmwiki.php/Main/SplitPersonalityMerge' data-format='U3BsaXRQZXJzb25hbGl0eU1lcmdl'>Split-Personality Merge</a> that reconciles both sides into a healthy whole. See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperpoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperpoweredEvilSide' data-format='U3VwZXJwb3dlcmVkRXZpbFNpZGU='>Superpowered Evil Side</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HelplessGoodSide' title='/pmwiki/pmwiki.php/Main/HelplessGoodSide' data-format='SGVscGxlc3NHb29kU2lkZQ=='>Helpless Good Side</a>. </p><p>The trope name comes, of course, from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='TGl0ZXJhdHVyZS9UaGVTdHJhbmdlQ2FzZU9mRHJKZWt5bGxBbmRNckh5ZGU='>The Strange Case of Dr. Jekyll and Mr. Hyde</a></em>, by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertLouisStevenson' title='/pmwiki/pmwiki.php/Creator/RobertLouisStevenson' data-format='Q3JlYXRvci9Sb2JlcnRMb3Vpc1N0ZXZlbnNvbg=='>Robert Louis Stevenson</a>. The dual nature of Jekyll was actually originally a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwistEnding' title='/pmwiki/pmwiki.php/Main/TwistEnding' data-format='VHdpc3RFbmRpbmc='>Twist Ending</a> in the case of that story, but the book became famous and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItWasHisSled' title='/pmwiki/pmwiki.php/Main/ItWasHisSled' data-format='W1tJdFdhc0hpc1NsZWQgbm93IGl0IG5vIGxvbmdlciBzdXJwcmlzZXMgYW55b25lXV0='>now it no longer surprises anyone</a>. Most adaptations of the work focus on the dichotomy from the start. Other occurrences of the trope may still manage to surprise if they’re well done. </p><p>The real-life example of <a class='urllink' href='http://en.wikipedia.org/wiki/Deacon_Brodie'>Deacon Brodie<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (cabinet-making pillar of the church by day, burglar by night) is said to have inspired Stevenson, as did the story of <a class='urllink' href='https://en.wikipedia.org/wiki/Horace_Wells'>Horace Wells,<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> a pioneer of medical anesthetics. While researching chloroform by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProfessorGuineaPig' title='/pmwiki/pmwiki.php/Main/ProfessorGuineaPig' data-format='W1tQcm9mZXNzb3JHdWluZWFQaWcgdGVzdGluZyB2YXJpb3VzIGRvc2FnZXMgb24gaGltc2VsZl1d'>testing various dosages on himself</a>, Wells unknowingly built up a dangerous level of the drug in his system, and ultimately attacked two prostitutes with sulfuric acid in a state of intoxicated paranoia. He then committed suicide after sobering up and learning what he had done. </p><p>Specific variations include: <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HydePlaysJekyll' title='/pmwiki/pmwiki.php/Main/HydePlaysJekyll' data-format='SHlkZVBsYXlzSmVreWxs'>Hyde Plays Jekyll</a>: When the Hyde personality is in control and pretends to be Jekyll in order to fool others; </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheJekyllIsAJerk' title='/pmwiki/pmwiki.php/Main/TheJekyllIsAJerk' data-format='VGhlSmVreWxsSXNBSmVyaw=='>The Jekyll Is a Jerk</a>: Where the Jekyll personality as well as the Hyde turns out to be morally shady if not outright evil. </li></ul></p><p>Since the fact that the hero and the villain are the same person could often be used as a twist ending, beware of spoilers on this page. </p><p><hr data-format='——' /> <h2>Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();"> open/close all folders </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');"> Anime & Manga </div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/The100GirlfriendsWhoReallyReallyReallyReallyReallyLoveYou' title='/pmwiki/pmwiki.php/Manga/The100GirlfriendsWhoReallyReallyReallyReallyReallyLoveYou' data-format='TWFuZ2EvVGhlMTAwR2lybGZyaWVuZHNXaG9SZWFsbHlSZWFsbHlSZWFsbHlSZWFsbHlSZWFsbHlMb3ZlWW91'>The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You</a></em>: Kurumi is usually a sweet girl, but once she becomes hungry (which is almost always), she becomes aggressive until her hunger is satisfied; a human <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonSwordAndShield' title='/pmwiki/pmwiki.php/VideoGame/PokemonSwordAndShield' data-format='W1tWaWRlb0dhbWUvUG9rZW1vblN3b3JkQW5kU2hpZWxkIE1vcnBla29dXQ=='>Morpeko</a>, basically. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureGoldenWind' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureGoldenWind' data-format='TWFuZ2EvSm9Kb3NCaXphcnJlQWR2ZW50dXJlR29sZGVuV2luZA=='>JoJo's Bizarre Adventure: Golden Wind</a></em>: <span class="spoiler" title="you can set spoilers visible by default on your profile" >The underboss of Italy's ruthless crime organization Passione is an eccentric, rather dorky young man named Vinegar Doppio, who is the most loyal subordinate of the mafia's secretive boss, and communicates with him via "telephone", AKA talking into random objects he hallucinates as telephones.</span> <span class="spoiler" title="you can set spoilers visible by default on your profile" >As it turns out, he doesn't realize that he and the boss are one and the same, the latter hiding in Doppio's subconscious and only surfacing when in danger of others coming close to figuring out his true identity.</span> <!-- * Kenshin and Battousai in ''Manga/RurouniKenshin.''--> </li><li> Kyo and Kyoshiro in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SamuraiDeeperKyo' title='/pmwiki/pmwiki.php/Manga/SamuraiDeeperKyo' data-format='TWFuZ2EvU2FtdXJhaURlZXBlckt5bw=='>Samurai Deeper Kyo</a>.</em> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Subverted in the manga, played straight in the anime.</span> </li><li> Tsubasa from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/BeybladeMetalFusion' title='/pmwiki/pmwiki.php/Anime/BeybladeMetalFusion' data-format='W1tBbmltZS9CZXlibGFkZU1ldGFsRnVzaW9uIEJleWJsYWRlOiBNZXRhbCBNYXN0ZXJzXV0='>Beyblade: Metal Masters</a></em> has a dark side when he beyblade battles, making him obsessed with winning, going a bit mad. (He usually loses as a result) </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/Bakugan' title='/pmwiki/pmwiki.php/Anime/Bakugan' data-format='e3tBbmltZS9CYWt1Z2FufX0='>Bakugan</a></em>: <span class="spoiler" title="you can set spoilers visible by default on your profile" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeavy' title='/pmwiki/pmwiki.php/Main/TheHeavy' data-format='W1tUaGVIZWF2eSBNYXNxdWFyYWRlXV0='>Masquarade</a> is revealed to actually be <em>Alice,</em> the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendToAllLivingThings' title='/pmwiki/pmwiki.php/Main/FriendToAllLivingThings' data-format='RnJpZW5kVG9BbGxMaXZpbmdUaGluZ3M='>Friend to All Living Things</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGirl' title='/pmwiki/pmwiki.php/Main/NiceGirl' data-format='TmljZUdpcmw='>Nice Girl</a> of the main team. The Jekyll and Hyde complex was created due to being around her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MadScientist' title='/pmwiki/pmwiki.php/Main/MadScientist' data-format='W1tNYWRTY2llbnRpc3QgZ3JhbmRmYXRoZXJdXQ=='>grandfather</a>'s laboratory at the time of an experiment that released powerful negative energy into the area. Masquarade is a cruel, sadistic, and incredibly powerful and strategic Brawler that plagues the main cast constantly, Alice is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NonActionGuy' title='/pmwiki/pmwiki.php/Main/NonActionGuy' data-format='W1tOb25BY3Rpb25HdXkgTm9uLUFjdGlvbiBHaXJsXV0='>Non-Action Girl</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Pacifist' title='/pmwiki/pmwiki.php/Main/Pacifist' data-format='e3tQYWNpZmlzdH19'>Pacifist</a> that wishes avoid fighting altogether. This is also a case of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBender' title='/pmwiki/pmwiki.php/Main/GenderBender' data-format='R2VuZGVyQmVuZGVy'>Gender Bender</a>. By the end, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TomatoInTheMirror' title='/pmwiki/pmwiki.php/Main/TomatoInTheMirror' data-format='W1tUb21hdG9JblRoZU1pcnJvciB0cnV0aCBpcyByZXZlYWxlZCB0byBoZXJdXQ=='>truth is revealed to her</a>, and she is driven to abandon her team for fear of turning into Masquarade at inopportune times. Ultimately, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonalityMerge' title='/pmwiki/pmwiki.php/Main/SplitPersonalityMerge' data-format='U3BsaXRQZXJzb25hbGl0eU1lcmdl'>Split-Personality Merge</a> occurs. Masqurade instead manifests himself occasionally as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiritAdvisor' title='/pmwiki/pmwiki.php/Main/SpiritAdvisor' data-format='U3Bpcml0QWR2aXNvcg=='>Spirit Advisor</a> in Brawling to Alice, who finally becomes an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActionGirl' title='/pmwiki/pmwiki.php/Main/ActionGirl' data-format='QWN0aW9uR2lybA=='>Action Girl</a> (while still keeping her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGirl' title='/pmwiki/pmwiki.php/Main/NiceGirl' data-format='TmljZUdpcmw='>Nice Girl</a> personality).</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MagicalProjectS' title='/pmwiki/pmwiki.php/Anime/MagicalProjectS' data-format='QW5pbWUvTWFnaWNhbFByb2plY3RT'>Magical Project S</a></em>: Misao Amano's normal self is that of a stereotypical <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShrinkingViolet' title='/pmwiki/pmwiki.php/Main/ShrinkingViolet' data-format='U2hyaW5raW5nVmlvbGV0'>Shrinking Violet</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendlessBackground' title='/pmwiki/pmwiki.php/Main/FriendlessBackground' data-format='W1tGcmllbmRsZXNzQmFja2dyb3VuZCBmcmllbmRsZXNzXV0='>friendless</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShyBlueHairedGirl' title='/pmwiki/pmwiki.php/Main/ShyBlueHairedGirl' data-format='W1tTaHlCbHVlSGFpcmVkR2lybCBibHVlLWhhaXJlZF1d'>blue-haired</a> ill girl. However, this persona falls away when she's transformed into Pixy Misa, the manifestation of her deeply repressed id: an egomaniacal <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreenEyedMonster' title='/pmwiki/pmwiki.php/Main/GreenEyedMonster' data-format='W1tHcmVlbkV5ZWRNb25zdGVyIGplYWxvdXNdXQ=='>jealous</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkMagicalGirl' title='/pmwiki/pmwiki.php/Main/DarkMagicalGirl' data-format='RGFya01hZ2ljYWxHaXJs'>Dark Magical Girl</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainousHarlequin' title='/pmwiki/pmwiki.php/Main/VillainousHarlequin' data-format='W1tWaWxsYWlub3VzSGFybGVxdWluIHRyaWNrc3Rlcl1d'>trickster</a>. </li><li> Inverted with Lucy/Nyu from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ElfenLied' title='/pmwiki/pmwiki.php/Manga/ElfenLied' data-format='TWFuZ2EvRWxmZW5MaWVk'>Elfen Lied</a></em>. Lucy, the evil counterpart, is actually the original character (sort of), while a blow to the head caused her to go into <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CuteMute' title='/pmwiki/pmwiki.php/Main/CuteMute' data-format='W1tDdXRlTXV0ZSBwYXNzaXZlLCBub24tbGV0aGFsICJOeXUiIG1vZGUuXV0='>passive, non-lethal "Nyu" mode.</a> </li><li> After the protagonist of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/DeathNote' title='/pmwiki/pmwiki.php/Manga/DeathNote' data-format='TWFuZ2EvRGVhdGhOb3Rl'>Death Note</a></em> pulls a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MemoryGambit' title='/pmwiki/pmwiki.php/Main/MemoryGambit' data-format='TWVtb3J5R2FtYml0'>Memory Gambit</a>, he devotes himself to catching Kira, not being able to remember that he himself is Kira. The instant he regains his memories, he reverts to his original personality and begins killing once more. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/Gankutsuou' title='/pmwiki/pmwiki.php/Anime/Gankutsuou' data-format='QW5pbWUve3tHYW5rdXRzdW91fX0='>Gankutsuou</a></em> has <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheCountOfMonteCristo' title='/pmwiki/pmwiki.php/Literature/TheCountOfMonteCristo' data-format='TGl0ZXJhdHVyZS9UaGVDb3VudE9mTW9udGVDcmlzdG8='>The Count of Monte Cristo</a> possessed by the titular demon which completely submerges his original good personality as Edmond Dantes. This is only a part of the story, though, as it was Edmond's own lust for revenge that summoned Gankutsuou to him, to begin with, and Gankutsuou has no personal interest in doing any harm to Edmond's enemies or their loved ones, only fulfilling his own end of the bargain. When it seems that Gankutsuou has fully consumed Edmond, he simply walks away from the person he was about to kill as revenge by proxy, without so much as looking back. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/Mnemosyne' title='/pmwiki/pmwiki.php/Anime/Mnemosyne' data-format='QW5pbWUve3tNbmVtb3N5bmV9fQ=='>Mnemosyne</a></em> subverts this in its penultimate episode. Rin, who was sucked into a jet engine, and presumably <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EasyAmnesia' title='/pmwiki/pmwiki.php/Main/EasyAmnesia' data-format='W1tFYXN5QW1uZXNpYSBnb3QgaGVyIG1lbW9yaWVzIG1peGVkIHVwIGZyb20gaGF2aW5nIGhlciBicmFpbiB0dXJuZWQgaW50byBhIHNoYWtlXV0='>got her memories mixed up from having her brain turned into a shake</a>, is seen working at a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MegaCorp' title='/pmwiki/pmwiki.php/Main/MegaCorp' data-format='TWVnYUNvcnA='>MegaCorp</a> by day and killing other immortals and collecting their time spores by night. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SideKick' title='/pmwiki/pmwiki.php/Main/SideKick' data-format='W1tTaWRlS2ljayBNaW1pXV0='>Mimi</a> even lampshades it. However, it turns out that <span class="spoiler" title="you can set spoilers visible by default on your profile" >the latter was actually <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRival' title='/pmwiki/pmwiki.php/Main/TheRival' data-format='W1tUaGVSaXZhbCBMYXVyYV1d'>Laura</a> in a cyborg body designed to look like Rin.</span> </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/DGrayMan' title='/pmwiki/pmwiki.php/Manga/DGrayMan' data-format='TWFuZ2EvREdyYXlNYW4='>D.Gray-Man</a></em>, this is the case with Tyki Mikk and possibly the rest of the Noah... Though probably just Tyki (who 'loves humans'); his mind remains constant between sides, and he gave his little friend the silver off a murdered exorcist's coat as a present. If Allen <em>had</em> gotten it, the plot might have run a bit differently... Also, White Tyki appears to be effectively dead. His identity took a serious scramble back when Allen thought he'd cut the evil out of him and got a <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' data-format='W1tTdXBlclBvd2VyZWRFdmlsU2lkZSByZWFsbHkgXV0='>really </a></em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' data-format='W1tTdXBlclBvd2VyZWRFdmlsU2lkZSBzdXBlcnBvd2VyZWQgXV0='>superpowered </a><em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' data-format='W1tTdXBlclBvd2VyZWRFdmlsU2lkZSBlc3BlY2lhbGx5IF1d'>especially </a></em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' data-format='W1tTdXBlclBvd2VyZWRFdmlsU2lkZSBldmlsIHNpZGVdXQ=='>evil side</a> instead. Surprising he pulled himself back together, but he's different. The Noah are activated out of normal humans, whenever a seat is left unfilled by a death in the family, and for the most part memory is not continuous from incarnation to incarnation, but those persons are still subsumed into the Noah identity once activated. <span class="spoiler" title="you can set spoilers visible by default on your profile" >This is one of the things Allen is trying to prevent happening to him.</span> Whether <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='W1tCaWdCYWQgQWRhbSB0aGUgTWlsbGVubml1bSBFYXJsXV0='>Adam the Millennium Earl</a> and the Fourteenth have died and recorporated before is not clear; very possibly they haven't. Road is over thirty five now; it's possible Adam has kept that rakish young face for thousands of years. (And covered it with a grinning balloon thing in a goofy hat about as long. Mysteriously.) </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/Hellsing' title='/pmwiki/pmwiki.php/Anime/Hellsing' data-format='QW5pbWUve3tIZWxsc2luZ319'>Hellsing</a></em> has Yumiko Takagi, sweet and gentle nun, kept on hand by the Vatican's secret team of assassins for her alternate personality Yumie, who is a berserker killing machine (and darn good with a katana). </li><li> Harumi Chono from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/ParanoiaAgent' title='/pmwiki/pmwiki.php/Anime/ParanoiaAgent' data-format='QW5pbWUvUGFyYW5vaWFBZ2VudA=='>Paranoia Agent</a></em>. Tutor for Ichi by day, a prostitute named Maria by night. The way they communicate with one another? Leaving messages on their answering machine for each other. </li><li> Allelujah and Hallelujah in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MobileSuitGundam00' title='/pmwiki/pmwiki.php/Anime/MobileSuitGundam00' data-format='QW5pbWUvTW9iaWxlU3VpdEd1bmRhbTAw'>Mobile Suit Gundam 00</a></em>. The former is a soft-spoken <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGuy' title='/pmwiki/pmwiki.php/Main/NiceGuy' data-format='TmljZUd1eQ=='>Nice Guy</a> who is willing to save innocent lives while the latter is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a> sadist who takes joy of torturing his enemies. Both personalities are aware of each other's existence, causing Allelujah to be afraid that allowing Hallelujah to control him would make things worse unless it's necessary such as defeating powerful enemies. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/PsychicSquad' title='/pmwiki/pmwiki.php/Manga/PsychicSquad' data-format='TWFuZ2EvUHN5Y2hpY1NxdWFk'>Psychic Squad</a></em> has <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LawfulEvil' title='/pmwiki/pmwiki.php/Main/LawfulEvil' data-format='W1tMYXdmdWxFdmlsIE1pcmFnZV1d'>Mirage</a>, who is also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChaoticEvil' title='/pmwiki/pmwiki.php/Main/ChaoticEvil' data-format='W1tDaGFvdGljRXZpbCBQaGFudG9tIERhdWdodGVyXV0='>Phantom Daughter</a>. Both personalities are hiding in and from Yuuri, AKA The Doll, an ordinary schoolgirl "built" for infiltration <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BecomingTheMask' title='/pmwiki/pmwiki.php/Main/BecomingTheMask' data-format='W1tCZWNvbWluZ1RoZU1hc2sgdGhhdCB0aGV5IGFyZSBzcGVuZGluZyBhbiBpbmNyZWFzaW5nIGFtb3VudCBvZiB0aW1lIGluXV0='>that they are spending an increasing amount of time in</a>, to their boss' displeasure. Additionally, there's a <em>fourth</em> personality that the other three are unaware of. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Kampfer' title='/pmwiki/pmwiki.php/Literature/Kampfer' data-format='TGl0ZXJhdHVyZS97e0thbXBmZXJ9fQ=='>Kämpfer</a></em>, Akane is a sweet, shy, bespectacled girl who often hangs out in the library. When she turns into a Kämpfer, then she becomes a real mean, foul-mouthed, trigger-happy bitch with a pair of pistols. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ProjectARMS' title='/pmwiki/pmwiki.php/Manga/ProjectARMS' data-format='TWFuZ2EvUHJvamVjdEFSTVM='>Project ARMS</a></em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Keith Black has his original, rather sweet personality and is gradually <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrandTheftMe' title='/pmwiki/pmwiki.php/Main/GrandTheftMe' data-format='W1tHcmFuZFRoZWZ0TWUgdGFrZW5dXQ=='>taken</a> over by his "father" Keith White, who is a demented maniac <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AGodAmI' title='/pmwiki/pmwiki.php/Main/AGodAmI' data-format='W1tBR29kQW1JIHdpdGggYSBHb2QgY29tcGxleF1d'>with a God complex</a></span>. Alice herself is split into "White Alice" and "Dark Alice". <!-- * ''Manga/{{Inuyasha}}'':--> <!-- ** Naraku and his evil human self, Onigumo.--> <!-- ** Suikotsu and his evil personality.--> </li><li> In the manga <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/OPartsHunter' title='/pmwiki/pmwiki.php/Manga/OPartsHunter' data-format='TWFuZ2EvT1BhcnRzSHVudGVy'>O-Parts Hunter</a></em>, the main character Jio has Satan inside of him. Satan comes out when Jio's or his friend's lives are threatened. <span class="spoiler" title="you can set spoilers visible by default on your profile" >That is, until the time skip. By the end, it's revealed that Jio is Satan reborn. Jio is <em>Satan's</em> dual personality.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/RosarioPlusVampire' title='/pmwiki/pmwiki.php/Manga/RosarioPlusVampire' data-format='TWFuZ2EvUm9zYXJpb1BsdXNWYW1waXJl'>Rosario + Vampire</a></em> has Moka Akashiya, a shy, well mannered girl who is not always confident. Her true self is a thuggish brute of a vampire who can kick the snot out of anyone. <span class="spoiler" title="you can set spoilers visible by default on your profile" >And by true self, we mean the personality she was born with. Her "Jekyll" half was artificially created.</span> </li><li> <em>Amuri in Star Ocean</em> has Perrier/Vernier La Mer. Perrier is the real personality who, as a result of torturously cruel parenting, subconsciously created Vernier as a defense mechanism and referred to her as her older sister. When seeing her reflection, Perrier would see Vernier looking back and talking to her, always taunting and insulting her. Vernier does not take full control of Perrier, though, until she is pushed into a state of extreme terror. </li><li> Jūgo of the Scales in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Naruto' title='/pmwiki/pmwiki.php/Manga/Naruto' data-format='TWFuZ2Eve3tOYXJ1dG99fQ=='>Naruto</a></em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GentleGiant' title='/pmwiki/pmwiki.php/Main/GentleGiant' data-format='R2VudGxlR2lhbnQ='>Gentle Giant</a> who lives in constant fear of what he will do when his bloodline transforms him into his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBerserker' title='/pmwiki/pmwiki.php/Main/TheBerserker' data-format='W1tUaGVCZXJzZXJrZXIgQ3Vyc2UgU2VhbCBzZWxmXV0='>Curse Seal self</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/OnePiece' title='/pmwiki/pmwiki.php/Manga/OnePiece' data-format='TWFuZ2EvT25lUGllY2U='>One Piece</a></em> gives us Cavendish; When awake, he's a gentlemanly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Bishounen' title='/pmwiki/pmwiki.php/Main/Bishounen' data-format='e3tCaXNob3VuZW59fQ=='>Bishounen</a> of an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttentionWhore' title='/pmwiki/pmwiki.php/Main/AttentionWhore' data-format='QXR0ZW50aW9uV2hvcmU='>Attention Whore</a>. But when he falls asleep, his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperPoweredEvilSide' data-format='U3VwZXJQb3dlcmVkRXZpbFNpZGU='>Superpowered Evil Side</a> Hakuba takes control, and goes on a violent spree so fast that no one can see him. Unfortunately, he also has a bad tendency to fall asleep in the middle of the day. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/YuGiOh' title='/pmwiki/pmwiki.php/Manga/YuGiOh' data-format='TWFuZ2EvWXVHaU9o'>Yu-Gi-Oh!</a></em> has Marik and Yami Marik, the latter being the personification of Marik's rage and anger. He eventually hijacked Marik's body and tried to kill his other self to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonalityTakeover' title='/pmwiki/pmwiki.php/Main/SplitPersonalityTakeover' data-format='W1tTcGxpdFBlcnNvbmFsaXR5VGFrZW92ZXIgbWFpbnRhaW4gY29tcGxldGUgY29udHJvbF1d'>maintain complete control</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/YuGiOhCapsuleMonsters' title='/pmwiki/pmwiki.php/Anime/YuGiOhCapsuleMonsters' data-format='QW5pbWUvWXVHaU9oQ2Fwc3VsZU1vbnN0ZXJz'>Yu-Gi-Oh!: Capsule Monsters</a></em>, the Millennium Ring split Alexander's soul into two halves, one his peaceful side and the other his war-mongering side. The evil side notes that without him Alexander could have never conquered half the globe. </li><li> The Muten Roshi's maid Lunch from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/DragonBall' title='/pmwiki/pmwiki.php/Manga/DragonBall' data-format='TWFuZ2EvRHJhZ29uQmFsbA=='>Dragon Ball</a></em>, in her usual form she's a friendly blue haired woman but whenever she sneezes she turns into a mean and violent blonde woman, she reverts back with a second sneeze and has no memory of her actions in her mean form. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/LupinIIIPartII' title='/pmwiki/pmwiki.php/Anime/LupinIIIPartII' data-format='QW5pbWUvTHVwaW5JSUlQYXJ0SUk='>Lupin III: Part II</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/LupinIIIS2E16' title='/pmwiki/pmwiki.php/Recap/LupinIIIS2E16' data-format='W1tSZWNhcC9MdXBpbklJSVMyRTE2IFRoZSBUd28gRmFjZXMgb2YgTHVwaW5dXQ=='>The Two Faces of Lupin</a>" involves a man who goes around impersonating the real Lupin, stealing whatever he sets his eye on before the real one can, but also murdering in cold blood. The impersonator teams up with a former friend of Lupin turned traitorous, Dr. Normil, who manages to convince the real Lupin and his gang that the horrific acts of violence the impersonator is committing are actually the result of Lupin having "Hyde's Disease", which causes him to turn violent at the stroke of midnight. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Bleach' title='/pmwiki/pmwiki.php/Manga/Bleach' data-format='TWFuZ2Eve3tCbGVhY2h9fQ=='>Bleach</a></em> has Retsu Unohana and Yachiru Unohana. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');"> Comic Books </div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <h2><em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheDCU' title='/pmwiki/pmwiki.php/Franchise/TheDCU' data-format='RnJhbmNoaXNlL1RoZURDVQ=='>The DCU</a></em></h2> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/AllStarComics' title='/pmwiki/pmwiki.php/ComicBook/AllStarComics' data-format='Q29taWNCb29rL0FsbFN0YXJDb21pY3M='>All-Star Comics</a></em> #20, the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/JusticeSocietyOfAmerica' title='/pmwiki/pmwiki.php/ComicBook/JusticeSocietyOfAmerica' data-format='Q29taWNCb29rL0p1c3RpY2VTb2NpZXR5T2ZBbWVyaWNh'>Justice Society of America</a> are helping industrialist Jason L. Rogers track down a criminal known as "The Monster", a hideous-looking man who follows Rogers around and has cost him his family and his business. It turns out that Rogers himself turns into "The Monster" and never knew it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman' title='/pmwiki/pmwiki.php/ComicBook/Batman' data-format='Q29taWNCb29rL3t7QmF0bWFufX0='>Batman</a></em>: <ul ><li> Harvey Dent, a.k.a. 'Two-Face' has this going on, with the split represented by Harvey's own <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwoFaced' title='/pmwiki/pmwiki.php/Main/TwoFaced' data-format='W1tUd29GYWNlZCBzcGxpdCBmYWNlXV0='>split face</a>; his unblemished, handsome right side representing the good, noble District Attorney Harvey Dent, and the scarred, mangled left side representing the malevolent, vicious criminal Two-Face. In his case, the choice between 'Jekyll' and 'Hyde' depends on the results of a coin toss, with good or bad triumphing depending on which side the coin comes down on. This is singly most obvious in his debut appearance, where distinct similarities are drawn between him and the story. In fact, his appearance was inspired by <a class='urllink' href='http://about-faces.livejournal.com/6931.html'>a poster for the Spencer Tracy film<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanTheDarkKnightReturns' title='/pmwiki/pmwiki.php/ComicBook/BatmanTheDarkKnightReturns' data-format='Q29taWNCb29rL0JhdG1hblRoZURhcmtLbmlnaHRSZXR1cm5z'>Batman: The Dark Knight Returns</a></em> turns this on its head. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Recent breakthroughs in plastic surgery have restored his face to normal, but at the unforeseen cost of forever destroying the "Harvey" half of his personality, and permanently leaving the "Two-Face" half in complete control.</span> </li><li> The Ventriloquist and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemonicDummy' title='/pmwiki/pmwiki.php/Main/DemonicDummy' data-format='W1tEZW1vbmljRHVtbXkgaGlzIHB1cHBldCwgU2NhcmZhY2VdXQ=='>his puppet, Scarface</a>, thought most people (including some writers and readers) act as if Scarface were actually alive. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Elseworlds' title='/pmwiki/pmwiki.php/Creator/Elseworlds' data-format='Q3JlYXRvci97e0Vsc2V3b3JsZHN9fQ=='>Elseworlds</a> comic <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanTwoFaces' title='/pmwiki/pmwiki.php/ComicBook/BatmanTwoFaces' data-format='Q29taWNCb29rL0JhdG1hblR3b0ZhY2Vz'>Batman: Two Faces</a></em> has Bruce Wayne in the Jekyll role, trying to create a serum to cure the split personality of Harvey Dent. <span class="spoiler" title="you can set spoilers visible by default on your profile" >We basically end up with "Dr. Batman and Mr. Joker".</span> </li></ul></li><li> The original <em>Eclipso</em> series had Bruce Gordon at war with his evil alter-ego, Eclipso. Later <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retcon' title='/pmwiki/pmwiki.php/Main/Retcon' data-format='e3tyZXRjb259fW5lZA=='>retconned</a> with Eclipso being a separate entity trapped in a black diamond that possesses his user. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLantern' title='/pmwiki/pmwiki.php/ComicBook/GreenLantern' data-format='Q29taWNCb29rL0dyZWVuTGFudGVybg=='>Green Lantern</a></em>: <ul ><li> Kyle Rayner's vast powers were not being fully harnessed, so they formed a shadow entity called Oblivion in <em>Green Lantern: Circle of Fire</em>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLanternRebirth' title='/pmwiki/pmwiki.php/ComicBook/GreenLanternRebirth' data-format='Q29taWNCb29rL0dyZWVuTGFudGVyblJlYmlydGg='>Green Lantern: Rebirth</a></em>, Hal Jordan's conjured body was warping between Spectre, the white-templed Evil Hal run by the fear entity Parallax, which is what he looked like when he did the genocide thing, and his own mixed-up personality, which looks like he did when he was a spry young pilot and at the top of his superheroing game. Often the head and shoulders of one entity will come thrusting out of one of the others. Specter only possessed Hal hoping he could purge Parallax, but now it looks like Parallax might just be getting the Specter's considerable powers, and the Specter and Hal can't see eye-to-eye enough to work well together. </li></ul></li><li> Mark Shaw a.k.a. <em>Manhunter</em> was constantly tracking a serial killer named Dumas: guess why he could never find him. </li><li> Issue 173 of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WorldsFinest1941' title='/pmwiki/pmwiki.php/ComicBook/WorldsFinest1941' data-format='Q29taWNCb29rL1dvcmxkc0ZpbmVzdDE5NDE='>World's Finest (1941)</a></em> had a story titled <a class='urllink' href='http://davidmorefield.com/superman/adventures/jekyllhyde.htm'>"The Jekyll-Hyde Heroes"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> where a scientist named Dr. Aaron gives Batman and Superman a potion that causes them to respectively transform into copies of their respective enemies, Two-Face and Kralik (an obscure <a class='twikilink' href='/pmwiki/pmwiki.php/MediaNotes/TheSilverAgeOfComicBooks' title='/pmwiki/pmwiki.php/MediaNotes/TheSilverAgeOfComicBooks' data-format='W1tNZWRpYU5vdGVzL1RoZVNpbHZlckFnZU9mQ29taWNCb29rcyBTaWx2ZXIgQWdlXV0='>Silver Age</a> Superman villain). </li></ul></p><p><h2><em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MarvelUniverse' title='/pmwiki/pmwiki.php/Franchise/MarvelUniverse' data-format='RnJhbmNoaXNlL01hcnZlbFVuaXZlcnNl'>Marvel Universe</a></em></h2> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/AlphaFlight' title='/pmwiki/pmwiki.php/ComicBook/AlphaFlight' data-format='Q29taWNCb29rL0FscGhhRmxpZ2h0'>Alpha Flight</a></em>'s Aurora switches between a free-spirited superhero personality and that of a highly repressed Catholic school teacher. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/CableAndDeadpool' title='/pmwiki/pmwiki.php/ComicBook/CableAndDeadpool' data-format='Q29taWNCb29rL0NhYmxlQW5kRGVhZHBvb2w='>Cable & Deadpool</a></em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StoryArc' title='/pmwiki/pmwiki.php/Main/StoryArc' data-format='U3RvcnlBcmM='>Story Arc</a> "A Murder in Paradise" has <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Deadpool' title='/pmwiki/pmwiki.php/ComicBook/Deadpool' data-format='Q29taWNCb29rL3t7RGVhZHBvb2x9fQ=='>Deadpool</a> looking for the murderer of an Osama bin Laden-esque figure who took sanctuary in Cable's island country. Guess who did it and can't remember. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Daredevil' title='/pmwiki/pmwiki.php/ComicBook/Daredevil' data-format='Q29taWNCb29rL3t7RGFyZWRldmlsfX0='>Daredevil</a></em>, Typhoid Mary is the second, villainous personality of the otherwise nice and peaceful Mary Walker. She also has the downright psychotic Bloody Mary personality. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheIncredibleHulk' title='/pmwiki/pmwiki.php/ComicBook/TheIncredibleHulk' data-format='Q29taWNCb29rL1RoZUluY3JlZGlibGVIdWxr'>The Incredible Hulk</a></em>: Bruce Banner and his more famous dark side the Hulk. This has been played with many times over the years, with Hulk varying from a brutal monster to an innocent savage. For a while between <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WorldWarHulk' title='/pmwiki/pmwiki.php/ComicBook/WorldWarHulk' data-format='Q29taWNCb29rL1dvcmxkV2FySHVsaw=='>World War Hulk</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/IndestructibleHulk' title='/pmwiki/pmwiki.php/ComicBook/IndestructibleHulk' data-format='Q29taWNCb29rL0luZGVzdHJ1Y3RpYmxlSHVsaw=='>Indestructible Hulk</a></em>, Banner was portrayed as <em>Hulk's</em> dark side, since <span class="spoiler" title="you can set spoilers visible by default on your profile" >unlike Hulk, he'd actually killed someone</span>. In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Marvel1602' title='/pmwiki/pmwiki.php/ComicBook/Marvel1602' data-format='Q29taWNCb29rL01hcnZlbDE2MDI='>Marvel 1602</a></em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Elseworld' title='/pmwiki/pmwiki.php/Main/Elseworld' data-format='e3tFbHNld29ybGR9fQ=='>Elseworld</a>, David Banner gets transformed into the Incredible Hulk. Lord Banner works as an enforcer for <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheHouseOfStuart' title='/pmwiki/pmwiki.php/UsefulNotes/TheHouseOfStuart' data-format='W1tVc2VmdWxOb3Rlcy9UaGVIb3VzZU9mU3R1YXJ0IEphbWVzIFZJIG9mIFNjb3RsYW5kIGFuZCBJIG9mIEVuZ2xhbmRdXQ=='>James VI of Scotland and I of England</a>, and is evil, sadistic and altogether not a nice bloke at all. Follow-ups reveal that the Hulk, on the other hand, is noble and intelligent. (And his influence eventually redeems Banner.) <!-- * ComicBook/TheSentry and The Void.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SpiderMan' title='/pmwiki/pmwiki.php/ComicBook/SpiderMan' data-format='Q29taWNCb29rL1NwaWRlck1hbg=='>Spider-Man</a></em>: <ul ><li> The Green Goblin is sometimes, and to an extent originally, depicted as a split personality of the milquetoast scientist Norman Osborn. The main difference is that Osborn is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManipulativeBastard' title='/pmwiki/pmwiki.php/Main/ManipulativeBastard' data-format='TWFuaXB1bGF0aXZlQmFzdGFyZA=='>Manipulative Bastard</a>, while the Goblin is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a> psychopath. Since he came <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BackFromTheDead' title='/pmwiki/pmwiki.php/Main/BackFromTheDead' data-format='QmFja0Zyb21UaGVEZWFk'>Back from the Dead</a>, Osborn had been more or less in control and became the Goblin willingly and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForTheEvulz' title='/pmwiki/pmwiki.php/Main/ForTheEvulz' data-format='W1tGb3JUaGVFdnVseiBmb3Igc2hpdHogYW5kIGdpZ2dsZXNdXQ=='>for shitz and giggles</a>, but recently he's started losing it again. When he had a breakdown at the end of <em>Dark Reign</em> after being (to the public) the squeaky clean Iron Patriot, when they took his mask off he had Green Goblin paint on underneath... (though in that case, that might have been triggered by <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/XMan' title='/pmwiki/pmwiki.php/ComicBook/XMan' data-format='W1tDb21pY0Jvb2svWE1hbiBOYXRlIEdyZXldXQ=='>Nate Grey</a>, who'd planned to cut the Goblin persona loose from deep within Osborn and show the world what he really was. While Nate lost that round, it looks like he won the war). </li><li> Speaking of Spider-Man villains, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LizardFolk' title='/pmwiki/pmwiki.php/Main/LizardFolk' data-format='W1tMaXphcmRGb2xrIHRoZSBMaXphcmRdXQ=='>the Lizard</a>, a.k.a. Curt Connors, also counts. </li><li> As does Mister Negative and his alter ego Martin Lee. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/XMen' title='/pmwiki/pmwiki.php/ComicBook/XMen' data-format='Q29taWNCb29rL1hNZW4='>X-Men</a></em>, Sauron (no, not <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' title='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' data-format='W1tMaXRlcmF0dXJlL1RoZUxvcmRPZlRoZVJpbmdzIFRIQVQgU2F1cm9uXV0='>THAT Sauron</a>) has this kind of relationship with his alter-ego, Karl Lykos. </li></ul></p><p><h2>Other</h2> <ul ><li> The horror comic <em>Eerie</em> (published by Warren Publishing along with <em><a class='twikilink' href='/pmwiki/pmwiki.php/Magazine/CreepyMagazine' title='/pmwiki/pmwiki.php/Magazine/CreepyMagazine' data-format='TWFnYXppbmUve3tDcmVlcHl8TWFnYXppbmV9fQ=='>Creepy</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Vampirella' title='/pmwiki/pmwiki.php/ComicBook/Vampirella' data-format='Q29taWNCb29rL3t7VmFtcGlyZWxsYX19'>Vampirella</a></em>) had a 4-part story starting in issue #60 with the deceptively silly title "Night of the Jackass" where a derivative of the Hyde formula ("Hyde-25") has become a street drug among the poor of London. Rubbed into an open wound (usually a slashed wrist), it transforms the user into a super-strong goblin-like being; it kills them when it wears off, but the desperate and hopeless <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakingYouWithMe' title='/pmwiki/pmwiki.php/Main/TakingYouWithMe' data-format='W1tUYWtpbmdZb3VXaXRoTWUgd2lsbCB0YWtlIGl0IGFuZCBnbyBvbiBhIGtpbGxpbmcgc3ByZWVdXQ=='>will take it and go on a killing spree</a> (and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RapeIsASpecialKindOfEvil' title='/pmwiki/pmwiki.php/Main/RapeIsASpecialKindOfEvil' data-format='W1tSYXBlSXNBU3BlY2lhbEtpbmRPZkV2aWwgd29yc2VdXQ=='>worse</a>), called "jackassing". Disturbingly, in part 3, some orphan boys take the stuff; they get <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RapidAging' title='/pmwiki/pmwiki.php/Main/RapidAging' data-format='W1tSYXBpZEFnaW5nIHRyYW5zZm9ybWVkIGludG8gYWR1bHRzXV0='>transformed into adults</a>, probably because even the relaxed standards of the '70s for B&W comics would have trouble with barely adolescent children beating male teachers (and fellow students) to death and (implicitly) sexually assaulting female caretakers. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Grendel' title='/pmwiki/pmwiki.php/ComicBook/Grendel' data-format='Q29taWNCb29rL3t7R3JlbmRlbH19'>Grendel</a></em>, what starts out as Hunter Rose's supervillain identity gradually evolves into a sort of Mr. Hyde alter-ego, which jumps from host to host (or do the "hosts" just share the same psychosis?) over many generations. The Grendel persona best conforms to this trope with the third "host", Brian Li Sung, whose personal journal contrasts the guilt-ridden ponderings of Brian and the emerging rants of the Grendel within. </li><li> The Zenescope horror comic <em>Grimm Tales of Terror</em> features a Jekyll and Hyde story as its first issue of its second volume. A bullied nerd creates a serum that turns him into a hunkier alter ego. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The twist is that the original "Jekyll" turns out to be the evil one.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheLeagueOfExtraordinaryGentlemen' title='/pmwiki/pmwiki.php/ComicBook/TheLeagueOfExtraordinaryGentlemen' data-format='Q29taWNCb29rL1RoZUxlYWd1ZU9mRXh0cmFvcmRpbmFyeUdlbnRsZW1lbg=='>The League of Extraordinary Gentlemen</a></em> includes an aged, monstrous Hyde as a member. Jekyll is now thin and sickly while Hyde is a red-skinned, bulked-up giant monster, and it's implied that he was feeding off of Jekyll's energy. Hyde explains it by saying that "without me Jekyll has no drive, and without him I have no restraints." </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/MiniMonsters' title='/pmwiki/pmwiki.php/ComicBook/MiniMonsters' data-format='Q29taWNCb29rL01pbmlNb25zdGVycw=='>Mini Monsters</a></em>, we have Henrietta (the original and good entity) and Miss Hit (the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/KickAss' title='/pmwiki/pmwiki.php/ComicBook/KickAss' data-format='Q29taWNCb29rL0tpY2tBc3M='>Kick-Ass</a> identity). Her father can also count. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/MonsterInMyPocket' title='/pmwiki/pmwiki.php/Toys/MonsterInMyPocket' data-format='VG95cy9Nb25zdGVySW5NeVBvY2tldA=='>Monster in My Pocket</a></em> comic book features Dr. Jekyll (the comic's interpretation of the "Mad Scientist" figurine in the toyline) as a member of the good monsters, with the evil monsters' leader Warlock once attempting to bring Jekyll to his side by force-feeding him the potion that turns him into Mr. Hyde and the good monsters' leader Vampire dreading that Warlock and his minions will be unbeatable with just one more monster on their side. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');"> Comic Strips </div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/ScaryGary' title='/pmwiki/pmwiki.php/ComicStrip/ScaryGary' data-format='Q29taWNTdHJpcC9TY2FyeUdhcnk='>Scary Gary</a></em>, Dr. Jekyll is Leopold's doctor. As Jekyll, he is a normal-looking man, but when he turns into Hyde, he turns roughly 8 feet tall and green, gains a somewhat disfigured face and disheveled hair, has a much more threatening demeanor, and just makes strange grunting sounds instead of talking. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');"> Fan Works </div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='urllink' href='https://www.fanfiction.net/s/13193683/1/Ere-we-go-Pluz-Ultra'>Ere we go, Pluz Ultra!<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>: Izuku's Quirk has given him the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GeniusDitz' title='/pmwiki/pmwiki.php/Main/GeniusDitz' data-format='W1tHZW5pdXNEaXR6IG1lbnRhbGl0eV1d'>mentality</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BoisterousBruiser' title='/pmwiki/pmwiki.php/Main/BoisterousBruiser' data-format='W1tCb2lzdGVyb3VzQnJ1aXNlciBwZXJzb25hbGl0eV1d'>personality</a> of an <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' data-format='W1tUYWJsZXRvcEdhbWUvV2FyaGFtbWVyNDAwMDAgT3JrXV0='>Ork</a>. When Aizawa erases his Quirk, Izuku's back to being a nervous stuttering mess. </li><li> Downplayed in the <em><a class='urllink' href='https://archiveofourown.org/series/2291666'>Father's Prerogative<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> series. Batman and Bruce Wayne are portrayed as split personalities here, but while Batman refuses to kill, Bruce Wayne will if you <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PapaWolf' title='/pmwiki/pmwiki.php/Main/PapaWolf' data-format='W1tQYXBhV29sZiBodXJ0IGhpcyBmYW1pbHldXQ=='>hurt his family</a>. When Jason Todd confronts him on killing a man who assaulted Cassandra Todd but not the Joker for murdering him, Bruce replies that Batman wouldn't and admits that <em>he</em> murdered a man who blackmailed Jason and buried his corpse under a basketball field. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/GodSaveTheEsteem' title='/pmwiki/pmwiki.php/Fanfic/GodSaveTheEsteem' data-format='RmFuZmljL0dvZFNhdmVUaGVFc3RlZW0='>God Save the Esteem</a></em>, this trope gradually comes into play. At first, Stacy Rowe, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShrinkingViolet' title='/pmwiki/pmwiki.php/Main/ShrinkingViolet' data-format='W1tTaHJpbmtpbmdWaW9sZXQgd2FsbGZsb3dlcl1d'>wallflower</a> high school student whose <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WithFriendsLikeThese' title='/pmwiki/pmwiki.php/Main/WithFriendsLikeThese' data-format='W1tXaXRoRnJpZW5kc0xpa2VUaGVzZSBmcmllbmRzXV0='>friends</a> in the Fashion Club are so exhausting to put up with that Stacy gives hanging out with the local group of punks a try, albeit under disguise. But then she grows lonely and weary of trying to find a boyfriend who lives up to either group's standards, so she creates another identity as a nerd. Where this trope comes in is when she loses her grip on her personalities, and begins switching between them without control, and begins blacking out on what the other personalities did. By the time the fic ends she's up to <em>five</em> personalities: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExtremeDoormat' title='/pmwiki/pmwiki.php/Main/ExtremeDoormat' data-format='RXh0cmVtZURvb3JtYXQ='>Extreme Doormat</a> Fashion Club member, violent and alcohol loving punk, perky and upbeat nerdy girl with a stable relationship, paintball gun wielding vigilante, and British soccer team member. Following the timeline of the fic, she was only in control for a few months before she began switching at random. This doesn't end well for her when she snaps and switches rapidly through the whole roster of personalities at school... </li><li> In <em><a class='urllink' href='https://www.fanfiction.net/s/9305815/1/The-Merry-Killers'>The Merry Killers<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, Shinobu Maehara remains the sweet and friendly girl from <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/LoveHina' title='/pmwiki/pmwiki.php/Manga/LoveHina' data-format='W1tNYW5nYS9Mb3ZlSGluYSBjYW5vbl1d'>canon</a> unless she's wears red. Then she turns into Red, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoForHire' title='/pmwiki/pmwiki.php/Main/PsychoForHire' data-format='UHN5Y2hvRm9ySGlyZQ=='>Psycho for Hire</a> assassin who can scare even the other Hinata Sou residents. Shinobu also uses a mirror lined with red tape to communicate wither her other self. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/Origins' title='/pmwiki/pmwiki.php/Fanfic/Origins' data-format='RmFuZmljL3t7T3JpZ2luc319'>Origins</a></em>, Sarah develops into a downplayed version of this. She wasn't ever meant to have a personality, but when her controls are removed, she manifests a helpful side and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrunkOnTheDarkSide' title='/pmwiki/pmwiki.php/Main/DrunkOnTheDarkSide' data-format='RHJ1bmtPblRoZURhcmtTaWRl'>Drunk on the Dark Side</a> personality that tries to tempt her back into her old ways. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/RaptureFalls' title='/pmwiki/pmwiki.php/Fanfic/RaptureFalls' data-format='RmFuZmljL1JhcHR1cmVGYWxscw=='>Rapture Falls</a></em> series gives Fontaine and Atlas this sort of dynamic (caused by Fontaine's splicing with exceptionally pure <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoSerum' title='/pmwiki/pmwiki.php/Main/PsychoSerum' data-format='W1tQc3ljaG9TZXJ1bSBBREFNXV0='>ADAM</a>), though with the twist that the original personality (Fontaine) was the evil one, and the one created by the drug (Atlas) was his repressed <em>good</em> side. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheSecretReturnOfAlexMack' title='/pmwiki/pmwiki.php/Fanfic/TheSecretReturnOfAlexMack' data-format='RmFuZmljL1RoZVNlY3JldFJldHVybk9mQWxleE1hY2s='>The Secret Return of Alex Mack</a></em>: As per canon, getting doused with GC-Divide causes you to split into a "good" and "bad" version of yourself. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Alex uses it on Danielle Atron and then leaves her to fight the "good" version of herself — which wins the fight and kills the evil Danielle, effectively becoming an unusual sort of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeelFaceTurn' title='/pmwiki/pmwiki.php/Main/HeelFaceTurn' data-format='SGVlbEZhY2VUdXJu'>Heel–Face Turn</a>.</span> </li><li> In <a class='urllink' href='https://www.deviantart.com/slifofinadragon'>SlifofinaDragon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SengokuBasara' title='/pmwiki/pmwiki.php/VideoGame/SengokuBasara' data-format='VmlkZW9HYW1lL1Nlbmdva3VCYXNhcmE='>Sengoku Basara</a></em> fanfics (set both in the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/SengokuPeriod' title='/pmwiki/pmwiki.php/UsefulNotes/SengokuPeriod' data-format='VXNlZnVsTm90ZXMvU2VuZ29rdVBlcmlvZA=='>Sengoku Period</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ModernAUFic' title='/pmwiki/pmwiki.php/Main/ModernAUFic' data-format='W1tNb2Rlcm5BVUZpYyBtb2Rlcm4gdGltZXNdXQ=='>modern times</a>), <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/DateMasamune' title='/pmwiki/pmwiki.php/UsefulNotes/DateMasamune' data-format='VXNlZnVsTm90ZXMvRGF0ZU1hc2FtdW5l'>Date Masamune</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MisterSeahorse' title='/pmwiki/pmwiki.php/Main/MisterSeahorse' data-format='W1tNaXN0ZXJTZWFob3JzZSBTYW5hZGEgWXVraW11cmFdXQ=='>Sanada Yukimura</a>'s son Masa accidentally ingests a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicPotion' title='/pmwiki/pmwiki.php/Main/MagicPotion' data-format='TWFnaWNQb3Rpb24='>Magic Potion</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AWizardDidIt' title='/pmwiki/pmwiki.php/Main/AWizardDidIt' data-format='W1tBV2l6YXJkRGlkSXQgYnJld2VkIHVwXV0='>brewed up</a> by Kyogoku Maria which gives him a Hyde-like other half dubbed "Sei". While Masa is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGuy' title='/pmwiki/pmwiki.php/Main/NiceGuy' data-format='e3tuaWNlfEd1eX19'>nice</a> and considerate, Sei is every negative emotion Masa feels, mostly anger, which is shown during the Toyotomi massacre he commits as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrusadingWidow' title='/pmwiki/pmwiki.php/Main/CrusadingWidow' data-format='W1tDcnVzYWRpbmdXaWRvdyByZXZlbmdlXV0='>revenge</a> for Masa's boyfriend Oyamada Nobushige's death. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TalesOfSonicTheHedgehog' title='/pmwiki/pmwiki.php/Fanfic/TalesOfSonicTheHedgehog' data-format='RmFuZmljL1RhbGVzT2ZTb25pY1RoZUhlZGdlaG9n'>Tales of Sonic the Hedgehog</a></em>: Robotnik <span class="spoiler" title="you can set spoilers visible by default on your profile" >describes himself as the Hyde to Julian's Jekyll, which the author confirms in the post-chapter note. As explained, Julian <em>always</em> had darker desires like a thirst for power and wanting to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeOverTheWorld' title='/pmwiki/pmwiki.php/Main/TakeOverTheWorld' data-format='VGFrZU92ZXJUaGVXb3JsZA=='>Take Over the World</a>; the ROCC explosion just released him from his inhibitions and restraint. Everything Julian Kintobor fantasized about and kept under control, Dr. Robotnik does the <em>instant</em> it occurs to him</span>. </li><li> Ichinodō Shichido of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TalesOfTheUndiscoveredSwords' title='/pmwiki/pmwiki.php/Fanfic/TalesOfTheUndiscoveredSwords' data-format='RmFuZmljL1RhbGVzT2ZUaGVVbmRpc2NvdmVyZWRTd29yZHM='>Tales of the Undiscovered Swords</a></em>, whose Jekyll side is polite, full of moral conviction and determination to distance himself from his ugly background as a Muramasa sword owned by a murderous master and whose Hyde side is sadistic, twisted and calls the Jekyll side's efforts to resist murderous temptations "delusional". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/OnePiece' title='/pmwiki/pmwiki.php/Manga/OnePiece' data-format='W1tNYW5nYS9PbmVQaWVjZSBUb255IFRvbnkgQ2hvcHBlcl1d'>Tony Tony Chopper</a> creates this dynamic in himself in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ThisBites' title='/pmwiki/pmwiki.php/Fanfic/ThisBites' data-format='RmFuZmljL1RoaXNCaXRlcw=='>This Bites!</a></em>. After doing research in Alabasta, Chopper created an enzyme to drastically increase his intelligence to gain the full potential of the Human-Human Fruit. Unfortunately, the increase in intelligence came with an equal <em>decrease</em> in morality and impulse control. Now Chopper often slips into a full-on <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MadScientist' title='/pmwiki/pmwiki.php/Main/MadScientist' data-format='TWFkU2NpZW50aXN0'>Mad Scientist</a> all too eager to vivisect his own teammates to learn what he can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForScience' title='/pmwiki/pmwiki.php/Main/ForScience' data-format='Rm9yU2NpZW5jZQ=='>For Science!</a>. It normally takes a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TapOnTheHead' title='/pmwiki/pmwiki.php/Main/TapOnTheHead' data-format='VGFwT25UaGVIZWFk'>Tap on the Head</a> to force Chopper back into his normal mentality, though he has been training to overcome his inner Hyde himself. </li><li> As a result of a spell in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/YouCallThatACostume' title='/pmwiki/pmwiki.php/Fanfic/YouCallThatACostume' data-format='RmFuZmljL1lvdUNhbGxUaGF0QUNvc3R1bWU='>You Call That a Costume?</a></em>, Pinkie turns into her alter-ego, Pinkamena, because she was dressed as Mr. Hyde. Downplayed with Twilight in that although she has to struggle not to lose herself to Midnight Sparkle, she is still in control of her Midnight Sparkle form. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');"> Films — Animation </div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ScoobyDooAndTheReluctantWerewolf' title='/pmwiki/pmwiki.php/WesternAnimation/ScoobyDooAndTheReluctantWerewolf' data-format='V2VzdGVybkFuaW1hdGlvbi9TY29vYnlEb29BbmRUaGVSZWx1Y3RhbnRXZXJld29sZg=='>Scooby-Doo! and the Reluctant Werewolf</a></em>, one of the monster racers was a spoof of Dr. Jekyll and Mr. Hyde in the form of a mild-mannered gentleman named Dr. Jackal who repeatedly and involuntarily transformed into a hideous lunatic named Mr. Snide. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');"> Films — Live-Action </div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheAdultVersionOfJekyllAndHide' title='/pmwiki/pmwiki.php/Film/TheAdultVersionOfJekyllAndHide' data-format='RmlsbS9UaGVBZHVsdFZlcnNpb25PZkpla3lsbEFuZEhpZGU='>The Adult Version of Jekyll and Hide</a></em>: Somewhat different here in that both Jekyll and Hyde (Leeder and Hide) are homicidal. <!--* ''Film/AngelHeart1987'' with Creator/MickeyRourke.--> </li><li> A major twist in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Atlantics' title='/pmwiki/pmwiki.php/Film/Atlantics' data-format='RmlsbS97e0F0bGFudGljc319'>Atlantics</a></em>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Detective Issa is hell-bend on catching Souleiman, and convinced he's around and responsible for all the fires. It turns out that Issa's fainting spells result in him being possessed by Souleiman's ghost, and that he is unknowingly responsible for all the crimes he's investigating.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BeforeIHang' title='/pmwiki/pmwiki.php/Film/BeforeIHang' data-format='RmlsbS9CZWZvcmVJSGFuZw=='>Before I Hang</a></em>: After taking the age-reversal serum, Dr. Garth is occasionally overcome by a sudden urge to kill induced by the presence of an executed murderer's blood in his system. Garth does not remember committing these murders. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BiggerThanLife' title='/pmwiki/pmwiki.php/Film/BiggerThanLife' data-format='RmlsbS9CaWdnZXJUaGFuTGlmZQ=='>Bigger Than Life</a></em> shows the schoolteacher Ed Avery abusing his prescription medication and going from an overworked frustrated teacher and husband to a psychopathic and abusive father, with an authoritarian attitude to teaching children. It's implied in the film that these attitudes and feelings were within him all along, but the drug simply provided an outlet. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CitizenKane' title='/pmwiki/pmwiki.php/Film/CitizenKane' data-format='RmlsbS9DaXRpemVuS2FuZQ=='>Citizen Kane</a></em>, Charles Foster Kane tells Thatcher early on, "The trouble is, you don't realize that you're talking to two people", referring to himself as both a man of wealth and as a man of the people. One of the main points of the movie is the internal war between those two sides. <span class="spoiler" title="you can set spoilers visible by default on your profile" >It can be argued that both sides lose by the end of the movie.</span> <!--* ''Film/DrHeckylAndMrHype'': Parodied. This one differs in that the original "good" alter-ego is the ugly one.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DrJekyllAndMsHyde' title='/pmwiki/pmwiki.php/Film/DrJekyllAndMsHyde' data-format='RmlsbS9Eckpla3lsbEFuZE1zSHlkZQ=='>Dr. Jekyll & Ms. Hyde</a></em>, itself a comedic remake of the darker <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DoctorJekyllAndSisterHyde' title='/pmwiki/pmwiki.php/Film/DoctorJekyllAndSisterHyde' data-format='RmlsbS9Eb2N0b3JKZWt5bGxBbmRTaXN0ZXJIeWRl'>Doctor Jekyll and Sister Hyde</a></em>, parodies the trope, with meek scientist Richard Jacks turning into a lustful, cutthroat <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBender' title='/pmwiki/pmwiki.php/Main/GenderBender' data-format='W1tHZW5kZXJCZW5kZXIgZmVtYWxlIGFsdGVyIGVnb11d'>female alter ego</a> named Helen Hyde via a recreation of his ancestor Henry Jekyll's formula. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >The protagonist and Tyler Durden</span> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FightClub' title='/pmwiki/pmwiki.php/Film/FightClub' data-format='RmlsbS9GaWdodENsdWI='>Fight Club</a></em>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LampshadeHanging' title='/pmwiki/pmwiki.php/Main/LampshadeHanging' data-format='e3tMYW1wc2hhZGV8SGFuZ2luZ319ZA=='>Lampshaded</a> by Marla: "You're Dr. Jekyll and Mr. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Jerkass' title='/pmwiki/pmwiki.php/Main/Jerkass' data-format='W1t7e0plcmthc3N9fSBKYWNrYXNzXV0='>Jackass</a>." <!--* [[spoiler:David Callaway and Charlie]] in ''Film/HideAndSeek''.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/IMonster' title='/pmwiki/pmwiki.php/Film/IMonster' data-format='RmlsbS9JTW9uc3Rlcg=='>I, Monster</a></em> follows <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='W1tMaXRlcmF0dXJlL1RoZVN0cmFuZ2VDYXNlT2ZEckpla3lsbEFuZE1ySHlkZSB0aGUgb3JpZ2luYWwgbm92ZWxdXQ=='>the original novel</a> quite closely but changes the characters' names in the hope of catching the viewers by surprise. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Film/JekyllAndHydeTogetherAgain' title='/pmwiki/pmwiki.php/Film/JekyllAndHydeTogetherAgain' data-format='RmlsbS9KZWt5bGxBbmRIeWRlVG9nZXRoZXJBZ2Fpbg=='>Jekyll And Hyde Together Again</a></em> has Mark Blankfield going from humble doctor to drugged-out sex-crazed swinger. </li><li> In the 1970 film <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Film/TheManWhoHauntedHimself' title='/pmwiki/pmwiki.php/Film/TheManWhoHauntedHimself' data-format='RmlsbS9UaGVNYW5XaG9IYXVudGVkSGltc2VsZg=='>The Man Who Haunted Himself</a></em>, rather than one character (played by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RogerMoore' title='/pmwiki/pmwiki.php/Creator/RogerMoore' data-format='Q3JlYXRvci9Sb2dlck1vb3Jl'>Roger Moore</a>) manifesting two personalities, there are two Roger Moore's running around, with the Hyde character gradually taking over the Jekyll character's life until he's the one assumed to be the imposter. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MeMyselfAndIrene' title='/pmwiki/pmwiki.php/Film/MeMyselfAndIrene' data-format='RmlsbS9NZU15c2VsZkFuZElyZW5l'>Me, Myself & Irene</a></em> has this with the main character having a dual personality, with both facets jointly displaying this trope: nice cop Charlie and bad cop Hank. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMummy2017' title='/pmwiki/pmwiki.php/Film/TheMummy2017' data-format='RmlsbS9UaGVNdW1teTIwMTc='>The Mummy (2017)</a></em> features Dr. Henry Jekyll, the head scientist of the Ancient organisation known as Prodigium. Like his literal counterpart he of course has an alter ego - Edward Hyde - who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanoidAbomination' title='/pmwiki/pmwiki.php/Main/HumanoidAbomination' data-format='W1tIdW1hbm9pZEFib21pbmF0aW9uIGhhcyBzb21lIG1vbnN0cm91cyBmZWF0dXJlcywgYnV0IGVsc2UgbG9va3MganVzdCBsaWtlIEpla3lsbF1d'>has some monstrous features, but else looks just like Jekyll</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1963' title='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1963' data-format='RmlsbS9UaGVOdXR0eVByb2Zlc3NvcjE5NjM='>The Nutty Professor (1963)</a></em>: Julius Kelp (Sherman Klump in <a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1996' title='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1996' data-format='W1tGaWxtL1RoZU51dHR5UHJvZmVzc29yMTk5NiB0aGUgcmVtYWtlXV0='>the remake</a>) and his alter ego Buddy Love are a more family-friendly variant; Kelp/Klump is a nebbish with virtually no social graces, while Buddy Love is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCasanova' title='/pmwiki/pmwiki.php/Main/TheCasanova' data-format='W1tUaGVDYXNhbm92YSBDYXNhbm92YV1d'>Casanova</a> who oozes charisma. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/OtherHalves' title='/pmwiki/pmwiki.php/Film/OtherHalves' data-format='RmlsbS9PdGhlckhhbHZlcw=='>Other Halves</a></em> is about a dating app that manifests and then unleashes the user's "other half", or id. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Persona1966' title='/pmwiki/pmwiki.php/Film/Persona1966' data-format='RmlsbS9QZXJzb25hMTk2Ng=='>Persona (1966)</a></em>: The dynamic between Elisabet and Sister Alma; the strange scenes in which one turns the other's head towards her; the reaction of Mr. Vogler to Anna. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Norman Bates and his mother</span> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Psycho' title='/pmwiki/pmwiki.php/Film/Psycho' data-format='RmlsbS97e1BzeWNob319'>Psycho</a></em>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItWasHisSled' title='/pmwiki/pmwiki.php/Main/ItWasHisSled' data-format='W1tJdFdhc0hpc1NsZWQgT25seSBzcG9pbGVyZWQgYmVjYXVzZV1d'>Only spoilered because</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AlfredHitchcock' title='/pmwiki/pmwiki.php/Creator/AlfredHitchcock' data-format='Q3JlYXRvci9BbGZyZWRIaXRjaGNvY2s='>Alfred Hitchcock</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrandfatherClause' title='/pmwiki/pmwiki.php/Main/GrandfatherClause' data-format='W1tHcmFuZGZhdGhlckNsYXVzZSBkb2VzbiYjMDM5O3Qgd2FudCB1cyB0byBzcG9pbCB0aGUgbW92aWUgZm9yIG90aGVycy5dXQ=='>doesn't want us to spoil the movie for others.</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/RepoTheGeneticOpera' title='/pmwiki/pmwiki.php/Film/RepoTheGeneticOpera' data-format='RmlsbS9SZXBvVGhlR2VuZXRpY09wZXJh'>Repo! The Genetic Opera</a></em> has Nathan, doting father by day, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoForHire' title='/pmwiki/pmwiki.php/Main/PsychoForHire' data-format='W1tQc3ljaG9Gb3JIaXJlIFJlcG8gTWFuXV0='>Repo Man</a> by night. <!--* [[TokenGoodTeammate Glen]] and [[EvilTwin Glenda]] from ''Film/SeedOfChucky''.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SexualChemistry' title='/pmwiki/pmwiki.php/Film/SexualChemistry' data-format='RmlsbS9TZXh1YWxDaGVtaXN0cnk='>Sexual Chemistry</a></em>: Our hero doctor is trying to develop a drug to increase libido, and gets more than he bargained for. This one differs in that his new alter ego isn't evil. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Split' title='/pmwiki/pmwiki.php/Film/Split' data-format='RmlsbS97e1NwbGl0fX0='>Split</a></em>: Kevin has 24 personalities. They range the gamut from extroverted fashion designer Barry to Central Asian history buff Orwell to the kidnapping Dennis to <span class="spoiler" title="you can set spoilers visible by default on your profile" >The Beast, who combines animalistic strength and an insane ideology about suffering</span>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TotalRecall1990' title='/pmwiki/pmwiki.php/Film/TotalRecall1990' data-format='RmlsbS9Ub3RhbFJlY2FsbDE5OTA='>Total Recall (1990)</a></em>, Quaid is actually an implanted personality of the villain Hauser... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OrWasItADream' title='/pmwiki/pmwiki.php/Main/OrWasItADream' data-format='W1tPcldhc0l0QURyZWFtIG1heWJlXV0='>maybe</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheTwoFacesOfDrJekyll' title='/pmwiki/pmwiki.php/Film/TheTwoFacesOfDrJekyll' data-format='RmlsbS9UaGVUd29GYWNlc09mRHJKZWt5bGw='>The Two Faces of Dr. Jekyll</a></em> has an interesting variation. Dr. Jekyll is hirsute, unkempt, ill-tempered and mannerless; Hyde is clean-shaven, well-dressed, well-mannered, and charming. But Jekyll's still a decent guy, and Hyde is thoroughly depraved and evil. <!--* Nick and Francois in ''Film/YouthInRevolt''.--> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');"> Literature </div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AmericanGods' title='/pmwiki/pmwiki.php/Literature/AmericanGods' data-format='TGl0ZXJhdHVyZS9BbWVyaWNhbkdvZHM='>American Gods</a></em>, it is revealed at the end and hinted throughout that the paired Slavic gods Czernobog (which translates to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilCounterpart' title='/pmwiki/pmwiki.php/Main/EvilCounterpart' data-format='W1tFdmlsQ291bnRlcnBhcnQgQmxhY2sgR29kXV0='>Black God</a>) and Bielebog (White God) are a Jekyll and Hyde. <!--* Odetta and Detta in ''Literature/TheDarkTower''.--> </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Dexter' title='/pmwiki/pmwiki.php/Literature/Dexter' data-format='TGl0ZXJhdHVyZS97e0RleHRlcn19'>Dexter</a></em>, the lovable <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialKiller' title='/pmwiki/pmwiki.php/Main/SerialKiller' data-format='U2VyaWFsS2lsbGVy'>Serial Killer</a> is motivated to kill by a sort of being/other personality, the Dark Passenger. </li><li> "A Drug on the Market" by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/KimNewman' title='/pmwiki/pmwiki.php/Creator/KimNewman' data-format='Q3JlYXRvci9LaW1OZXdtYW4='>Kim Newman</a> is about what happens when a consortium sells Jekyll's formula commercially. Among the test subjects is a clergyman who becomes a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBender' title='/pmwiki/pmwiki.php/Main/GenderBender' data-format='W1tHZW5kZXJCZW5kZXIgbG9vc2Ugd29tYW5dXQ=='>loose woman</a> and an anarchist whose "dark side" runs off to get an office job. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EdenGreen' title='/pmwiki/pmwiki.php/Literature/EdenGreen' data-format='TGl0ZXJhdHVyZS9FZGVuR3JlZW4='>Eden Green</a></em>'s needle-humans often develop darker 'backup' personalities in order to deal with the horror-show their bodies have become. </li><li> The third book of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ExtremeMonsters' title='/pmwiki/pmwiki.php/Literature/ExtremeMonsters' data-format='TGl0ZXJhdHVyZS9FeHRyZW1lTW9uc3RlcnM='>Extreme Monsters</a></em> book series, <em>Meet Mr. Hydeous</em>, introduces Doc's nephew Gerald, who has little interest in extreme sports. Gerald ends up drinking a potion that turns him into Mr. Hydeous and his alter ego starts competing against the Extreme Monsters by joining Team Pendant. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Tyler Durden and the narrator</span> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FightClub' title='/pmwiki/pmwiki.php/Literature/FightClub' data-format='TGl0ZXJhdHVyZS9GaWdodENsdWI='>Fight Club</a></em>, though you <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItWasHisSled' title='/pmwiki/pmwiki.php/Main/ItWasHisSled' data-format='W1tJdFdhc0hpc1NsZWQgcHJvYmFibHkga25vdyB0aGlzIGFscmVhZHldXQ=='>probably know this already</a>. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Novelization' title='/pmwiki/pmwiki.php/Main/Novelization' data-format='e3tOb3ZlbGl6YXRpb259fQ=='>Novelization</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Halloween1978' title='/pmwiki/pmwiki.php/Film/Halloween1978' data-format='RmlsbS9IYWxsb3dlZW4xOTc4'>Halloween (1978)</a></em> claims a case of this to be the motive for The Shape's killing spree, with Michael as the "Jekyll" and Enda as the "Hyde". </li><li> The plot of <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/TheJekyllLegacy' title='/pmwiki/pmwiki.php/Literature/TheJekyllLegacy' data-format='TGl0ZXJhdHVyZS9UaGVKZWt5bGxMZWdhY3k='>The Jekyll Legacy</a></em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertBloch' title='/pmwiki/pmwiki.php/Creator/RobertBloch' data-format='Q3JlYXRvci9Sb2JlcnRCbG9jaA=='>Robert Bloch</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AndreNorton' title='/pmwiki/pmwiki.php/Creator/AndreNorton' data-format='Q3JlYXRvci9BbmRyZU5vcnRvbg=='>Andre Norton</a> revolves around Hester Lane discovering she's really the niece of the missing (actually deceased) <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='W1tMaXRlcmF0dXJlL1RoZVN0cmFuZ2VDYXNlT2ZEckpla3lsbEFuZE1ySHlkZSBEci4gSGVucnkgSmVreWxsXV0='>Dr. Henry Jekyll</a>, right around the time that a handful of murders similar to one Hyde committed are happening. It turns out to be someone who's been using Jekyll's formula to become their own "Mr. Hyde", though unlike the original Jekyll, this person took the potion by accident and now <em>delights</em> in their evil rather than being ashamed of it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLittleStranger' title='/pmwiki/pmwiki.php/Literature/TheLittleStranger' data-format='TGl0ZXJhdHVyZS9UaGVMaXR0bGVTdHJhbmdlcg=='>The Little Stranger</a></em> has a variation. The colleague of protagonist Dr. Faraday speculates that the hauntings at Hundreds Hall are a Jekyll-and-Hyde situation, with a shadow self fractured off from someone's worst impulses causing all the misfortunes. <span class="spoiler" title="you can set spoilers visible by default on your profile" >He is correct; Faraday's anger and resentment have been manifesting as a malevolent poltergeist, with its own separate lifelike body.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Lolita' title='/pmwiki/pmwiki.php/Literature/Lolita' data-format='TGl0ZXJhdHVyZS97e0xvbGl0YX19'>Lolita</a></em> has the whole dynamic between Humbert and Quilty leading to the frankly trippy scenes at the end, the chase, and especially the murder. <!--* Smeagol and Gollum in ''Literature/TheLordOfTheRings''.--> </li><li> Jekyll's transformation is inverted and averted by Julian Advent of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Nightside' title='/pmwiki/pmwiki.php/Literature/Nightside' data-format='TGl0ZXJhdHVyZS97e05pZ2h0c2lkZX19'>Nightside</a></em> series, who faced the same choice as Jekyll when he discovered a similar formula, but chose to drink the version that brought his <em>Good</em> side to the fore, making him <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCape' title='/pmwiki/pmwiki.php/Main/TheCape' data-format='VGhlQ2FwZQ=='>The Cape</a> instead of this trope. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PleaseDontTellMyParentsYouBelieveHer' title='/pmwiki/pmwiki.php/Literature/PleaseDontTellMyParentsYouBelieveHer' data-format='TGl0ZXJhdHVyZS9QbGVhc2VEb250VGVsbE15UGFyZW50c1lvdUJlbGlldmVIZXI='>Please Don't Tell My Parents You Believe Her</a></em>, the retired supervillain First Horseman theorizes the main character, Penny, had a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DownplayedTrope' title='/pmwiki/pmwiki.php/Main/DownplayedTrope' data-format='W1tEb3ducGxheWVkVHJvcGUgbWlsZCBjYXNlXV0='>mild case</a> of splitting into a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntiVillain' title='/pmwiki/pmwiki.php/Main/AntiVillain' data-format='W1tBbnRpVmlsbGFpbiBtaWxkbHkgdmlsbGFpbm91c11d'>mildly villainous</a> personality called "Bad Penny" who a mind-reader confirms is almost the same as Penny. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AScannerDarkly' title='/pmwiki/pmwiki.php/Literature/AScannerDarkly' data-format='TGl0ZXJhdHVyZS9BU2Nhbm5lckRhcmtseQ=='>A Scanner Darkly</a></em> has the main character hunting down a drug dealer <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HiredToHuntYourself' title='/pmwiki/pmwiki.php/Main/HiredToHuntYourself' data-format='W1tIaXJlZFRvSHVudFlvdXJzZWxmIHdobyBpcyBpbiBmYWN0IGhpbXNlbGZdXQ=='>who is in fact himself</a>, having developed split personalities from the drug. <!--* In ''Literature/SkulduggeryPleasant'', there's [[spoiler:Darquesse for Valkyrie]] and [[spoiler:Lord Vile for Skulduggery]].--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='TGl0ZXJhdHVyZS9UaGVTdHJhbmdlQ2FzZU9mRHJKZWt5bGxBbmRNckh5ZGU='>The Strange Case of Dr. Jekyll and Mr. Hyde</a></em>, which is the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamers' title='/pmwiki/pmwiki.php/Main/TropeNamers' data-format='e3tUcm9wZSBOYW1lcnxzfX0='>Trope Namer</a>, gives us the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnbuiltTrope' title='/pmwiki/pmwiki.php/Main/UnbuiltTrope' data-format='W1tVbmJ1aWx0VHJvcGUgdW5idWlsdCB2YXJpYW50IG9mIHRoaXMgZHluYW1pY11d'>unbuilt variant of this dynamic</a>. Henry Jekyll is a good man with evil urges who deliberately created a potion to turn himself into Edward Hyde for a selfish purpose and, up until a murder was committed, derived pleasure from his darker self's actions. However, eventually he started changing even without the potion, and had to create a new one to ward off Hyde taking control. Recreating the formula proved impossible, and he wrote a letter to explain everything before dying. The idea of Jekyll and Hyde being the same individual was originally a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwistEnding' title='/pmwiki/pmwiki.php/Main/TwistEnding' data-format='VHdpc3RFbmRpbmc='>Twist Ending</a>; the reason for almost all adaptations removing this aspect is that the twist eventually became <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItWasHisSled' title='/pmwiki/pmwiki.php/Main/ItWasHisSled' data-format='W1tJdFdhc0hpc1NsZWQgd2VsbC1rbm93bl1d'>well-known</a>. </li><li> In the short story "The Strange Case of Dr. Sacker and Mr. Hope" by James Lovegrove, Jekyll never tries the formula himself. Instead, it is taken by <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SherlockHolmes' title='/pmwiki/pmwiki.php/Literature/SherlockHolmes' data-format='TGl0ZXJhdHVyZS9TaGVybG9ja0hvbG1lcw=='>Sherlock Holmes</a>, who believes it to be the "good" formula, that will rid him of all the negative emotions that get in the way of being a detective. This doesn't work out for him. </li><li> In the second <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WelkinWeasels' title='/pmwiki/pmwiki.php/Literature/WelkinWeasels' data-format='TGl0ZXJhdHVyZS9XZWxraW5XZWFzZWxz'>Welkin Weasels</a></em> trilogy, the mild-mannered gerbil Professor Speckle Jyde takes a potion to become the rude and belligerent shrew Lycus Heck. In this case, Jyde is well aware of the potion's effects, and believes taking an occasional holiday from being polite and mild mannered is probably healthy. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Xanth' title='/pmwiki/pmwiki.php/Literature/Xanth' data-format='TGl0ZXJhdHVyZS97e1hhbnRofX0='>Xanth</a></em> book <em>Crewel Lye</em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >there's a Magician named <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/YinYang' title='/pmwiki/pmwiki.php/Main/YinYang' data-format='WWluWWFuZw=='>Yin Yang</a> who spends a lengthy amount of time pretending to be two different people, Yin and Yang, who were having a competition to see which one should be heir to the current King. It turns out that the competition was about which side of his personality should take over</span>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');"> Live-Action TV </div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AceLightning' title='/pmwiki/pmwiki.php/Series/AceLightning' data-format='U2VyaWVzL0FjZUxpZ2h0bmluZw=='>Ace Lightning</a></em> has Random Virus, who has two personalities, good and evil, signified by his cyborg eye being green or red, respectively. He doesn't seem to have much control over whether he's good or evil, although Ace managed to turn him good temporarily by reminding him that he was a Lightning Knight, and therefore a 'good guy'. </li><li> Hal from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BeingHumanUK' title='/pmwiki/pmwiki.php/Series/BeingHumanUK' data-format='U2VyaWVzL0JlaW5nSHVtYW5VSw=='>Being Human (UK)</a></em> appears to be this with his vampire side. Strange, seeing as neither Mitchell nor Adam appeared to be this, and Hal has drunk blood without going full Hyde. It's implied that this is because of his continuous, long-running suppression of his vampire instincts, having lasted about fifty-five <em>years</em> longer than either, as the longest either of them has gone straight is a few months. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBigBangTheory' title='/pmwiki/pmwiki.php/Series/TheBigBangTheory' data-format='U2VyaWVzL1RoZUJpZ0JhbmdUaGVvcnk='>The Big Bang Theory</a></em>, after Penny wakes up with Raj, she refers to herself as Dr. Jekyll and Miss Whore. </li><li> Playing this trope painfully straight is Darkstrike from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BirdsOfPrey2002' title='/pmwiki/pmwiki.php/Series/BirdsOfPrey2002' data-format='U2VyaWVzL0JpcmRzT2ZQcmV5MjAwMg=='>Birds of Prey (2002)</a></em>: he's a vigilante hunting the Creeper, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialKiller' title='/pmwiki/pmwiki.php/Main/SerialKiller' data-format='U2VyaWFsS2lsbGVy'>Serial Killer</a> who killed his girlfriend. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Buffyverse' title='/pmwiki/pmwiki.php/Franchise/Buffyverse' data-format='RnJhbmNoaXNlL3t7QnVmZnl2ZXJzZX19'>Buffyverse</a></em>: <ul ><li> Angel and Angelus, though at different times in both <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> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Angel' title='/pmwiki/pmwiki.php/Series/Angel' data-format='U2VyaWVzL3t7QW5nZWx9fQ=='>Angel</a></em>, it varies between Jekyll & Hyde and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnemyWithin' title='/pmwiki/pmwiki.php/Main/EnemyWithin' data-format='RW5lbXlXaXRoaW4='>Enemy Within</a>. Angel losing his soul always leads to the demon Angelus taking over, because Angelus is always there. Otherwise, Angel would, at least, not be able to vamp out, and probably keel over dead, being a corpse, without the demon animating him. For proof, see the season 2 finale of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Angel' title='/pmwiki/pmwiki.php/Series/Angel' data-format='U2VyaWVzL3t7QW5nZWx9fQ=='>Angel</a></em>. When he tries to vamp out on Pylea, <span class="spoiler" title="you can set spoilers visible by default on your profile" >the demon takes over completely and is a mindless, inhuman monster</span>. Angelus, particularly according to that example, is a blend of the demon's personality and sadism with Angel's memories and brain (but not his soul). When Angel loses his soul, it's gone, and all that's left is Angelus. <em>All</em> of those incidents where he's evil <em>are</em> Angelus. </li><li> The <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> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS3E4BeautyAndTheBeasts' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS3E4BeautyAndTheBeasts' data-format='W1tSZWNhcC9CdWZmeVRoZVZhbXBpcmVTbGF5ZXJTM0U0QmVhdXR5QW5kVGhlQmVhc3RzIEJlYXV0eSBhbmQgdGhlIEJlYXN0c11d'>Beauty and the Beasts</a>", which features a high school student drinking a chemical potion that turns him into a literal monster who abuses his girlfriend and attacks anyone who gets too close to her. Subverted in that it was revealed by the end of the episode that the potion didn't actually change his personality, it was just an excuse and he was really that heinous, and after using the potion for long enough he didn't even need it in order to transform anymore. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> of <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> Season 5 is <span class="spoiler" title="you can set spoilers visible by default on your profile" >Glory, a female <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PhysicalGod' title='/pmwiki/pmwiki.php/Main/PhysicalGod' data-format='UGh5c2ljYWxHb2Q='>Physical God</a> imprisoned within the body of Ben, a male human. Although Glory is the more powerful personality, Ben is still able to hamper her to some degree. In the season finale, the distinction between them starts to break down, with Glory beginning to feel genuine human emotions (like sympathy, guilt, and fear) and Ben becoming more callous and self-serving (like being willing to cooperate with Glory's plan in order to survive himself). Eventually they are able to switch back and forth rapid enough to actually talk to each other</span>. </li></ul></li><li> Season 6 of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Dexter' title='/pmwiki/pmwiki.php/Series/Dexter' data-format='U2VyaWVzL3t7RGV4dGVyfX0='>Dexter</a></em> has <span class="spoiler" title="you can set spoilers visible by default on your profile" >Travis and Professor Gellar</span> turning out to be just one person, they even try to Sixth Sense the twist for nine episodes. It was painfully obvious. </li><li> The main hook of <em>Do No Harm</em>: The title character is an ethical doctor who switches to a malevolent second personality at 8:25 pm each night and then reverts back at 8:25 am the following morning. After keeping this personality sedated with drugs for years, one day he finds that his body has become immune to them... Unleashing the other personality, now bent on destroying his life. <span class="spoiler" title="you can set spoilers visible by default on your profile" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SubvertedTrope' title='/pmwiki/pmwiki.php/Main/SubvertedTrope' data-format='W1tTdWJ2ZXJ0ZWRUcm9wZSBTdWJ2ZXJ0ZWRdXQ=='>Subverted</a> in the series finale when it was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheReveal' title='/pmwiki/pmwiki.php/Main/TheReveal' data-format='W1tUaGVSZXZlYWwgcmV2ZWFsZWRdXQ=='>revealed</a> that the benevolent personality was in fact the actual alter while the malevolent one was the original</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em>: Used with all the homages to the <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/UniversalHorror' title='/pmwiki/pmwiki.php/Franchise/UniversalHorror' data-format='RnJhbmNoaXNlL1VuaXZlcnNhbEhvcnJvcg=='>Universal Horror</a> version of the story with Sorenson in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS13E2PlanetOfEvil' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS13E2PlanetOfEvil' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMTNFMlBsYW5ldE9mRXZpbCBQbGFuZXQgb2YgRXZpbF1d'>Planet of Evil</a>", whose addiction to antimatter repeatedly transforms him into a monster. <!--** Done rather well with [[spoiler:Professor Yana]] and the Master.--> <!--** [[spoiler:The Doctor and the Dream Lord.]]--> <!--** It happens again later in the episode "Nightmare in Silver" with [[spoiler:The Eleventh Doctor]]/Mr. Clever.--> </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheDukesOfHazzard' title='/pmwiki/pmwiki.php/Series/TheDukesOfHazzard' data-format='U2VyaWVzL1RoZUR1a2VzT2ZIYXp6YXJk'>The Dukes of Hazzard</a></em>, Luke inadvertently ingests a mind-altering serum. At first, he's just snarky and testy to his cousins, but soon becomes despicably evil, terrorizing Hazzard, robbing the bank, disrespecting Uncle Jesse, and even <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RapeIsASpecialKindOfEvil' title='/pmwiki/pmwiki.php/Main/RapeIsASpecialKindOfEvil' data-format='W1tSYXBlSXNBU3BlY2lhbEtpbmRPZkV2aWwgYmVjb21pbmcgYSBtYXNoZXJdXQ=='>becoming a masher</a>. <!--* Scorpius's suicidal program inside Crichton's head in ''Series/{{Farscape}}''.--> </li><li> In the original live-action series of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/FilmationsGhostbusters' title='/pmwiki/pmwiki.php/WesternAnimation/FilmationsGhostbusters' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL0ZpbG1hdGlvbnNHaG9zdGJ1c3RlcnMgVGhlIEdob3N0IEJ1c3RlcnNdXQ=='>The Ghost Busters</a></em>, the ghost of Dr. Jekyll is one of the ghosts the Busters deal with as he materializes in the castle trying to cure himself of Hyde. Interestingly, Hyde is rendered as a separate entity from Jekyll, taking the form of an obnoxious man in a caveman outfit. <!-- * Niki and Jessica from ''Series/{{Heroes}}''.--> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderInvertedTrope' title='/pmwiki/pmwiki.php/Main/GenderInvertedTrope' data-format='W1tHZW5kZXJJbnZlcnRlZFRyb3BlIEdlbmRlci1JbnZlcnRlZF1d'>Gender-Inverted</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheImperfects' title='/pmwiki/pmwiki.php/Series/TheImperfects' data-format='U2VyaWVzL1RoZUltcGVyZmVjdHM='>The Imperfects</a></em>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Isabel Finch is a manifestation of Dr. Burke's Id.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/IronFist2017' title='/pmwiki/pmwiki.php/Series/IronFist2017' data-format='U2VyaWVzL0lyb25GaXN0MjAxNw=='>Iron Fist (2017)</a></em>: The second season introduces Mary Walker, a slightly more realistic version of Marvel's Typhoid Mary from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Daredevil' title='/pmwiki/pmwiki.php/ComicBook/Daredevil' data-format='Q29taWNCb29rL3t7RGFyZWRldmlsfX0='>Daredevil</a></em> comics. This version is a former special forces soldier and PTSD sufferer with a raging case of Hollywood dissociative identity disorder; "Mary" is a mild-mannered, fragile woman, while the amoral "Walker" has the military skills, being an effective mercenary despite her mental issues, able to take on the wielder of the Iron Fist with some smart planning and the right weapons. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Then at the end of the season, they both realize that there's a third, even more dangerous persona, born from the incident that caused their DID in the first place that neither of them knew about.</span> </li><li> The 1980s Japanese soap opera <em>Janus's Mirror</em> features Hiromi, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShrinkingViolet' title='/pmwiki/pmwiki.php/Main/ShrinkingViolet' data-format='U2hyaW5raW5nVmlvbGV0'>Shrinking Violet</a> with DID brought on by her grandmother's abuse, who has a dark side that's a badass <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JapaneseDelinquents' title='/pmwiki/pmwiki.php/Main/JapaneseDelinquents' data-format='e3tKYXBhbmVzZSBEZWxpbnF1ZW50fHN9fQ=='>Japanese Delinquent</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Jekyll' title='/pmwiki/pmwiki.php/Series/Jekyll' data-format='U2VyaWVzL3t7SmVreWxsfX0='>Jekyll</a></em> plays around with the dichotomy. For the first half of the series, Jackman ruins his life trying to minimize the damage Hyde could cause, particularly to his own family. Although Hyde is meant to be the most intelligent creature on the planet, his immature mind and Jackman's own substantial intelligence and careful planning allow Jackman to keep a tight hold on Hyde's actions. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JekyllAndHyde2015' title='/pmwiki/pmwiki.php/Series/JekyllAndHyde2015' data-format='U2VyaWVzL0pla3lsbEFuZEh5ZGUyMDE1'>Jekyll and Hyde (2015)</a></em> has Robert Jekyll, grandson of the infamous Dr. Jekyll, and his alternate personality, Hyde. In this Hyde emerges when Jekyll <em>doesn't</em> take certain drugs. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JuliaJekyllAndHarrietHyde' title='/pmwiki/pmwiki.php/Series/JuliaJekyllAndHarrietHyde' data-format='U2VyaWVzL0p1bGlhSmVreWxsQW5kSGFycmlldEh5ZGU='>Julia Jekyll and Harriet Hyde</a></em> has the main character Julia Jekyll uncontrollably turn into a hairy monster called Harriet Hyde. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/KamenRider' title='/pmwiki/pmwiki.php/Franchise/KamenRider' data-format='RnJhbmNoaXNlL0thbWVuUmlkZXI='>Kamen Rider</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderDenO' title='/pmwiki/pmwiki.php/Series/KamenRiderDenO' data-format='U2VyaWVzL0thbWVuUmlkZXJEZW5P'>Kamen Rider Den-O</a></em> effectively has <em>four</em> Hydes, sometimes even five, courtesy of the Imagin that live on his time-traveling train and need to possess his body in order to interact with the outside world. Each one gives Ryotaro a radically different personality and appearance whenever they take control, although they're all played by the same actor. They're also all heroes, albeit sometimes of questionable effectiveness. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderFourze' title='/pmwiki/pmwiki.php/Series/KamenRiderFourze' data-format='U2VyaWVzL0thbWVuUmlkZXJGb3VyemU='>Kamen Rider Fourze</a></em>: The Cygnus Zodiarts develops a split personality upon using his Switch for the first time, his meek cosplay otaku persona suppressed by a vain <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkMessiah' title='/pmwiki/pmwiki.php/Main/DarkMessiah' data-format='RGFya01lc3NpYWg='>Dark Messiah</a>. The Gemini Switch has a similar effect. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderWizard' title='/pmwiki/pmwiki.php/Series/KamenRiderWizard' data-format='U2VyaWVzL0thbWVuUmlkZXJXaXphcmQ='>Kamen Rider Wizard</a></em>: Wiseman, leader of the Phantoms, and the White Wizard appear to have this relationship. It's subverted when it's revealed that the Wizard was always in complete control and was simply using his monstrous alter-ego to play both sides. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderExAid' title='/pmwiki/pmwiki.php/Series/KamenRiderExAid' data-format='U2VyaWVzL0thbWVuUmlkZXJFeEFpZA=='>Kamen Rider Ex-Aid</a></em>: The title character flips between his normal identity of caring doctor Hojo Emu and the brash, confident Genius Gamer M whenever he transforms, with an early upgrade allowing them to split into two bodies to become Ex-Aid at the same time. Both are equally heroic, until much later in the show when it comes out that "M" is actually Emu's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnemyWithout' title='/pmwiki/pmwiki.php/Main/EnemyWithout' data-format='RW5lbXlXaXRob3V0'>Enemy Without</a> Parado. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderRevice' title='/pmwiki/pmwiki.php/Series/KamenRiderRevice' data-format='U2VyaWVzL0thbWVuUmlkZXJSZXZpY2U='>Kamen Rider Revice</a></em>: Daiji Igarashi/Kamen Rider Live and Kagero/Kamen Rider Evil are a straight example, with their shared Driver changing forms to match whichever one is in control. Daiji eventually manages to kill Kagero, but in this case Jekyll on his own turns out to be much worse than Hyde. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MoonKnight2022' title='/pmwiki/pmwiki.php/Series/MoonKnight2022' data-format='U2VyaWVzL01vb25LbmlnaHQyMDIy'>Moon Knight (2022)</a></em>: From the start of the series, Marc Spector (and his secret identity, Moon Knight) and Steven Grant (and <em>his</em> secret identity, Mr. Knight) are shown as alternate personalities of someone with raging DID. (Initially, Marc knows about Steven, but not vice-versa.) Neither is technically a dark "Hyde", though; Marc is fully capable of competent violence, unlike the mild-mannered pacifist Steven, but retains a working sense of morality. However, it becomes increasingly clear through the series that there may be a third persona. This is eventually revealed to be <span class="spoiler" title="you can set spoilers visible by default on your profile" >the ruthlessly violent Jake Lockley, who emerges when even Marc can't handle a threat and usually solves it by killing everyone within reach</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Mouse2021' title='/pmwiki/pmwiki.php/Series/Mouse2021' data-format='U2VyaWVzL01vdXNlMjAyMQ=='>Mouse (2021)</a></em> plays with this. After a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrainTransplant' title='/pmwiki/pmwiki.php/Main/BrainTransplant' data-format='QnJhaW5UcmFuc3BsYW50'>Brain Transplant</a>, Ba-reum ends up with part of Yo-han's brain. All the evidence suggests Yo-han was a serial killer, so when Ba-reum starts having flashbacks to murders he assumes Yo-han's personality is still alive in his brain. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Actually, Ba-reum was the killer and Yo-han was innocent, so Ba-reum's original personality is the "Hyde" and Yo-han is the "Jekyll".</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MrMeaty' title='/pmwiki/pmwiki.php/Series/MrMeaty' data-format='U2VyaWVzL01yTWVhdHk='>Mr. Meaty</a></em>: After years of being showered with insults without getting mad (he chugs them deep inside), Parker finally explodes when a client insults his ribs specialty. The pent-up emotions turn him into a purple, Mr. Hyde monster called Incredible Jerk that throws hurtful insults left and right. Parker reverts back to normal when he's let off enough steam, but transforms against whenever anyone insults him again. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MurdochMysteries' title='/pmwiki/pmwiki.php/Series/MurdochMysteries' data-format='U2VyaWVzL011cmRvY2hNeXN0ZXJpZXM='>Murdoch Mysteries</a></em> episode "Excitable Chap", a mysterious Lurker begins not-exactly-terrorising ladies <span class="spoiler" title="you can set spoilers visible by default on your profile" >at the same time as James Pendrick is developing his new brain-enhancement drug. It inevitably seems that the state of unconsciousness he enters after his period of frenzied work is actually him acting out his subconscious desires as the Lurker. When the Lurker seemingly kills someone, Julia points out that if Pendrick isn't a natural killer, his Lurker wouldn't have murder in him either. It turns out that someone else has been taking the drug</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MyOwnWorstEnemy' title='/pmwiki/pmwiki.php/Series/MyOwnWorstEnemy' data-format='U2VyaWVzL015T3duV29yc3RFbmVteQ=='>My Own Worst Enemy</a></em> features a man leading a double life. His normal side is Henry and his alternate ego (that he doesn't know about) is the spy Edward, which is most likely an allusion to the original Dr. Henry Jekyll and Edward Hyde. Reverses the usual Jekyll/Hyde dynamic in that Edward is the original personality; Henry is a construct. While Edward is the edgier of the two personalities, he's not actually evil. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OnceUponATime2011' title='/pmwiki/pmwiki.php/Series/OnceUponATime2011' data-format='U2VyaWVzL09uY2VVcG9uQVRpbWUyMDEx'>Once Upon a Time (2011)</a></em> features the actual Dr. Jekyll and Mr. Hyde in Season 6. As is typical, Hyde is brutal, violent and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperStrength' title='/pmwiki/pmwiki.php/Main/SuperStrength' data-format='W1tTdXBlclN0cmVuZ3RoIGluaHVtYW5seSBzdHJvbmddXQ=='>inhumanly strong</a>; while Jekyll is intellectual, meek and nervous. Hyde is part of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBadDuumvirate' title='/pmwiki/pmwiki.php/Main/BigBadDuumvirate' data-format='QmlnQmFkRHV1bXZpcmF0ZQ=='>Big Bad Duumvirate</a> with the Evil Queen and was the iron-fisted dictator of the Land of Untold Stories. <span class="spoiler" title="you can set spoilers visible by default on your profile" >In a twist, it's revealed that he was originally the more moral of the two, and was actually a manifestation of Jekyll's passion rather than his dark side. He became more malevolent after Jekyll murdered the woman they both loved when she chose Hyde and framed him for the killing.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheOuterLimits1963' title='/pmwiki/pmwiki.php/Series/TheOuterLimits1963' data-format='U2VyaWVzL1RoZU91dGVyTGltaXRzMTk2Mw=='>The Outer Limits (1963)</a></em>: In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheOuterLimits1963S2E4ExpandingHuman' title='/pmwiki/pmwiki.php/Recap/TheOuterLimits1963S2E4ExpandingHuman' data-format='W1tSZWNhcC9UaGVPdXRlckxpbWl0czE5NjNTMkU0RXhwYW5kaW5nSHVtYW4gRXhwYW5kaW5nIEh1bWFuXV0='>Expanding Human</a>", a consciousness-expanding drug transforms one of its researchers physically and mentally, turning him back and forth between his normal self and a super-strong, super-intelligent alter ego who wants to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeOverTheWorld' title='/pmwiki/pmwiki.php/Main/TakeOverTheWorld' data-format='VGFrZU92ZXJUaGVXb3JsZA=='>Take Over the World</a> and convert or destroy the rest of humanity. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/PowerRangers' title='/pmwiki/pmwiki.php/Franchise/PowerRangers' data-format='RnJhbmNoaXNlL1Bvd2VyUmFuZ2Vycw=='>Power Rangers</a></em>: <ul ><li> Mesogog and Anton Mercer from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersDinoThunder' title='/pmwiki/pmwiki.php/Series/PowerRangersDinoThunder' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc0Rpbm9UaHVuZGVy'>Power Rangers: Dino Thunder</a></em>. Eventually Mesogog splits himself off from Mercer because he gets fed up with sharing. It frees the Rangers to not hold back against him, but he becomes even more effective due to being able to act more often and not just when he surfaces. </li><li> A similar example is the villains <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheChessmaster' title='/pmwiki/pmwiki.php/Main/TheChessmaster' data-format='W1tUaGVDaGVzc21hc3RlciBIZWNreWxdXQ=='>Heckyl</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBrute' title='/pmwiki/pmwiki.php/Main/TheBrute' data-format='W1tUaGVCcnV0ZSBTbmlkZV1d'>Snide</a> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersDinoCharge' title='/pmwiki/pmwiki.php/Series/PowerRangersDinoCharge' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc0Rpbm9DaGFyZ2U='>Power Rangers Dino Charge</a></em>. Played with, however, in that both personalities are firmly evil, just preferring different methods and disdaining the other's. Towards the end, Heckyl has a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeelFaceTurn' title='/pmwiki/pmwiki.php/Main/HeelFaceTurn' data-format='SGVlbEZhY2VUdXJu'>Heel–Face Turn</a>, and Snide uses some tech to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralSplitPersonality' title='/pmwiki/pmwiki.php/Main/LiteralSplitPersonality' data-format='W1tMaXRlcmFsU3BsaXRQZXJzb25hbGl0eSBjb21wbGV0ZWx5IHNlcGFyYXRlIHRoZW1dXQ=='>completely separate them</a>. </li></ul></li><li> Adam Worth from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Sanctuary2007' title='/pmwiki/pmwiki.php/Series/Sanctuary2007' data-format='U2VyaWVzL1NhbmN0dWFyeTIwMDc='>Sanctuary (2007)</a></em> is said to be the in-universe explanation for <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='W1tMaXRlcmF0dXJlL1RoZVN0cmFuZ2VDYXNlT2ZEckpla3lsbEFuZE1ySHlkZSB0aGUgbm92ZWxdXQ=='>the novel</a>. Neither personality is particularly stronger, but unlike most examples, both sides work in tandem. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Smallville' title='/pmwiki/pmwiki.php/Series/Smallville' data-format='U2VyaWVzL3t7U21hbGx2aWxsZX19'>Smallville</a></em>: When Clark tries to explain himself to Chloe about not being himself lately (Lionel Luthor has swapped bodies with him), she states that people sometimes act as Jekyll and then as Hyde but are the same after all. <!--** Davis Bloome/Doomsday.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='RnJhbmNoaXNlL1N0YXJUcmVr'>Star Trek</a></em>: <ul ><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekTheOriginalSeries' title='/pmwiki/pmwiki.php/Series/StarTrekTheOriginalSeries' data-format='U2VyaWVzL1N0YXJUcmVrVGhlT3JpZ2luYWxTZXJpZXM='>Star Trek: The Original Series</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekS1E5TheEnemyWithin' title='/pmwiki/pmwiki.php/Recap/StarTrekS1E5TheEnemyWithin' data-format='W1tSZWNhcC9TdGFyVHJla1MxRTVUaGVFbmVteVdpdGhpbiBUaGUgRW5lbXkgV2l0aGluXV0='>The Enemy Within</a>", a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TeleporterAccident' title='/pmwiki/pmwiki.php/Main/TeleporterAccident' data-format='W1tUZWxlcG9ydGVyQWNjaWRlbnQgdHJhbnNwb3J0ZXIgbWFsZnVuY3Rpb25dXQ=='>transporter malfunction</a> splits Kirk's good and evil sides. </li><li> A brainwashed Geordi is used as an assassin in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekTheNextGeneration' title='/pmwiki/pmwiki.php/Series/StarTrekTheNextGeneration' data-format='U2VyaWVzL1N0YXJUcmVrVGhlTmV4dEdlbmVyYXRpb24='>Star Trek: The Next Generation</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekTheNextGenerationS4E24TheMindsEye' title='/pmwiki/pmwiki.php/Recap/StarTrekTheNextGenerationS4E24TheMindsEye' data-format='W1tSZWNhcC9TdGFyVHJla1RoZU5leHRHZW5lcmF0aW9uUzRFMjRUaGVNaW5kc0V5ZSBUaGUgTWluZCYjMDM5O3MgRXllXV0='>The Mind's Eye</a>". </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekVoyager' title='/pmwiki/pmwiki.php/Series/StarTrekVoyager' data-format='U2VyaWVzL1N0YXJUcmVrVm95YWdlcg=='>Star Trek: Voyager</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/StarTrekVoyagerS3E17Darkling' title='/pmwiki/pmwiki.php/Recap/StarTrekVoyagerS3E17Darkling' data-format='W1tSZWNhcC9TdGFyVHJla1ZveWFnZXJTM0UxN0RhcmtsaW5nIERhcmtsaW5nXV0='>Darkling</a>" has <span class="spoiler" title="you can set spoilers visible by default on your profile" >the Doctor</span> develop a villainous split personality which he is unaware of as a result of <span class="spoiler" title="you can set spoilers visible by default on your profile" >making some unwise adjustments to his programming</span>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Supernatural' title='/pmwiki/pmwiki.php/Series/Supernatural' data-format='U2VyaWVzL3t7U3VwZXJuYXR1cmFsfX0='>Supernatural</a></em>: Kind-and-gentle human Sammy, arrogant-and-violent demonic Sammy. And then there is soulless robo Sammy... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheVampireDiaries' title='/pmwiki/pmwiki.php/Series/TheVampireDiaries' data-format='U2VyaWVzL1RoZVZhbXBpcmVEaWFyaWVz'>The Vampire Diaries</a></em>: <ul ><li> Stefan Salvatore has one side of his personality which is kind, caring, empathetic and compassionate and heroic and another side of his personality which is sociopathic, crazy, addictive, cold and ruthless (the "Ripper"). </li><li> Alaric Saltzman is a better example. Normally a good-hearted vampire hunter, he develops a serial killer Hyde persona from dying too often. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Wednesday' title='/pmwiki/pmwiki.php/Series/Wednesday' data-format='U2VyaWVzL3t7V2VkbmVzZGF5fX0='>Wednesday</a></em>, a "Hyde" is a monster born as a normal human whose transformation into the murderous, weird-looking Hyde is triggered by either psychological damage or some chemical reaction. Unlike other versions of the Hyde concept, this monster is usually controlled by a human "master" to whom it has undying loyalty. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Tyler</span>, the show's main Hyde, reveals that at first, he was frightened by his monstrous evil side but <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilFeelsGood' title='/pmwiki/pmwiki.php/Main/EvilFeelsGood' data-format='W1tFdmlsRmVlbHNHb29kIGxhdGVyIGNhbWUgdG8gbGlrZSBpdF1d'>later came to like it</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/WhereInTimeIsCarmenSandiego' title='/pmwiki/pmwiki.php/Series/WhereInTimeIsCarmenSandiego' data-format='U2VyaWVzL1doZXJlSW5UaW1lSXNDYXJtZW5TYW5kaWVnbw=='>Where In Time Is Carmen Sandiego</a></em> has a girl named Jacqueline Hyde who jumps from sweet, innocent schoolgirl to raving, snarling harpy at the drop of a hat. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');"> Multimedia Franchises </div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Nasuverse' title='/pmwiki/pmwiki.php/Franchise/Nasuverse' data-format='RnJhbmNoaXNlL3t7TmFzdXZlcnNlfX0='>Nasuverse</a></em>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamers' title='/pmwiki/pmwiki.php/Main/TropeNamers' data-format='e3tUcm9wZSBOYW1lcnxzfX0='>Trope Namer</a> shows up in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/FatePrototype' title='/pmwiki/pmwiki.php/Anime/FatePrototype' data-format='QW5pbWUvRmF0ZVByb3RvdHlwZQ=='>Fate/Prototype</a>: Fragments of Sky Silver</em> as Berserker, and in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FateGrandOrder' title='/pmwiki/pmwiki.php/VideoGame/FateGrandOrder' data-format='VmlkZW9HYW1lL0ZhdGVHcmFuZE9yZGVy'>Fate/Grand Order</a></em> as an Assassin whose main mechanic is transforming into a Berserker. Although Henry Jekyll remains a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGuy' title='/pmwiki/pmwiki.php/Main/NiceGuy' data-format='TmljZUd1eQ=='>Nice Guy</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Bishounen' title='/pmwiki/pmwiki.php/Main/Bishounen' data-format='e3tCaXNob3VuZW59fQ=='>Bishounen</a> in both media, Edward Hyde is a wolfman-like monster in <em>Fragments</em> but remains fully human with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnkemptBeauty' title='/pmwiki/pmwiki.php/Main/UnkemptBeauty' data-format='W1tVbmtlbXB0QmVhdXR5IHdpbGQgaGFpciBhbmQgYmxvb2RzaG90IGV5ZXNdXQ=='>wild hair and bloodshot eyes</a> in <em>Grand Order</em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');"> Music </div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> "Sacrifice" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Disturbed' title='/pmwiki/pmwiki.php/Music/Disturbed' data-format='TXVzaWMve3tEaXN0dXJiZWR9fQ=='>Disturbed</a> is about this trope, along with themes of "My other side is going to hurt you". </li><li> "Mz. Hyde" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Halestorm' title='/pmwiki/pmwiki.php/Music/Halestorm' data-format='TXVzaWMve3tIYWxlc3Rvcm19fQ=='>Halestorm</a> invokes the trope, but it's actually about a someone who's decided that she's going to stop pretending to be a wholesome, good girl and get kinky in the bedroom. </li><li> Mentioned in the chorus of the <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Blink182' title='/pmwiki/pmwiki.php/Music/Blink182' data-format='TXVzaWMvQmxpbmsxODI='>blink-182</a> song "Natives": <div class='indent'><em>They turn us loose in the night<br data-format="\\" />I'm fucking Jekyll and Hyde</em> </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/FiveFingerDeathPunch' title='/pmwiki/pmwiki.php/Music/FiveFingerDeathPunch' data-format='TXVzaWMvRml2ZUZpbmdlckRlYXRoUHVuY2g='>Five Finger Death Punch</a>: <ul ><li> Their song "Jekyll and Hyde" is, unsurprisingly, about this trope. <div class='indent'><em>Oh, yo, yo, there's a demon inside!<br data-format="\\" />Oh, yo, yo, just like Jekyll and Hyde!<br data-format="\\" />Oh, yo, yo, all this anger inside!<br data-format="\\" />Oh, yo, yo, I feel like Jekyll and Hyde!</em> </div></li><li> Also mentioned in "Welcome to the Circus" with the line "Everybody's got a Jekyll and Hyde." </li></ul></li><li> "Dr. Heckle and Mr. Jive" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/MenAtWork' title='/pmwiki/pmwiki.php/Music/MenAtWork' data-format='TXVzaWMvTWVuQXRXb3Jr'>Men at Work</a>. Almost a straight-forward summation of the plot of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1963' title='/pmwiki/pmwiki.php/Film/TheNuttyProfessor1963' data-format='RmlsbS97e1RoZSBOdXR0eSBQcm9mZXNzb3J8MTk2M319'>The Nutty Professor</a></em>. </li><li> A variation can be heard in "Battle of Someone" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/BluesTraveler' title='/pmwiki/pmwiki.php/Music/BluesTraveler' data-format='TXVzaWMvQmx1ZXNUcmF2ZWxlcg=='>Blues Traveler</a>. The first verse starts, "Well I love no one," and is generally cynical and embittered. The second verse starts, "Well I love everyone," and is idealistic and hopeful. The final verse contains the line "The preceding verses are the halves of my soul," and describes how the singer recognizes <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlidingScaleOfIdealismVsCynicism' title='/pmwiki/pmwiki.php/Main/SlidingScaleOfIdealismVsCynicism' data-format='W1tTbGlkaW5nU2NhbGVPZklkZWFsaXNtVnNDeW5pY2lzbSB0aGUgYmF0dGxlIHdpdGhpbiBoaW0gYmV0d2VlbiB0aGUgZGFya2VyIGFuZCBsaWdodGVyIHNpZGVzIG9mIGhpcyBiZWluZy5dXQ=='>the battle within him between the darker and lighter sides of his being.</a> </li><li> The first 5 Albums of <em>ASP</em> tell the story of the Black Butterfly, a vampire-like entity, which sometimes seems to inhabit the body of the protagonist. For example, in the song <em>Lykanthropie (Es tobt ein Krieg in mir)</em>, it's compared to werewolves, with the protagonist not remembering what he did while under the creatures influence. Also, in promotional shots, both the protagonist and the Black Butterfly are represented by the bands lead singer Alexander Spreng. </li><li> Played with in "Bubba Hyde" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/DiamondRio' title='/pmwiki/pmwiki.php/Music/DiamondRio' data-format='TXVzaWMvRGlhbW9uZFJpbw=='>Diamond Rio</a>. The song is about an ordinary guy named Barney Jekyll, a grocery store employee and volunteer firefighter who seems like an unhip ordinary man, except on Friday nights, when he dons a leather jacket and zebra boots, and becomes the party animal "Bubba Hyde". </li><li> "Me And I" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/ABBA' title='/pmwiki/pmwiki.php/Music/ABBA' data-format='TXVzaWMve3tBQkJBfX0='>ABBA</a> directly invokes this trope: "Part of me is acting while the other stands beside/Yes, I am to myself what Jekyll must have been to Hyde..." </li><li> While it's not the primary way that <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Eminem' title='/pmwiki/pmwiki.php/Music/Eminem' data-format='TXVzaWMve3tFbWluZW19fQ=='>Eminem</a> portrays Slim Shady, he's sometimes imagined as this: <ul ><li> In <em>Slim Shady EP</em>, Slim is presented as the split personality of Eminem <span class="notelabel" onclick="togglenote('note0lco4');"><sup>note </sup></span><span id="note0lco4" class="inlinefolder" isnote="true" onclick="togglenote('note0lco4');" style="cursor:pointer;font-size:smaller;display:none;">which we'd now understand as being the split personality of <em>Marshall</em> - Eminem hadn't figured out the triune Marshall-Eminem-Slim <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KayfabeMusic' title='/pmwiki/pmwiki.php/Main/KayfabeMusic' data-format='S2F5ZmFiZU11c2lj'>Kayfabe Music</a> personas yet, and still saw "Eminem" and "Marshall" as the same character</span>, complete with a shoutout to Jekyll and Hyde in "Low Down, Dirty": <div class='indent'>Wearing visors, sunglasses and disguises<br data-format="\\" />'Cause my split personality is having an identity crisis<br data-format="\\" />I'm Dr. Hyde and Mr. Jekyll... </div></li><li> In the unreleased song "Angry Blonde" (intended for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/TheMarshallMathersLP' title='/pmwiki/pmwiki.php/Music/TheMarshallMathersLP' data-format='TXVzaWMvVGhlTWFyc2hhbGxNYXRoZXJzTFA='>The Marshall Mathers LP</a></em>), Slim Shady would have been represented as a rage-induced physical transformation - "<em>you wouldn't like me when I'm angry - the Reeboks on my feet turn to Nike, and my skin pales, hair turns blond...</em>" </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConceptAlbum' title='/pmwiki/pmwiki.php/Main/ConceptAlbum' data-format='W1tDb25jZXB0QWxidW0gY29uY2VwdF1d'>concept</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Eminem' title='/pmwiki/pmwiki.php/Music/Eminem' data-format='TXVzaWMve3tFbWluZW19fQ=='>Eminem</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Horrorcore' title='/pmwiki/pmwiki.php/Main/Horrorcore' data-format='e3tIb3Jyb3Jjb3JlfX0='>Horrorcore</a> album <em>Relapse</em> is that when Marshall Mathers takes drugs, he becomes Slim Shady and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialKiller' title='/pmwiki/pmwiki.php/Main/SerialKiller' data-format='W1tTZXJpYWxLaWxsZXIgc3RhcnRzIHN0YWxraW5nIGFuZCBtdXJkZXJpbmcgcGVvcGxlXV0='>starts stalking and murdering people</a>. </li><li> In "Stronger Than I Was", the narrator describes their lover as 'Jekyll and Hyde' - one of the many reasons fans interpret the song as being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PerspectiveFlip' title='/pmwiki/pmwiki.php/Main/PerspectiveFlip' data-format='W1tQZXJzcGVjdGl2ZUZsaXAgZnJvbSB0aGUgcGVyc3BlY3RpdmUgb2YgS2ltLCBFbWluZW0mIzAzOTtzIGV4LXdpZmVdXQ=='>from the perspective of Kim, Eminem's ex-wife</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MuseAbuse' title='/pmwiki/pmwiki.php/Main/MuseAbuse' data-format='W1tNdXNlQWJ1c2UgY29uc3RhbnQgbHlyaWNhbCBwdW5jaGJhZ11d'>constant lyrical punchbag</a>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');"> Radio </div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' title='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' data-format='UmFkaW8vSm9obkZpbm5lbW9yZXNTb3V2ZW5pclByb2dyYW1tZQ=='>John Finnemore's Souvenir Programme</a></em>: Series 1, Episode 3 includes a sketch consisting of Jekyll and Hyde writing letters to one another: Hyde is constantly sabotaging Jekyll's equipment, food, and moustache (and killing costermongers), and Jekyll is telling him off. Eventually, Jekyll teaches Hyde his place by threatening to subject him to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GroinAttack' title='/pmwiki/pmwiki.php/Main/GroinAttack' data-format='W1tHcm9pbkF0dGFjayB2YXNlY3RvbXldXQ=='>vasectomy</a>. Hyde meekly apologizes to him and promises not to torment Jekyll again. He can still kill costermongers, though. </li><li> Parodied in one sketch from <em>Saturday Night Fry</em>, in which hard-working Dr. John Fordyce (<a class='twikilink' href='/pmwiki/pmwiki.php/Creator/StephenFry' title='/pmwiki/pmwiki.php/Creator/StephenFry' data-format='Q3JlYXRvci9TdGVwaGVuRnJ5'>Stephen Fry</a>) discovers a serum that transforms him into supervillain Jenny Flamisto (<a class='twikilink' href='/pmwiki/pmwiki.php/Creator/EmmaThompson' title='/pmwiki/pmwiki.php/Creator/EmmaThompson' data-format='Q3JlYXRvci9FbW1hVGhvbXBzb24='>Emma Thompson</a>). He / she is opposed by Don <span class='esc-seq' title='non-wikiword'>McElwaine</span> (<a class='twikilink' href='/pmwiki/pmwiki.php/Creator/HughLaurie' title='/pmwiki/pmwiki.php/Creator/HughLaurie' data-format='Q3JlYXRvci9IdWdoTGF1cmll'>Hugh Laurie</a>), who uses the serum to change into Barry Cryer (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/AsHimself' title='/pmwiki/pmwiki.php/Main/AsHimself' data-format='W1tBc0hpbXNlbGYgQmFycnkgQ3J5ZXJdXQ=='>Barry Cryer</a>). </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');"> Tabletop Games </div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Godforsaken' title='/pmwiki/pmwiki.php/TabletopGame/Godforsaken' data-format='VGFibGV0b3BHYW1lL3t7R29kZm9yc2FrZW59fQ=='>Godforsaken</a></em>: The moord's temperament depends on the elaborate movements of Korak-Mar's multitudinous tiny moons. 90 to 95 percent of the time, the moord live calm lives of subdued contemplation and careful, considered action, sleep fairly often, meditate at other times, and do not eat, mate or hunt. The rest of the time (called feasts), moord engage in revels of reckless abandon, hunt wild game with ferocity and bloodlust, eat voraciously, and engage in vigorous sex. However, the changes do not alter the overall ethics of the individual, only the chosen actions and responses to stimuli; a feasting moord becomes more fierce, uninhibited and barbaric, but not insane. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' title='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' data-format='VGFibGV0b3BHYW1lL3t7UGF0aGZpbmRlcn19'>Pathfinder</a></em>: The Alchemist class can create a mutagenic potion that changes his/her personality and appearance, making the character more physically powerful at the expense of their mental abilities. The Master Chymist <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrestigeClass' title='/pmwiki/pmwiki.php/Main/PrestigeClass' data-format='UHJlc3RpZ2VDbGFzcw=='>Prestige Class</a> takes this a step further, allowing the alchemist to create a unique infusion that, when taken, changes the character's personality and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CharacterAlignment' title='/pmwiki/pmwiki.php/Main/CharacterAlignment' data-format='Q2hhcmFjdGVyQWxpZ25tZW50'>Character Alignment</a> and possibly gives them a monstrous appearance; the two personas have separate minds and may work against each other. That said, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonality' title='/pmwiki/pmwiki.php/Main/SplitPersonality' data-format='U3BsaXRQZXJzb25hbGl0eQ=='>Split Personality</a> doesn't have to be evil, just a different alignment; a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LawfulGood' title='/pmwiki/pmwiki.php/Main/LawfulGood' data-format='TGF3ZnVsR29vZA=='>Lawful Good</a> chymist could have a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChaoticGood' title='/pmwiki/pmwiki.php/Main/ChaoticGood' data-format='Q2hhb3RpY0dvb2Q='>Chaotic Good</a> alter ego, for instance. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' title='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' data-format='VGFibGV0b3BHYW1lL01hZ2ljVGhlR2F0aGVyaW5n'>Magic: The Gathering</a></em>, in its Gothic horror-themed <em>Innistrad</em> expansion, introduced <a class='urllink' href='http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=221209'>"Civilized Scholar"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, a double-faced card that transforms into "Homicidal Brute". He was actually named "Jekyll and Hyde" as a placeholder in the early designs for the set. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Ravenloft' title='/pmwiki/pmwiki.php/TabletopGame/Ravenloft' data-format='VGFibGV0b3BHYW1lL3t7UmF2ZW5sb2Z0fX0='>Ravenloft</a>: <ul ><li> The quevari, a human subspecies from the setting, live as benign vegetarian pacifists by day, but are bloodthirsty killers by night. </li><li> The darklord of Nova Vaasa, Sir Tristan Hiregaard, struggles against his crime-lord alter ego Malken. </li></ul></li><li> Every character in <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/KindredOfTheEast' title='/pmwiki/pmwiki.php/TabletopGame/KindredOfTheEast' data-format='VGFibGV0b3BHYW1lL0tpbmRyZWRPZlRoZUVhc3Q='>Kindred of the East</a></em>: the soul of an eastern vampire is divided into the higher Hun and the lower P'o. It is as troublesome as it sounds, but the P'o is indispensable. It serves as the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperpoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperpoweredEvilSide' data-format='U3VwZXJwb3dlcmVkRXZpbFNpZGU='>Superpowered Evil Side</a>, providing some essential combat powers (indeed, a vampire couldn't even grow fangs without it) and is responsible for him being undead in the first place. </li><li> Kindred of the East draws on <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WraithTheOblivion' title='/pmwiki/pmwiki.php/TabletopGame/WraithTheOblivion' data-format='VGFibGV0b3BHYW1lL1dyYWl0aFRoZU9ibGl2aW9u'>Wraith: The Oblivion</a></em>: in death, the dark side of the living personality, the Shadow, becomes independent, developing its own personality, and can at times gain enough strength to assume control over the wraith. The inverse applies to Spectres, for whom the Shadow is the dominant personality; their light side, the Psyche, remains independent and can at times become strong enough to take control. </li><li> A variant is possible in <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Aberrant' title='/pmwiki/pmwiki.php/TabletopGame/Aberrant' data-format='VGFibGV0b3BHYW1lL3t7QWJlcnJhbnR9fQ=='>Aberrant</a></em>. Novas can accumulate physical and/or psychological mutations from various sources (most of which give you power at this cost), and can gain the ability to suppress their superpowered side, including these mutations. Of course, there's no reason that this <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperpoweredAlterEgo' title='/pmwiki/pmwiki.php/Main/SuperpoweredAlterEgo' data-format='U3VwZXJwb3dlcmVkQWx0ZXJFZ28='>Superpowered Alter Ego</a> has to be <em>evil</em>; it's just as likely to be heroic or villainous as is a "normal" person. </li><li> The generic <em><a class='twikilink disambiglink' href='/pmwiki/pmwiki.php/TabletopGame/GURPS' title='/pmwiki/pmwiki.php/TabletopGame/GURPS' data-format='VGFibGV0b3BHYW1lL3t7R1VSUFN9fQ=='>GURPS</a></em> system has a “Split Personality” disadvantage to cover this sort of thing in general. <em>GURPS Steampunk 2</em> includes a discussion of various ways to handle the situation from the trope-namer novel and later versions of that idea. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');"> Theatre </div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the 1933 Broadway musical <em>Pardon My English</em>, a British <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UpperClassTwit' title='/pmwiki/pmwiki.php/Main/UpperClassTwit' data-format='VXBwZXJDbGFzc1R3aXQ='>Upper-Class Twit</a> named Michael Bramleigh is unconscious of also being a notorious jewel thief called Golo. A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TapOnTheHead' title='/pmwiki/pmwiki.php/Main/TapOnTheHead' data-format='VGFwT25UaGVIZWFk'>Tap on the Head</a> causes him to switch between the two identities and their respective love interests. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');"> Toys </div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/MonsterHigh' title='/pmwiki/pmwiki.php/Toys/MonsterHigh' data-format='VG95cy9Nb25zdGVySGlnaA=='>Monster High</a></em>: <ul ><li> Jackson Jekyll and Holt Hyde. Unsurprisingly, but somewhat subverted in that neither of them are evil. Jackson is a rather sweet, quiet, studious boy, whereas his alter ego is louder and more boisterous but still has a good heart. Granted, Holt Hyde is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CuteMonsterBoy' title='/pmwiki/pmwiki.php/Main/CuteMonsterBoy' data-format='W1tDdXRlTW9uc3RlckJveSBtb25zdGVyXV0='>monster</a>, but considering the setting that is a compliment. </li><li> Jackson's own mother, Sydney, is also an example of this. She's only found in Jackson's journal and some of the books, but she still counts as one due to her being the daughter of the original Dr. Jekyll. Due to her inheriting the dual nature, Jackson gets it too. Likewise, she isn't evil either, but is described in the journal entry as appearing as her Hyde side when local monsters were teasing a then-five-year-old Jackson. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/SuperThings' title='/pmwiki/pmwiki.php/Toys/SuperThings' data-format='VG95cy9TdXBlclRoaW5ncw=='>SuperThings</a></em> has the character Morph. His creation consisted of the mixing of a variety of essences, both hero and villain, forming the unstable blob. Due to having so many types of essences making his structure up, he has two personalities: his blue, white eyed Hero form, and his green, yellow-eyed Villain form. Unfortunately for himself, his powers are unstable to the point that he can't switch sides at will, nor does his Hero side or his Villain side realize either exists. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder14');"> Video Games </div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BatmanArkhamKnight' title='/pmwiki/pmwiki.php/VideoGame/BatmanArkhamKnight' data-format='VmlkZW9HYW1lL0JhdG1hbkFya2hhbUtuaWdodA=='>Batman: Arkham Knight</a></em>: Harley Quinn's DLC story reveals her insanity to be this, with Harley Quinn being haunted by the voice of Dr. Harleen Quinzel. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HelplessGoodSide' title='/pmwiki/pmwiki.php/Main/HelplessGoodSide' data-format='W1tIZWxwbGVzc0dvb2RTaWRlIEhhcmxlZW4gaGFzIG5vIHBvd2VyIG92ZXIgSGFybGV5XV0='>Harleen has no power over Harley</a>, and is trying to get Harley to give up on her ramages and return to their normal life. Harley doesn't want to listen. <!-- * Marcus Kane (Roadkill) and Needles Kane (Sweet Tooth) of the ''VideoGame/TwistedMetal'' series.--> <!-- * Daniel and [[spoiler:Leo]] in ''VideoGame/{{Manhunt}} 2''.--> </li><li> Emil from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TalesOfSymphoniaDawnOfTheNewWorld' title='/pmwiki/pmwiki.php/VideoGame/TalesOfSymphoniaDawnOfTheNewWorld' data-format='VmlkZW9HYW1lL1RhbGVzT2ZTeW1waG9uaWFEYXduT2ZUaGVOZXdXb3JsZA=='>Tales of Symphonia: Dawn of the New World</a></em> has two personalities. First, there is his normal, timid, self-effacing personality. Then there's his "Ratatosk Mode," which is significantly more aggressive, to say the least. <!-- * [[spoiler:Pat and his evil other-self Rey]] in the first ''VideoGame/MegaManStarForce''.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DateTime' title='/pmwiki/pmwiki.php/VideoGame/DateTime' data-format='VmlkZW9HYW1lL0RhdGVUaW1l'>Date Time</a></em>: By the end of the game, it’s revealed by the couple Joan and Wes that <span class="spoiler" title="you can set spoilers visible by default on your profile" >Morris is transforming into a monster that destroys a town each time a new game is played. However, Morris‘s memory gets wiped each time, though the wipe doesn’t delete his memory properly; the partial memory just slides back into him, corrupting and turning him into something else. Because the game is being played in a shared library and is being played by so many people, corruption is spreading through the game. Morris is entirely in the dark about this until he walks in on the player talking to the couple; eventually, he transforms into a monster when the couple attacks him.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Xenogears' title='/pmwiki/pmwiki.php/VideoGame/Xenogears' data-format='VmlkZW9HYW1lL3t7WGVub2dlYXJzfX0='>Xenogears</a></em>: <span class="spoiler" title="you can set spoilers visible by default on your profile" >Fei, the player's character, and Id, the mysterious super-powerful lone villain.</span> </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SummonNight' title='/pmwiki/pmwiki.php/VideoGame/SummonNight' data-format='VmlkZW9HYW1lL1N1bW1vbk5pZ2h0'>Summon Night</a> Swordcraft Story 2</em>, one of your Guardian Beasts is a trashtalking demon who claims to have been possessed by her angelic sweet side. Subverted in the matter that the demon is the leading personality, with the angel being the hidden "Hyde". </li><li> It's kind of easy to miss, but <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/QuestForGloryV' title='/pmwiki/pmwiki.php/VideoGame/QuestForGloryV' data-format='VmlkZW9HYW1lL1F1ZXN0Rm9yR2xvcnlW'>Quest for Glory V</a></em> has <span class="spoiler" title="you can set spoilers visible by default on your profile" >Praetorius and Mobius. While Praetorius is nicer than Mobius (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/JerkAss' title='/pmwiki/pmwiki.php/Main/JerkAss' data-format='W1tKZXJrQXNzIHdoaWNoIGlzbiYjMDM5O3QgYWxsIHRoYXQgaGFyZF1d'>which isn't all that hard</a>), he's still completely okay with poisoning wizards <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForScience' title='/pmwiki/pmwiki.php/Main/ForScience' data-format='W1tGb3JTY2llbmNlIGluIG9yZGVyIHRvIHByb3ZlIHNjaWVuY2Ugc3VwZXJpb3JdXQ=='>in order to prove science superior</a>. The character does change form when he's finally called out on this, but the graphics make it hard to tell, meaning the dialog is the only easily discernible indicator.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Mewgenics' title='/pmwiki/pmwiki.php/VideoGame/Mewgenics' data-format='VmlkZW9HYW1lL3t7TWV3Z2VuaWNzfX0='>Mewgenics</a></em>: A Jekyll is a bright-eyed, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdorableEvilMinions' title='/pmwiki/pmwiki.php/Main/AdorableEvilMinions' data-format='W1tBZG9yYWJsZUV2aWxNaW5pb25zIHBvc2l0aXZlbHkgYWRvcmFibGUga2l0dHkgZW5lbXkuXV0='>positively adorable kitty enemy.</a> Give it a few turns and it'll morph into a far more powerful (and uglier) Hyde. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Neptunia' title='/pmwiki/pmwiki.php/VideoGame/Neptunia' data-format='VmlkZW9HYW1lL3t7TmVwdHVuaWF9fQ=='>Neptunia</a></em> series, <span class='esc-seq' title='non-wikiword'>CPUs</span> are a mild example. While there's only one consciousness and they retain all their memories, goals, etc. during the voluntary transformation, their normal and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperMode' title='/pmwiki/pmwiki.php/Main/SuperMode' data-format='W1tTdXBlck1vZGUgSGFyZCBEaXNrIERpdmluaXR5XV0='>Hard Disk Divinity</a> forms can have very different personalities. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSlacker' title='/pmwiki/pmwiki.php/Main/TheSlacker' data-format='W1tUaGVTbGFja2VyIE5lcHR1bmUmIzAzOTtzXV0='>Neptune's</a> HDD form being a more mature <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LadyOfWar' title='/pmwiki/pmwiki.php/Main/LadyOfWar' data-format='TGFkeU9mV2Fy'>Lady of War</a> is one example. Another is Plutia, who goes from a friendly, scatterbrained girl to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBaroness' title='/pmwiki/pmwiki.php/Main/TheBaroness' data-format='W1tUaGVCYXJvbmVzcyBzdG9uZS1jb2xkXV0='>stone-cold</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDreaded' title='/pmwiki/pmwiki.php/Main/TheDreaded' data-format='W1tUaGVEcmVhZGVkIGFsbHktdGVycmlmeWluZ11d'>ally-terrifying</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Dominatrix' title='/pmwiki/pmwiki.php/Main/Dominatrix' data-format='e3tEb21pbmF0cml4fX0='>Dominatrix</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BungoToAlchemist' title='/pmwiki/pmwiki.php/VideoGame/BungoToAlchemist' data-format='VmlkZW9HYW1lL0J1bmdvVG9BbGNoZW1pc3Q='>Bungo to Alchemist</a></em>, the two Nakajima Atsushi share one body. Outer Atsushi is the calm, meek <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GentlemanAndAScholar' title='/pmwiki/pmwiki.php/Main/GentlemanAndAScholar' data-format='W1tHZW50bGVtYW5BbmRBU2Nob2xhciBHZW50bGVtYW4gU2Nob2xhcl1d'>Gentleman Scholar</a> 'Jekyll' more inclined to intellectual pursuits and social life, while Inner Atsushi is the proud, barsh <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BloodKnight' title='/pmwiki/pmwiki.php/Main/BloodKnight' data-format='Qmxvb2RLbmlnaHQ='>Blood Knight</a> 'Hyde' who only comes out for battles. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BioShockInfinite' title='/pmwiki/pmwiki.php/VideoGame/BioShockInfinite' data-format='VmlkZW9HYW1lL0Jpb1Nob2NrSW5maW5pdGU='>BioShock Infinite</a></em> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Booker and Comstock are the same person.</span> In the beginning it's more of an Evil Twin situation - they do not actually "merge" like for example <span class="spoiler" title="you can set spoilers visible by default on your profile" >dead Chen Lin and living Chen Lin</span>. Metaphorically, though, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Comstock</span> is the evil within <span class="spoiler" title="you can set spoilers visible by default on your profile" >Booker - both are single-minded, cynical and have a high capacity for violence. Booker is also willing to commit massive manslaughter and serve blatant lies to reach his goal (which in the beginning of the game is even quite morally corrupt).</span> Later on, the metaphor becomes physical reality. Firstly, <span class="spoiler" title="you can set spoilers visible by default on your profile" >when Booker kills Comstock but is forced to take charge of the Hand of the Prophet and use the Songbird to destroy a Vox Populi attack. Temporarily, he is Comstock in both biology and social function.</span> Secondly <span class="spoiler" title="you can set spoilers visible by default on your profile" >when he is transferred back in time to actually merge with the earlier version of himself that is set on the path of becoming Comstock. When this past Booker "remembers" his future actions as the Hyde, he chooses to let himself be killed. The hero has, indeed, "caught himself".</span> </li><li> It turns out that, in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSuffering' title='/pmwiki/pmwiki.php/VideoGame/TheSuffering' data-format='VmlkZW9HYW1lL1RoZVN1ZmZlcmluZw=='>The Suffering</a></em> and its sequel, <span class="spoiler" title="you can set spoilers visible by default on your profile" >whenever Torque transforms into a Malefactor, it's actually his second personality, Blackmore, coming to the forefront.</span> </li><li> Doshin, the kind, benevolent, helpful giant, and Jashin, the evil, sadistic, vicious version, in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DoshinTheGiant' title='/pmwiki/pmwiki.php/VideoGame/DoshinTheGiant' data-format='VmlkZW9HYW1lL0Rvc2hpblRoZUdpYW50'>Doshin the Giant</a></em>. </li><li> The very uptight Berio in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DuelSaviorDestiny' title='/pmwiki/pmwiki.php/VideoGame/DuelSaviorDestiny' data-format='VmlkZW9HYW1lL0R1ZWxTYXZpb3JEZXN0aW55'>Duel Savior Destiny</a></em> has an exhibitionist kleptomaniac side in Black Papillon that she developed as a way of dealing with stress. While Berio is highly disapproving of how her other side reacts and seems unaware, deep down she knows that it's probably her. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Borderlands2' title='/pmwiki/pmwiki.php/VideoGame/Borderlands2' data-format='VmlkZW9HYW1lL3t7Qm9yZGVybGFuZHMgMn19'>Borderlands 2</a></em> has Krieg, who is split between the dominant, psychotic personality and a subdued sane personality. The latter tries to ensure that the former only kills "the deserving" and even swears that if the latter ever sheds innocent blood that it'll take over and commit suicide. In response, the psycho personality will even bash himself in the face with his axe to silence the voice. </li><li> In the iOS game <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/LaytonBrothersMysteryRoom' title='/pmwiki/pmwiki.php/VideoGame/LaytonBrothersMysteryRoom' data-format='VmlkZW9HYW1lL0xheXRvbkJyb3RoZXJzTXlzdGVyeVJvb20='>Layton Brothers: Mystery Room</a></em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Alfendi</span> is in this predicament thanks to an incident 4 years ago. However, it seems that the <span class="spoiler" title="you can set spoilers visible by default on your profile" >"Hyde"</span> is the real personality while his new persona is the <span class="spoiler" title="you can set spoilers visible by default on your profile" >Jekyll</span>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MetalGearAcid' title='/pmwiki/pmwiki.php/VideoGame/MetalGearAcid' data-format='VmlkZW9HYW1lL01ldGFsR2VhckFjaWQ='>Metal Gear Ac!d</a></em>, Solid Snake realises he knows a lot more about the facility than he expected. It's explained to him that he took the alias "Hans Davis" to perform some hideously unethical experiments on psychic children, and through repressing his memory of these events and of all the other terrible things he's done in his life, the ruthless and evil Hans has become an alternate personality into which he occasionally switches or even hallucinates conversing with. <span class="spoiler" title="you can set spoilers visible by default on your profile" >This is eventually revealed to all be the result of psychic <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Gaslighting' title='/pmwiki/pmwiki.php/Main/Gaslighting' data-format='e3tHYXNsaWdodGluZ319'>Gaslighting</a>.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheUltimateHauntedHouse' title='/pmwiki/pmwiki.php/VideoGame/TheUltimateHauntedHouse' data-format='VmlkZW9HYW1lL1RoZVVsdGltYXRlSGF1bnRlZEhvdXNl'>The Ultimate Haunted House</a></em> has Gahan Wilson, the ghost host of the mansion, suffering from a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonality' title='/pmwiki/pmwiki.php/Main/SplitPersonality' data-format='U3BsaXRQZXJzb25hbGl0eQ=='>Split Personality</a> due to a formula he drank, splitting him into a good and evil side. The good one will give hints and items to the player. The bad one will curse the player, steal items, or summon monsters into the room. Part of the challenge of the game is determining whether Gahan is good or evil at any particular moment, especially considering <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HydePlaysJekyll' title='/pmwiki/pmwiki.php/Main/HydePlaysJekyll' data-format='W1tIeWRlUGxheXNKZWt5bGwgRXZpbCBHYWhhbiB3aWxsIHByZXRlbmQgdG8gYmUgR29vZCBHYWhhbl1d'>Evil Gahan will pretend to be Good Gahan</a> in order to lure you into a false sense of security. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheCloserGameOfTheYearEdition' title='/pmwiki/pmwiki.php/VideoGame/TheCloserGameOfTheYearEdition' data-format='VmlkZW9HYW1lL1RoZUNsb3NlckdhbWVPZlRoZVllYXJFZGl0aW9u'>The Closer: Game of the Year Edition</a></em> has @twitter, the personification of the <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/Twitter' title='/pmwiki/pmwiki.php/Platform/Twitter' data-format='W1tQbGF0Zm9ybS97e1R3aXR0ZXJ9fSBzb2NpYWwgbWVkaWEgbmV0d29ya11d'>social media network</a>. One moment, it's cordial and pleasant (albeit a bit obsessed with #Monetization). But once the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Troll' title='/pmwiki/pmwiki.php/Main/Troll' data-format='e3t0cm9sbH19cw=='>trolls</a> have their way, it involuntarily starts throwing out curses, slurs and other unpleasantries. Naturally, it has issues with its predicament. <div class='indent'><strong>@twitter:</strong> This [<span class="spoiler" title="you can set spoilers visible by default on your profile" >The Altar of Needless Cursing in the Gritty Reboot world</span>] reminds me of the time I tried to ban the #word "fuck" in #hashtags.<br data-format="\\" /><strong>The Closer:</strong> You tried to ban "fuck"?<br data-format="\\" /><strong>@twitter:</strong> Yeah, it didn't go #well. <em>(trolls take over) <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClusterFBomb' title='/pmwiki/pmwiki.php/Main/ClusterFBomb' data-format='W1tDbHVzdGVyRkJvbWIgRlVDS0ZVQ0tGVUNLRlVDS0ZVQ0tGVUNLRlVDS0ZVQ0sgI0ZVQ0tGVUNLRlVDS0ZVQ0tGVUNLRlVDS0ZVQ0tdXQ=='>FUCKFUCKFUCKFUCKFUCKFUCKFUCKFUCK #FUCKFUCKFUCKFUCKFUCKFUCKFUCK</a></strong> (@twitter reins the trolls back in)</em> That is basically what the #trolls did in response. </div></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Dishonored2' title='/pmwiki/pmwiki.php/VideoGame/Dishonored2' data-format='VmlkZW9HYW1lL0Rpc2hvbm9yZWQy'>Dishonored 2</a></em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >Alexandria Hypatia</span> is a saintly doctor desperately trying to find a cure for a disease that's running rampant through Karnaca's silver miners. So desperate, in fact, that she wound up testing one of her serums on herself, inadvertently creating <span class="spoiler" title="you can set spoilers visible by default on your profile" >Grim Alex</span>, an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a> cannibalistic serial killer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DeadInVinland' title='/pmwiki/pmwiki.php/VideoGame/DeadInVinland' data-format='VmlkZW9HYW1lL0RlYWRJblZpbmxhbmQ='>Dead In Vinland</a></em> has one that comes as a shock <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheReveal' title='/pmwiki/pmwiki.php/Main/TheReveal' data-format='W1tUaGVSZXZlYWwgcmV2ZWFsXV0='>reveal</a>: <span class="spoiler" title="you can set spoilers visible by default on your profile" >gentle, helpful, devoutly religious Brother Angelico has been having dissociative blackouts for most of his life in which he becomes an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialKiller' title='/pmwiki/pmwiki.php/Main/SerialKiller' data-format='U2VyaWFsS2lsbGVy'>Serial Killer</a> and then flogs himself with a whip, crying about "the demon." It's left <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MaybeMagicMaybeMundane' title='/pmwiki/pmwiki.php/Main/MaybeMagicMaybeMundane' data-format='TWF5YmVNYWdpY01heWJlTXVuZGFuZQ=='>Maybe Magic, Maybe Mundane</a> whether it really is a demon; the player can choose to kill him, exile him, or find a way to cure him.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/FiveNightsAtFreddys' title='/pmwiki/pmwiki.php/Franchise/FiveNightsAtFreddys' data-format='RnJhbmNoaXNlL0ZpdmVOaWdodHNBdEZyZWRkeXM='>Five Nights at Freddy's</a></em>: <ul ><li> It's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImpliedTrope' title='/pmwiki/pmwiki.php/Main/ImpliedTrope' data-format='W1tJbXBsaWVkVHJvcGUgaW1wbGllZF1d'>implied</a> that this is how Glitchtrap's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrainwashedAndCrazy' title='/pmwiki/pmwiki.php/Main/BrainwashedAndCrazy' data-format='W1tCcmFpbndhc2hlZEFuZENyYXp5IGJyYWlud2FzaGluZ11d'>brainwashing</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmbiguousSituation' title='/pmwiki/pmwiki.php/Main/AmbiguousSituation' data-format='W1tBbWJpZ3VvdXNTaXR1YXRpb24gcG9zc2libHldXQ=='>possibly</a> works. Luis notes in one of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FiveNightsAtFreddysARSpecialDelivery' title='/pmwiki/pmwiki.php/VideoGame/FiveNightsAtFreddysARSpecialDelivery' data-format='VmlkZW9HYW1lL0ZpdmVOaWdodHNBdEZyZWRkeXNBUlNwZWNpYWxEZWxpdmVyeQ=='>Five Nights at Freddy's AR: Special Delivery</a></em>'s unintended emails that there appears to be two sides to Vanessa when it comes to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EmbarrassingBrowserHistory' title='/pmwiki/pmwiki.php/Main/EmbarrassingBrowserHistory' data-format='W1tFbWJhcnJhc3NpbmdCcm93c2VySGlzdG9yeSBoZXIgb25saW5lIGFjdGl2aXR5XV0='>her online activity</a>: the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GlurgeAddict' title='/pmwiki/pmwiki.php/Main/GlurgeAddict' data-format='R2x1cmdlQWRkaWN0'>Glurge Addict</a> who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NatureLover' title='/pmwiki/pmwiki.php/Main/NatureLover' data-format='W1tOYXR1cmVMb3ZlciBsb3ZlcyBuYXR1cmVdXQ=='>loves nature</a>, and the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NightmareFuelStationAttendant' title='/pmwiki/pmwiki.php/Main/NightmareFuelStationAttendant' data-format='TmlnaHRtYXJlRnVlbFN0YXRpb25BdHRlbmRhbnQ='>Nightmare Fuel Station Attendant</a> who is interested in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ColdBloodedTorture' title='/pmwiki/pmwiki.php/Main/ColdBloodedTorture' data-format='Q29sZEJsb29kZWRUb3J0dXJl'>Cold-Blooded Torture</a>. Similarly, in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FiveNightsAtFreddysSecurityBreach' title='/pmwiki/pmwiki.php/VideoGame/FiveNightsAtFreddysSecurityBreach' data-format='VmlkZW9HYW1lL0ZpdmVOaWdodHNBdEZyZWRkeXNTZWN1cml0eUJyZWFjaA=='>Five Nights at Freddy's: Security Breach</a></em> Vanessa behaves differently depending on whether she's in her security guard persona or her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HairRaisingHare' title='/pmwiki/pmwiki.php/Main/HairRaisingHare' data-format='W1tIYWlyUmFpc2luZ0hhcmUgcmFiYml0XV0='>rabbit</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MalevolentMaskedMan' title='/pmwiki/pmwiki.php/Main/MalevolentMaskedMan' data-format='W1tNYWxldm9sZW50TWFza2VkTWFuIG1hc2tdXQ=='>mask</a> persona; Vanessa normally is a grumpy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildHater' title='/pmwiki/pmwiki.php/Main/ChildHater' data-format='Q2hpbGRIYXRlcg=='>Child Hater</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PunchClockVillain' title='/pmwiki/pmwiki.php/Main/PunchClockVillain' data-format='W1tQdW5jaENsb2NrVmlsbGFpbiBqdXN0IHRyeWluZyB0byBkbyBoZXIgam9iXV0='>just trying to do her job</a>, while Vanny is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FauxAffablyEvil' title='/pmwiki/pmwiki.php/Main/FauxAffablyEvil' data-format='RmF1eEFmZmFibHlFdmls'>Faux Affably Evil</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenkiGirl' title='/pmwiki/pmwiki.php/Main/GenkiGirl' data-format='W1tHZW5raUdpcmwgZW5lcmdldGljXV0='>energetic</a>. There's some indication in the notes that Vanessa may not entirely remember her actions as Vanny. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The "Princess Quest" minigames also have puzzles involving the use of a 'shadow' version of the player character, further hinting at it.</span> </li><li> The Daycare Attendant from <em>Security Breach</em> is an animatronic with two modes. The first one you're introduced to is themed around the sun and is friendly, if a little clingy and overbearing. It is more of an obstacle than a threat, as it just wants to play with Gregory, a child who went into the Daycare after hours. There is, however, one rule when visiting the Daycare that it emphasizes: keep the lights <em>on.</em> The reason why shortly becomes clear, as the Attendant <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NighttimeTransformation' title='/pmwiki/pmwiki.php/Main/NighttimeTransformation' data-format='W1tOaWdodHRpbWVUcmFuc2Zvcm1hdGlvbiB0cmFuc2Zvcm1zXV0='>transforms</a> into a moon-themed mode that <em>is</em> a threat, as it chases Gregory around the Daycare while muttering about how 'naughty children' need to be punished for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DisproportionateRetribution' title='/pmwiki/pmwiki.php/Main/DisproportionateRetribution' data-format='W1tEaXNwcm9wb3J0aW9uYXRlUmV0cmlidXRpb24gYmVpbmcgdXAgcGFzdCB0aGVpciBiZWR0aW1lXV0='>being up past their bedtime</a>. One note that can be found in the area reveals it has traumatized at least one child with this sort of behavior before. Needless to say, Sun <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilMeScaresMe' title='/pmwiki/pmwiki.php/Main/EvilMeScaresMe' data-format='W1tFdmlsTWVTY2FyZXNNZSBpcyB0ZXJyaWZpZWQgb2YgTW9vbl1d'>is terrified of Moon</a> and immediately kicks Gregory out once it reverts back. <span class="spoiler" title="you can set spoilers visible by default on your profile" > The 'Ruin' DLC introduces a third mode, Eclipse, which is implied to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SplitPersonalityMerge' title='/pmwiki/pmwiki.php/Main/SplitPersonalityMerge' data-format='W1tTcGxpdFBlcnNvbmFsaXR5TWVyZ2UgYSBtaXh0dXJlIG9mIFN1biYjMDM5O3MgYW5kIE1vb24mIzAzOTtzIHBvc2l0aXZlIHRyYWl0cy5dXQ=='>a mixture of Sun's and Moon's positive traits.</a></span> </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');"> Visual Novels </div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/ChronoBox' title='/pmwiki/pmwiki.php/VisualNovel/ChronoBox' data-format='VmlzdWFsTm92ZWwvQ2hyb25vQm94'>ChronoBox</a></em>: <span class="spoiler" title="you can set spoilers visible by default on your profile" >All test subjects have an evil personality in their head that threatens to take over and cause chaos in the world, that's why Tsuzurai with an insist of the government started working in Eden, curing those students.</span> </li><li> Toko Fukawa of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/DanganronpaTriggerHappyHavoc' title='/pmwiki/pmwiki.php/VisualNovel/DanganronpaTriggerHappyHavoc' data-format='VmlzdWFsTm92ZWwvRGFuZ2Fucm9ucGFUcmlnZ2VySGFwcHlIYXZvYw=='>Danganronpa: Trigger Happy Havoc</a></em> has a split personality that happens to be an infamous serial killer known as Genocide Jack, whom she can summon by tasing herself. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/JekyllAndHydeMazM' title='/pmwiki/pmwiki.php/VisualNovel/JekyllAndHydeMazM' data-format='VmlzdWFsTm92ZWwvSmVreWxsQW5kSHlkZU1hek0='>Jekyll & Hyde (MazM)</a></em> is pretty faithful to <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde' data-format='W1tMaXRlcmF0dXJlL1RoZVN0cmFuZ2VDYXNlT2ZEckpla3lsbEFuZE1ySHlkZSB0aGUgc291cmNlIG1hdGVyaWFsXV0='>the source material</a> save for Mr. Hyde being a little more <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Bishonen' title='/pmwiki/pmwiki.php/Main/Bishonen' data-format='e3tCaXNob25lbn19'>Bishōnen</a> than strictly necessary. To be fair to the artist, he is never described as ugly in the book, just creepy and deep in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UncannyValley' title='/pmwiki/pmwiki.php/Main/UncannyValley' data-format='VW5jYW5ueVZhbGxleQ=='>Uncanny Valley</a>, and those aspects of his character come across just fine. </li><li> Angel Starr from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/PhoenixWrightAceAttorney' title='/pmwiki/pmwiki.php/VisualNovel/PhoenixWrightAceAttorney' data-format='VmlzdWFsTm92ZWwvUGhvZW5peFdyaWdodEFjZUF0dG9ybmV5'>Phoenix Wright: Ace Attorney</a></em>, complete with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HidingBehindYourBangs' title='/pmwiki/pmwiki.php/Main/HidingBehindYourBangs' data-format='W1tIaWRpbmdCZWhpbmRZb3VyQmFuZ3MgYmFuZ3NdXQ=='>bangs</a> moving from one eye to another depending on whether she's sweet or sour. </li><li> Tohno Shiki from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/Tsukihime' title='/pmwiki/pmwiki.php/VisualNovel/Tsukihime' data-format='VmlzdWFsTm92ZWwve3tUc3VraWhpbWV9fQ=='>Tsukihime</a></em>; when either his life is in extreme danger or he is confronted with something non-human, he loses grip on his consciousness and becomes the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperpoweredEvilSide' title='/pmwiki/pmwiki.php/Main/SuperpoweredEvilSide' data-format='W1tTdXBlcnBvd2VyZWRFdmlsU2lkZSBhbW9yYWwgc29jaW9wYXRoaWMga2lsbGVyXV0='>amoral sociopathic killer</a> Nanaya Shiki, who is a <em>highly</em> skilled assassin. Slightly subverted, though, in that <span class="spoiler" title="you can set spoilers visible by default on your profile" >despite being the main personality, Tohno Shiki is the false, created identity while Nanaya Shiki is the 'original' (yet Nanaya rarely ever appears). Nanaya is the Shiki who would have been, had his clan not been wiped out during his childhood and him hypnotized and brainwashed later on into becoming Tohno Shiki</span>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder16');"> Web Animation </div><div id="folder16" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/AlfredsPlayhouse' title='/pmwiki/pmwiki.php/WebAnimation/AlfredsPlayhouse' data-format='V2ViQW5pbWF0aW9uL0FsZnJlZHNQbGF5aG91c2U='>Alfred's Playhouse</a></em>: Alfred himself is a depressed, naïve dog while his alter ego Dictator Pickles threatens to enslave the world's populace. Lucifer, his other alter ego, appears closer to the Hyde archetype: appearing to want nothing other than to destroy kill, and rape. </li><li> Flippy from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HappyTreeFriends' title='/pmwiki/pmwiki.php/WebAnimation/HappyTreeFriends' data-format='V2ViQW5pbWF0aW9uL0hhcHB5VHJlZUZyaWVuZHM='>Happy Tree Friends</a></em>. He's usually sociable, sweet and friendly most of the time, but whenever he sees or hears something related to his war past, he goes into his evil state and brutally murders his friends, believing they are enemy soldiers. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/InanimateInsanity' title='/pmwiki/pmwiki.php/WebAnimation/InanimateInsanity' data-format='V2ViQW5pbWF0aW9uL0luYW5pbWF0ZUluc2FuaXR5'>Inanimate Insanity</a></em>, we have Yin-Yang, in which the sides go back and forth fighting each other <em>constantly</em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder17');"> Webcomics </div><div id="folder17" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/BramAndVlad' title='/pmwiki/pmwiki.php/Webcomic/BramAndVlad' data-format='V2ViY29taWMvQnJhbUFuZFZsYWQ='>Bram & Vlad</a></em> has Henry E. Jekyll and his counterpart, Jack Hyde. You can tell them apart because Hyde is a violent thug with red eyes, sharp teeth, sharp nails and he <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArsonMurderAndJaywalking' title='/pmwiki/pmwiki.php/Main/ArsonMurderAndJaywalking' data-format='W1tBcnNvbk11cmRlckFuZEpheXdhbGtpbmcgc3VwcG9ydHMgQXJnZW50aW5hIGR1cmluZyB0aGUgV29ybGQgQ3VwXV0='>supports Argentina during the World Cup</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' title='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' data-format='V2ViY29taWMvRWxHb29uaXNoU2hpdmU='>El Goonish Shive</a></em>, Elliot's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperGenderBender' title='/pmwiki/pmwiki.php/Main/SuperGenderBender' data-format='W1tTdXBlckdlbmRlckJlbmRlciBzdXBlcmhlcm9pbmVdXQ=='>superheroine</a> spell includes female alter ego forms for when he needs to transform out of the super form in public but can't go through his default form since that would reveal his identity. None of the forms make him evil but each one has a distinct personality that he can override if he concentrates. </li><li> Doctor Haggard and Lord Bunstable in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/GirlGenius' title='/pmwiki/pmwiki.php/Webcomic/GirlGenius' data-format='V2ViY29taWMvR2lybEdlbml1cw=='>Girl Genius</a></em>, the result of a not-entirely-successful attempt to recreate the jaegerdraught. Subverted since Bunstable isn't evil (although if he stays in that form too long he becomes psychotic) and if it comes to that, Dr. Haggard is a crotchety old man who loudly expresses his hatred of people for petty reasons. </li><li> Henry Jekyll and Edward Hyde again in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheGlassScientists' title='/pmwiki/pmwiki.php/Webcomic/TheGlassScientists' data-format='V2ViY29taWMvVGhlR2xhc3NTY2llbnRpc3Rz'>The Glass Scientists</a></em>. Jekyll is a polite socialite hiding a high school's worth of insecurities while Hyde is ever-smiling self-described "creature of the night". </li><li> It seems that <span class="spoiler" title="you can set spoilers visible by default on your profile" >Ples Tibenoch</span> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/HannaIsNotABoysName' title='/pmwiki/pmwiki.php/Webcomic/HannaIsNotABoysName' data-format='V2ViY29taWMvSGFubmFJc05vdEFCb3lzTmFtZQ=='>Hanna Is Not a Boy's Name</a></em> has a Jekyll and Hyde disorder of sorts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Homestuck' title='/pmwiki/pmwiki.php/Webcomic/Homestuck' data-format='V2ViY29taWMve3tIb21lc3R1Y2t9fQ=='>Homestuck</a></em>: <ul ><li> When <span class="spoiler" title="you can set spoilers visible by default on your profile" >Gamzee Makara</span> is stoned, he's one of the sweetest, most goofy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LoveFreak' title='/pmwiki/pmwiki.php/Main/LoveFreak' data-format='TG92ZUZyZWFr'>Love Freak</a> characters in the whole thing. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BewareTheSillyOnes' title='/pmwiki/pmwiki.php/Main/BewareTheSillyOnes' data-format='W1tCZXdhcmVUaGVTaWxseU9uZXMgQnV0XV0='>But</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='W1tBeENyYXp5IHdoZW5dXQ=='>when</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterClown' title='/pmwiki/pmwiki.php/Main/MonsterClown' data-format='W1tNb25zdGVyQ2xvd24gaGVdXQ=='>he</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OmnicidalManiac' title='/pmwiki/pmwiki.php/Main/OmnicidalManiac' data-format='W1tPbW5pY2lkYWxNYW5pYWMgZ2V0c11d'>gets</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoMedicationForMe' title='/pmwiki/pmwiki.php/Main/NoMedicationForMe' data-format='W1tOb01lZGljYXRpb25Gb3JNZSBzb2Jlci4uLl1d'>sober...</a> </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Calliope and her "brother"</span> share a body, and switch places whenever one goes to sleep or hears the other's name. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Calliope</span> is one of the sweetest and most helpful people the <span class="spoiler" title="you can set spoilers visible by default on your profile" >Post-Scratch</span> Kids have. Her brother, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='W1tBeENyYXp5IG9uIHRoZSBvdGhlciBoYW5kXV0='>on the other hand</a>... This is actually <em>normal</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BizarreAlienBiology' title='/pmwiki/pmwiki.php/Main/BizarreAlienBiology' data-format='W1tCaXphcnJlQWxpZW5CaW9sb2d5IGZvciB0aGVpciBzcGVjaWVzXV0='>for their species</a>. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/MKsTheStrangeCaseOfDrJekyllAndMrHyde' title='/pmwiki/pmwiki.php/Webcomic/MKsTheStrangeCaseOfDrJekyllAndMrHyde' data-format='V2ViY29taWMvTUtzVGhlU3RyYW5nZUNhc2VPZkRySmVreWxsQW5kTXJIeWRl'>MK's The Strange Case of Dr. Jekyll & Mr. Hyde</a></em>, Jekyll is a law-abiding sweetheart to a fault of the high society who constantly fears confrontation especially with the Carews making him prone to getting walked all over. Hyde is a cocky vagabond of the lower class who just takes what he wants even if it means committing theft and he is not above being a ruffian or openly defying the Carews. Unlike most depictions though, this one depicts Hyde as not being evil deep down and just wild and selfish. </li><li> They are one (technically two) of the main characters in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Nightmarish' title='/pmwiki/pmwiki.php/Webcomic/Nightmarish' data-format='V2ViY29taWMve3tOaWdodG1hcmlzaH19'>Nightmarish</a></em>. Jekyll is a slightly self-centered <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGuy' title='/pmwiki/pmwiki.php/Main/NiceGuy' data-format='TmljZUd1eQ=='>Nice Guy</a> who just wants to live as the castle's scientist, while Hyde is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfHarm' title='/pmwiki/pmwiki.php/Main/SelfHarm' data-format='W1tTZWxmSGFybSBTZWxmLUhhcm1pbmddXQ=='>Self-Harming</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigEater' title='/pmwiki/pmwiki.php/Main/BigEater' data-format='QmlnRWF0ZXI='>Big Eater</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Sadist' title='/pmwiki/pmwiki.php/Main/Sadist' data-format='e3tTYWRpc3R9fQ=='>Sadist</a>. They can communicate with each other via reflection or shadow. Oh, and they're also apparently a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDemonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDemonsAreDifferent' data-format='W1tPdXJEZW1vbnNBcmVEaWZmZXJlbnQgZGVtb25dXQ=='>demon</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' title='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' data-format='V2ViY29taWMvVGhlT3JkZXJPZlRoZVN0aWNr'>The Order of the Stick</a></em>: The Ettin in the prequel story "How the Paladin Got His Scar" invokes this. The left head goes on a rampage while the right head pretends to speak reasonably and engage whatever it's attacking. This just serves to distract the target and make it easier to kill. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheSearchForHenryJekyll' title='/pmwiki/pmwiki.php/Webcomic/TheSearchForHenryJekyll' data-format='V2ViY29taWMvVGhlU2VhcmNoRm9ySGVucnlKZWt5bGw='>The Search For Henry Jekyll</a></em> has Jekyll and Hyde, but also Dr. Lanyon, who gained a split personality when Hyde injected him with the same formula used to make him. </li><li> Anna and Susan in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Sire' title='/pmwiki/pmwiki.php/Webcomic/Sire' data-format='V2ViY29taWMve3tTaXJlfX0='>Sire</a></em>. Indeed, they obsess over the original Stevenson work, and are even <span class="spoiler" title="you can set spoilers visible by default on your profile" >descended from Edward Hyde</span>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder18');"> Web Videos </div><div id="folder18" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/BoardJames' title='/pmwiki/pmwiki.php/WebVideo/BoardJames' data-format='V2ViVmlkZW8vQm9hcmRKYW1lcw=='>Board James</a></em> has <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JamesRolfe' title='/pmwiki/pmwiki.php/Creator/JamesRolfe' data-format='Q3JlYXRvci9KYW1lc1JvbGZl'>James Rolfe</a> him play a mild-mannered board game reviewer closer to his normal personality compared to <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheAngryVideoGameNerd' title='/pmwiki/pmwiki.php/WebVideo/TheAngryVideoGameNerd' data-format='V2ViVmlkZW8vVGhlQW5ncnlWaWRlb0dhbWVOZXJk'>The Angry Video Game Nerd</a></em>, his more famous character. One crossover episode reveals that AVGN is in fact Hyde to Board James' Jekyll, and his AVGN side takes over. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Later episodes reveal the dynamic is actually inverted. While AVGN is a foul-mouthed <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Manchild' title='/pmwiki/pmwiki.php/Main/Manchild' data-format='e3tNYW5jaGlsZH19'>Manchild</a>, he does manage to have softer, more sympathetic moments. Board James, on the other hand, is revealed to be an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AxCrazy' title='/pmwiki/pmwiki.php/Main/AxCrazy' data-format='QXhDcmF6eQ=='>Ax-Crazy</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Saw' title='/pmwiki/pmwiki.php/Franchise/Saw' data-format='W1tGcmFuY2hpc2Uve3tTYXd9fSBKaWdzYXctZXNxdWVdXQ=='>Jigsaw-esque</a> murderer known as the Hangman Killer who tortures others using board games for amusement.</span> This also gets a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DramaticIrony' title='/pmwiki/pmwiki.php/Main/DramaticIrony' data-format='RHJhbWF0aWNJcm9ueQ=='>Dramatic Irony</a> nod in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheAngryVideoGameNerdIIASSimilation' title='/pmwiki/pmwiki.php/VideoGame/TheAngryVideoGameNerdIIASSimilation' data-format='VmlkZW9HYW1lL1RoZUFuZ3J5VmlkZW9HYW1lTmVyZElJQVNTaW1pbGF0aW9u'>The Angry Video Game Nerd IIAS Similation</a></em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >where AVGN, after fighting off Board James as a mini-boss, claims he was psycho and was glad he's not him</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/GemmaAndTheBear' title='/pmwiki/pmwiki.php/WebVideo/GemmaAndTheBear' data-format='V2ViVmlkZW8vR2VtbWFBbmRUaGVCZWFy'>Gemma and the Bear</a></em> is a non-villainous example <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs' data-format='UGxheWVkRm9yTGF1Z2hz'>Played for Laughs</a>. Gemma is a nerdy, neurotic white woman who turns into a cheerful, extroverted, gay black man named Bear when she falls asleep. They can't interact directly but are aware of each other, with Bear fancying himself Gemma's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GuardianEntity' title='/pmwiki/pmwiki.php/Main/GuardianEntity' data-format='W1tHdWFyZGlhbkVudGl0eSBwcm90ZWN0b3JdXQ=='>protector</a>. His attempts to be helpful mostly drive her nuts, and, in the first season finale <span class="spoiler" title="you can set spoilers visible by default on your profile" >bring the FBI to her doorstep</span>. </li><li> This is how <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheSpoonyExperiment' title='/pmwiki/pmwiki.php/WebVideo/TheSpoonyExperiment' data-format='W1tXZWJWaWRlby9UaGVTcG9vbnlFeHBlcmltZW50IFNwb29ueV1d'>Spoony</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MadScientist' title='/pmwiki/pmwiki.php/Main/MadScientist' data-format='W1tNYWRTY2llbnRpc3QgRHIuIEluc2Fub11d'>Dr. Insano</a> are portrayed in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Kickassia' title='/pmwiki/pmwiki.php/WebVideo/Kickassia' data-format='V2ViVmlkZW8ve3tLaWNrYXNzaWF9fQ=='>Kickassia</a></em>. This is subject to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NegativeContinuity' title='/pmwiki/pmwiki.php/Main/NegativeContinuity' data-format='TmVnYXRpdmVDb250aW51aXR5'>Negative Continuity</a>; <span class="spoiler" title="you can set spoilers visible by default on your profile" ><em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/ToBoldlyFlee' title='/pmwiki/pmwiki.php/WebVideo/ToBoldlyFlee' data-format='V2ViVmlkZW8vVG9Cb2xkbHlGbGVl'>To Boldly Flee</a></em> has <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retcon' title='/pmwiki/pmwiki.php/Main/Retcon' data-format='e3tyZXRjb259fW5lZA=='>retconned</a> this into an anomaly caused by the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlotHole' title='/pmwiki/pmwiki.php/Main/PlotHole' data-format='UGxvdEhvbGU='>Plot Hole</a> — in 'reality', Spoony and Insano are indeed two separate people</span>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheNecroCritic' title='/pmwiki/pmwiki.php/WebVideo/TheNecroCritic' data-format='V2ViVmlkZW8vVGhlTmVjcm9Dcml0aWM='>The Necro Critic</a>'s sidekick, Devil Critic, is introduced in one of these plots. However, as a subversion, he turns out to just be Necro's brother filling in for him while he's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItMakesSenseInContext' title='/pmwiki/pmwiki.php/Main/ItMakesSenseInContext' data-format='W1tJdE1ha2VzU2Vuc2VJbkNvbnRleHQgaW4gYW4gZW5lcmd5IGRyaW5rLWluZHVjZWQgY29tYV1d'>in an energy drink-induced coma</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParodiedTrope' title='/pmwiki/pmwiki.php/Main/ParodiedTrope' data-format='e3tQYXJvZGllZHxUcm9wZX19'>Parodied</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/LetsPlay/TheRunawayGuys' title='/pmwiki/pmwiki.php/LetsPlay/TheRunawayGuys' data-format='TGV0c1BsYXkvVGhlUnVuYXdheUd1eXM='>The Runaway Guys</a></em>: A regular appearance at their annual Colosseum charity streams is Lord Dona'tor, who is basically <a class='twikilink' href='/pmwiki/pmwiki.php/LetsPlay/TomFawkes' title='/pmwiki/pmwiki.php/LetsPlay/TomFawkes' data-format='TGV0c1BsYXkvVG9tRmF3a2Vz'>Tom Fawkes</a> in an eye-obscuring red bathrobe. He has an ominous maniacal laugh and refers to everyone else as 'Fool!' in his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilSoundsDeep' title='/pmwiki/pmwiki.php/Main/EvilSoundsDeep' data-format='RXZpbFNvdW5kc0RlZXA='>Evil Sounds Deep</a> voice, but since all he does is issue hammy demands that people keep donating to the stream his malevolence should easily be contained. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/VenturianTale' title='/pmwiki/pmwiki.php/WebVideo/VenturianTale' data-format='V2ViVmlkZW8vVmVudHVyaWFuVGFsZQ=='>Venturian Tale</a></em>: This or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemonicPossession' title='/pmwiki/pmwiki.php/Main/DemonicPossession' data-format='W1tEZW1vbmljUG9zc2Vzc2lvbiBkZW1vbmljIHBvc3Nlc3Npb25dXQ=='>demonic possession</a> appears to be the case with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OccultDetective' title='/pmwiki/pmwiki.php/Main/OccultDetective' data-format='W1tPY2N1bHREZXRlY3RpdmUgSm9obm55IEdob3N0XV0='>Johnny Ghost</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialKiller' title='/pmwiki/pmwiki.php/Main/SerialKiller' data-format='W1tTZXJpYWxLaWxsZXIgSmltbXkgQ2Fza2V0XV0='>Jimmy Casket</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder19');"> Western Animation </div><div id="folder19" class="folder" isfolder="true" style="display:block;"> <!--* ''WesternAnimation/{{Arthur}}'': "Jekyll, Jekyll, Hyde, Jekyll, Hyde, Hyde, Jekyll! "Jekyll, Jekyll, Hyde, Jekyll, HYDE!!!"--> <!--* ''WesternAnimation/AtomicBetty'': Minimus' two personalities. The book was even mentioned in the episode where he got stuck on "Hyde" mode.--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BatmanTheAnimatedSeries' title='/pmwiki/pmwiki.php/WesternAnimation/BatmanTheAnimatedSeries' data-format='V2VzdGVybkFuaW1hdGlvbi9CYXRtYW5UaGVBbmltYXRlZFNlcmllcw=='>Batman: The Animated Series</a></em> adds another variation to Two-Face in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheNewBatmanAdventuresE24JudgementDay' title='/pmwiki/pmwiki.php/Recap/TheNewBatmanAdventuresE24JudgementDay' data-format='W1tSZWNhcC9UaGVOZXdCYXRtYW5BZHZlbnR1cmVzRTI0SnVkZ2VtZW50RGF5IEp1ZGdlbWVudCBEYXldXQ=='>Judgement Day</a>" — <span class="spoiler" title="you can set spoilers visible by default on your profile" >he establishes a <em>third</em> personality called "The Judge", who targets Gotham's costumed villains, including Two-Face himself, who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoMadFromTheRevelation' title='/pmwiki/pmwiki.php/Main/GoMadFromTheRevelation' data-format='W1tHb01hZEZyb21UaGVSZXZlbGF0aW9uIEdvZXMgTWFkIGZyb20gdGhlIFJldmVsYXRpb25dXQ=='>Goes Mad from the Revelation</a></span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Beetlejuice1989' title='/pmwiki/pmwiki.php/WesternAnimation/Beetlejuice1989' data-format='V2VzdGVybkFuaW1hdGlvbi9CZWV0bGVqdWljZTE5ODk='>Beetlejuice (1989)</a></em>: <ul ><li> Beetlejuice's sentient car Doomie is ordinarily docile and amiable, but occasionally turns into a manic, werewolf-like vehicle called the Dragster of Doom. </li><li> The episode "Dr. Beetle and Mr. Juice" has B.J. creating a perfume that has a weird effect—it turns whoever applies it into their opposite personae. When it accidentally hits Lydia, she turns from being sweet and introverted into an obnoxious prank-playing biker. Beetlejuice is turned into a handsome and germophobic version of himself, which wears off the instant he starts bathing, and at the end of the episode has Mayor Maynot become a hippie who's happy to let Beetlejuice off the hook for once. </li><li> The episode "Beetlebones" began with Beetlejuice having his bicentennial checkup from a Neitherworld doctor who is a version of Dr. Jekyll and Mr. Hyde, with the difference of personalities being that Jekyll tries to patiently get Beetlejuice to cooperate and Hyde being irate and snappy when Beetlejuice chooses to not take the medical checkup seriously. </li></ul></li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/CountDuckula' title='/pmwiki/pmwiki.php/WesternAnimation/CountDuckula' data-format='V2VzdGVybkFuaW1hdGlvbi9Db3VudER1Y2t1bGE='>Count Duckula</a></em> episode "Doctor Goosewing and Mr. Duck", Von Goosewing invents a potion that reverses everyone's personality. He and Duckula become "wicious wampires", Igor becomes happy and loving and Nanny becomes a brainbox. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DextersLaboratory' title='/pmwiki/pmwiki.php/WesternAnimation/DextersLaboratory' data-format='V2VzdGVybkFuaW1hdGlvbi9EZXh0ZXJzTGFib3JhdG9yeQ=='>Dexter's Laboratory</a></em>: The episode "Monstrosi-Dee Dee" has Dee Dee consuming a contaminated apple and repeatedly turning into a monster and back. Dexter has no idea she is the monster stalking his laboratory, so he follows her advice (when she's human) on where to hide. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheFairlyOddParents' title='/pmwiki/pmwiki.php/WesternAnimation/TheFairlyOddParents' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVGYWlybHlPZGRQYXJlbnRz'>The Fairly OddParents!</a></em>: The episode "Nega-Timmy" has Timmy Turner wish that he did the opposite of what his parents told him to do. The way this wish ends up backfiring is that Mr. Turner tells his son to be good, which transforms Timmy into a fanged, top hat-wearing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnfantTerrible' title='/pmwiki/pmwiki.php/Main/EnfantTerrible' data-format='RW5mYW50VGVycmlibGU='>Enfant Terrible</a> who attempts to use a laser to start a chain of events that will lead to the destruction of Dimmsdale. Timmy ultimately returns to normal after Mr. Turner tells Timmy to be as evil as he can be in response to Nega-Timmy swaying his dad to go along with his plan by promising that one of the results will be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SitcomArchnemesis' title='/pmwiki/pmwiki.php/Main/SitcomArchnemesis' data-format='W1tTaXRjb21BcmNobmVtZXNpcyBEaW5rbGVidXJnXV0='>Dinkleburg</a>'s house getting obliterated. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/FrizFreleng' title='/pmwiki/pmwiki.php/Creator/FrizFreleng' data-format='Q3JlYXRvci9Gcml6RnJlbGVuZw=='>Friz Freleng</a> was particularly fond of this trope, seeing the many cartoon installments he produced with this theme. And for two different animation studios, to boot — <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WarnerBros' title='/pmwiki/pmwiki.php/Creator/WarnerBros' data-format='Q3JlYXRvci9XYXJuZXJCcm9z'>Warner Bros.</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DePatieFrelengEnterprises' title='/pmwiki/pmwiki.php/Creator/DePatieFrelengEnterprises' data-format='Q3JlYXRvci9EZVBhdGllRnJlbGVuZ0VudGVycHJpc2Vz'>De Patie Freleng Enterprises</a>. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/LooneyTunes' title='/pmwiki/pmwiki.php/WesternAnimation/LooneyTunes' data-format='V2VzdGVybkFuaW1hdGlvbi9Mb29uZXlUdW5lcw=='>Looney Tunes</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HydeAndGoTweet' title='/pmwiki/pmwiki.php/WesternAnimation/HydeAndGoTweet' data-format='V2VzdGVybkFuaW1hdGlvbi9IeWRlQW5kR29Ud2VldA=='>Hyde and Go Tweet</a></em>: Dr. Jekyll creates a formula that turns him into the monstrous Mr. Hyde, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilLaugh' title='/pmwiki/pmwiki.php/Main/EvilLaugh' data-format='RXZpbExhdWdo'>Evil Laugh</a> included. It's precisely in the bottle containing the formula that Tweety goes to hide from Sylvester, thus getting transformed into a deranged bird that's twice Sylvester's size. The cat, of course, has no idea Tweety is the monster, so when the latter changes back to normal, the former is still trying to eat him. </li><li> "Dr. Jerkyl's Hide": Effectively a remake of Freleng's "<a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TreeForTwo' title='/pmwiki/pmwiki.php/WesternAnimation/TreeForTwo' data-format='V2VzdGVybkFuaW1hdGlvbi9UcmVlRm9yVHdv'>Tree for Two</a>", only instead of Spike (renamed Alf here) being walloped by a panther, Sylvester hides in Dr. Jerkyl's laboratory while running away from the dogs where he drinks the formula and becomes a monster cat capable of beating up Alf. </li><li> "Hyde and Hare": Bugs Bunny convinces the man who always feeds him at the park to adopt him. The man, Dr. Jekyll, already verges on uncanny territory with his too-big head and small hands. However, when he drinks the red concoction he's prepared at his laboratory and that he's addicted to, he becomes a green, red-eyed monster with hairy limbs. Bugs Bunny doesn't realize Mr. Hyde's real identity until he transforms in front of him while trapped in a closet. Then Bugs goes to the lab and off-screen drinks the red concoction — when he returns to the park, he slowly changes into a monster and scares the elderly without understanding why. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ThePinkPanther' title='/pmwiki/pmwiki.php/WesternAnimation/ThePinkPanther' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVQaW5rUGFudGhlcg=='>The Pink Panther</a></em>: <ul ><li> <em>The Dogfather</em> section: The episode "Watch The Birdie" is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecycledScript' title='/pmwiki/pmwiki.php/Main/RecycledScript' data-format='UmVjeWNsZWRTY3JpcHQ='>Recycled Script</a> of "Dr. Jerkyl's Hide" with the dog gang in the role of, well, the dogs and a yellow bird in Sylvester's role, i.e., drinking a weird liquid thinking it's soda while hiding from his pursuers. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheInspector' title='/pmwiki/pmwiki.php/WesternAnimation/TheInspector' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVJbnNwZWN0b3I='>The Inspector</a></em> section: In the episode "Sicque! Sicque! Sicque!" , the Inspector and Sgt. Deux-Deux are called to investigate a mad scientist's laboratory. Sgt. Deux-Deux is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFool' title='/pmwiki/pmwiki.php/Main/TheFool' data-format='VGhlRm9vbA=='>The Fool</a> and drinks a potion he finds in a beaker to calm his acid reflux because he believes it's water. Never mind the sick green color and the bubbles. It turns him into a monster that goes to torment the Inspector, who, of course, doesn't know it's Sgt. Deux-Deux. </li><li> The <em>Pink Panther</em> section: In "Pink Lightning", Dr. Jekyll fuels his malfunctioning car with the same pink jug he takes to transform into Mr. Hyde (he's transformed at the time). That same car is bought by the Pink Panther. When it stalls, it turns into a monstrous, super fast form that gets the Pink Panther in trouble with the police. </li></ul></li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GarfieldAndFriends' title='/pmwiki/pmwiki.php/WesternAnimation/GarfieldAndFriends' data-format='V2VzdGVybkFuaW1hdGlvbi9HYXJmaWVsZEFuZEZyaWVuZHM='>Garfield and Friends</a></em> did their own spin on the tale in both a <em>Garfield</em> segment and a <em>U.S. Acres</em> segment. <ul ><li> The <em>U.S. Acres</em> episode "Dr. Jekyll & Mr. Wade" began with Orson reading <em>The Strange Case of Dr. Jekyll and Mr. Hyde</em> to the others and has Wade accidentally hypnotized into turning into a hideous brute whenever he hears a bell ring. </li><li> The <em>Garfield</em> segment "Dr. Jekyll and Mr. Mouse" had Garfield tell a version of the story while waiting for his microwave dinner to finish cooking. Garfield's version has the twist of Dr. Jekyll testing his formula on a mouse who subsequently changes into a monster and back whenever he hiccups rather than Jekyll using the formula on himself and becoming Mr. Hyde. </li></ul></li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HereComesTheGrump' title='/pmwiki/pmwiki.php/WesternAnimation/HereComesTheGrump' data-format='V2VzdGVybkFuaW1hdGlvbi9IZXJlQ29tZXNUaGVHcnVtcA=='>Here Comes the Grump</a></em> episode “Witch is Witch” had Terry and Princess Dawn encounter a friendly witch who would become an evil witch every time she said the word “nasty”, she would change back into her nice personality when she said “nice”. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheHuckleberryHoundShow' title='/pmwiki/pmwiki.php/WesternAnimation/TheHuckleberryHoundShow' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVIdWNrbGViZXJyeUhvdW5kU2hvdw=='>The Huckleberry Hound Show</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs' data-format='UGxheWVkRm9yTGF1Z2hz'>Played for Laughs</a>. In the episode "Picadilly Dilly", Huckleberry Hound is tasked with capturing the deranged criminal Picadilly Dilly, a pastiche of Mr. Hyde. The person behind the latter is Dr. Jikkle, who has become addicted to the serum that transforms him into Picadilly Dilly. Huckleberry, as laid back as he is, cannot recognize Picadilly even when the latter is running around him while giggling evilly. </li><li> Several times in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/JackieChanAdventures' title='/pmwiki/pmwiki.php/WesternAnimation/JackieChanAdventures' data-format='V2VzdGVybkFuaW1hdGlvbi9KYWNraWVDaGFuQWR2ZW50dXJlcw=='>Jackie Chan Adventures</a></em> is Jackie split into a good and bad side, usually via the Tiger talisman. These two sides are the same person and represent the balance in all humans of a good and bad side. Ironically, this occurs in one episode in which Jade is performing in a play about Jekyll and Hyde. It's not really "good" and "bad" though so much as "moral pacifist" and "amoral badass": <div class='indent'><strong>Jade</strong> (pointing to amoral Jackie): You're evil! EVIL!<br data-format="\\" /><strong>Uncle</strong>: Not evil. Only misguided. </div></li><li> The second <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperheroEpisode' title='/pmwiki/pmwiki.php/Main/SuperheroEpisode' data-format='U3VwZXJoZXJvRXBpc29kZQ=='>Superhero Episode</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/JimmyTwoShoes' title='/pmwiki/pmwiki.php/WesternAnimation/JimmyTwoShoes' data-format='V2VzdGVybkFuaW1hdGlvbi9KaW1teVR3b1Nob2Vz'>Jimmy Two-Shoes</a></em>, "The Terrific Trio", featured a large, green monster that constantly attacked Lucius out of spite. It was eventually revealed to be Samy, who was constantly transforming thanks to one of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MadScientist' title='/pmwiki/pmwiki.php/Main/MadScientist' data-format='W1tNYWRTY2llbnRpc3QgSGVsb2lzZSYjMDM5O3NdXQ=='>Heloise's</a> potions that magnified a person's inner rage. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Kaeloo' title='/pmwiki/pmwiki.php/WesternAnimation/Kaeloo' data-format='V2VzdGVybkFuaW1hdGlvbi97e0thZWxvb319'>Kaeloo</a></em>: The eponymous character, who is normally a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NiceGirl' title='/pmwiki/pmwiki.php/Main/NiceGirl' data-format='W1tOaWNlR2lybCBjdXRlLCBnZW50bGVdXQ=='>cute, gentle</a> frog, transforms into a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HulkingOut' title='/pmwiki/pmwiki.php/Main/HulkingOut' data-format='W1tIdWxraW5nT3V0IGh1Z2UsIGJ1ZmZlZF1d'>huge, buffed</a>, sadistic toad whenever she gets angry. Some episodes imply that she knows what she's doing, but others imply that she has no control over this. <div class='indent'><strong>Kaeloo:</strong> What did I do this time? </div></li><li> There are some <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/LooneyTunes' title='/pmwiki/pmwiki.php/WesternAnimation/LooneyTunes' data-format='V2VzdGVybkFuaW1hdGlvbi9Mb29uZXlUdW5lcw=='>Looney Tunes</a></em> cartoons exploiting this trope that Friz Freleng <em>didn't</em> direct: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheCaseOfTheStutteringPig' title='/pmwiki/pmwiki.php/WesternAnimation/TheCaseOfTheStutteringPig' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVDYXNlT2ZUaGVTdHV0dGVyaW5nUGln'>The Case of the Stuttering Pig</a></em>, directed by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/FrankTashlin' title='/pmwiki/pmwiki.php/Creator/FrankTashlin' data-format='Q3JlYXRvci9GcmFua1Rhc2hsaW4='>Frank Tashlin</a>: Mr. Goodwill, the lawyer, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExploitedTrope' title='/pmwiki/pmwiki.php/Main/ExploitedTrope' data-format='W1tFeHBsb2l0ZWRUcm9wZSBleHBsb2l0c11d'>exploits</a> this trope to get rid of a group of piglets so he can appropriate the house they just inherited from their Uncle Solomon — Goodwill is the next heir in line. He drinks two glasses of well-shaken <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LampshadeHanging' title='/pmwiki/pmwiki.php/Main/LampshadeHanging' data-format='W1tMYW1wc2hhZGVIYW5naW5nIEpla3lsbCBhbmQgSHlkZSBqdWljZV1d'>Jekyll and Hyde juice</a> to turn into a monster. </li><li> <em>The Impatient Patient</em>, directed by Norman <span class='esc-seq' title='non-wikiword'>McCabe</span>: Daffy Duck goes to Dr. Jerkyll's to get cured of his severe case of hiccup. The place is outright scary but the doctor turns out to be a complete scaredy-cat. So, to successfully frighten the duck and cure him, Jerkyll concocts and drinks a formula to transform into Mr. Hyde. Not that Hyde is any less of a doofus (here his name is Chloe, for whom Daffy had been searching to deliver a telegram). </li><li> <em>The Prize Pest</em>, directed by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertMcKimson' title='/pmwiki/pmwiki.php/Creator/RobertMcKimson' data-format='Q3JlYXRvci9Sb2JlcnRNY0tpbXNvbg=='>Robert McKimson</a>: Porky wins a prize in a radio contest. Cue Daffy Duck inside a gift box being delivered to his door. Naturally, Daffy starts causing mayhem in Porky's house, which gets him kicked out of the place. In response, Daffy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Lampshade' title='/pmwiki/pmwiki.php/Main/Lampshade' data-format='e3tsYW1wc2hhZGV9fXM='>lampshades</a> this trope — in the lawn, he concludes that he'll have to "use his Jekyll and Hyde routine on this one". He then proceeds to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExploitedTrope' title='/pmwiki/pmwiki.php/Main/ExploitedTrope' data-format='W1tFeHBsb2l0ZWRUcm9wZSBleHBsb2l0XV0='>exploit</a> it by scaring Porky into submission. You see, if you mistreat Daffy, he turns into this hideous, fanged duck monster. But if you treat him nicely, he can be the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlatantLies' title='/pmwiki/pmwiki.php/Main/BlatantLies' data-format='W1tCbGF0YW50TGllcyBsb3ZlbGllc3Qgb2YgcGV0c11d'>loveliest of pets</a>. In truth, Daffy merely messes the feathers on his head and puts some fake fangs on his beak. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MaryShelleysFrankenhole' title='/pmwiki/pmwiki.php/WesternAnimation/MaryShelleysFrankenhole' data-format='V2VzdGVybkFuaW1hdGlvbi9NYXJ5U2hlbGxleXNGcmFua2VuaG9sZQ=='>Mary Shelley's Frankenhole</a></em> has <em>the</em> Jekyll and Hyde, whose serum causes <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JohnBelushi' title='/pmwiki/pmwiki.php/Creator/JohnBelushi' data-format='Q3JlYXRvci9Kb2huQmVsdXNoaQ=='>John Belushi</a> to turn into <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JamesBelushi' title='/pmwiki/pmwiki.php/Creator/JamesBelushi' data-format='W1tDcmVhdG9yL0phbWVzQmVsdXNoaSBKaW0gQmVsdXNoaV1d'>Jim Belushi</a>. Victor <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeconstructedTrope' title='/pmwiki/pmwiki.php/Main/DeconstructedTrope' data-format='W1tEZWNvbnN0cnVjdGVkVHJvcGUgYWxzbyByaWRpY3VsZXMgaGltXV0='>also ridicules him</a> for being his own monster. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MonaTheVampire' title='/pmwiki/pmwiki.php/WesternAnimation/MonaTheVampire' data-format='V2VzdGVybkFuaW1hdGlvbi9Nb25hVGhlVmFtcGlyZQ=='>Mona the Vampire</a></em>: "Dr. Java and Mr. Hyde" has the plot involve a coffee shop producing coffee that Mona and her friends believe is causing the adults to become aggressive, jittery and angry monsters after they consume it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MonsterFarm' title='/pmwiki/pmwiki.php/WesternAnimation/MonsterFarm' data-format='V2VzdGVybkFuaW1hdGlvbi9Nb25zdGVyRmFybQ=='>Monster Farm</a></em>: One of the monster animals in is Dr. Woolly, a meek and bespectacled sheep who mutates into a deranged brute named Mr. Ewwe whenever he gets wet (getting wet again changes him back). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MotorMania' title='/pmwiki/pmwiki.php/WesternAnimation/MotorMania' data-format='V2VzdGVybkFuaW1hdGlvbi9Nb3Rvck1hbmlh'>Motor Mania</a></em>: It features Goofy as the mild-mannered, friendly Mr. Walker. However, whenever Mr. Walker gets into his car, he becomes the ill-tempered, violent, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrivesLikeCrazy' title='/pmwiki/pmwiki.php/Main/DrivesLikeCrazy' data-format='W1tEcml2ZXNMaWtlQ3JhenkgcmVja2xlc3MgTXIuIFdoZWVsZXIuXV0='>reckless Mr. Wheeler.</a> <!-- * ''WesternAnimation/MyLittlePonyFriendshipIsMagic'': Princess Luna as Jekyll and Nightmare Moon as Hyde.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ThePerilsOfPenelopePitstop' title='/pmwiki/pmwiki.php/WesternAnimation/ThePerilsOfPenelopePitstop' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVQZXJpbHNPZlBlbmVsb3BlUGl0c3RvcA=='>The Perils of Penelope Pitstop</a></em>: The Hooded Claw rented a house from Jekyll and Hyde as part of a plan to capture Penelope in "London Town Treachery", inviting Penelope and the Ant Hill Mob for tea while disguised as the Earl of Krumpet. After realizing there was no tea there, he improvised with some random ingredients. He planned to have the Bully Brothers capture Penelope while he distracted the Ant Hill Mob with the tea. However, the tea turned them into seven Mr. Hydes and they captured Penelope. To get their <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SentientVehicle' title='/pmwiki/pmwiki.php/Main/SentientVehicle' data-format='U2VudGllbnRWZWhpY2xl'>Sentient Vehicle</a> Chugaboom to cooperate, they gave him some of the "tea" and he also became a Mr. Hyde. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheRealGhostbusters' title='/pmwiki/pmwiki.php/WesternAnimation/TheRealGhostbusters' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVSZWFsR2hvc3RidXN0ZXJz'>The Real Ghostbusters</a></em> episode "The Two Faces of Slimer" had a leak in the Containment Unit unleash some ectoplasmic energy that infected Slimer and caused him to transform into a larger, uglier, and more vicious ghost (dubbed "Big Green" by the Ghostbusters) whenever he went to sleep. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheRobonicStooges' title='/pmwiki/pmwiki.php/WesternAnimation/TheRobonicStooges' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVSb2JvbmljU3Rvb2dlcw=='>The Robonic Stooges</a></em>: The episode "Dr. Jekyll and Hyde Curly" has Dr. Jerkyll creating his Red Hot Atomic Pepper while in prison. He dusts it all over himself and, as a result, an ugly, Mr. Hyde-like head grows in the back of his head. With the extra strength that the head provides, they both escape from jail and proceed to kidnap Curly. Jerkyll eventually <span class="spoiler" title="you can set spoilers visible by default on your profile" >captures all three stooges and dusts his Pepper over them as well, with the same results. The heads control their bodies (but not minds) to make them do Jerkyll's bidding</span>. Every application of the Pepper has the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='UnVubmluZ0dhZw=='>Running Gag</a> of the person not realizing they just got a head on their nape, with the head answering: <div class='indent'> That's what you think! </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ScoobyDooWhereAreYou' title='/pmwiki/pmwiki.php/WesternAnimation/ScoobyDooWhereAreYou' data-format='V2VzdGVybkFuaW1hdGlvbi9TY29vYnlEb29XaGVyZUFyZVlvdQ=='>Scooby-Doo, Where Are You!</a></em>: "Nowhere To Hyde" (season 2, episode 1) mixes this with the standard <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScoobyDooHoax' title='/pmwiki/pmwiki.php/Main/ScoobyDooHoax' data-format='U2Nvb2J5RG9vSG9heA=='>"Scooby-Doo" Hoax</a>. A diamond necklace is stolen by a figure people see is the Ghost of Hyde. The gang (after circumstances from confronting Hyde) follow him to a house in the woods where they meet Dr. Jekyll, who says he's the ghost of Hyde after attempting to mix and test a vitamin formula. The standard investigations and chases ensue and after Hyde is captured, it turns out the Hyde <em>was</em> Dr. Jekyll in a mask who tried to frame his housekeeper for the crime. </li><li> Norman Osborn and the Goblin in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SpiderManTheAnimatedSeries' title='/pmwiki/pmwiki.php/WesternAnimation/SpiderManTheAnimatedSeries' data-format='V2VzdGVybkFuaW1hdGlvbi9TcGlkZXJNYW5UaGVBbmltYXRlZFNlcmllcw=='>Spider-Man: The Animated Series</a></em>; unlike most depictions, this version of Osborn was a decent guy (or at least trying to be one), while the Goblin was as homicidal as ever. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/StaticShock' title='/pmwiki/pmwiki.php/WesternAnimation/StaticShock' data-format='V2VzdGVybkFuaW1hdGlvbi9TdGF0aWNTaG9jaw=='>Static Shock</a></em> episode "Tantrum" had Virgil Hawkins/Static's classmate Thomas Kim transform into a purple behemoth whenever he got angry. Static even compares the transformation to Jekyll and Hyde. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TomAndJerry' title='/pmwiki/pmwiki.php/Franchise/TomAndJerry' data-format='RnJhbmNoaXNlL1RvbUFuZEplcnJ5'>Tom and Jerry</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DrJekyllAndMrMouse' title='/pmwiki/pmwiki.php/WesternAnimation/DrJekyllAndMrMouse' data-format='V2VzdGVybkFuaW1hdGlvbi9Eckpla3lsbEFuZE1yTW91c2U='>Dr. Jekyll and Mr. Mouse</a></em>: Desperate to stop Jerry from drinking the milk he stole, Tom pours all sorts of poisons on the said milk. Instead of killing Jerry, it transforms him into an invulnerable super mouse with super strength. Unlike other cases of this trope, Jerry is aware of himself during his transformation and there's no trigger to set it off. That and the fact the one who creates the serum (aka Jekyll) is not the one suffering its effects. </li><li> The episode "See Dr. Jackal and Hide" of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheTomAndJerryShow' title='/pmwiki/pmwiki.php/WesternAnimation/TheTomAndJerryShow' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVUb21BbmRKZXJyeVNob3c='>The Tom and Jerry Show</a></em>, which is a reworking of <em>Dr. Jekyll and Mr. Mouse</em>. In this instance, it's a human scientist who tests a growth serum he created on himself. Predictably, everything goes wrong and he transforms into a long-haired, monster that chases Tom and Jerry until the effects wear off. He doesn't remember a thing and randomly switches back to Hyde mode. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Transformers' title='/pmwiki/pmwiki.php/Franchise/Transformers' data-format='RnJhbmNoaXNlL3t7VHJhbnNmb3JtZXJzfX0='>Transformers</a></em>: <ul ><li> The Autobot Punch adopted a Decepticon personality as Counter-Punch, so as to play a double agent. He has lost some sense of self-identity because the Counter-Punch personality takes over, leaving him with a sense that he's missed out on the past hour or so. </li><li> It also happened in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BeastMachines' title='/pmwiki/pmwiki.php/WesternAnimation/BeastMachines' data-format='V2VzdGVybkFuaW1hdGlvbi9CZWFzdE1hY2hpbmVz'>Beast Machines</a></em>, with Savage and Noble. Savage is a blind, insane, vicious dragon, while Noble is an intelligent and cunning <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Wolfman' title='/pmwiki/pmwiki.php/Main/Wolfman' data-format='W1t7e1dvbGZtYW59fSB3b2xmYm90XV0='>wolfbot</a>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Subverted, in that they're Megatron, playing their sympathies to get into position.</span> </li></ul></li><li> Morph from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/XMenTheAnimatedSeries' title='/pmwiki/pmwiki.php/WesternAnimation/XMenTheAnimatedSeries' data-format='V2VzdGVybkFuaW1hdGlvbi9YTWVuVGhlQW5pbWF0ZWRTZXJpZXM='>X-Men: The Animated Series</a></em>, after coming <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BackFromTheDead' title='/pmwiki/pmwiki.php/Main/BackFromTheDead' data-format='QmFja0Zyb21UaGVEZWFk'>Back from the Dead</a>, often wavered back and forth between his normal, "Jekyll" self and a semi-undead "Mr. Hyde" alter-ego who blamed the X-Men for leaving him behind on a failed mission. It turned out he was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrainwashedAndCrazy' title='/pmwiki/pmwiki.php/Main/BrainwashedAndCrazy' data-format='W1tCcmFpbndhc2hlZEFuZENyYXp5IG1pbmQtY29udHJvbGxlZF1d'>mind-controlled</a> by the season's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a>, but the effects didn't leave him for a good while afterward. At one point, he even hides out with a theater troop, where he performs "Jekyll and Hyde", using his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VoluntaryShapeshifting' title='/pmwiki/pmwiki.php/Main/VoluntaryShapeshifting' data-format='W1tWb2x1bnRhcnlTaGFwZXNoaWZ0aW5nIHNoYXBlc2hpZnRpbmddXQ=='>shapeshifting</a> powers to play both roles. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/YogisSpaceRace' title='/pmwiki/pmwiki.php/WesternAnimation/YogisSpaceRace' data-format='V2VzdGVybkFuaW1hdGlvbi9Zb2dpc1NwYWNlUmFjZQ=='>Yogi's Space Race</a></em>: Captain Good and Phantom Phink; actually a subversion, since "Captain Good" was a disguise to begin with.<span class="notelabel" onclick="togglenote('note1uzam');"><sup>note </sup></span><span id="note1uzam" class="inlinefolder" isnote="true" onclick="togglenote('note1uzam');" style="cursor:pointer;font-size:smaller;display:none;">He only did "good deeds" in order to keep up the charade.</span> Also parodied in one of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='W1tSdW5uaW5nR2FnIFNwYWNlIFJhY2UgYmlvZ3JhcGh5XV0='>Space Race biography</a> segments which describe Phantom Phink<span class="notelabel" onclick="togglenote('note2pqv3');"><sup>note </sup></span><span id="note2pqv3" class="inlinefolder" isnote="true" onclick="togglenote('note2pqv3');" style="cursor:pointer;font-size:smaller;display:none;">An original character created for this series.</span> as Jekyll's descendant. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IdenticalGrandson' title='/pmwiki/pmwiki.php/Main/IdenticalGrandson' data-format='W1tJZGVudGljYWxHcmFuZHNvbiBXaXRoICJEci4gSmVreWxsIiBsb29raW5nIGxpa2UgIkNhcHRhaW4gR29vZCIgYW5kICJNci4gSHlkZSIgbG9va2luZyBsaWtlICJQaGFudG9tIFBoaW5rIl1d'>With "Dr. Jekyll" looking like "Captain Good" and "Mr. Hyde" looking like "Phantom Phink"</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheProudFamily' title='/pmwiki/pmwiki.php/WesternAnimation/TheProudFamily' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVQcm91ZEZhbWlseQ=='>The Proud Family</a></em>: In "Who You Callin' A Sissy?" it's revealed that Michael Collins has a monstrous Hyde persona that may have supernatural abilities. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder20');"> Other </div><div id="folder20" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Website/TVTropes' title='/pmwiki/pmwiki.php/Website/TVTropes' data-format='V2Vic2l0ZS9UVlRyb3Blcw=='>TV Tropes</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/SugarWiki/SugarWiki' title='/pmwiki/pmwiki.php/SugarWiki/SugarWiki' data-format='U3VnYXJXaWtpL1N1Z2FyV2lraQ=='>Sugar Wiki</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/DarthWiki/DarthWiki' title='/pmwiki/pmwiki.php/DarthWiki/DarthWiki' data-format='RGFydGhXaWtpL0RhcnRoV2lraQ=='>Darth Wiki</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder21');"> Real Life </div><div id="folder21" class="folder" isfolder="true" style="display:block;"> <ul ><li> According to Colin Willson's <em>History of Murder</em>, the Thugee cult of <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/India' title='/pmwiki/pmwiki.php/UsefulNotes/India' data-format='VXNlZnVsTm90ZXMve3tJbmRpYX19'>India</a> were sort of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthInTelevision' title='/pmwiki/pmwiki.php/Main/TruthInTelevision' data-format='VHJ1dGhJblRlbGV2aXNpb24='>Truth in Television</a> example of this achieved through brainwashing, as they would lead normal lives most of the time, but then commit mass murder when seized by bloodlust. Wilson includes comments from Thugs to the effect that while generally they treated their killings as committed as within a dream, many felt that this murderous life was the real one rather than their respectable life. </li><li> Musth, a hormonal surge experienced periodically by adult male elephants, can turn even the friendliest of pachyderms into a temperamental, violent threat. </li><li> Locusts live as timid, solitary grasshoppers until their population gets too concentrated, at which point their hormonal levels shift and they begin swarming, migrating <em>en masse</em> and devouring every bit of vegetation in sight. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AscendedToCarnivorism' title='/pmwiki/pmwiki.php/Main/AscendedToCarnivorism' data-format='W1tBc2NlbmRlZFRvQ2Fybml2b3Jpc20gQW5kIHNvbWV0aW1lcyB0aGV5JiMwMzk7cmUgbm90IGV2ZW4gdGhhdCBmdXNzeV1d'>And sometimes they're not even that fussy</a>. </li><li> The infamous Zodiac Killer claimed this in one of his letters. He said that he would "lose all control" to his Zodiac persona soon, and set up a bomb to blow up children. However, this may have been just a trick to humiliate the police once again. </li></ul></div> </p><p><hr data-format='——' /> <div class='indent'><em>Jekyll Jekyll Hyde! Jekyll Hyde Hyde! Jekyll!<br data-format="\\" />Jekyll Jekyll Hyde! Jekyll <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Arthur' title='/pmwiki/pmwiki.php/WesternAnimation/Arthur' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL3t7QXJ0aHVyfX0gSHl5eXl5eWRlIV1d'>Hyyyyyyde!</a></em> </div><hr data-format='——' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div> </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="f2744z" data-video-descrip="Dr. Henry Jekyll drinks the potion that transforms him into the evil Mr. Edward Hyde." data-video-title="Jekyll Becomes Hyde" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f2744z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f2744z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f2744z.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f2744z.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.00" data-video-rating-count="3" data-video-media-sources="Literature/TheStrangeCaseOfDrJekyllAndMrHyde,Recap/WishboneS1E20MixedBreeds,Series/Wishbone" 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/f2744z.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f2744z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f2744z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f2744z.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">Jekyll Becomes Hyde</h2> <p class="_pmvv-vidbox-descTxt"> Dr. Henry Jekyll drinks the potion that transforms him into the evil Mr. Edward Hyde. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="fkhu6t" data-video-descrip="Dr. Kirk Langstrom reveals to Batman that he developed a formula to create an entirely new species that's neither man nor bat. Unfortunately, when he tested it on himself, he found himself unable to stop, as the beast has taken over him, and now he has become the creature known as...Man-Bat." data-video-title="Man-Bat" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fkhu6t_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fkhu6t.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fkhu6t.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fkhu6t.jpg" data-video-trope="Main/BatPeople" data-video-tropename="Bat People" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Franchise/Batman,Main/AnimalisticAbomination,Main/BeastMan,Main/EvilLaugh,Main/GiantFlyer,Main/GollumMadeMeDoIt,Main/JekyllAndHyde,Main/ProfessorGuineaPig,Main/SplitPersonalityTakeover,Main/TransformationSequence,Main/VoiceOfTheLegion,Recap/BatmanTheAnimatedSeriesE1OnLeatherWings,WesternAnimation/BatmanTheAnimatedSeries" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fkhu6t.jpg"> <p><span class="bold">Man-Bat</span></p> </a> <a href="#video-link" data-video-id="y470r4" data-video-descrip="In the &quot;Everybody (Backstreet's Back)&quot; video, Kevin plays the &quot;Jekyll/Hyde&quot; character" data-video-title="Kevin Scott Richardson" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/y470r4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/y470r4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/y470r4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/y470r4.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/TwoFaced,Music/BackstreetBoys" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/y470r4.jpg"> <p><span class="bold">Kevin Scott Ric...</span></p> </a> <a href="#video-link" data-video-id="saew4s" data-video-descrip="Norman's vicious alter ego reveals himself to him." data-video-title="Norman and the Goblin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/saew4s_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/saew4s.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/saew4s.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/saew4s.jpg" data-video-trope="Main/TheManInTheMirrorTalksBack" data-video-tropename="The Man in the Mirror Talks Back" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/SpiderMan1,Main/EvilLaugh,Main/GoblinFace,Main/JekyllAndHyde,Main/SplitPersonality" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/saew4s.jpg"> <p><span class="bold">Norman and the ...</span></p> </a> <a href="#video-link" data-video-id="d1g04o" data-video-descrip="Alternating between her good and evil personalities, Jacqueline Hyde delivers a clue about the Berlin Wall." data-video-title="Jacqueline Hyde" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d1g04o_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d1g04o.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d1g04o.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d1g04o.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Series/WhereInTimeIsCarmenSandiego" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d1g04o.jpg"> <p><span class="bold">Jacqueline Hyde</span></p> </a> <a href="#video-link" data-video-id="ykub5r" data-video-descrip="Count Dracula of Wallachia is soft-spoken while Alucard is... TheCrimsonFuckr." data-video-title="Count Dracula & Alucard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ykub5r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ykub5r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ykub5r.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykub5r.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/HellsingUltimateAbridged" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykub5r.jpg"> <p><span class="bold">Count Dracula &...</span></p> </a> <a href="#video-link" data-video-id="h6z3df" data-video-descrip="In Kickassia, Dr. Insano is potrayed as Spoony's evil alternate personality. " data-video-title="SpoonyOne and Dr. Insano" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h6z3df_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h6z3df.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h6z3df.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h6z3df.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/Kickassia" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h6z3df.jpg"> <p><span class="bold">SpoonyOne and D...</span></p> </a> </div> </div> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/InnerChild">Inner Child</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes">Split Personality Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheJekyllIsAJerk">The Jekyll Is a Jerk</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheKillerInMe">The Killer in Me</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IdentityIndex">Identity Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheJekyllIsAJerk">The Jekyll Is a Jerk</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/InnerChild">Inner Child</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/InternalConflictTropes">Internal Conflict Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/JudgementOfParis">Judgement of Paris</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/InexplicablyIdenticalIndividuals">Inexplicably Identical Individuals</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Doppelganger">Doppelgänger</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LegendaryImpostor">Legendary Impostor</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/TheIrishQuestion">The Irish Question</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/UnitedKingdom">UsefulNotes/United Kingdom</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/KnightFever">Knight Fever</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheJeeves">The Jeeves</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/Europe">UsefulNotes/Europe</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheJoyOfX">The Joy of X</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/InspectorLestrade">Inspector Lestrade</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FountainOfExpies">Fountain of Expies</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/JustLikeRobinHood">Just Like Robin Hood</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/JackTheRipoff">Jack the Ripoff</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IndexOfGothicHorrorTropes">Index of Gothic Horror Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/LadyInRed">Lady in Red</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/TheStrangeCaseOfDrJekyllAndMrHyde">The Strange Case of Dr. Jekyll and Mr. Hyde</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/Literature">ImageSource/Literature</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PandorasBox">Pandora's Box</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ImmortalHero">Immortal Hero</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/LiveActionFilmsAToL">QuoteSource/Live-Action Films (A to L)</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SomewhereAMammalogistIsCrying">Somewhere, a Mammalogist Is Crying</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheJeeves">The Jeeves</a> </li> <li> <a href="/pmwiki/pmwiki.php/TimeImmemorial/TropesHToN">TimeImmemorial/Tropes H to N</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/JeopardyThinkingMusic">Jeopardy! Thinking Music</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/JawsAttackParody">"Jaws" Attack Parody</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Plots">Plots</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/JigsawPuzzlePlot">Jigsaw Puzzle Plot</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/Heidi">Heidi</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PublicDomainCharacter">Public Domain Character</a> </li> <li> <a href="/pmwiki/pmwiki.php/Literature/JohnCarterOfMars">John Carter of Mars</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 & 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-f2744z" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f2744z.jpg" data-video-title="Jekyll Becomes Hyde" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f2744z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f2744z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f2744z.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">Jekyll Becomes Hyde</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Dr. Henry Jekyll drinks the potion that transforms him into the evil Mr. Edward Hyde. </p> <div class="rating-row" data-video-id="f2744z" > <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">★</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">★</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">★</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">★</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">★</label> </div> <div id="star-rating-total"> 4 (3 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / JekyllAndHyde</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="f2744z" data-vimeo-id="" data-video-descrip="Dr. Henry Jekyll drinks the potion that transforms him into the evil Mr. Edward Hyde." data-video-title="Jekyll Becomes Hyde" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f2744z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f2744z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f2744z.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f2744z.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.00" data-video-rating-count="3" data-video-media-sources="Literature/TheStrangeCaseOfDrJekyllAndMrHyde,Recap/WishboneS1E20MixedBreeds,Series/Wishbone" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/f2744z.jpg"> <p><span class="bold">Jekyll Becomes ...</span></p> </a> <a href="#video-link" data-video-id="fkhu6t" data-vimeo-id="" data-video-descrip="Dr. Kirk Langstrom reveals to Batman that he developed a formula to create an entirely new species that's neither man nor bat. Unfortunately, when he tested it on himself, he found himself unable to stop, as the beast has taken over him, and now he has become the creature known as...Man-Bat." data-video-title="Man-Bat" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fkhu6t_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fkhu6t.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fkhu6t.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fkhu6t.jpg" data-video-trope="Main/BatPeople" data-video-tropename="Bat People" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="18" data-video-media-sources="Franchise/Batman,Main/AnimalisticAbomination,Main/BeastMan,Main/EvilLaugh,Main/GiantFlyer,Main/GollumMadeMeDoIt,Main/JekyllAndHyde,Main/ProfessorGuineaPig,Main/SplitPersonalityTakeover,Main/TransformationSequence,Main/VoiceOfTheLegion,Recap/BatmanTheAnimatedSeriesE1OnLeatherWings,WesternAnimation/BatmanTheAnimatedSeries" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fkhu6t.jpg"> <p><span class="bold">Man-Bat</span></p> </a> <a href="#video-link" data-video-id="y470r4" data-vimeo-id="" data-video-descrip="In the &quot;Everybody (Backstreet's Back)&quot; video, Kevin plays the &quot;Jekyll/Hyde&quot; character" data-video-title="Kevin Scott Richardson" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/y470r4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/y470r4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/y470r4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/y470r4.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/TwoFaced,Music/BackstreetBoys" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/y470r4.jpg"> <p><span class="bold">Kevin Scott Ric...</span></p> </a> <a href="#video-link" data-video-id="saew4s" data-vimeo-id="" data-video-descrip="Norman's vicious alter ego reveals himself to him." data-video-title="Norman and the Goblin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/saew4s_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/saew4s.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/saew4s.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/saew4s.jpg" data-video-trope="Main/TheManInTheMirrorTalksBack" data-video-tropename="The Man in the Mirror Talks Back" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="33" data-video-media-sources="Film/SpiderMan1,Main/EvilLaugh,Main/GoblinFace,Main/JekyllAndHyde,Main/SplitPersonality" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/saew4s.jpg"> <p><span class="bold">Norman and the ...</span></p> </a> <a href="#video-link" data-video-id="d1g04o" data-vimeo-id="" data-video-descrip="Alternating between her good and evil personalities, Jacqueline Hyde delivers a clue about the Berlin Wall." data-video-title="Jacqueline Hyde" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d1g04o_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d1g04o.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d1g04o.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d1g04o.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="Series/WhereInTimeIsCarmenSandiego" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d1g04o.jpg"> <p><span class="bold">Jacqueline Hyde</span></p> </a> <a href="#video-link" data-video-id="ykub5r" data-vimeo-id="" data-video-descrip="Count Dracula of Wallachia is soft-spoken while Alucard is... TheCrimsonFuckr." data-video-title="Count Dracula & Alucard" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ykub5r_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ykub5r.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ykub5r.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykub5r.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="16" data-video-media-sources="WebVideo/HellsingUltimateAbridged" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ykub5r.jpg"> <p><span class="bold">Count Dracula &...</span></p> </a> <a href="#video-link" data-video-id="h6z3df" data-vimeo-id="480118777" data-video-descrip="In Kickassia, Dr. Insano is potrayed as Spoony's evil alternate personality. " data-video-title="SpoonyOne and Dr. Insano" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h6z3df_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h6z3df.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h6z3df.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h6z3df.jpg" data-video-trope="Main/JekyllAndHyde" data-video-tropename="Jekyll & Hyde" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.09" data-video-rating-count="11" data-video-media-sources="WebVideo/Kickassia" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h6z3df.jpg"> <p><span class="bold">SpoonyOne and D...</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=ec043c03feebb9abf9e24e78a6643a300f7ab871'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=ec043c03feebb9abf9e24e78a6643a300f7ab871'; } 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&c2=38282685&cv=3.6.0&cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>