CINXE.COM

Spin-Off - 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 : "0be7dc0061d227d69754a0ef6494d97a715e244d", 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>Spin-Off - TV Tropes</title> <meta name="description" content="Spin-Offs are when part of a successful work, usually characters, but sometimes a general concept (first you have the Law, then you have the Order), are &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/SpinOff" /> <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="Spin-Off - TV Tropes" /> <meta name="twitter:description" content="Spin-Offs are when part of a successful work, usually characters, but sometimes a general concept (first you have the Law, then you have the Order), are &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/mario_golf_cover_7.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Spin-Off - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/SpinOff" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/mario_golf_cover_7.png" /> <meta property="og:description" content="Spin-Offs are when part of a successful work, usually characters, but sometimes a general concept (first you have the Law, then you have the Order), are taken and given a second show of their own. From a producer's perspective, it's a chance to &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=0be7dc0061d227d69754a0ef6494d97a715e244d" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/AuthorAppeal" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/ComicBook/SonicTheHedgehogPromoComic" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, oauth_finalize, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (oauth_finalize ? '&oauth_finalize=' + encodeURIComponent(oauth_finalize) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]:not(#signup-form-toggles a)'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTargetId = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); const isExclusive = targetWithToggleTarget.getAttribute('data-click-toggle-exclusive') === 'true'; if (isExclusive) { // Exclusive mode: toggle target and clear siblings const toggleTarget = document.getElementById(toggleTargetId); if (toggleTarget) { // Remove the toggle class from all siblings const siblings = Array.from(toggleTarget.parentNode.children); for (let sibling of siblings) { if (sibling !== toggleTarget) { sibling.classList.remove(toggleClass); } } // Add the toggle class to the target element toggleTarget.classList.add(toggleClass); } } else { // Non-exclusive mode: toggle targets normally if (toggleTargetId.indexOf(',') > -1) { const targets = toggleTargetId.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTargetId).forEach(el => { el.classList.toggle(toggleClass); }); } } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/SpinOff?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/SpinOff"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.SpinOff" 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.SpinOff" 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/SpinOff?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="SpinOff"/> <input type="hidden" id="article_id" value="6190" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/SpinOff</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"> Spin-Off </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": "Spin-Off", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/SpinOff" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Spin-Off", "headline": "Spin-Off", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/SpinOff", "image": "https://static.tvtropes.org/pmwiki/pub/images/mario_golf_cover_7.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2020-03-25T00:00:00-07:00", "dateModified": "2025-02-16T10:32:57-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/SpinOff" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Laconic/Spinoff" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/Spinoff" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/SpinOff?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/SpinOff?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/SpinOff?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/SpinOff?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/SpinOff?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/SpinOff?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/SpinOff?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/SpinOff?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/SpinOff?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/SpinOff?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/SpinOff?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/SpinOff?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/SpinOff?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/SpinOff?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/SpinOff?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/SpinOff?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/SpinOff?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/SpinOff?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/SpinOff?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/SpinOff?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/SpinOff?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/SpinOff?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/SpinOff?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/SpinOff?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/SpinOff?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/SpinOff?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/SpinOff?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--&#010;--> <!-- Administrivia/ZeroContextExamples are not allowed. Please add context before uncommenting.--> <!-- Types are not examples.--> <!-- Just putting arrows between work names is not context.--> <!-- Explain what part of the work is spun off and how the child series relates to its parent.--> <!--&#010;--> <!--&#010;--> <div class="quoteright" style="width:304px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MarioGolf' title='/pmwiki/pmwiki.php/VideoGame/MarioGolf' data-format='W1tWaWRlb0dhbWUvTWFyaW9Hb2xmIGh0dHBzOi8vc3RhdGljLnR2dHJvcGVzLm9yZy9wbXdpa2kvcHViL2ltYWdlcy9tYXJpb19nb2xmX2NvdmVyXzcucG5nXV0='><div class="lazy_load_img_box" style="padding-top:73.68%"><img src='https://static.tvtropes.org/pmwiki/pub/images/mario_golf_cover_7.png' class='embeddedimage' border='0' alt='Spin-Off (trope)' width=304 height=224></div></a></div> <div class="acaptionright" style="width:304px;" >The Mario gang takes a break from bickering with each other and putter up.</div> </p><p><div class='indent'><em>"Spinoff"! Is there any word more thrilling to the human soul? Hi, I'm Troy <span class='esc-seq' title='non-wikiword'>McClure</span>. You may remember me from such TV spinoffs as </em>Son of <a class='twikilink' href='/pmwiki/pmwiki.php/Series/SanfordAndSon' title='/pmwiki/pmwiki.php/Series/SanfordAndSon' data-format='U2VyaWVzL1NhbmZvcmRBbmRTb24='>Sanford and Son</a><em> and </em>After<a class='twikilink' href='/pmwiki/pmwiki.php/Series/Mannix' title='/pmwiki/pmwiki.php/Series/Mannix' data-format='e3tTZXJpZXMvTWFubml4fX0='>Mannix</a><em>.</em> <div class='indent'>&#8212; <strong>Troy <span class='esc-seq' title='non-wikiword'>McClure</span></strong>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' title='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTaW1wc29ucw=='>The Simpsons</a></em>, "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheSimpsonsS8E24TheSimpsonsSpinOffShowcase' title='/pmwiki/pmwiki.php/Recap/TheSimpsonsS8E24TheSimpsonsSpinOffShowcase' data-format='W1tSZWNhcC9UaGVTaW1wc29uc1M4RTI0VGhlU2ltcHNvbnNTcGluT2ZmU2hvd2Nhc2UgVGhlIFNpbXBzb25zIFNwaW4tT2ZmIFNob3djYXNlXV0='>The Simpsons Spin-Off Showcase</a>" </div></div></p><p>Spin-Offs are when part of a successful work, usually characters, but sometimes a general concept (<a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/LawAndOrder' title='/pmwiki/pmwiki.php/Franchise/LawAndOrder' data-format='W1tGcmFuY2hpc2UvTGF3QW5kT3JkZXIgZmlyc3QgeW91IGhhdmUgdGhlIExhdywgdGhlbiB5b3UgaGF2ZSB0aGUgT3JkZXJdXQ=='>first you have the Law, then you have the Order</a>), are taken and given a second show of their own. </p><p>From a producer's perspective, it's a chance to explore other aspects of a concept. Actors can find opportunities to grow in their craft, as well as rise in importance by moving from just being part of an ensemble to having a show built around them. For the networks, it's a chance to establish a show with a built-in audience, making it that much easier for them to sell advertising. </p><p>Lots of spinoffs go on to be successful shows in their own right, sometimes even <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='W1tNb3JlUG9wdWxhclNwaW5vZmYgc3VycGFzc2luZyB0aGUgcGFyZW50IHNlcmllcyBpbiBwb3B1bGFyaXR5XV0='>surpassing the parent series in popularity</a>. Others crash and burn (<em>Joanie Loves Chachi</em>, anyone?), suggesting that there is no such thing as a sure thing. Nevertheless, networks keep trying them. </p><p><h2>There are many different kinds of spinoffs, including:</h2> </p><p><ul ><li> Where a character leaves a show and joins or starts another one, and the two run concurrently. Sometimes called a <a class='urllink' href='https://en.wikipedia.org/wiki/Sister_show'>sister show<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Crossover' title='/pmwiki/pmwiki.php/Main/Crossover' data-format='W1t7e0Nyb3Nzb3Zlcn19IENoYXJhY3RlcnMgbWF5IGNyb3NzIG92ZXIgZnJvbSB0aW1lIHRvIHRpbWUuXV0='>Characters may cross over from time to time.</a> </li><li> Where a show comes to an end and a character from it is given his or her own new show. Provides an opportunity to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retool' title='/pmwiki/pmwiki.php/Main/Retool' data-format='e3tSZXRvb2x9fQ=='>Retool</a> the character as well. </li><li> Where a character is brought on to an existing show simply in order to be spun off, hopefully making some of the original audience into viewers of the new show. (See <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' title='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' data-format='UG9vcmx5RGlzZ3Vpc2VkUGlsb3Q='>Poorly Disguised Pilot</a>.) </li><li> The main character is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeSkip' title='/pmwiki/pmwiki.php/Main/TimeSkip' data-format='W1tUaW1lU2tpcCByZXZpc2l0ZWQgZWxzZXdoZXJlIGluIHRoZWlyIG5hcnJhdGl2ZV1d'>revisited elsewhere in their narrative</a>. </li><li> Reimaginings — the concept is carried into a new show with the same basic premise but other factors and characters are completely new. </li><li> Segment spin-offs — a recurring segment from the show becomes the main attraction. </li><li> A type of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Defictionalization' title='/pmwiki/pmwiki.php/Main/Defictionalization' data-format='e3tEZWZpY3Rpb25hbGl6YXRpb259fQ=='>Defictionalization</a> — a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShowWithinAShow' title='/pmwiki/pmwiki.php/Main/ShowWithinAShow' data-format='U2hvd1dpdGhpbkFTaG93'>Show Within a Show</a> gets made into a real show of its own. </li><li> The storyline on one show comes to an end, only to be continued in a new show with a different name. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CompanionShow' title='/pmwiki/pmwiki.php/Main/CompanionShow' data-format='W1tDb21wYW5pb25TaG93IE9mZmljaWFsIEZhbnppbmUgU2hvd11d'>Official Fanzine Show</a> — a trope usually applying to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityTV' title='/pmwiki/pmwiki.php/Main/RealityTV' data-format='UmVhbGl0eVRW'>Reality TV</a>, usually offering Behind The Scenes info or coverage that wouldn't fit into the main programme, often (but not always) broadcast immediately after the main show, on a sister channel. </li><li> Online Spin-Off — a spin-off that's only shown online, sometimes overlaps with Segment Spin-Off, sometimes a spin-off <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InNameOnly' title='/pmwiki/pmwiki.php/Main/InNameOnly' data-format='SW5OYW1lT25seQ=='>In Name Only</a>. Generally only an advert for the broadcast programme. </li><li> Shared Continuity — more common nowadays, this spinoff generally carries no characters over from the show that spawned it, though both are in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheVerse' title='/pmwiki/pmwiki.php/Main/TheVerse' data-format='W1tUaGVWZXJzZSBzYW1lIGNvbnRpbnVpdHldXQ=='>same continuity</a>, allowing for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Crossover' title='/pmwiki/pmwiki.php/Main/Crossover' data-format='e3tDcm9zc292ZXJ9fXM='>Crossovers</a> from the original. </li><li> Side-Story: Very similar to the Shared Continuity. However, the side story is typically an independent and smaller scaled story with a definite beginning, middle, and end. It also features a completely different cast of characters who have no meaningful connection to the characters or events of the main epic. Thus, crossovers or cameos by recognized characters are less plausible and may even be perceived as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityPorn' title='/pmwiki/pmwiki.php/Main/ContinuityPorn' data-format='W1tDb250aW51aXR5UG9ybiBkaXN0cmFjdGluZ11d'>distracting</a>. The concept of a side-story (a story that takes place "to the side" of main events) was popularized by the term's first prominent appearance in reference to stories taking place in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Gundam' title='/pmwiki/pmwiki.php/Franchise/Gundam' data-format='RnJhbmNoaXNlL3t7R3VuZGFtfX0='>Gundam</a></em> anime/manga universe. </li></ul></p><p>Spinoffs are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanTheyThink' title='/pmwiki/pmwiki.php/Main/OlderThanTheyThink' data-format='T2xkZXJUaGFuVGhleVRoaW5r'>Older Than They Think</a>. The character of Falstaff, from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/HenryIV' title='/pmwiki/pmwiki.php/Theatre/HenryIV' data-format='VGhlYXRyZS9IZW5yeUlW'>Henry IV</a></em> parts 1 and 2, was given their own play, at Royal request, by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' title='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' data-format='Q3JlYXRvci9XaWxsaWFtU2hha2VzcGVhcmU='>William Shakespeare</a>. </p><p>See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DistaffCounterpart' title='/pmwiki/pmwiki.php/Main/DistaffCounterpart' data-format='RGlzdGFmZkNvdW50ZXJwYXJ0'>Distaff Counterpart</a>. When a TV series is successful enough to produce a film spinoff, this is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMovie' title='/pmwiki/pmwiki.php/Main/TheMovie' data-format='VGhlTW92aWU='>The Movie</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VideoGame' title='/pmwiki/pmwiki.php/Main/VideoGame' data-format='VmlkZW9HYW1l'>Video Game</a> spinoffs often feature the same cast but differing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VideoGameGenres' title='/pmwiki/pmwiki.php/Main/VideoGameGenres' data-format='W1tWaWRlb0dhbWVHZW5yZXMgZ2FtZXBsYXkgZ2VucmVzXV0='>gameplay genres</a> or are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GaidenGame' title='/pmwiki/pmwiki.php/Main/GaidenGame' data-format='e3tHYWlkZW4gR2FtZX19cw=='>Gaiden Games</a> starring one of the secondary or side characters. When the spin-off focuses on the descendant of a character from a previous installment, it's a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOffspring' title='/pmwiki/pmwiki.php/Main/SpinOffspring' data-format='U3Bpbk9mZnNwcmluZw=='>Spin-Offspring</a>. If the spin-off reimagines the characters as little kids, it's a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOffBabies' title='/pmwiki/pmwiki.php/Main/SpinOffBabies' data-format='U3Bpbk9mZkJhYmllcw=='>Spin-Off Babies</a>. </p><p>In the television industry, there is a technical difference between the terms "spinoff" and "sequel": a "spinoff" refers specifically to a television show that continues in (more or less) the same era as its predecessor, while a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelSeries' title='/pmwiki/pmwiki.php/Main/SequelSeries' data-format='U2VxdWVsU2VyaWVz'>Sequel Series</a> takes place <em>after</em> the parent series' setting. Some older sources will also freely use "spinoff" for <em>any</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMerch' title='/pmwiki/pmwiki.php/Main/TheMerch' data-format='W1tUaGVNZXJjaCBtYXNzLXByb2R1Y2VkIG1lcmNoYW5kaXNlXV0='>mass-produced merchandise</a> connected to a piece of media, from <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LicensedGame' title='/pmwiki/pmwiki.php/Main/LicensedGame' data-format='W1tMaWNlbnNlZEdhbWUgdmlkZW8gZ2FtZXNdXQ=='>video games</a> to underpants; more modern terminology will usually favor "tie-in" for that. </p><p><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperTrope' title='/pmwiki/pmwiki.php/Main/SuperTrope' data-format='U3VwZXJUcm9wZQ=='>Super-Trope</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FromTheAshes' title='/pmwiki/pmwiki.php/Main/FromTheAshes' data-format='RnJvbVRoZUFzaGVz'>From the Ashes</a>, when a fictional work's ending is the starting point of the Spin-Off. <hr data-format='&#8212;&#8212;' /> <h2>Examples:</h2> <div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Anime &amp; Manga&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FourTownFourReal' title='/pmwiki/pmwiki.php/Manga/FourTownFourReal' data-format='TWFuZ2EvRm91clRvd25Gb3VyUmVhbA=='>4&#9733;Town 4&#9733;Real</a></em> is about 4*Town as they spend their day before the climax of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TurningRed' title='/pmwiki/pmwiki.php/WesternAnimation/TurningRed' data-format='V2VzdGVybkFuaW1hdGlvbi9UdXJuaW5nUmVk'>Turning Red</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/AttackOnTitan' title='/pmwiki/pmwiki.php/Manga/AttackOnTitan' data-format='TWFuZ2EvQXR0YWNrT25UaXRhbg=='>Attack on Titan</a></em>: <em>Attack On Titan Levi Side Story: A Choice With No Regrets</em> manga, which is based on the <em>Choice With No Regrets</em> visual novel included with the <em>Attack On Titan</em> Vol.3 Blu-ray. This spin-off features Levi as the main character and serves as a prologue to the main series. <!-- * ''Anime/{{Bakugan}}'' → ''Bakutech! Bakugan!''--> <!-- ** ''Anime/{{Bakugan}}'' → ''Anime/{{Zoobles}}'' (Toy Concept Only)--> <!-- * ''Anime/{{Betterman}}'' → ''Anime/BettermanLegends''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/BoboboboBobobo' title='/pmwiki/pmwiki.php/Manga/BoboboboBobobo' data-format='TWFuZ2EvQm9ib2JvYm9Cb2JvYm8='>Bobobo-bo Bo-bobo</a></em>: Don Patch got his own manga spinoff, <em>Fuwari! Don Patch</em>, in the Saikyou Jump magazine as well as a continuation called <em>Honnori! Don Patch</em> that ran in Jump+. Both are a series of peaceful <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SliceOfLife' title='/pmwiki/pmwiki.php/Main/SliceOfLife' data-format='U2xpY2VPZkxpZmU='>Slice of Life</a> tales that take place in the modern day rather than the year 300X. </li><li> <em>Brave Witches</em> to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/StrikeWitches' title='/pmwiki/pmwiki.php/Manga/StrikeWitches' data-format='TWFuZ2EvU3RyaWtlV2l0Y2hlcw=='>Strike Witches</a></em>, shifting the focus from the 501st to the 502nd Striker Unit. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/CellsAtWork' title='/pmwiki/pmwiki.php/Manga/CellsAtWork' data-format='TWFuZ2EvQ2VsbHNBdFdvcms='>Cells at Work!</a></em> has produced many different Spin-Offs, each tackling a different bodily environment, subject matter, and even intended audience. Spin-Offs include <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/CellsAtWorkAndFriends' title='/pmwiki/pmwiki.php/Manga/CellsAtWorkAndFriends' data-format='TWFuZ2EvQ2VsbHNBdFdvcmtBbmRGcmllbmRz'>Cells at Work and Friends!</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/CellsNotAtWork' title='/pmwiki/pmwiki.php/Manga/CellsNotAtWork' data-format='TWFuZ2EvQ2VsbHNOb3RBdFdvcms='>Cells NOT at Work!</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/CellsAtWorkCodeBlack' title='/pmwiki/pmwiki.php/Manga/CellsAtWorkCodeBlack' data-format='TWFuZ2EvQ2VsbHNBdFdvcmtDb2RlQmxhY2s='>Cells at Work! CODE BLACK</a></em>, <em>Bacteria At Work!</em>, <em>Platelets At Work!</em>, <em>Cells at Work! Baby</em>, <em>Cells At Work! Lady</em>, <em>Cells At Work! White Brigade</em>, <em>Cells At Work! Illegal</em>, <em>Cells At Work! Muscle</em>, <em>Cells at Work!: Cat</em> and <em>Cells at Work!: Medicine</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ACertainMagicalIndex' title='/pmwiki/pmwiki.php/Literature/ACertainMagicalIndex' data-format='TGl0ZXJhdHVyZS9BQ2VydGFpbk1hZ2ljYWxJbmRleA=='>A Certain Magical Index</a></em> spawned several spinoff manga centered around the various science-side characters and the incidents in Academy City, vs the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicVersusScience' title='/pmwiki/pmwiki.php/Main/MagicVersusScience' data-format='TWFnaWNWZXJzdXNTY2llbmNl'>Magic Versus Science</a> conflict focus of <em>Index</em>. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ACertainScientificRailgun' title='/pmwiki/pmwiki.php/Manga/ACertainScientificRailgun' data-format='TWFuZ2EvQUNlcnRhaW5TY2llbnRpZmljUmFpbGd1bg=='>A Certain Scientific Railgun</a></em>, the first spinoff manga series, features Mikoto Misaka and delving into her background, friends, and some of the cases which Judgement handles. It later got a spinoff called <em>Astral Buddy</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ACertainScientificAccelerator' title='/pmwiki/pmwiki.php/Manga/ACertainScientificAccelerator' data-format='TWFuZ2EvQUNlcnRhaW5TY2llbnRpZmljQWNjZWxlcmF0b3I='>A Certain Scientific Accelerator</a></em>, the second spinoff manga series, follows Accelerator and the events after he receives his drama-preserving handicap. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ACertainScientificDarkMatter' title='/pmwiki/pmwiki.php/Manga/ACertainScientificDarkMatter' data-format='TWFuZ2EvQUNlcnRhaW5TY2llbnRpZmljRGFya01hdHRlcg=='>A Certain Scientific Dark Matter</a></em> is a one volume manga centered around Teitoku Kakine, the number 2 Esper of Academy City. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ACertainScientificMentalOut' title='/pmwiki/pmwiki.php/Manga/ACertainScientificMentalOut' data-format='TWFuZ2EvQUNlcnRhaW5TY2llbnRpZmljTWVudGFsT3V0'>A Certain Scientific Mental Out</a></em>, the third spinoff manga series, focuses on the fifth-ranked Level 5 esper, Misaki Shokuhou, and is considered a follow-up to <em>Astral Buddy</em>. </li><li> <em>A Certain Dark Side ITEM</em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LightNovel' title='/pmwiki/pmwiki.php/Main/LightNovel' data-format='TGlnaHROb3ZlbA=='>Light Novel</a> series with a manga adaptation focused on the group of teenage mercenaries, ITEM, and their adventures in Academy City's underground, set one year before the main <em>Index</em> series. <!-- * ''Manga/CrayonShinChan'' → ''Manga/ActionMask''--> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/DragonBall' title='/pmwiki/pmwiki.php/Manga/DragonBall' data-format='TWFuZ2EvRHJhZ29uQmFsbA=='>Dragon Ball</a></em> has an anime follow-up named <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DragonBallGT' title='/pmwiki/pmwiki.php/Anime/DragonBallGT' data-format='QW5pbWUvRHJhZ29uQmFsbEdU'>Dragon Ball GT</a></em>, set some years after the end of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DragonBallZ' title='/pmwiki/pmwiki.php/Anime/DragonBallZ' data-format='QW5pbWUvRHJhZ29uQmFsbFo='>Dragon Ball Z</a></em>, trying to get back the series to his comedic roots with Goku reverting to a child. It is not based on <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AkiraToriyama' title='/pmwiki/pmwiki.php/Creator/AkiraToriyama' data-format='Q3JlYXRvci9Ba2lyYVRvcml5YW1h'>Akira Toriyama</a>'s original manga <span class="notelabel" onclick="togglenote('note0s5f4');"><sup>note&nbsp;</sup></span><span id="note0s5f4" class="inlinefolder" isnote="true" onclick="togglenote('note0s5f4');" style="cursor:pointer;font-size:smaller;display:none;">The manga ends with Goku departing with Uub, the same ending as <em>Dragon Ball Z</em></span> ,so the original author only contributed on character designs. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a> stated <em>GT</em> was a side story to the original series. <ul ><li> In 2015, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DragonBallSuper' title='/pmwiki/pmwiki.php/Anime/DragonBallSuper' data-format='QW5pbWUvRHJhZ29uQmFsbFN1cGVy'>Dragon Ball Super</a></em> premiered -with a manga running concurrent-, being an interquel between the Buu Saga and Goku and Uub's departure, integrating Movie characters Beerus and Whis and concepts like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlternateUniverse' title='/pmwiki/pmwiki.php/Main/AlternateUniverse' data-format='e3tBbHRlcm5hdGUgVW5pdmVyc2V9fXM='>Alternate Universes</a> to the franchise. This time, Akira Toriyama writes the plot outline and <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Toyotaro' title='/pmwiki/pmwiki.php/Creator/Toyotaro' data-format='Q3JlYXRvci97e1RveW90YXJvfX0='>Toyotar&#333;</a> makes some plot additions and even designed some Gods of Destruction. </li><li> There is also a short manga named <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/DragonBallThatTimeIGotReincarnatedAsYamcha' title='/pmwiki/pmwiki.php/Manga/DragonBallThatTimeIGotReincarnatedAsYamcha' data-format='TWFuZ2EvRHJhZ29uQmFsbFRoYXRUaW1lSUdvdFJlaW5jYXJuYXRlZEFzWWFtY2hh'>Dragon Ball: That Time I Got Reincarnated as Yamcha!</a></em>, where a teenager going to a <em>Dragon Ball</em> event suddenly dies and awakes into the <em>Dragon Ball</em> world as Yamcha, and tries to change the fate of said character. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyTail' title='/pmwiki/pmwiki.php/Manga/FairyTail' data-format='TWFuZ2EvRmFpcnlUYWls'>Fairy Tail</a></em>: Several have been serialized: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyTailZero' title='/pmwiki/pmwiki.php/Manga/FairyTailZero' data-format='TWFuZ2EvRmFpcnlUYWlsWmVybw=='>Fairy Tail ZERØ</a></em>, a backstory series starring <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='W1tCaWdHb29kIE1hdmlzIFZlcm1pbGxpb25dXQ=='>Mavis Vermillion</a> about the founding of Fairy Tail </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyTailIceTrail' title='/pmwiki/pmwiki.php/Manga/FairyTailIceTrail' data-format='TWFuZ2EvRmFpcnlUYWlsSWNlVHJhaWw='>Fairy Tail: Ice Trail</a>,</em> which is another backstory about Gray Fullbuster. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyTailBlueMistral' title='/pmwiki/pmwiki.php/Manga/FairyTailBlueMistral' data-format='TWFuZ2EvRmFpcnlUYWlsQmx1ZU1pc3RyYWw='>Fairy Tail: Blue Mistral</a></em>, another one focused on Wendy and Carla. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyGirls' title='/pmwiki/pmwiki.php/Manga/FairyGirls' data-format='TWFuZ2EvRmFpcnlHaXJscw=='>Fairy Girls</a></em>, which as the name implies, has the female members of Fairy Tail as the main characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FairyTailGaiden' title='/pmwiki/pmwiki.php/Manga/FairyTailGaiden' data-format='TWFuZ2EvRmFpcnlUYWlsR2FpZGVu'>Fairy Tail Gaiden</a></em> is a sub-series written by Kyouta Shibano: <ul ><li> <em>The Twin Dragons of Saber Tooth</em>, which is focused on Sting and Rogue. </li><li> <em>Rhodonite</em>, focused on Gajeel. </li><li> <em>Flash of Great Lightning</em>, detailing the events of Laxus and the Raijin Tribe during <span class="spoiler" title="you can set spoilers visible by default on your profile" >Fairy Tail's disbandment.</span> </li></ul></li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FateKaleidLinerPrismaIllya' title='/pmwiki/pmwiki.php/Manga/FateKaleidLinerPrismaIllya' data-format='TWFuZ2EvRmF0ZUthbGVpZExpbmVyUHJpc21hSWxseWE='>Fate/kaleid liner PRISMA&#9734;ILLYA</a></em>: a spinoff <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicalGirl' title='/pmwiki/pmwiki.php/Main/MagicalGirl' data-format='TWFnaWNhbEdpcmw='>Magical Girl</a> story involving <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CuteBruiser' title='/pmwiki/pmwiki.php/Main/CuteBruiser' data-format='W1tDdXRlQnJ1aXNlciBJbGx5YV1d'>Illya</a> as the protagonist. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FistOfTheNorthStar' title='/pmwiki/pmwiki.php/Manga/FistOfTheNorthStar' data-format='TWFuZ2EvRmlzdE9mVGhlTm9ydGhTdGFy'>Fist of the North Star</a></em> (<em>Hokuto no Ken</em>) has a series of spinoff works known as the <em>Hokuto no Ken Gaiden</em> series, which centers around side-characters from the original manga, depicting what happened to them prior to the events of <em>Hokuto no Ken</em>, although they do deviate from canon a bit. Almost all of them, with the exception of <em>Yuria Gaiden</em>, were published in <em>Weekly Comic Bunch</em> (the manga anthology that serializes <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FistOfTheBlueSky' title='/pmwiki/pmwiki.php/Manga/FistOfTheBlueSky' data-format='W1tNYW5nYS9GaXN0T2ZUaGVCbHVlU2t5IFNvdXRlbiBubyBLZW5dXQ=='>Souten no Ken</a></em>) at the time the <em>Legends of the True Savior</em> movies were released. <!-- * ''Anime/FutariWaPrettyCure'' → ''Anime/FutariWaPrettyCureMaXHeart''--> <!-- * ''Anime/FutariWaPrettyCure'' → ''Anime/FutariWaPrettyCureSplashStar'' → ''Anime/YesPrettyCure5'' → ''Anime/FreshPrettyCure'' → ''Anime/HeartcatchPrettyCure'' → ''Anime/SuitePrettyCure'' → ''Anime/SmilePrettyCure'' → ''Anime/DokiDokiPrecure''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Genshiken' title='/pmwiki/pmwiki.php/Manga/Genshiken' data-format='TWFuZ2Eve3tHZW5zaGlrZW59fQ=='>Genshiken</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/KujibikiUnbalance' title='/pmwiki/pmwiki.php/Anime/KujibikiUnbalance' data-format='QW5pbWUvS3VqaWJpa2lVbmJhbGFuY2U='>Kujibiki&#9825;Unbalance</a></em> was initially a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShowWithinAShow' title='/pmwiki/pmwiki.php/Main/ShowWithinAShow' data-format='U2hvd1dpdGhpbkFTaG93'>Show Within a Show</a>, meant to represent the typical <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Moe' title='/pmwiki/pmwiki.php/Main/Moe' data-format='e3ttb2V9fQ=='>moe</a> anime, but with the series' success, it ended up being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Defictionalized' title='/pmwiki/pmwiki.php/Main/Defictionalized' data-format='e3tkZWZpY3Rpb25hbGl6ZWR9fQ=='>defictionalized</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GoblinSlayer' title='/pmwiki/pmwiki.php/Literature/GoblinSlayer' data-format='TGl0ZXJhdHVyZS9Hb2JsaW5TbGF5ZXI='>Goblin Slayer</a></em> has <em>Year One</em> (expanding on when Goblin Slayer was just starting out), <em>Brand New Day</em> (adapting a number of side stories) and <em>Daikatana of Singing Death</em> (expanding on Sword Maiden's rise from a broken woman to one of those who slayed the demon lord). </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheAnimeOfTheGame' title='/pmwiki/pmwiki.php/Main/TheAnimeOfTheGame' data-format='W1tUaGVBbmltZU9mVGhlR2FtZSBBbmltZSBBZGFwdGF0aW9uXV0='>Anime Adaptation</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Idolish7' title='/pmwiki/pmwiki.php/VideoGame/Idolish7' data-format='VmlkZW9HYW1lL0lkb2xpc2g3'>Idolish 7</a></em> has <em><span class='esc-seq' title='non-wikiword'>Idolish7</span>: Vibrato</em>, a web series exclusive to <em>Youtube Premium</em>. <!-- * ''Manga/InuYasha'' → ''Kagome the Adventurer''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Jewelpet' title='/pmwiki/pmwiki.php/Toys/Jewelpet' data-format='VG95cy97e0pld2VscGV0fX0='>Jewelpet</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/JewelpetTwinkle' title='/pmwiki/pmwiki.php/Anime/JewelpetTwinkle' data-format='QW5pbWUvSmV3ZWxwZXRUd2lua2xl'>Jewelpet Twinkle&#9734;</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/JewelpetSunshine' title='/pmwiki/pmwiki.php/Anime/JewelpetSunshine' data-format='QW5pbWUvSmV3ZWxwZXRTdW5zaGluZQ=='>Jewelpet Sunshine</a></em> → <em>Jewelpet Kira Deco!</em> → <em>Jewelpet Happiness</em>. All of the series share the same Jewelpets, but not the same characters in general to prevent canon confusion. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventure' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventure' data-format='TWFuZ2EvSm9Kb3NCaXphcnJlQWR2ZW50dXJl'>JoJo's Bizarre Adventure</a></em> has a spin-off with the <em>Thus Spoke Rohan Kishibe</em> series, consisting of several irregularly published one-shots starring Rohan Kishibe, a side character from the manga's fourth part <em>Diamond is Unbreakable</em>. These one-shots features beings more esoteric than Stands and vampires, such as original cryptids and other powerful spirits, some considered gods. Although characters from Part 4 regularly appear, it can be inferred that the spin-off is in a different continuity than the current part. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/KaguyaSamaLoveIsWar' title='/pmwiki/pmwiki.php/Manga/KaguyaSamaLoveIsWar' data-format='TWFuZ2EvS2FndXlhU2FtYUxvdmVJc1dhcg=='>Kaguya-sama: Love Is War</a></em> has two spin-offs. The first, <em>Kaguya-sama: Love is War Doujin Edition</em>, is basically the main series but <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HotterAndSexier' title='/pmwiki/pmwiki.php/Main/HotterAndSexier' data-format='SG90dGVyQW5kU2V4aWVy'>Hotter and Sexier</a>. The second, <em>We Want to Talk About Kaguya</em>, is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InnocentBystanderSeries' title='/pmwiki/pmwiki.php/Main/InnocentBystanderSeries' data-format='SW5ub2NlbnRCeXN0YW5kZXJTZXJpZXM='>Innocent Bystander Series</a> told from the perspective of two <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecurringExtra' title='/pmwiki/pmwiki.php/Main/RecurringExtra' data-format='e3tSZWN1cnJpbmcgRXh0cmF9fXM='>Recurring Extras</a> as they grossly misinterpret the events of earlier chapters and get involved with the series' <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BetaCouple' title='/pmwiki/pmwiki.php/Main/BetaCouple' data-format='QmV0YUNvdXBsZQ=='>Beta Couple</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/KamisamaMinaraiHimitsuNoCocotama' title='/pmwiki/pmwiki.php/Anime/KamisamaMinaraiHimitsuNoCocotama' data-format='QW5pbWUvS2FtaXNhbWFNaW5hcmFpSGltaXRzdU5vQ29jb3RhbWE='>Kamisama Minarai: Himitsu no Cocotama</a></em> has two different spin-offs. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/KiraKiraHappyHirakeCocotama' title='/pmwiki/pmwiki.php/Anime/KiraKiraHappyHirakeCocotama' data-format='QW5pbWUvS2lyYUtpcmFIYXBweUhpcmFrZUNvY290YW1h'>Kira Kira Happy Hirake Cocotama</a></em> is a Magical Girl-style (sort of) reimagining with only one protagonist and a set of new Cocotamas. </li><li> <em>Mono No Kamisama Cocotama</em> is about life in the eyes of a Cocotama. </li></ul></li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/LyricalNanoha' title='/pmwiki/pmwiki.php/Franchise/LyricalNanoha' data-format='RnJhbmNoaXNlL0x5cmljYWxOYW5vaGE='>Lyrical Nanoha</a></em> franchises is one long string of these and even started as a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/TriangleHeart3SweetSongsForever' title='/pmwiki/pmwiki.php/VisualNovel/TriangleHeart3SweetSongsForever' data-format='VmlzdWFsTm92ZWwvVHJpYW5nbGVIZWFydDNTd2VldFNvbmdzRm9yZXZlcg=='>Triangle Heart 3: Sweet Songs Forever</a></em>. Within the current canon there's the <a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanoha' title='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanoha' data-format='W1tBbmltZS9NYWdpY2FsR2lybEx5cmljYWxOYW5vaGEgb3JpZ2luYWwgc2VyaWVzXV0='>original series</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanohaAs' title='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanohaAs' data-format='W1tBbmltZS9NYWdpY2FsR2lybEx5cmljYWxOYW5vaGFBcyBpdHNdXQ=='>its</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanohaStrikers' title='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanohaStrikers' data-format='W1tBbmltZS9NYWdpY2FsR2lybEx5cmljYWxOYW5vaGFTdHJpa2VycyB0aHJlZV1d'>three</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MagicalRecordLyricalNanohaForce' title='/pmwiki/pmwiki.php/Manga/MagicalRecordLyricalNanohaForce' data-format='W1tNYW5nYS9NYWdpY2FsUmVjb3JkTHlyaWNhbE5hbm9oYUZvcmNlIHNlcXVlbHNdXQ=='>sequels</a>, an <a class='twikilink' href='/pmwiki/pmwiki.php/Audioplay/StrikerSSoundStageX' title='/pmwiki/pmwiki.php/Audioplay/StrikerSSoundStageX' data-format='W1tBdWRpb3BsYXkvU3RyaWtlclNTb3VuZFN0YWdlWCBhdWRpbyBwbGF5XV0='>audio play</a> spin-off focusing on characters introduces in the third season, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOffspring' title='/pmwiki/pmwiki.php/Main/SpinOffspring' data-format='U3Bpbk9mZnNwcmluZw=='>Spin-Offspring</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MagicalGirlLyricalNanohaVivid' title='/pmwiki/pmwiki.php/Manga/MagicalGirlLyricalNanohaVivid' data-format='W1tNYW5nYS9NYWdpY2FsR2lybEx5cmljYWxOYW5vaGFWaXZpZCBtYW5nYV1d'>manga</a> focusing on Nanoha's adopted daughter, a <a class='twikilink' href='/pmwiki/pmwiki.php/Anime/VividStrike' title='/pmwiki/pmwiki.php/Anime/VividStrike' data-format='W1tBbmltZS9WaXZpZFN0cmlrZSBzcGluLW9mZl1d'>spin-off</a> of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOffspring' title='/pmwiki/pmwiki.php/Main/SpinOffspring' data-format='U3Bpbk9mZnNwcmluZw=='>Spin-Offspring</a> focusing on brand new characters, and <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MagicalGirlLyricalNanohaINNOCENT' title='/pmwiki/pmwiki.php/Manga/MagicalGirlLyricalNanohaINNOCENT' data-format='W1tNYW5nYS9NYWdpY2FsR2lybEx5cmljYWxOYW5vaGFJTk5PQ0VOVCBhbiBhbHRlcm5hdGUgdW5pdmVyc2UgbWFuZ2FdXQ=='>an alternate universe manga</a> where everyone plays card games. <!-- * ''Anime/MartianSuccessorNadesico'' → ''Anime/{{Gekiganger 3}}''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MissKobayashisDragonMaid' title='/pmwiki/pmwiki.php/Manga/MissKobayashisDragonMaid' data-format='TWFuZ2EvTWlzc0tvYmF5YXNoaXNEcmFnb25NYWlk'>Miss Kobayashi's Dragon Maid</a></em> has <em>Miss Kobayashi's Dragon Maid: Kanna's Daily Life</em>, <em>Miss Kobayashi's Dragon Maid: Elma's Office Lady Diary</em>, <em>Miss Kobayashi's Dragon Maid: Lucoa is my xx</em>, <em>Miss Kobayashi's Dragon Maid: Fafnir the Recluse</em>, and <em>Miss Kobayashi’s Dragon Maid: Ilulu Has No Clue About Love!</em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MyHeroAcademia' title='/pmwiki/pmwiki.php/Manga/MyHeroAcademia' data-format='TWFuZ2EvTXlIZXJvQWNhZGVtaWE='>My Hero Academia</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MyHeroAcademiaVigilantes' title='/pmwiki/pmwiki.php/Manga/MyHeroAcademiaVigilantes' data-format='TWFuZ2EvTXlIZXJvQWNhZGVtaWFWaWdpbGFudGVz'>My Hero Academia: Vigilantes</a></em> is set a few months before the main series. It focuses on a group of vigilante heroes trying to prevent the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychoSerum' title='/pmwiki/pmwiki.php/Main/PsychoSerum' data-format='UHN5Y2hvU2VydW0='>Psycho Serum</a> Trigger from spreading. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MyHeroAcademiaSmash' title='/pmwiki/pmwiki.php/Manga/MyHeroAcademiaSmash' data-format='TWFuZ2EvTXlIZXJvQWNhZGVtaWFTbWFzaA=='>My Hero Academia Smash!!</a></em> is a gag manga showing the characters in chibi form. </li><li> <em>My Hero Academia: Team-Up Missions</em> focuses on Deku and friends fighting together along with Pro Heroes as part of the ambitious "Team-Up Missions Program". </li><li> <em>Watashi no Hero Academia</em> (known as <em>My Heroine Academia</em> among english fans), a 4-koma series focusing on the heroines and villainesses. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Naruto' title='/pmwiki/pmwiki.php/Manga/Naruto' data-format='TWFuZ2Eve3tOYXJ1dG99fQ=='>Naruto</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/RockLeesSpringtimeOfYouth' title='/pmwiki/pmwiki.php/Manga/RockLeesSpringtimeOfYouth' data-format='TWFuZ2EvUm9ja0xlZXNTcHJpbmd0aW1lT2ZZb3V0aA=='>Rock Lee's Springtime of Youth</a></em>, a comical spinoff focusing on Rock Lee. It got an anime adaptation as well. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/UchihaSasukesSharinganChronicles' title='/pmwiki/pmwiki.php/Manga/UchihaSasukesSharinganChronicles' data-format='TWFuZ2EvVWNoaWhhU2FzdWtlc1NoYXJpbmdhbkNocm9uaWNsZXM='>Uchiha Sasuke's Sharingan Chronicles</a></em>, another comical spinoff showing Sasuke and Taka's wacky side. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' title='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' data-format='QW5pbWUvTmVvbkdlbmVzaXNFdmFuZ2VsaW9u'>Neon Genesis Evangelion</a></em>: <ul ><li> The manga series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ShinjiIkariRaisingProject' title='/pmwiki/pmwiki.php/Manga/ShinjiIkariRaisingProject' data-format='TWFuZ2EvU2hpbmppSWthcmlSYWlzaW5nUHJvamVjdA=='>Shinji Ikari Raising Project</a></em> is based on the video game of the same name. It takes the alternate reality from Episode 26 as inspiration, and as such is more comedic and most of its characters are much more emotional stable, all while keeping their most notable traits, albeit more subdued. Before that, there was <em>Neon Genesis Evangelion: Angelic Days</em>, based on the eponymous game as well. Its characters are alternate versions of the main continuity and it ended with a much happier ending than the anime. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/NeonGenesisEvangelionCampusApocalypse' title='/pmwiki/pmwiki.php/Manga/NeonGenesisEvangelionCampusApocalypse' data-format='TWFuZ2EvTmVvbkdlbmVzaXNFdmFuZ2VsaW9uQ2FtcHVzQXBvY2FseXBzZQ=='>Neon Genesis Evangelion: Campus Apocalypse</a></em> is an Elseverse where Shinji attends NERV &#8212;which is a Catholic school and he and the other children must use EVAS (not mechas, but wieldable weapons) used to fight Angels (which in this series are parasitic beings which uses human bodies as hosts) in order to secure cores without which Yggdrasil may eventually cause a collapse of reality. <!-- * ''Anime/OjamajoDoremi'' → ''Ojamajo Doremi # (Sharp)'' → ''Motto! Ojamajo Doremi'' → ''Ojamajo Doremi Dokkan!'' → ''Ojamajo Doremi 16/17''--> <!-- * ''[[Anime/OjamajoDoremi Motto! Ojamajo Doremi]]'' → ''Ojamajo Doremi Naisho''--> </li></ul></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> has a few: <ul ><li> <em>Chopperman</em>, which stars Chopper as a super hero fighting against the evil Dr. Usodabada. It was initially a gag story in one of the databooks, before it was adapted into its own spin-off manga. </li><li> <em>One Piece Party</em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LighterAndSofter' title='/pmwiki/pmwiki.php/Main/LighterAndSofter' data-format='TGlnaHRlckFuZFNvZnRlcg=='>Lighter and Softer</a> comedic spinoff with self-contained stories and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperDeformed' title='/pmwiki/pmwiki.php/Main/SuperDeformed' data-format='U3VwZXJEZWZvcm1lZA=='>Super-Deformed</a> designs. </li><li> <em>Koisuru One Piece</em> is an odd spin-off as it revolves about three fans of the manga series (even named after Luffy and his crew), who encounter situations similar to their favorite series. </li><li> Similarly, <em>One Piece: Kobiyama Who Looks Like Koby - Two Piece in a Pod</em> deals with the titular Kobiyama &#8212; who oddly enough does not know of the series &#8212; and his interactions with other characters who resemble those from the main series. </li><li> <em>Chin Piece</em> can easily be considered the most bizarre of all, as the main character Kusopp and his friends want to be as great as the Straw Hats, and encounter Chimpy who resembles Luffy and <em>whose penis can stretch like Luffy's</em>. </li><li> <em>One Piece School</em>, from the same author of <em>Party</em>, which is a middle school AU featuring Coby enrolling into New World Middle school and befriending Luffy and the other Straw Hats as students. </li><li> <em>Food Wars! Shokugeki no Sanji</em>, a semi-crossover authored by the very creators of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ShokugekiNoSoma' title='/pmwiki/pmwiki.php/Manga/ShokugekiNoSoma' data-format='TWFuZ2EvU2hva3VnZWtpTm9Tb21h'>Shokugeki no Soma</a></em> Yūto Tsukuda and Shun Saeki and revolves about Sanji's cooking delighting several characters in the same manner as Soma does in his own series. <!-- * ''Manga/OutlawStar'' → ''Anime/AngelLinks''--> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PleaseTwins' title='/pmwiki/pmwiki.php/Anime/PleaseTwins' data-format='QW5pbWUvUGxlYXNlVHdpbnM='>Please Twins!</a></em> is set one year after the events of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PleaseTeacher' title='/pmwiki/pmwiki.php/Anime/PleaseTeacher' data-format='QW5pbWUvUGxlYXNlVGVhY2hlcg=='>Please Teacher!</a></em>, it shares most locations and many of the first anime characters come back either as cameo or secondary characters. </li><li> Various side story episodes of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PokemonTheSeries' title='/pmwiki/pmwiki.php/Anime/PokemonTheSeries' data-format='QW5pbWUvUG9rZW1vblRoZVNlcmllcw=='>Pokémon the Series</a></em> featured former party members after they had left the group. The early ones focusing on Tracey and Misty along with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TournamentArc' title='/pmwiki/pmwiki.php/Main/TournamentArc' data-format='VG91cm5hbWVudEFyYw=='>Tournament Arc</a> rival Ritchie were dubbed as the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PokemonChronicles' title='/pmwiki/pmwiki.php/Anime/PokemonChronicles' data-format='QW5pbWUve3tQb2tlbW9uIENocm9uaWNsZXN9fQ=='>Pokémon Chronicles</a></em> subseries. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PuellaMagiMadokaMagica' title='/pmwiki/pmwiki.php/Anime/PuellaMagiMadokaMagica' data-format='QW5pbWUvUHVlbGxhTWFnaU1hZG9rYU1hZ2ljYQ=='>Puella Magi Madoka Magica</a></em> has <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/PuellaMagiKazumiMagica' title='/pmwiki/pmwiki.php/Manga/PuellaMagiKazumiMagica' data-format='TWFuZ2EvUHVlbGxhTWFnaUthenVtaU1hZ2ljYQ=='>Puella Magi Kazumi Magica</a></em>, which is about another group of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicalGirl' title='/pmwiki/pmwiki.php/Main/MagicalGirl' data-format='e3ttYWdpY2FsIGdpcmx9fXM='>magical girls</a>. Its other spin-off, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/PuellaMagiOrikoMagica' title='/pmwiki/pmwiki.php/Manga/PuellaMagiOrikoMagica' data-format='TWFuZ2EvUHVlbGxhTWFnaU9yaWtvTWFnaWNh'>Puella Magi Oriko Magica</a></em> is either a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Prequel' title='/pmwiki/pmwiki.php/Main/Prequel' data-format='e3tQcmVxdWVsfX0='>Prequel</a> or an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Interquel' title='/pmwiki/pmwiki.php/Main/Interquel' data-format='e3tJbnRlcnF1ZWx9fQ=='>Interquel</a>. A third spin-off entitled <em>Puella Magi Madoka Magica: The Different Story</em> was released for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CompilationMovie' title='/pmwiki/pmwiki.php/Main/CompilationMovie' data-format='Q29tcGlsYXRpb25Nb3ZpZQ=='>Compilation Movie</a>, and it is part <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Prequel' title='/pmwiki/pmwiki.php/Main/Prequel' data-format='e3tQcmVxdWVsfX0='>Prequel</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/POVSequel' title='/pmwiki/pmwiki.php/Main/POVSequel' data-format='UE9WU2VxdWVs'>P.O.V. Sequel</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatIf' title='/pmwiki/pmwiki.php/Main/WhatIf' data-format='V2hhdElm'>What If?</a> story. Three new spin-offs began after the premiere of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PuellaMagiMadokaMagicaTheMovieRebellion' title='/pmwiki/pmwiki.php/Anime/PuellaMagiMadokaMagicaTheMovieRebellion' data-format='QW5pbWUvUHVlbGxhTWFnaU1hZG9rYU1hZ2ljYVRoZU1vdmllUmViZWxsaW9u'>Puella Magi Madoka Magica The Movie: Rebellion</a></em>. One is an <em>Oriko Magica</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Prequel' title='/pmwiki/pmwiki.php/Main/Prequel' data-format='e3twcmVxdWVsfX0='>prequel</a>. The other ones are <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/PuellaMagiSuzuneMagica' title='/pmwiki/pmwiki.php/Manga/PuellaMagiSuzuneMagica' data-format='TWFuZ2EvUHVlbGxhTWFnaVN1enVuZU1hZ2ljYQ=='>Puella Magi Suzune Magica</a></em>, which is about another group of magical girls, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/PuellaMagiTartMagica' title='/pmwiki/pmwiki.php/Manga/PuellaMagiTartMagica' data-format='TWFuZ2EvUHVlbGxhTWFnaVRhcnRNYWdpY2E='>Puella Magi Tart Magica</a></em>, which elaborates on a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeethovenWasAnAlienSpy' title='/pmwiki/pmwiki.php/Main/BeethovenWasAnAlienSpy' data-format='W1tCZWV0aG92ZW5XYXNBbkFsaWVuU3B5IGJhY2tncm91bmQgZGV0YWlsXV0='>background detail</a> from the anime. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/RayTheAnimation' title='/pmwiki/pmwiki.php/Anime/RayTheAnimation' data-format='QW5pbWUvUmF5VGhlQW5pbWF0aW9u'>Ray the Animation</a></em> is a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/BlackJack' title='/pmwiki/pmwiki.php/Manga/BlackJack' data-format='TWFuZ2EvQmxhY2tKYWNr'>Black Jack</a></em>, focusing on one of Black Jack's students. The manga is <em>technically</em> one, but Black Jack is merely a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LawyerFriendlyCameo' title='/pmwiki/pmwiki.php/Main/LawyerFriendlyCameo' data-format='TGF3eWVyRnJpZW5kbHlDYW1lbw=='>Lawyer-Friendly Cameo</a>; as the anime was made by the studio <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/OsamuTezuka' title='/pmwiki/pmwiki.php/Creator/OsamuTezuka' data-format='Q3JlYXRvci9Pc2FtdVRlenVrYQ=='>Osamu Tezuka</a> founded, which holds the rights to his creations, it didn't need to obfuscate things that way. <!-- * ''Manga/RosarioPlusVampire'' → ''Rosario + Vampire Season II''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SaintSeiya' title='/pmwiki/pmwiki.php/Manga/SaintSeiya' data-format='TWFuZ2EvU2FpbnRTZWl5YQ=='>Saint Seiya</a></em> produced a <em>crapton</em> of spin-offs: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SaintSeiyaEpisodeG' title='/pmwiki/pmwiki.php/Manga/SaintSeiyaEpisodeG' data-format='TWFuZ2EvU2FpbnRTZWl5YUVwaXNvZGVH'>Saint Seiya: Episode.G</a></em>, drawn by Okada Megumu, who focuses on Gold Saint Aiolia long before the main series. It produced its own spin-off, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SaintSeiyaEpisodeGAssassin' title='/pmwiki/pmwiki.php/Manga/SaintSeiyaEpisodeGAssassin' data-format='TWFuZ2EvU2FpbnRTZWl5YUVwaXNvZGVHQXNzYXNzaW4='>Saint Seiya: Episode.G Assassin</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SaintSeiyaTheLostCanvas' title='/pmwiki/pmwiki.php/Manga/SaintSeiyaTheLostCanvas' data-format='TWFuZ2EvU2FpbnRTZWl5YVRoZUxvc3RDYW52YXM='>Saint Seiya: The Lost Canvas</a></em>, another prequel, as well as <em>The Lost Canvas Chronicles</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SaintSeiyaNextDimension' title='/pmwiki/pmwiki.php/Manga/SaintSeiyaNextDimension' data-format='TWFuZ2EvU2FpbnRTZWl5YU5leHREaW1lbnNpb24='>Saint Seiya: Next Dimension</a></em>, a sequel drawn by Kurumada himself. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SaintSeiyaSaintiaSho' title='/pmwiki/pmwiki.php/Manga/SaintSeiyaSaintiaSho' data-format='TWFuZ2EvU2FpbnRTZWl5YVNhaW50aWFTaG8='>Saint Seiya: Saintia Sho</a></em>, which takes place during the events of the main series but focuses on female protagonists. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/SaintSeiyaOmega' title='/pmwiki/pmwiki.php/Anime/SaintSeiyaOmega' data-format='QW5pbWUvU2FpbnRTZWl5YU9tZWdh'>Saint Seiya Omega</a></em>, a 2012 animated series following a new generation of Saints. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SummerTimeRendering' title='/pmwiki/pmwiki.php/Manga/SummerTimeRendering' data-format='TWFuZ2EvU3VtbWVyVGltZVJlbmRlcmluZw=='>Summer Time Rendering</a></em>: <em>Summertime Rendering 2026: The Room that Dreams of Murder</em> is a short, two chapter spinoff that takes place several years after the events of the main story starring Hizuru as she helps her niece solve the mystery of a haunted apartment. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LightNovel' title='/pmwiki/pmwiki.php/Main/LightNovel' data-format='TGlnaHROb3ZlbA=='>Light Novel</a> <em>Summertime Rendering 2026: Nagumo Ryuunosuke's 100 Views</em> is a direct continuation which follows the two of them as they solve supernatural mysteries around Tokyo. </li><li> There was a manga called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/TenTheBlessedWayOfTheNiceGuy' title='/pmwiki/pmwiki.php/Manga/TenTheBlessedWayOfTheNiceGuy' data-format='TWFuZ2EvVGVuVGhlQmxlc3NlZFdheU9mVGhlTmljZUd1eQ=='>Ten - The Blessed Way of the Nice Guy</a></em>, which was about mahjong being serious business, there was a character called Akagi which was an awesome old man who the characters feared and respected, the character was so popular the author made an spinoff prequel series focused on Akagi's early life, at one point he meets his match in an old man called Washizu, who was so popular the author made a spinoff series focused on Washizu's early life (yes, Fukumoto made a spinoff of a spinoff). </li><li> A concrete anime example is <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/ToHeart2' title='/pmwiki/pmwiki.php/VisualNovel/ToHeart2' data-format='VmlzdWFsTm92ZWwvVG9IZWFydDI='>To Heart 2</a></em>, which takes place in the same school as the original <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/ToHeart' title='/pmwiki/pmwiki.php/VisualNovel/ToHeart' data-format='VmlzdWFsTm92ZWwvVG9IZWFydA=='>To Heart</a></em>, only that it is set three years after. Some <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityNod' title='/pmwiki/pmwiki.php/Main/ContinuityNod' data-format='W1tDb250aW51aXR5Tm9kIG5vZHNdXQ=='>nods</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityCameo' title='/pmwiki/pmwiki.php/Main/ContinuityCameo' data-format='W1tDb250aW51aXR5Q2FtZW8gY2FtZW9zXV0='>cameos</a> reinforce this. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/TweenyWitches' title='/pmwiki/pmwiki.php/Anime/TweenyWitches' data-format='QW5pbWUvVHdlZW55V2l0Y2hlcw=='>Tweeny Witches</a></em> has an episodic 6-episode OVA titled <em>Tweeny Witches: The Adventures</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/WWWWorking' title='/pmwiki/pmwiki.php/Manga/WWWWorking' data-format='TWFuZ2EvV1dXV29ya2luZw=='>WWW.WORKING!!</a></em> to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Wagnaria' title='/pmwiki/pmwiki.php/Manga/Wagnaria' data-format='TWFuZ2Eve3tXYWduYXJpYX19'>Wagnaria!!</a></em>, focusing on a different set of employees at a different branch of the Wagnaria restaurant. Franchise wise, the latter is this to the former; anime wise, it's the opposite case (being based off of the print collection rather than the original webcomic, which was made long after the latter got its time in the animated sun). <!-- * ''Anime/YesPrettyCure5'' → ''Anime/YesPrettyCure5GoGo''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/YokaiWatch' title='/pmwiki/pmwiki.php/Anime/YokaiWatch' data-format='QW5pbWUvWW9rYWlXYXRjaA=='>Yo-kai Watch</a></em> has two spinoffs: the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOffspring' title='/pmwiki/pmwiki.php/Main/SpinOffspring' data-format='U3Bpbk9mZnNwcmluZw=='>Spin-Offspring</a> series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/YokaiWatchShadowside' title='/pmwiki/pmwiki.php/Anime/YokaiWatchShadowside' data-format='QW5pbWUvWW9rYWlXYXRjaFNoYWRvd3NpZGU='>Yo-kai Watch: Shadowside</a></em> and the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HighSchoolAU' title='/pmwiki/pmwiki.php/Main/HighSchoolAU' data-format='W1tIaWdoU2Nob29sQVUgTWlkZGxlIFNjaG9vbCBBVV1d'>Middle School AU</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/YokaiWatchJamYokaiAcademyYCloseEncountersOfTheNKind' title='/pmwiki/pmwiki.php/Anime/YokaiWatchJamYokaiAcademyYCloseEncountersOfTheNKind' data-format='QW5pbWUvWW9rYWlXYXRjaEphbVlva2FpQWNhZGVteVlDbG9zZUVuY291bnRlcnNPZlRoZU5LaW5k'>Yo-kai Watch Jam - Yo-kai Academy Y: Close Encounters of the N Kind</a></em>. <!-- * ''Anime/YuGiOh'' → ''Anime/TheMagicalAdventuresOfDarkMagicianGirl''--> <!-- * ''Anime/YuGiOh'' → Anime/YuGiOhGX → Anime/YuGiOh5Ds → Anime/YuGiOhZexal--> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Asian Animation&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/BreadBarbershop' title='/pmwiki/pmwiki.php/Animation/BreadBarbershop' data-format='QW5pbWF0aW9uL0JyZWFkQmFyYmVyc2hvcA=='>Bread Barbershop</a></em> has two spin-offs, both with educational themes. <em>Wilk's Dessert Story</em> has Wilk, one of the main characters of the original show, teaching viewers the origins of different foods; <em>Bread and Wilk's World Tour</em> has Bread and Wilk learning about different important figures in history. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/MotuPatlu2012' title='/pmwiki/pmwiki.php/Animation/MotuPatlu2012' data-format='QW5pbWF0aW9uL01vdHVQYXRsdTIwMTI='>Motu Patlu (2012)</a></em> has two spin-offs. <ul ><li> The first is called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/InspectorChingum' title='/pmwiki/pmwiki.php/Animation/InspectorChingum' data-format='QW5pbWF0aW9uL0luc3BlY3RvckNoaW5ndW0='>Inspector Chingum</a></em> and is about the character Inspector Chingum moving to Shantiwood to fight supervillains sent out by No Baal, the owner of Crime Academy. </li><li> The second, <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Animation/GudduTheGreat' title='/pmwiki/pmwiki.php/Animation/GudduTheGreat' data-format='QW5pbWF0aW9uL0d1ZGR1VGhlR3JlYXQ='>Guddu The Great</a></em>, focuses on Guddu the lion from the theatrical film <em>Motu Patlu: King of Kings</em>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/PleasantGoatAndBigBigWolf' title='/pmwiki/pmwiki.php/Animation/PleasantGoatAndBigBigWolf' data-format='QW5pbWF0aW9uL1BsZWFzYW50R29hdEFuZEJpZ0JpZ1dvbGY='>Pleasant Goat and Big Big Wolf</a></em> has a spinoff called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/PleasantGoatFunClass' title='/pmwiki/pmwiki.php/Animation/PleasantGoatFunClass' data-format='QW5pbWF0aW9uL1BsZWFzYW50R29hdEZ1bkNsYXNz'>Pleasant Goat Fun Class</a></em>, where the characters are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinoffBabies' title='/pmwiki/pmwiki.php/Main/SpinoffBabies' data-format='W1tTcGlub2ZmQmFiaWVzIG11Y2ggeW91bmdlciB2ZXJzaW9ucyBvZiB0aGVtc2VsdmVzXV0='>much younger versions of themselves</a> who learn about the world around them. </li><li> South Korean TV animation series <em>Titipo Titipo the Little Train</em> is a spin-off of more famous sister series called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/TayoTheLittleBus' title='/pmwiki/pmwiki.php/Animation/TayoTheLittleBus' data-format='QW5pbWF0aW9uL1RheW9UaGVMaXR0bGVCdXM='>Tayo the Little Bus</a></em>. Two series are set in the same universe and several characters from each series frequently make guest or cameo appearances to each other, almost to the level of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RequiredSpinoffCrossover' title='/pmwiki/pmwiki.php/Main/RequiredSpinoffCrossover' data-format='UmVxdWlyZWRTcGlub2ZmQ3Jvc3NvdmVy'>Required Spinoff Crossover</a>. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/PororoTheLittlePenguin' title='/pmwiki/pmwiki.php/Animation/PororoTheLittlePenguin' data-format='QW5pbWF0aW9uL1Bvcm9yb1RoZUxpdHRsZVBlbmd1aW4='>Pororo the Little Penguin</a></em>, another smash hit from the same production company, deals with the separate continuity, but Pororo sticker made an appearance in <em>Titipo</em> as a meaningful prop, making it a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShowWithinAShow' title='/pmwiki/pmwiki.php/Main/ShowWithinAShow' data-format='U2hvd1dpdGhpbkFTaG93'>Show Within a Show</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Audio Plays&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' title='/pmwiki/pmwiki.php/AudioPlay/BigFinishDoctorWho' data-format='QXVkaW9QbGF5L0JpZ0ZpbmlzaERvY3Rvcldobw=='>Big Finish Doctor Who</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/SarahJaneSmith' title='/pmwiki/pmwiki.php/AudioPlay/SarahJaneSmith' data-format='QXVkaW9QbGF5L1NhcmFoSmFuZVNtaXRo'>Sarah Jane Smith</a></em>, <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/AudioPlay/IDavros' title='/pmwiki/pmwiki.php/AudioPlay/IDavros' data-format='QXVkaW9QbGF5L0lEYXZyb3M='>I Davros</a></em>, <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/AudioPlay/Cyberman' title='/pmwiki/pmwiki.php/AudioPlay/Cyberman' data-format='QXVkaW9QbGF5L3t7Q3liZXJtYW59fQ=='>Cyberman</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/Gallifrey' title='/pmwiki/pmwiki.php/AudioPlay/Gallifrey' data-format='QXVkaW9QbGF5L3t7R2FsbGlmcmV5fX0='>Gallifrey</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/JagoAndLitefoot' title='/pmwiki/pmwiki.php/AudioPlay/JagoAndLitefoot' data-format='QXVkaW9QbGF5L0phZ29BbmRMaXRlZm9vdA=='>Jago & Litefoot</a></em>, <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/AudioPlay/KaldorCity' title='/pmwiki/pmwiki.php/AudioPlay/KaldorCity' data-format='QXVkaW9QbGF5L0thbGRvckNpdHk='>Kaldor City</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/DalekEmpire' title='/pmwiki/pmwiki.php/AudioPlay/DalekEmpire' data-format='QXVkaW9QbGF5L0RhbGVrRW1waXJl'>Dalek Empire</a></em>. The main Big Finish line is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BroadStrokes' title='/pmwiki/pmwiki.php/Main/BroadStrokes' data-format='W1tCcm9hZFN0cm9rZXMgYnJvYWRseV1d'>broadly</a> part of the <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Whoniverse' title='/pmwiki/pmwiki.php/Franchise/Whoniverse' data-format='RnJhbmNoaXNlL3t7V2hvbml2ZXJzZX19'>Whoniverse</a>, while the spinoffs are part of the <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/DoctorWhoExpandedUniverse' title='/pmwiki/pmwiki.php/Franchise/DoctorWhoExpandedUniverse' data-format='W1tGcmFuY2hpc2UvRG9jdG9yV2hvRXhwYW5kZWRVbml2ZXJzZSBFeHBhbmRlZCBVbml2ZXJzZV1d'>Expanded Universe</a>. <ul ><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/AudioPlay/UNIT' title='/pmwiki/pmwiki.php/AudioPlay/UNIT' data-format='QXVkaW9QbGF5L3t7VU5JVH19'>UNIT</a></em> follows a new team of UNIT officers in the early 21st century, with a guest appearance from <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBrigadier' title='/pmwiki/pmwiki.php/Main/TheBrigadier' data-format='VGhlQnJpZ2FkaWVy'>The Brigadier</a> himself. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/CounterMeasures' title='/pmwiki/pmwiki.php/AudioPlay/CounterMeasures' data-format='QXVkaW9QbGF5L0NvdW50ZXJNZWFzdXJlcw=='>Counter Measures</a></em> is a spin-off from the 1988 TV story <em>Remembrance of the Daleks</em>. </li><li> <em>Tales from New Earth</em> stars Senator (formerly Novice) Hame following the TV episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS29E3Gridlock' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS29E3Gridlock' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMjlFM0dyaWRsb2NrIEdyaWRsb2NrXV0='>Gridlock</a>". </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/AudioPlay/YandereHeaven' title='/pmwiki/pmwiki.php/AudioPlay/YandereHeaven' data-format='QXVkaW9QbGF5L1lhbmRlcmVIZWF2ZW4='>Yandere Heaven</a></em> gets a special BL edition called <em>Yandere Heaven <span class='esc-seq' title='non-wikiword'>BLack</span></em>. It features very similar situations, but with a male protagonist instead of female. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Books&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <!-- * ''ComicBook/{{Horndog}}'' → ''ComicBook/HereWolf''--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Fables' title='/pmwiki/pmwiki.php/ComicBook/Fables' data-format='e3tDb21pY0Jvb2svRmFibGVzfX0='>Fables</a></em> → <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/JackOfFables' title='/pmwiki/pmwiki.php/ComicBook/JackOfFables' data-format='Q29taWNCb29rL0phY2tPZkZhYmxlcw=='>Jack Of Fables</a></em>, featuring <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheTrickster' title='/pmwiki/pmwiki.php/Main/TheTrickster' data-format='VGhlVHJpY2tzdGVy'>The Trickster</a> of the same name, who was every "Jack" in folk tale or legend, and <em>Fairest</em>, a series of side stories each spotlighting different female secondary characters from the main comic. </li><li> The second volume of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Runaways' title='/pmwiki/pmwiki.php/ComicBook/Runaways' data-format='Q29taWNCb29rL3t7UnVuYXdheXN9fQ=='>Runaways</a></em> had a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' title='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' data-format='UG9vcmx5RGlzZ3Vpc2VkUGlsb3Q='>Poorly Disguised Pilot</a> for <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheLoners' title='/pmwiki/pmwiki.php/ComicBook/TheLoners' data-format='Q29taWNCb29rL1RoZUxvbmVycw=='>The Loners</a></em>, a miniseries featuring a group of former teen heroes making questionably-sincere attempts to quit the hero business. <!-- * ''ComicBook/SonicTheHedgehogArchieComics → ''Knuckles the Echidna'' and ''Sonic Universe''.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheSandman1989' title='/pmwiki/pmwiki.php/ComicBook/TheSandman1989' data-format='Q29taWNCb29rL1RoZVNhbmRtYW4xOTg5'>The Sandman (1989)</a></em> has several spin-offs following supporting characters, including: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Lucifer' title='/pmwiki/pmwiki.php/ComicBook/Lucifer' data-format='Q29taWNCb29rL3t7THVjaWZlcn19'>Lucifer</a></em>, which follows the adventures of Lucifer after he quits being Ruler of Hell in <em>The Sandman: Season of Mists</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheThessaliad' title='/pmwiki/pmwiki.php/ComicBook/TheThessaliad' data-format='Q29taWNCb29rL1RoZVRoZXNzYWxpYWQ='>The Thessaliad</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ThessalyWitchForHire' title='/pmwiki/pmwiki.php/ComicBook/ThessalyWitchForHire' data-format='Q29taWNCb29rL1RoZXNzYWx5V2l0Y2hGb3JIaXJl'>Thessaly: Witch for Hire</a></em>, in which Dream's murderous ex-girlfriend Thessaly deals with new problems brought on by a ghost named Fetch. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DeathTheHighCostOfLiving' title='/pmwiki/pmwiki.php/ComicBook/DeathTheHighCostOfLiving' data-format='Q29taWNCb29rL0RlYXRoVGhlSGlnaENvc3RPZkxpdmluZw=='>Death: The High Cost of Living</a></em>, in which Death takes one day off and spends a day as a mortal, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DeathTheTimeOfYourLife' title='/pmwiki/pmwiki.php/ComicBook/DeathTheTimeOfYourLife' data-format='Q29taWNCb29rL0RlYXRoVGhlVGltZU9mWW91ckxpZmU='>Death: The Time of Your Life</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheDeadBoyDetectives' title='/pmwiki/pmwiki.php/ComicBook/TheDeadBoyDetectives' data-format='Q29taWNCb29rL1RoZURlYWRCb3lEZXRlY3RpdmVz'>The Dead Boy Detectives</a></em>, the ghosts of two deceased schoolboys named Edwin Paine and Charles Rowland who first appeared during the "Season of Mists" arc and subsequently played a major role in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheChildrensCrusadeVertigo' title='/pmwiki/pmwiki.php/ComicBook/TheChildrensCrusadeVertigo' data-format='Q29taWNCb29rL1RoZUNoaWxkcmVuc0NydXNhZGVWZXJ0aWdv'>The Children's Crusade (Vertigo)</a></em> before receiving several of their own titles. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ThorMarvelComics' title='/pmwiki/pmwiki.php/ComicBook/ThorMarvelComics' data-format='Q29taWNCb29rL1Rob3JNYXJ2ZWxDb21pY3M='>Thor (Marvel Comics)</a></em> has an interesting relationship with <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/JourneyIntoMystery' title='/pmwiki/pmwiki.php/ComicBook/JourneyIntoMystery' data-format='Q29taWNCb29rL0pvdXJuZXlJbnRvTXlzdGVyeQ=='>Journey into Mystery</a></em>. Thor debuted in <em>Journey into Mystery</em> and headlined it for a while before taking over the title completely and later getting another series. 49 years after his debut, <em>Journey into Mystery</em> is introduced as a spin-off taking over Thor's numbering and Thor gets another series. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/FantasticFour' title='/pmwiki/pmwiki.php/ComicBook/FantasticFour' data-format='Q29taWNCb29rL0ZhbnRhc3RpY0ZvdXI='>Fantastic Four</a></em>: After the death of the Human Torch, the book ended at issue 588 and was revamped as <em>FF</em> (FF in the title standing for Future Foundation). After 11 issues of FF, Marvel revived the Fantastic Four for issue 600 (the previous issues being <em>FF</em>) and it will continue forward with <em>FF</em> also being released concurrently focusing on the non Fantastic Four members of the Future Foundation. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheAuthority' title='/pmwiki/pmwiki.php/ComicBook/TheAuthority' data-format='Q29taWNCb29rL1RoZUF1dGhvcml0eQ=='>The Authority</a></em> began as a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Stormwatch' title='/pmwiki/pmwiki.php/ComicBook/Stormwatch' data-format='Q29taWNCb29rL3t7U3Rvcm13YXRjaH19'>Stormwatch</a></em>. It later spawned two spin-offs of its own &#8212; <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/TheMonarchy' title='/pmwiki/pmwiki.php/ComicBook/TheMonarchy' data-format='Q29taWNCb29rL1RoZU1vbmFyY2h5'>The Monarchy</a></em>, about the surviving members of Stormwatch, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/KevHawkins' title='/pmwiki/pmwiki.php/ComicBook/KevHawkins' data-format='Q29taWNCb29rL0tldkhhd2tpbnM='>Kev Hawkins</a></em>, about a hapless SAS operative who keeps having to team up with the Midnighter. There was also a very short-lived <em>Midnighter</em> solo series. As for <em>Stormwatch</em>, its original incarnation spawned a spin-off about <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Backlash' title='/pmwiki/pmwiki.php/ComicBook/Backlash' data-format='Q29taWNCb29rL3t7QmFja2xhc2h9fQ=='>Backlash</a>. </li><li> The original <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/MsMarvel' title='/pmwiki/pmwiki.php/ComicBook/MsMarvel' data-format='Q29taWNCb29rL01zTWFydmVs'>Ms. Marvel</a> started out with amnesia, but was obviously the alter ego of <a class='twikilink' href='/pmwiki/pmwiki.php/Characters/MarvelComicsCarolDanvers' title='/pmwiki/pmwiki.php/Characters/MarvelComicsCarolDanvers' data-format='W1tDaGFyYWN0ZXJzL01hcnZlbENvbWljc0Nhcm9sRGFudmVycyBDYXJvbCBEYW52ZXJzXV0='>Carol Danvers</a>, formerly a recurring character in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/CaptainMarvelMarvelComics' title='/pmwiki/pmwiki.php/ComicBook/CaptainMarvelMarvelComics' data-format='Q29taWNCb29rL3t7Q2FwdGFpbiBNYXJ2ZWx8TWFydmVsQ29taWNzfX0='>Captain Marvel</a></em>; she soon realized that like Mar-Vell, she had gained her powers from the Kree, and spontaneously named herself after him. Meanwhile, Carol began working at the Daily Bugle, so <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SpiderMan' title='/pmwiki/pmwiki.php/ComicBook/SpiderMan' data-format='Q29taWNCb29rL1NwaWRlck1hbg=='>Spider-Man</a></em> characters showed up as well. </li><li> Pointedly averted with the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DCComics' title='/pmwiki/pmwiki.php/Creator/DCComics' data-format='Q3JlYXRvci9EQ0NvbWljcw=='>DC Comics</a> character Naomi. As creator <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BrianMichaelBendis' title='/pmwiki/pmwiki.php/Creator/BrianMichaelBendis' data-format='Q3JlYXRvci9Ccmlhbk1pY2hhZWxCZW5kaXM='>Brian Michael Bendis</a> noted in <a class='urllink' href='http://www.cbr.com/naomi-dc-comics-interview-bendis-walker-campbell/'>this interview<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, he considers her story too special to have her introduced in a book that isn't hers and spun off from there, necessitating <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/NaomiDCComics' title='/pmwiki/pmwiki.php/ComicBook/NaomiDCComics' data-format='W1tDb21pY0Jvb2sve3tOYW9taXxEQ0NvbWljc319IGhlciBvd24gc2VsZi1jb250YWluZWQgbGltaXRlZCBzZXJpZXMgZXhwbG9yaW5nIGhlciBjaGFyYWN0ZXIgYW5kIGhvdyBzaGUgYmVjYW1lIGEgc3VwZXJoZXJvXV0='>her own self-contained limited series exploring her character and how she became a superhero</a> before she makes her debut within the greater DC Universe in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ActionComics' title='/pmwiki/pmwiki.php/ComicBook/ActionComics' data-format='Q29taWNCb29rL0FjdGlvbkNvbWljcw=='>Action Comics</a></em> #1015. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/RichieRich' title='/pmwiki/pmwiki.php/ComicBook/RichieRich' data-format='Q29taWNCb29rL1JpY2hpZVJpY2g='>Richie Rich</a></em> is a spin-off of the <em>Little Dot</em> comics. Interestingly, Dot herself would have various stories in the <em>Richie Rich</em> comics as well. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MarvelComics' title='/pmwiki/pmwiki.php/Creator/MarvelComics' data-format='Q3JlYXRvci9NYXJ2ZWxDb21pY3M='>Marvel Comics</a> war series <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SgtFuryAndHisHowlingCommandos' title='/pmwiki/pmwiki.php/ComicBook/SgtFuryAndHisHowlingCommandos' data-format='Q29taWNCb29rL1NndEZ1cnlBbmRIaXNIb3dsaW5nQ29tbWFuZG9z'>Sgt. Fury and his Howling Commandos</a></em> had three different spin-offs. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/CombatKellyAndHisDeadlyDozen' title='/pmwiki/pmwiki.php/ComicBook/CombatKellyAndHisDeadlyDozen' data-format='Q29taWNCb29rL0NvbWJhdEtlbGx5QW5kSGlzRGVhZGx5RG96ZW4='>Combat Kelly and his Deadly Dozen</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/CaptSavageAndHisLeatherneckRaiders' title='/pmwiki/pmwiki.php/ComicBook/CaptSavageAndHisLeatherneckRaiders' data-format='Q29taWNCb29rL0NhcHRTYXZhZ2VBbmRIaXNMZWF0aGVybmVja1JhaWRlcnM='>Capt. Savage and his Leatherneck Raiders</a></em> kept the same wartime setting and used a similar approach (although Kelly's squad were <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BoxedCrook' title='/pmwiki/pmwiki.php/Main/BoxedCrook' data-format='e3tCb3hlZCBDcm9va319cw=='>Boxed Crooks</a>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/NickFuryAgentOfShieldStrangeTales' title='/pmwiki/pmwiki.php/ComicBook/NickFuryAgentOfShieldStrangeTales' data-format='W1tDb21pY0Jvb2svTmlja0Z1cnlBZ2VudE9mU2hpZWxkU3RyYW5nZVRhbGVzIE5pY2sgRnVyeSwgQWdlbnQgb2YgUy5ILkkuRS5MLkQuXV0='>Nick Fury, Agent of S.H.I.E.L.D.</a></em> was a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeSkip' title='/pmwiki/pmwiki.php/Main/TimeSkip' data-format='VGltZVNraXA='>Time Skip</a> that showed Sgt. Fury's post-war career, introduced <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SHIELD' title='/pmwiki/pmwiki.php/ComicBook/SHIELD' data-format='Q29taWNCb29rL3t7U0hJRUxEfX0='>S.H.I.E.L.D.</a> to the <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MarvelUniverse' title='/pmwiki/pmwiki.php/Franchise/MarvelUniverse' data-format='RnJhbmNoaXNlL01hcnZlbFVuaXZlcnNl'>Marvel Universe</a> and swiftly overshadowed his original series. </li></ul></li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrisisCrossover' title='/pmwiki/pmwiki.php/Main/CrisisCrossover' data-format='Q3Jpc2lzQ3Jvc3NvdmVy'>Crisis Crossover</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BloodlinesDCComics' title='/pmwiki/pmwiki.php/ComicBook/BloodlinesDCComics' data-format='Q29taWNCb29rL0Jsb29kbGluZXNEQ0NvbWljcw=='>Bloodlines (DC Comics)</a></em> had several series spun off that focused on the heroes who gained powers after surviving their encounters with the alien parasites, the longest-lasting and most well-known being <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Hitman1993' title='/pmwiki/pmwiki.php/ComicBook/Hitman1993' data-format='Q29taWNCb29rL0hpdG1hbjE5OTM='>Hitman (1993)</a></em>, with protagonist Tommy Monaghan debuting in the second Annual issue of <em>The Demon</em> and resurfacing in a couple of arcs in the main comic before he got his own comic that ran for 61 issues. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MilestoneComics' title='/pmwiki/pmwiki.php/Creator/MilestoneComics' data-format='Q3JlYXRvci9NaWxlc3RvbmVDb21pY3M='>Milestone Comics</a> <ul ><li> The <em>Deathwish</em> miniseries was a spinoff of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Hardware1993' title='/pmwiki/pmwiki.php/ComicBook/Hardware1993' data-format='Q29taWNCb29rL0hhcmR3YXJlMTk5Mw=='>Hardware (1993)</a></em>, though the actual protagonist was a transgender cop named Marisa Rahm and Deathwish was a supporting character at best. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BloodSyndicate' title='/pmwiki/pmwiki.php/ComicBook/BloodSyndicate' data-format='Q29taWNCb29rL0Jsb29kU3luZGljYXRl'>Blood Syndicate</a></em> had two spinoff miniseries to its name, <em>My Name is Holocaust</em> (where the unscrupulous criminal Holocaust is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainProtagonist' title='/pmwiki/pmwiki.php/Main/VillainProtagonist' data-format='W1tWaWxsYWluUHJvdGFnb25pc3QgdGhlIG1haW4gY2hhcmFjdGVyXV0='>the main character</a>) and <em>Wise Son: The White Wolf</em> (a miniseries focusing on Blood Syndicate member Wise Son that started publication shortly after the main series ended). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/XMenFromTheAshes' title='/pmwiki/pmwiki.php/ComicBook/XMenFromTheAshes' data-format='Q29taWNCb29rL1hNZW5Gcm9tVGhlQXNoZXM='>X-Men: From the Ashes</a></em> made an effort to put <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpotlightStealingSquad' title='/pmwiki/pmwiki.php/Main/SpotlightStealingSquad' data-format='W1tTcG90bGlnaHRTdGVhbGluZ1NxdWFkIG11dGFudHMgb3RoZXIgdGhhbiBXb2x2ZXJpbmVdXQ=='>mutants other than Wolverine</a> in the spotlight, with <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Phoenix2024' title='/pmwiki/pmwiki.php/ComicBook/Phoenix2024' data-format='W1tDb21pY0Jvb2svUGhvZW5peDIwMjQgUGhvZW5peF1d'>Phoenix</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Dazzler' title='/pmwiki/pmwiki.php/ComicBook/Dazzler' data-format='Q29taWNCb29rL3t7RGF6emxlcn19'>Dazzler</a>, Storm, Mystique, and Psylocke among others all getting their own solo series. There's also a miniseries centered around the new Sentinels, who are a team of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Cyborg' title='/pmwiki/pmwiki.php/Main/Cyborg' data-format='e3tjeWJvcmd9fQ=='>Cyborg</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CapeBusters' title='/pmwiki/pmwiki.php/Main/CapeBusters' data-format='Q2FwZUJ1c3RlcnM='>Cape Busters</a> as opposed to the previous generations' <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KillerRobot' title='/pmwiki/pmwiki.php/Main/KillerRobot' data-format='e3tLaWxsZXIgUm9ib3R9fXM='>Killer Robots</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Batman' title='/pmwiki/pmwiki.php/Franchise/Batman' data-format='RnJhbmNoaXNlL3t7QmF0bWFufX0='>Batman</a></em>: The character originated in the main feature of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DetectiveComics' title='/pmwiki/pmwiki.php/ComicBook/DetectiveComics' data-format='Q29taWNCb29rL0RldGVjdGl2ZUNvbWljcw=='>Detective Comics</a></em>, which was an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnthologyComic' title='/pmwiki/pmwiki.php/Main/AnthologyComic' data-format='QW50aG9sb2d5Q29taWM='>Anthology Comic</a> before it gradually became a Batman title. A <em>huge</em> number of spin-offs have resulted, starring Batman himself or associated characters: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman' title='/pmwiki/pmwiki.php/ComicBook/Batman' data-format='Q29taWNCb29rL3t7QmF0bWFufX0='>Batman</a></em> was a spin-off from <em>Detective Comics</em>; at a time when most American comics were anthologies, Batman was the second DC character (after Superman) to have a comic-book all to himself. <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2011' title='/pmwiki/pmwiki.php/ComicBook/Batman2011' data-format='W1tDb21pY0Jvb2svQmF0bWFuMjAxMSBSZWxhdW5jaGVkIGluIDIwMTFdXQ=='>Relaunched in 2011</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2016' title='/pmwiki/pmwiki.php/ComicBook/Batman2016' data-format='W1tDb21pY0Jvb2svQmF0bWFuMjAxNiBhbmQgYWdhaW4gaW4gMjAxNl1d'>and again in 2016</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanFamily' title='/pmwiki/pmwiki.php/ComicBook/BatmanFamily' data-format='Q29taWNCb29rL0JhdG1hbkZhbWlseQ=='>Batman Family</a></em>: Featured stories of Batman's supporting cast: Robin, Batgirl and others. Stories starring Batman himself were included from issue #17. Published 1975 to 1978; after 20 issues, the series was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComicsMerger' title='/pmwiki/pmwiki.php/Main/ComicsMerger' data-format='W1tDb21pY3NNZXJnZXIgbWVyZ2VkXV0='>merged</a> with <em>Detective Comics</em>. </li><li> <em>The Joker</em>: The first series starring the titular Batman villain ran from 1975 to 1976. The second series <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheJoker2021' title='/pmwiki/pmwiki.php/ComicBook/TheJoker2021' data-format='Q29taWNCb29rL1RoZUpva2VyMjAyMQ=='>The Joker (2021)</a></em> spun off from <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanJamesTynionIV' title='/pmwiki/pmwiki.php/ComicBook/BatmanJamesTynionIV' data-format='W1tDb21pY0Jvb2svQmF0bWFuSmFtZXNUeW5pb25JViBKYW1lcyBUeW5pb24gSVYmIzAzOTtzIHJ1bl1d'>James Tynion IV's run</a> on <em>Batman</em>, featuring Jim Gordon hunting down the Joker. This was followed by <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheJokerTheManWhoStoppedLaughing' title='/pmwiki/pmwiki.php/ComicBook/TheJokerTheManWhoStoppedLaughing' data-format='Q29taWNCb29rL1RoZUpva2VyVGhlTWFuV2hvU3RvcHBlZExhdWdoaW5n'>The Joker: The Man Who Stopped Laughing</a></em> in 2022. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanAndTheOutsiders' title='/pmwiki/pmwiki.php/ComicBook/BatmanAndTheOutsiders' data-format='Q29taWNCb29rL0JhdG1hbkFuZFRoZU91dHNpZGVycw=='>Batman and the Outsiders</a></em>: Began in 1983, featuring a superhero team led by Batman. Became simply <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheOutsidersDCComics' title='/pmwiki/pmwiki.php/ComicBook/TheOutsidersDCComics' data-format='W1tDb21pY0Jvb2svVGhlT3V0c2lkZXJzRENDb21pY3MgVGhlIE91dHNpZGVyc11d'>The Outsiders</a></em> in 1985 when Batman left the team<span class="notelabel" onclick="togglenote('note18c15');"><sup>note&nbsp;</sup></span><span id="note18c15" class="inlinefolder" isnote="true" onclick="togglenote('note18c15');" style="cursor:pointer;font-size:smaller;display:none;">with a new series, while the original series briefly continued alongside it under the name <em>Adventures of the Outsiders</em></span> and ran until 1988; revived 1993 to 1995 and <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Outsiders2003' title='/pmwiki/pmwiki.php/ComicBook/Outsiders2003' data-format='W1tDb21pY0Jvb2svT3V0c2lkZXJzMjAwMyAyMDAzIHRvIDIwMDddXQ=='>2003 to 2007</a>. Relaunched as <em>Batman and the Outsiders</em> in 2007 but changed its name to <em>The Outsiders</em> again after 14 issues, running until 2011. The 2019-2020 series <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/BatmanAndTheOutsiders2019' title='/pmwiki/pmwiki.php/ComicBook/BatmanAndTheOutsiders2019' data-format='W1tDb21pY0Jvb2svQmF0bWFuQW5kVGhlT3V0c2lkZXJzMjAxOSBCYXRtYW4gYW5kIHRoZSBPdXRzaWRlcnNdXQ=='>Batman and the Outsiders</a></em> was spun off from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DetectiveComics2016' title='/pmwiki/pmwiki.php/ComicBook/DetectiveComics2016' data-format='W1tDb21pY0Jvb2svRGV0ZWN0aXZlQ29taWNzMjAxNiBEZXRlY3RpdmUgQ29taWNzXV0='>Detective Comics</a></em> story arc "On the Outside". <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Outsiders2023' title='/pmwiki/pmwiki.php/ComicBook/Outsiders2023' data-format='Q29taWNCb29rL091dHNpZGVyczIwMjM='>Outsiders (2023)</a></em> was mostly unrelated to previous volumes. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/LegendsOfTheDarkKnight' title='/pmwiki/pmwiki.php/ComicBook/LegendsOfTheDarkKnight' data-format='Q29taWNCb29rL0xlZ2VuZHNPZlRoZURhcmtLbmlnaHQ='>Legends Of The Dark Knight</a></em>: The third ongoing series starring Batman, usually with self-contained story arcs set in his early years (although some were set in the present day), typically with a mature and serious tone. Ran from 1989 to 2007; effectively replaced by the similar <em>Batman Confidential</em>, which ran until 2011. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/BatmanShadowOfTheBat' title='/pmwiki/pmwiki.php/ComicBook/BatmanShadowOfTheBat' data-format='Q29taWNCb29rL0JhdG1hblNoYWRvd09mVGhlQmF0'>Batman Shadow Of The Bat</a></em>: A fourth series starring Batman: after Alan Grant wrote <em>Detective Comics</em> and then <em>Batman</em>, he got his own book to write. Ran from 1992 to 1999. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Robin1993' title='/pmwiki/pmwiki.php/ComicBook/Robin1993' data-format='Q29taWNCb29rL1JvYmluMTk5Mw=='>Robin (1993)</a></em>: An ongoing series starring the third Robin, Tim Drake; preceded by three <em>Robin</em> miniseries published from 1990 to 1993. Ended in 2009 and immediately <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelSeries' title='/pmwiki/pmwiki.php/Main/SequelSeries' data-format='W1tTZXF1ZWxTZXJpZXMgZm9sbG93ZWRdXQ=='>followed</a> by <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/RedRobin' title='/pmwiki/pmwiki.php/ComicBook/RedRobin' data-format='Q29taWNCb29rL1JlZFJvYmlu'>Red Robin</a></em>, also starring Tim in his new superhero identity, which ran until 2011. An eventual successor of sorts, <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TimDrakeRobin' title='/pmwiki/pmwiki.php/ComicBook/TimDrakeRobin' data-format='Q29taWNCb29rL1RpbURyYWtlUm9iaW4='>Tim Drake: Robin</a></em>, ran from 2022 to 2023. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Catwoman' title='/pmwiki/pmwiki.php/ComicBook/Catwoman' data-format='Q29taWNCb29rL3t7Q2F0d29tYW59fQ=='>Catwoman</a></em>: Starring Catwoman, recurring antagonist and sometimes ally and love interest of Batman. A miniseries was published in 1989; an ongoing series began in 1993, was relaunched in 2001, and ended in 2008.<span class="notelabel" onclick="togglenote('note2asxc');"><sup>note&nbsp;</sup></span><span id="note2asxc" class="inlinefolder" isnote="true" onclick="togglenote('note2asxc');" style="cursor:pointer;font-size:smaller;display:none;">An extra issue was published in 2010 as a tie-in to the <em>Blackest Night</em> event.</span> The <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/New52' title='/pmwiki/pmwiki.php/ComicBook/New52' data-format='Q29taWNCb29rL05ldzUy'>New 52</a> volume ran from 2011 to 2016. The current volume began in 2018. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Azrael' title='/pmwiki/pmwiki.php/ComicBook/Azrael' data-format='Q29taWNCb29rL3t7QXpyYWVsfX0='>Azrael</a></em>: Following Jean-Paul Valley (introduced in the miniseries <em>Batman: Sword of Azrael</em>) after his brief period as Batman, spinning off from the "<a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Knightfall' title='/pmwiki/pmwiki.php/ComicBook/Knightfall' data-format='Q29taWNCb29rL3t7S25pZ2h0ZmFsbH19'>Knightfall</a>" crossover. Ran from 1995 to 2003, changing its title to <em>Azrael: Agent of the Bat</em> in 1998. The second Azrael, Michael Lane, starred in a 2009 miniseries and 2009-to-2011 ongoing series, spinning off from <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanGrantMorrison' title='/pmwiki/pmwiki.php/ComicBook/BatmanGrantMorrison' data-format='W1tDb21pY0Jvb2svQmF0bWFuR3JhbnRNb3JyaXNvbiBHcmFudCBNb3JyaXNvbiYjMDM5O3MgcnVuXV0='>Grant Morrison's run</a> on <em>Batman</em>. Jean-Paul later starred in the 2022-23 miniseries <em>Sword of Azrael</em>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/TheBatmanChronicles' title='/pmwiki/pmwiki.php/Main/TheBatmanChronicles' data-format='VGhlQmF0bWFuQ2hyb25pY2xlcw=='>The Batman Chronicles</a></em>: Quarterly book containing multiple Batman stories, running 1995 to 2001. Together with the four monthly Batman titles, there was a new Batman book published every week. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Nightwing' title='/pmwiki/pmwiki.php/ComicBook/Nightwing' data-format='Q29taWNCb29rL3t7TmlnaHR3aW5nfX0='>Nightwing</a></em>: Starring Dick Grayson, formerly the first Robin, now primarily the protector of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WretchedHive' title='/pmwiki/pmwiki.php/Main/WretchedHive' data-format='V3JldGNoZWRIaXZl'>Wretched Hive</a> of Blüdhaven. A miniseries in 1995 preceded the ongoing series, which ran from 1996 until 2009 when Dick became the new Batman. <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Nightwing2011' title='/pmwiki/pmwiki.php/ComicBook/Nightwing2011' data-format='W1tDb21pY0Jvb2svTmlnaHR3aW5nMjAxMSBSZXZpdmVkXV0='>Revived</a> for the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/New52' title='/pmwiki/pmwiki.php/ComicBook/New52' data-format='Q29taWNCb29rL05ldzUy'>New 52</a> from 2011 to 2015; replaced by <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Grayson' title='/pmwiki/pmwiki.php/ComicBook/Grayson' data-format='Q29taWNCb29rL3t7R3JheXNvbn19'>Grayson</a></em> from 2015 to 2016, which featured Dick as a secret agent for the mysterious organization Spyral. Currently running as <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Nightwing2016' title='/pmwiki/pmwiki.php/ComicBook/Nightwing2016' data-format='Q29taWNCb29rL05pZ2h0d2luZzIwMTY='>Nightwing (2016)</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BirdsOfPrey' title='/pmwiki/pmwiki.php/ComicBook/BirdsOfPrey' data-format='Q29taWNCb29rL0JpcmRzT2ZQcmV5'>Birds of Prey</a></em>: Originally featuring the duo of Oracle (Barbara Gordon, formerly the second Batgirl) and Black Canary (Dinah Lance), evolving into a team with other major characters such as Huntress (Helena Bertinelli). After several one-shot specials, the ongoing series ran from 1998 to 2009; revived 2010 to 2011, and again with the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/New52' title='/pmwiki/pmwiki.php/ComicBook/New52' data-format='Q29taWNCb29rL05ldzUy'>New 52</a> from 2011 to 2014. As part of <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DCRebirth' title='/pmwiki/pmwiki.php/ComicBook/DCRebirth' data-format='Q29taWNCb29rL0RDUmViaXJ0aA=='>DC Rebirth</a>, a new series <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatgirlAndTheBirdsOfPrey' title='/pmwiki/pmwiki.php/ComicBook/BatgirlAndTheBirdsOfPrey' data-format='Q29taWNCb29rL0JhdGdpcmxBbmRUaGVCaXJkc09mUHJleQ=='>Batgirl and the Birds of Prey</a></em> ran from 2016 to 2018. Currently running as <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BirdsOfPrey2023' title='/pmwiki/pmwiki.php/ComicBook/BirdsOfPrey2023' data-format='Q29taWNCb29rL0JpcmRzT2ZQcmV5MjAyMw=='>Birds of Prey (2023)</a></em>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/BatmanGothamKnights' title='/pmwiki/pmwiki.php/ComicBook/BatmanGothamKnights' data-format='Q29taWNCb29rL0JhdG1hbkdvdGhhbUtuaWdodHM='>Batman Gotham Knights</a></em>: Another series starring Batman, with broader focus on the entire Batfamily, launched in 2000 after <em>Shadow of the Bat</em> ended. From issue #50 it was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retool' title='/pmwiki/pmwiki.php/Main/Retool' data-format='e3tyZXRvb2x9fWVk'>retooled</a> to focus on Batman's villains, and ended in 2006. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batgirl' title='/pmwiki/pmwiki.php/ComicBook/Batgirl' data-format='Q29taWNCb29rL3t7QmF0Z2lybH19'>Batgirl</a></em>: The <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batgirl2000' title='/pmwiki/pmwiki.php/ComicBook/Batgirl2000' data-format='W1tDb21pY0Jvb2svQmF0Z2lybDIwMDAgZmlyc3Qgb25nb2luZyBzZXJpZXNdXQ=='>first ongoing series</a> starred Cassandra Cain, the third Batgirl; ran from 2000 to 2006, followed by a miniseries in 2008. The <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batgirl2009' title='/pmwiki/pmwiki.php/ComicBook/Batgirl2009' data-format='W1tDb21pY0Jvb2svQmF0Z2lybDIwMDkgbmV4dCBvbmdvaW5nIHNlcmllc11d'>next ongoing series</a> starred Stephanie Brown, the fourth Batgirl, running from 2009 to 2011. Barbara Gordon became Batgirl again with the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/New52' title='/pmwiki/pmwiki.php/ComicBook/New52' data-format='Q29taWNCb29rL05ldzUy'>New 52</a> reboot: her series began in 2011, was relaunched in 2016 with <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DCRebirth' title='/pmwiki/pmwiki.php/ComicBook/DCRebirth' data-format='Q29taWNCb29rL0RDUmViaXJ0aA=='>DC Rebirth</a></em>, and ended in 2020. The 2021-2023 series <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batgirls' title='/pmwiki/pmwiki.php/ComicBook/Batgirls' data-format='Q29taWNCb29rL3t7QmF0Z2lybHN9fQ=='>Batgirls</a></em> starred Barbara, Cass and Steph all together. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn' title='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn' data-format='Q29taWNCb29rL0hhcmxleVF1aW5u'>Harley Quinn</a></em>: Starring the former Joker minion turned <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntiVillain' title='/pmwiki/pmwiki.php/Main/AntiVillain' data-format='QW50aVZpbGxhaW4='>Anti-Villain</a> and occasional anti-hero. First ran from 2000 to 2004; the series was <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn2014' title='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn2014' data-format='W1tDb21pY0Jvb2svSGFybGV5UXVpbm4yMDE0IHJldml2ZWQgaW4gMjAxM11d'>revived in 2013</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn2016' title='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn2016' data-format='W1tDb21pY0Jvb2svSGFybGV5UXVpbm4yMDE2IHJlbGF1bmNoZWQgaW4gMjAxNl1d'>relaunched in 2016</a> and ran until 2020, then was relaunched again with the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn2021' title='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn2021' data-format='W1tDb21pY0Jvb2svSGFybGV5UXVpbm4yMDIxIGN1cnJlbnQgdm9sdW1lXV0='>current volume</a> in 2021. Spawned a large number of spin-off miniseries of its own, as well. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GothamCentral' title='/pmwiki/pmwiki.php/ComicBook/GothamCentral' data-format='Q29taWNCb29rL0dvdGhhbUNlbnRyYWw='>Gotham Central</a></em>: Starring Renee Montoya and members of the Gotham City Police Department, with Batman only playing a minor role. Ran from 2003 to 2006. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanAndRobin2009' title='/pmwiki/pmwiki.php/ComicBook/BatmanAndRobin2009' data-format='W1tDb21pY0Jvb2svQmF0bWFuQW5kUm9iaW4yMDA5IEJhdG1hbiBhbmQgUm9iaW5dXQ=='>Batman and Robin</a></em>: Began in 2009, spinning off from <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GrantMorrison' title='/pmwiki/pmwiki.php/Creator/GrantMorrison' data-format='Q3JlYXRvci9HcmFudE1vcnJpc29u'>Grant Morrison</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanGrantMorrison' title='/pmwiki/pmwiki.php/ComicBook/BatmanGrantMorrison' data-format='W1tDb21pY0Jvb2svQmF0bWFuR3JhbnRNb3JyaXNvbiBydW5dXQ=='>run</a> on <em>Batman</em>, with Dick Grayson and Damian Wayne as the new Dynamic Duo. <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanAndRobin2011' title='/pmwiki/pmwiki.php/ComicBook/BatmanAndRobin2011' data-format='W1tDb21pY0Jvb2svQmF0bWFuQW5kUm9iaW4yMDExIFJlbGF1bmNoZWQgaW4gMjAxMV1d'>Relaunched in 2011</a> for the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/New52' title='/pmwiki/pmwiki.php/ComicBook/New52' data-format='Q29taWNCb29rL05ldzUy'>New 52</a>, with Bruce Wayne back as Batman. Immediately followed by <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/RobinSonOfBatman' title='/pmwiki/pmwiki.php/ComicBook/RobinSonOfBatman' data-format='Q29taWNCb29rL1JvYmluU29uT2ZCYXRtYW4='>Robin: Son of Batman</a></em> in 2015, which ran for 12 issues. A new <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Robin2021' title='/pmwiki/pmwiki.php/ComicBook/Robin2021' data-format='W1tDb21pY0Jvb2svUm9iaW4yMDIxIFJvYmluXV0='>Robin</a></em> series starring Damian ran from 2021 to 2022, followed by the miniseries <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanVsRobin' title='/pmwiki/pmwiki.php/ComicBook/BatmanVsRobin' data-format='Q29taWNCb29rL0JhdG1hblZzUm9iaW4='>Batman vs. Robin</a></em>, which led into the current series <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanAndRobin2023' title='/pmwiki/pmwiki.php/ComicBook/BatmanAndRobin2023' data-format='Q29taWNCb29rL0JhdG1hbkFuZFJvYmluMjAyMw=='>Batman and Robin (2023)</a></em>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/BatmanStreetsOfGotham' title='/pmwiki/pmwiki.php/ComicBook/BatmanStreetsOfGotham' data-format='Q29taWNCb29rL0JhdG1hblN0cmVldHNPZkdvdGhhbQ=='>Batman Streets Of Gotham</a></em> spun off from <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PaulDini' title='/pmwiki/pmwiki.php/Creator/PaulDini' data-format='Q3JlYXRvci9QYXVsRGluaQ=='>Paul Dini</a>'s run on <em>Detective Comics</em>, running from 2009 to 2011. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GothamCitySirens' title='/pmwiki/pmwiki.php/ComicBook/GothamCitySirens' data-format='Q29taWNCb29rL0dvdGhhbUNpdHlTaXJlbnM='>Gotham City Sirens</a></em> starred a trio of Batman villains: Poison Ivy, Harley Quinn and Catwoman. Ran from 2009 to 2011. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2010' title='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2010' data-format='W1tDb21pY0Jvb2svQmF0bWFuSW5jb3Jwb3JhdGVkMjAxMCBCYXRtYW4gSW5jb3Jwb3JhdGVkXV0='>Batman Incorporated</a></em>: First launched in 2010, continuing <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GrantMorrison' title='/pmwiki/pmwiki.php/Creator/GrantMorrison' data-format='Q3JlYXRvci9HcmFudE1vcnJpc29u'>Grant Morrison</a>'s Batman story, featuring Bruce Wayne running an international organization of Batman-inspired superheroes. After the New 52 relaunch, a <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2012' title='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2012' data-format='W1tDb21pY0Jvb2svQmF0bWFuSW5jb3Jwb3JhdGVkMjAxMiBjb250aW51YXRpb25dXQ=='>continuation</a> ran from 2012 to 2013. <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2022' title='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2022' data-format='W1tDb21pY0Jvb2svQmF0bWFuSW5jb3Jwb3JhdGVkMjAyMiBSZXZpdmVkXV0='>Revived</a> from 2022 to 2023, spinning off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2016' title='/pmwiki/pmwiki.php/ComicBook/Batman2016' data-format='Q29taWNCb29rL0JhdG1hbjIwMTY='>Batman (2016)</a></em>, with the organization led by Batman's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheRival' title='/pmwiki/pmwiki.php/Main/TheRival' data-format='W1tUaGVSaXZhbCByaXZhbF1d'>rival</a> Ghost-Maker. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/BatmanTheDarkKnight' title='/pmwiki/pmwiki.php/ComicBook/BatmanTheDarkKnight' data-format='Q29taWNCb29rL0JhdG1hblRoZURhcmtLbmlnaHQ='>Batman The Dark Knight</a></em>: Starring Batman, originally written and drawn by David Finch. Began in 2010, but only published five issues before being relaunched in 2011 with the New 52. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retool' title='/pmwiki/pmwiki.php/Main/Retool' data-format='e3tSZXRvb2x9fWVk'>Retooled</a> to focus on Batman's villains with issue #10; ended in 2014. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batwoman' title='/pmwiki/pmwiki.php/ComicBook/Batwoman' data-format='Q29taWNCb29rL3t7QmF0d29tYW59fQ=='>Batwoman</a></em>: The solo series of Katherine "Kate" Kane, spinning off from <em>Detective Comics</em> where she was the main character from 2009 to 2010. A #0 issue came out in 2010, but <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batwoman2011' title='/pmwiki/pmwiki.php/ComicBook/Batwoman2011' data-format='Q29taWNCb29rL0JhdHdvbWFuMjAxMQ=='>Batwoman (2011)</a></em> was delayed to begin with the New 52 relaunch; it ran until 2015. Revived as <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batwoman2017' title='/pmwiki/pmwiki.php/ComicBook/Batwoman2017' data-format='Q29taWNCb29rL0JhdHdvbWFuMjAxNw=='>Batwoman (2017)</a></em> with <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DCRebirth' title='/pmwiki/pmwiki.php/ComicBook/DCRebirth' data-format='Q29taWNCb29rL0RDUmViaXJ0aA=='>DC Rebirth</a>, spinning off directly from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DetectiveComics2016' title='/pmwiki/pmwiki.php/ComicBook/DetectiveComics2016' data-format='Q29taWNCb29rL0RldGVjdGl2ZUNvbWljczIwMTY='>Detective Comics (2016)</a></em> story arc "Batwoman Begins", running until 2018. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/RedHoodAndTheOutlaws' title='/pmwiki/pmwiki.php/ComicBook/RedHoodAndTheOutlaws' data-format='Q29taWNCb29rL1JlZEhvb2RBbmRUaGVPdXRsYXdz'>Red Hood and the Outlaws</a></em>: Began in 2011, with Red Hood (Jason Todd, formerly the second Robin) teaming up with Arsenal (Roy Harper) and Starfire. Replaced in 2015 by <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/RedHoodArsenal' title='/pmwiki/pmwiki.php/ComicBook/RedHoodArsenal' data-format='Q29taWNCb29rL1JlZEhvb2RBcnNlbmFs'>Red Hood/Arsenal</a></em>, while Starfire got <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Starfire' title='/pmwiki/pmwiki.php/ComicBook/Starfire' data-format='W1tDb21pY0Jvb2sve3tTdGFyZmlyZX19IGhlciBvd24gc2VyaWVzXV0='>her own series</a>. Relaunched in 2016, with Red Hood now teamed up with Artemis and Bizarro; retitled as <em>Red Hood: Outlaw</em> from issue #27, and again as <em>Red Hood</em> for its final two issues in 2020. Followed by the 2024 miniseries <em>Red Hood: The Hill</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batwing' title='/pmwiki/pmwiki.php/ComicBook/Batwing' data-format='Q29taWNCb29rL3t7QmF0d2luZ319'>Batwing</a></em>: Featuring the Batman of Africa, spinning off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2010' title='/pmwiki/pmwiki.php/ComicBook/BatmanIncorporated2010' data-format='Q29taWNCb29rL0JhdG1hbkluY29ycG9yYXRlZDIwMTA='>Batman, Incorporated (2010)</a></em>. Originally starred David Zavimbe; following a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retool' title='/pmwiki/pmwiki.php/Main/Retool' data-format='e3tyZXRvb2x9fQ=='>retool</a> he was replaced by Luke Fox, son of Lucius Fox. Ran 2011 to 2014. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Talon' title='/pmwiki/pmwiki.php/ComicBook/Talon' data-format='Q29taWNCb29rL3t7VGFsb259fQ=='>Talon</a></em>: Spinning off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2011' title='/pmwiki/pmwiki.php/ComicBook/Batman2011' data-format='Q29taWNCb29rL0JhdG1hbjIwMTE='>Batman (2011)</a></em>, follows Calvin Rose, a rogue Talon on the run from the Court of Owls. Ran 2012 to 2014. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GothamAcademy' title='/pmwiki/pmwiki.php/ComicBook/GothamAcademy' data-format='Q29taWNCb29rL0dvdGhhbUFjYWRlbXk='>Gotham Academy</a></em>: The adventures of the Detective Club of the titular Wayne-funded school. Launched in 2014; later relaunched in 2016 as <em>Gotham Academy: Second Semester</em>; ended 2017. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WeAreRobin' title='/pmwiki/pmwiki.php/ComicBook/WeAreRobin' data-format='Q29taWNCb29rL1dlQXJlUm9iaW4='>We Are Robin</a></em>: In the wake of "<a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/BatmanEndgame' title='/pmwiki/pmwiki.php/ComicBook/BatmanEndgame' data-format='Q29taWNCb29rL0JhdG1hbkVuZGdhbWU='>Batman: Endgame</a>", follows Duke Thomas and a collective of teenagers inspired by the Batfamily to protect Gotham under the identity of Robin. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/AllStarBatman' title='/pmwiki/pmwiki.php/ComicBook/AllStarBatman' data-format='Q29taWNCb29rL0FsbFN0YXJCYXRtYW4='>All Star Batman</a></em>: A new third ongoing series starring Batman for <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DCRebirth' title='/pmwiki/pmwiki.php/ComicBook/DCRebirth' data-format='Q29taWNCb29rL0RDUmViaXJ0aA=='>DC Rebirth</a>, running 2016 to 2017. Written by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ScottSnyder' title='/pmwiki/pmwiki.php/Creator/ScottSnyder' data-format='Q3JlYXRvci9TY290dFNueWRlcg=='>Scott Snyder</a>, who had written most of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2011' title='/pmwiki/pmwiki.php/ComicBook/Batman2011' data-format='Q29taWNCb29rL0JhdG1hbjIwMTE='>Batman (2011)</a></em>. </li><li> After <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/FutureState' title='/pmwiki/pmwiki.php/ComicBook/FutureState' data-format='Q29taWNCb29rL0Z1dHVyZVN0YXRl'>Future State</a></em> introduced Jace Fox as the future Batman, the 2021 miniseries <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheNextBatmanSecondSon' title='/pmwiki/pmwiki.php/ComicBook/TheNextBatmanSecondSon' data-format='Q29taWNCb29rL1RoZU5leHRCYXRtYW5TZWNvbmRTb24='>The Next Batman: Second Son</a></em> featured Jace in the present day. It was followed by the ongoing series <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/IAmBatman' title='/pmwiki/pmwiki.php/ComicBook/IAmBatman' data-format='Q29taWNCb29rL0lBbUJhdG1hbg=='>I Am Batman</a></em>, running 2021 to 2023. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/PoisonIvy2022' title='/pmwiki/pmwiki.php/ComicBook/PoisonIvy2022' data-format='Q29taWNCb29rL1BvaXNvbkl2eTIwMjI='>Poison Ivy (2022)</a></em>: A currrent ongoing series spinning off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2016' title='/pmwiki/pmwiki.php/ComicBook/Batman2016' data-format='Q29taWNCb29rL0JhdG1hbjIwMTY='>Batman (2016)</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ThePenguin2023' title='/pmwiki/pmwiki.php/ComicBook/ThePenguin2023' data-format='Q29taWNCb29rL1RoZVBlbmd1aW4yMDIz'>The Penguin (2023)</a></em>: A currrent ongoing series spinning off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman2016' title='/pmwiki/pmwiki.php/ComicBook/Batman2016' data-format='Q29taWNCb29rL0JhdG1hbjIwMTY='>Batman (2016)</a></em>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Strips&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/HiAndLois' title='/pmwiki/pmwiki.php/ComicStrip/HiAndLois' data-format='Q29taWNTdHJpcC9IaUFuZExvaXM='>Hi and Lois</a></em> is a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/BeetleBailey' title='/pmwiki/pmwiki.php/ComicStrip/BeetleBailey' data-format='Q29taWNTdHJpcC9CZWV0bGVCYWlsZXk='>Beetle Bailey</a></em>, as Lois is Beetle's older sister. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/FunkyWinkerbean' title='/pmwiki/pmwiki.php/ComicStrip/FunkyWinkerbean' data-format='Q29taWNTdHJpcC9GdW5reVdpbmtlcmJlYW4='>Funky Winkerbean</a></em> generated two spin-offs: <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/Crankshaft' title='/pmwiki/pmwiki.php/ComicStrip/Crankshaft' data-format='e3tDb21pY1N0cmlwL0NyYW5rc2hhZnR9fQ=='>Crankshaft</a></em>, featuring a curmudgeonly school bus driver, and <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicStrip/JohnDarling' title='/pmwiki/pmwiki.php/ComicStrip/JohnDarling' data-format='Q29taWNTdHJpcC9Kb2huRGFybGluZw=='>John Darling</a></em>, featuring a clueless talk show host. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Fan Works&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <!-- * ''WebVideo/YuGiOhTheAbridgedSeries'' → ''WebVideo/MarikPlaysBloodlines''--> <!-- * Blog/EquestriaDaily → [[http://www.desudaily.com Desu Daily]] ("the <span class='esc-seq' title='non-wikiword'>EqD</span> of {{anime}}") and [[http://www.beachcitybugle.com/ Beach City Bugle]] (dedicated to ''WesternAnimation/StevenUniverse'')--> <!-- * ''Fanfic/YouGotHaruhiRolled'' → ''Cracks in the SOS Dan'' → "You Got <span class='esc-seq' title='non-wikiword'>SasakiRolled</span>!" → ''The Obesity of Haruhi Suzumiya''--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/EarthsAlienHistory' title='/pmwiki/pmwiki.php/Fanfic/EarthsAlienHistory' data-format='RmFuZmljL0VhcnRoc0FsaWVuSGlzdG9yeQ=='>Earth's Alien History</a></em> has the sequel/side story <em>Andromeda Dreams</em>. While the main story is set solely within the Milky Way galaxy, <em>Andromeda Dreams</em> is focused on the various Milky Way <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ColonyShip' title='/pmwiki/pmwiki.php/Main/ColonyShip' data-format='e3tDb2xvbnkgU2hpcH19cw=='>Colony Ships</a> sent to the Andromeda galaxy as continuity of species just in case the Reapers succeed in wiping out all life. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MasterGame' title='/pmwiki/pmwiki.php/VideoGame/MasterGame' data-format='VmlkZW9HYW1lL01hc3RlckdhbWU='>MasterGame</a></em> is a <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GeometryDash' title='/pmwiki/pmwiki.php/VideoGame/GeometryDash' data-format='VmlkZW9HYW1lL0dlb21ldHJ5RGFzaA=='>Geometry Dash</a></em> custom level spun off from the <em>Altergame</em> level series. While <em>Altergame</em> is made up of smaller mini-games created in Geometry Dash's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LevelEditor' title='/pmwiki/pmwiki.php/Main/LevelEditor' data-format='TGV2ZWxFZGl0b3I='>Level Editor</a>, <em><span class='esc-seq' title='non-wikiword'>MasterGame</span></em> is a larger scope <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RolePlayingGame' title='/pmwiki/pmwiki.php/Main/RolePlayingGame' data-format='Um9sZVBsYXlpbmdHYW1l'>Role-Playing Game</a> made with it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheNewAdventuresOfInvaderZim' title='/pmwiki/pmwiki.php/Fanfic/TheNewAdventuresOfInvaderZim' data-format='RmFuZmljL1RoZU5ld0FkdmVudHVyZXNPZkludmFkZXJaaW0='>The New Adventures of Invader Zim</a></em> has the anthology <em>New Adventures: Mature Edition</em>, a collection of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LooseCanon' title='/pmwiki/pmwiki.php/Main/LooseCanon' data-format='TG9vc2VDYW5vbg=='>Loose Canon</a> stories featuring <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AgeLift' title='/pmwiki/pmwiki.php/Main/AgeLift' data-format='W1tBZ2VMaWZ0IGFnZWQgdXBdXQ=='>aged up</a> versions of the human characters involved in more mature situations. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Films — Animation&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/JosephKingOfDreams' title='/pmwiki/pmwiki.php/WesternAnimation/JosephKingOfDreams' data-format='V2VzdGVybkFuaW1hdGlvbi9Kb3NlcGhLaW5nT2ZEcmVhbXM='>Joseph: King of Dreams</a></em> not only focuses on God's people seen in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ThePrinceOfEgypt' title='/pmwiki/pmwiki.php/WesternAnimation/ThePrinceOfEgypt' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVQcmluY2VPZkVneXB0'>The Prince of Egypt</a></em> but focuses on Joseph, born before Moses. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/KronksNewGroove' title='/pmwiki/pmwiki.php/WesternAnimation/KronksNewGroove' data-format='V2VzdGVybkFuaW1hdGlvbi9Lcm9ua3NOZXdHcm9vdmU='>Kronk's New Groove</a></em> spun off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheEmperorsNewGroove' title='/pmwiki/pmwiki.php/WesternAnimation/TheEmperorsNewGroove' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVFbXBlcm9yc05ld0dyb292ZQ=='>The Emperor's New Groove</a></em> and gave <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakoutCharacter' title='/pmwiki/pmwiki.php/Main/BreakoutCharacter' data-format='QnJlYWtvdXRDaGFyYWN0ZXI='>Breakout Character</a> Kronk some spotlight. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Shrek2' title='/pmwiki/pmwiki.php/WesternAnimation/Shrek2' data-format='V2VzdGVybkFuaW1hdGlvbi9TaHJlazI='>Shrek 2</a></em> had fan-favorite Puss in Boots, which resulted in his own <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PussInBoots2011' title='/pmwiki/pmwiki.php/WesternAnimation/PussInBoots2011' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1B1c3NJbkJvb3RzMjAxMSBvcmlnaW4gc3RvcnldXQ=='>origin story</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLEGOBatmanMovie' title='/pmwiki/pmwiki.php/WesternAnimation/TheLEGOBatmanMovie' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMRUdPQmF0bWFuTW92aWU='>The LEGO Batman Movie</a></em> follows the life of a secondary character from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLEGOMovie' title='/pmwiki/pmwiki.php/WesternAnimation/TheLEGOMovie' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMRUdPTW92aWU='>The LEGO Movie</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Batman' title='/pmwiki/pmwiki.php/Franchise/Batman' data-format='RnJhbmNoaXNlL3t7QmF0bWFufX0='>Batman</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Films — Live-Action&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <!-- * ''Film/ForgettingSarahMarshall'' → ''Film/GetHimToTheGreek''--> <!-- * ''Film/KnockedUp'' → ''Film/ThisIs40''--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMummyReturns' title='/pmwiki/pmwiki.php/Film/TheMummyReturns' data-format='RmlsbS9UaGVNdW1teVJldHVybnM='>The Mummy Returns</a></em> featured a mummy trying to raise the Scorpion king and his army from their resting places. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheScorpionKing' title='/pmwiki/pmwiki.php/Film/TheScorpionKing' data-format='RmlsbS9UaGVTY29ycGlvbktpbmc='>The Scorpion King</a></em> is set thousands of years in the past and features the character's rise to power. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Grindhouse' title='/pmwiki/pmwiki.php/Film/Grindhouse' data-format='RmlsbS97e0dyaW5kaG91c2V9fQ=='>Grindhouse</a></em> featured a <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/FakeTrailer' title='/pmwiki/pmwiki.php/Main/FakeTrailer' data-format='RmFrZVRyYWlsZXI='>Fake Trailer</a> for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Machete' title='/pmwiki/pmwiki.php/Film/Machete' data-format='RmlsbS97e01hY2hldGV9fQ=='>Machete</a></em> which later became a film of its own. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a> also states that the Machete from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SpyKids' title='/pmwiki/pmwiki.php/Film/SpyKids' data-format='RmlsbS9TcHlLaWRz'>Spy Kids</a></em> is the same Machete, so it also counts for that film. </li><li> <em>The Graveyard</em> (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/RetroactiveRecognition' title='/pmwiki/pmwiki.php/Main/RetroactiveRecognition' data-format='W1tSZXRyb2FjdGl2ZVJlY29nbml0aW9uIG5vdGFibGVdXQ=='>notable</a> for featuring Mark Salling, pre-<em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Glee' title='/pmwiki/pmwiki.php/Series/Glee' data-format='U2VyaWVzL3t7R2xlZX19'>Glee</a></em>) exists in the same universe as the <em>Bloody Murder</em> duology. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='RnJhbmNoaXNlL1N0YXJUcmVr'>Star Trek</a></em> franchise has three spinoff film series to date: <ul ><li> Six films were spawned from <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>, continuing the adventures of Kirk, Spock, et al., set from two to twenty-five years after the end of the show. </li><li> Four more spun off from <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>, the <a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarTrekGenerations' title='/pmwiki/pmwiki.php/Film/StarTrekGenerations' data-format='W1tGaWxtL1N0YXJUcmVrR2VuZXJhdGlvbnMgZmlyc3Qgb2Ygd2hpY2hdXQ=='>first of which</a> also connected to the aforementioned <span class='esc-seq' title='non-wikiword'>TOS</span> movies. </li><li> The reboot films ("Abramsverse"/"Kelvin timeline") act as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOff' title='/pmwiki/pmwiki.php/Main/SpinOff' data-format='U3Bpbk9mZg=='>Spin-Off</a> parallel in an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlternateTimeline' title='/pmwiki/pmwiki.php/Main/AlternateTimeline' data-format='QWx0ZXJuYXRlVGltZWxpbmU='>Alternate Timeline</a> to <span class='esc-seq' title='non-wikiword'>TOS</span>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Literature&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> P. D. James' <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Literature/AdamDalgleish' title='/pmwiki/pmwiki.php/Literature/AdamDalgleish' data-format='TGl0ZXJhdHVyZS9BZGFtRGFsZ2xlaXNo'>Adam Dalgleish</a></em> detective novels spun off a short line of two novels about private investigator Cordelia Gray, including a surprise <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityCameo' title='/pmwiki/pmwiki.php/Main/ContinuityCameo' data-format='Q29udGludWl0eUNhbWVv'>Continuity Cameo</a> by the original detective. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBabySittersClub' title='/pmwiki/pmwiki.php/Literature/TheBabySittersClub' data-format='TGl0ZXJhdHVyZS9UaGVCYWJ5U2l0dGVyc0NsdWI='>The Baby-Sitters Club</a></em> initiated the launch of <em>Baby-Sitters Little Sister</em> (a series all about Karen Brewer, Kristy's seven year old stepsister&#8212;which itself had a spinoff focusing on the students in her class and aptly titled <em>The kids in Mrs. Coleman's Class</em>), <em>BSC Mysteries</em> which were the sitters in mystery settings, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/CaliforniaDiaries' title='/pmwiki/pmwiki.php/Literature/CaliforniaDiaries' data-format='TGl0ZXJhdHVyZS9DYWxpZm9ybmlhRGlhcmllcw=='>California Diaries</a></em> which focused on Dawn after she moved back to California, the <em>Friends Forever</em> series that continued after the end of the main series and only focused on the first four members and was more about interpersonal problems leading up to the series finale, a <a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheBabysittersClub' title='/pmwiki/pmwiki.php/Film/TheBabysittersClub' data-format='W1tGaWxtL1RoZUJhYnlzaXR0ZXJzQ2x1YiAxOTk1IGZlYXR1cmUgZmlsbV1d'>1995 feature film</a>, two TV series in <a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBabySittersClub1990' title='/pmwiki/pmwiki.php/Series/TheBabySittersClub1990' data-format='W1tTZXJpZXMvVGhlQmFieVNpdHRlcnNDbHViMTk5MCAxOTkwXV0='>1990</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBabySittersClub2020' title='/pmwiki/pmwiki.php/Series/TheBabySittersClub2020' data-format='W1tTZXJpZXMvVGhlQmFieVNpdHRlcnNDbHViMjAyMCAyMDIwXV0='>2020</a>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheBabySittersClub' title='/pmwiki/pmwiki.php/ComicBook/TheBabySittersClub' data-format='Q29taWNCb29rL1RoZUJhYnlTaXR0ZXJzQ2x1Yg=='>The Baby-Sitters Club</a></em> graphic novels of the original series&#8212;and <em>that</em> spun off graphic novels of the original <em>Baby-Sitters Little Sister</em> series. Whew. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/CatOnTheRun' title='/pmwiki/pmwiki.php/Literature/CatOnTheRun' data-format='TGl0ZXJhdHVyZS9DYXRPblRoZVJ1bg=='>Cat on the Run</a></em> series of books is a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBadGuys' title='/pmwiki/pmwiki.php/Literature/TheBadGuys' data-format='TGl0ZXJhdHVyZS9UaGVCYWRHdXlz'>The Bad Guys</a></em> series. Set in the same universe, characters such as Tiffany Fluffit and Chuck Melon of Channel 6 Action News are made recurring characters of <em>Cat on the Run</em>, while The Bad Guys themselves have small picture cameos. The series appears to be taking place earlier in the life of <em>The Bad Guys</em>, as The Bad Guys are still put in a negative light, while Tiffany Fluffit is in her far less developed characterization. </li><li> Plantagenet Palliser, a minor character in <em>The Small House at Allingham</em>, one of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheChroniclesOfBarsetshire' title='/pmwiki/pmwiki.php/Literature/TheChroniclesOfBarsetshire' data-format='TGl0ZXJhdHVyZS9UaGVDaHJvbmljbGVzT2ZCYXJzZXRzaGlyZQ=='>The Chronicles of Barsetshire</a></em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AnthonyTrollope' title='/pmwiki/pmwiki.php/Creator/AnthonyTrollope' data-format='Q3JlYXRvci9BbnRob255VHJvbGxvcGU='>Anthony Trollope</a>, became a main character of Trollope's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Palliser' title='/pmwiki/pmwiki.php/Literature/Palliser' data-format='TGl0ZXJhdHVyZS97e1BhbGxpc2VyfX0='>Palliser</a></em> series, written in the 1860s and 1870s. <!-- * Literature/DenOfShadows → Literature/KieshaRa--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DearAmerica' title='/pmwiki/pmwiki.php/Literature/DearAmerica' data-format='TGl0ZXJhdHVyZS9EZWFyQW1lcmljYQ=='>Dear America</a></em> spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DearCanada' title='/pmwiki/pmwiki.php/Literature/DearCanada' data-format='TGl0ZXJhdHVyZS9EZWFyQ2FuYWRh'>Dear Canada</a></em> (historical stories set in Canada), <em>My America</em> (trilogies focused on one character each and with younger characters), <em>My Name Is America</em> (the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpearCounterpart' title='/pmwiki/pmwiki.php/Main/SpearCounterpart' data-format='U3BlYXJDb3VudGVycGFydA=='>Spear Counterpart</a> that focused on male characters), and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheRoyalDiaries' title='/pmwiki/pmwiki.php/Literature/TheRoyalDiaries' data-format='TGl0ZXJhdHVyZS9UaGVSb3lhbERpYXJpZXM='>The Royal Diaries</a></em> (diaries from the viewpoint of historical royal women when they were young). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DiaryOfAnAwesomeFriendlyKid' title='/pmwiki/pmwiki.php/Literature/DiaryOfAnAwesomeFriendlyKid' data-format='TGl0ZXJhdHVyZS9EaWFyeU9mQW5Bd2Vzb21lRnJpZW5kbHlLaWQ='>Diary of an Awesome Friendly Kid</a></em> is a spin-off of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DiaryOfAWimpyKid' title='/pmwiki/pmwiki.php/Literature/DiaryOfAWimpyKid' data-format='TGl0ZXJhdHVyZS9EaWFyeU9mQVdpbXB5S2lk'>Diary of a Wimpy Kid</a></em> series, told in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PerspectiveFlip' title='/pmwiki/pmwiki.php/Main/PerspectiveFlip' data-format='UGVyc3BlY3RpdmVGbGlw'>Perspective Flip</a> from Greg Heffley's best friend Rowley Jefferson. </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> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/DoctorWhoExpandedUniverse' title='/pmwiki/pmwiki.php/Franchise/DoctorWhoExpandedUniverse' data-format='W1tGcmFuY2hpc2UvRG9jdG9yV2hvRXhwYW5kZWRVbml2ZXJzZSBFeHBhbmRlZCBVbml2ZXJzZV1d'>Expanded Universe</a>: <ul ><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DoctorWhoNewAdventures' title='/pmwiki/pmwiki.php/Literature/DoctorWhoNewAdventures' data-format='TGl0ZXJhdHVyZS9Eb2N0b3JXaG9OZXdBZHZlbnR1cmVz'>Doctor Who New Adventures</a></em> were published by Virgin Publishing under license from the BBC. When the BBC decided to take the license back to start publishing their own <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EighthDoctorAdventures' title='/pmwiki/pmwiki.php/Literature/EighthDoctorAdventures' data-format='TGl0ZXJhdHVyZS9FaWdodGhEb2N0b3JBZHZlbnR1cmVz'>Eighth Doctor Adventures</a>, Virgin spun off the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BerniceSummerfield' title='/pmwiki/pmwiki.php/Literature/BerniceSummerfield' data-format='TGl0ZXJhdHVyZS9CZXJuaWNlU3VtbWVyZmllbGQ='>Bernice Summerfield</a></em> novels, which continued to tell similar sci-fi adventure stories using characters and worldbuilding elements that had been created for the New Adventures (and which Virgin consequently retained rights to) or which could be licensed separately from the writers that had created them. </li><li> One of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EighthDoctorAdventures' title='/pmwiki/pmwiki.php/Literature/EighthDoctorAdventures' data-format='TGl0ZXJhdHVyZS9FaWdodGhEb2N0b3JBZHZlbnR1cmVz'>Eighth Doctor Adventures</a></em> novels by Lawrence Miles introduced Faction Paradox, an association of anarchic time-traveling villains. After leaving the series, Miles instituted his own series of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FactionParadox' title='/pmwiki/pmwiki.php/Literature/FactionParadox' data-format='TGl0ZXJhdHVyZS9GYWN0aW9uUGFyYWRveA=='>Faction Paradox</a></em> novels. </li><li> Telos published a series of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em> novellas; one of them, <em>Cabinet of Light</em>, introduced a set of characters who were spun off into the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TimeHunter' title='/pmwiki/pmwiki.php/Literature/TimeHunter' data-format='TGl0ZXJhdHVyZS9UaW1lSHVudGVy'>Time Hunter</a></em> series. </li><li> Candy Jar Books publish a series of <em>Lethbridge-Stuart</em> novels, mostly but not entirely set before he was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBrigadier' title='/pmwiki/pmwiki.php/Main/TheBrigadier' data-format='VGhlQnJpZ2FkaWVy'>The Brigadier</a>. They have also introduced a spin-off of <em>this</em> aimed at a younger audience called <em>The Lucy Wilson Mysteries</em>, starring the Brig's teenaged granddaughter in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePresentDay' title='/pmwiki/pmwiki.php/Main/ThePresentDay' data-format='VGhlUHJlc2VudERheQ=='>The Present Day</a>. </li></ul></li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DoraWilkSeries' title='/pmwiki/pmwiki.php/Literature/DoraWilkSeries' data-format='TGl0ZXJhdHVyZS9Eb3JhV2lsa1Nlcmllcw=='>Dora Wilk Series</a></em> has <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ShamanBlues' title='/pmwiki/pmwiki.php/Literature/ShamanBlues' data-format='TGl0ZXJhdHVyZS9TaGFtYW5CbHVlcw=='>Shaman Blues</a></em>, with the main character being someone who was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PutOnABus' title='/pmwiki/pmwiki.php/Main/PutOnABus' data-format='UHV0T25BQnVz'>Put on a Bus</a> for large parts of the parent series. <!-- * ''Gotrek and Felix'' → ''Thanquol and Boneripper''--> <!-- * ''Gotrek and Felix'' → ''Ulrika the Vampire''--> <!-- * ''Literature/TheHardyBoys Mystery Stories'' --&gt; ''The Hardy Boys Casefiles'' (for older readers)--> <!-- ** ''The Hardy Boys Mystery Stories'' --&gt; ''The Hardy Boys: Undercover Brothers'' --&gt; ''The Hardy Boys Adventures'' (almost new adventures of a character, except that each of the series is clearly a CanonDiscontinuity from the previous ones)--> <!-- ** ''The Hardy Boys Mystery Stories'' --&gt; ''The Hardy Boys are: the Clues Brothers'' --&gt; ''The Hardy Boys Secret Files'' (for younger readers)--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHobbit' title='/pmwiki/pmwiki.php/Literature/TheHobbit' data-format='TGl0ZXJhdHVyZS9UaGVIb2JiaXQ='>The Hobbit</a></em> <em>would</em> be this were it not for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DevelopmentHell' title='/pmwiki/pmwiki.php/Main/DevelopmentHell' data-format='RGV2ZWxvcG1lbnRIZWxs'>Development Hell</a> of Tolkien's earlier stories. By the 1910s and 1920s, Tolkien had already completed early versions of what would later be <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSilmarillion' title='/pmwiki/pmwiki.php/Literature/TheSilmarillion' data-format='TGl0ZXJhdHVyZS9UaGVTaWxtYXJpbGxpb24='>The Silmarillion</a></em>, but had trouble with finding a publisher and was never quite satisfied with the result anyway. He wrote <em>The Hobbit</em> as a separate project before deciding to set it in the same continuity as his earlier stories, set thousands of years into the future. The book mentions <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheFallOfGondolin' title='/pmwiki/pmwiki.php/Literature/TheFallOfGondolin' data-format='W1tMaXRlcmF0dXJlL1RoZUZhbGxPZkdvbmRvbGluIEdvbmRvbGluXV0='>Gondolin</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BerenAndLuthien' title='/pmwiki/pmwiki.php/Literature/BerenAndLuthien' data-format='W1tMaXRlcmF0dXJlL0JlcmVuQW5kTHV0aGllbiBhIE5lY3JvbWFuY2VyIGluIGhpcyBkYXJrIHRvd2VyXV0='>a Necromancer in his dark tower</a><span class="notelabel" onclick="togglenote('note3gock');"><sup>note&nbsp;</sup></span><span id="note3gock" class="inlinefolder" isnote="true" onclick="togglenote('note3gock');" style="cursor:pointer;font-size:smaller;display:none;">At the time, this was Thû, the Lord of Werewolves, though by <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' title='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' data-format='W1tMaXRlcmF0dXJlL1RoZUxvcmRPZlRoZVJpbmdzIHRoZSBuZXh0IGluc3RhbGxlbWVudF1d'>the next installement</a>, he became Sauron, the Lord of the Rings.</span>, but otherwise has an original setting with no shared characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheIliad' title='/pmwiki/pmwiki.php/Literature/TheIliad' data-format='TGl0ZXJhdHVyZS9UaGVJbGlhZA=='>The Iliad</a></em> and the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheOdyssey' title='/pmwiki/pmwiki.php/Literature/TheOdyssey' data-format='TGl0ZXJhdHVyZS9UaGVPZHlzc2V5'>The Odyssey</a></em> both cover the same story but through different cultural lenses. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheAeneid' title='/pmwiki/pmwiki.php/Literature/TheAeneid' data-format='TGl0ZXJhdHVyZS9UaGVBZW5laWQ='>The Aeneid</a></em> also follows the adventures of a minor character from <em>The Iliad</em>, but it was written by a different writer hundreds of years later. </li><li> The minor character of Auri in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheKingkillerChronicle' title='/pmwiki/pmwiki.php/Literature/TheKingkillerChronicle' data-format='TGl0ZXJhdHVyZS9UaGVLaW5na2lsbGVyQ2hyb25pY2xl'>The Kingkiller Chronicle</a></em> received a spin-off novella all about her, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSlowRegardOfSilentThings' title='/pmwiki/pmwiki.php/Literature/TheSlowRegardOfSilentThings' data-format='TGl0ZXJhdHVyZS9UaGVTbG93UmVnYXJkT2ZTaWxlbnRUaGluZ3M='>The Slow Regard of Silent Things</a></em>. </li><li> The main <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLostFleet' title='/pmwiki/pmwiki.php/Literature/TheLostFleet' data-format='TGl0ZXJhdHVyZS9UaGVMb3N0RmxlZXQ='>The Lost Fleet</a></em> series ends with John Geary bringing said fleet back and then proceeding to force an end to the 100-year-war between the Alliance and the Syndicate Worlds. The immediate spin-off series <em>The Lost Fleet: Beyond the Frontier</em> features many of the same characters and has Geary being sent to a distant part of space in order to <span class="spoiler" title="you can set spoilers visible by default on your profile" >look for aliens</span>. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLostStars' title='/pmwiki/pmwiki.php/Literature/TheLostStars' data-format='TGl0ZXJhdHVyZS9UaGVMb3N0U3RhcnM='>The Lost Stars</a></em> series features new focus characters and deals with the collapse of the Syndicate Worlds after the war. The author is currently working on a prequel trilogy called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheGenesisFleet' title='/pmwiki/pmwiki.php/Literature/TheGenesisFleet' data-format='TGl0ZXJhdHVyZS9UaGVHZW5lc2lzRmxlZXQ='>The Genesis Fleet</a></em>, detailing the formation of the Alliance centuries prior. There is also a spin-off comic book series <em>Lost Fleet Corsair</em>, focusing on the adventures of Geary's grandnephew Michael. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MarcusPocus' title='/pmwiki/pmwiki.php/Literature/MarcusPocus' data-format='TGl0ZXJhdHVyZS9NYXJjdXNQb2N1cw=='>Marcus Pocus</a></em> is a spin-off to the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AnnaKadabra' title='/pmwiki/pmwiki.php/Literature/AnnaKadabra' data-format='TGl0ZXJhdHVyZS9Bbm5hS2FkYWJyYQ=='>Anna Kadabra</a></em> series, centering on the titular best friend of Anna. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MercyThompson' title='/pmwiki/pmwiki.php/Literature/MercyThompson' data-format='TGl0ZXJhdHVyZS9NZXJjeVRob21wc29u'>Mercy Thompson</a></em> series has the spin-off series <em>Alpha and Omega</em> which follows a character introduced in the first book and his wife. A few short stories focusing on other side character are also set in the same universe. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheMortalInstruments' title='/pmwiki/pmwiki.php/Literature/TheMortalInstruments' data-format='TGl0ZXJhdHVyZS9UaGVNb3J0YWxJbnN0cnVtZW50cw=='>The Mortal Instruments</a></em> received the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Prequel' title='/pmwiki/pmwiki.php/Main/Prequel' data-format='e3twcmVxdWVsfX0='>prequel</a> series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheInfernalDevices' title='/pmwiki/pmwiki.php/Literature/TheInfernalDevices' data-format='TGl0ZXJhdHVyZS9UaGVJbmZlcm5hbERldmljZXM='>The Infernal Devices</a></em>. It is an interesting example; the two series share a couple characters, (namely, Magnus and Camille), but they're not central to either series, and all the other characters are new. Plus, <em>The Infernal Devices</em> takes place 200 years before <em>The Mortal Instruments</em>. <!-- * ''Literature/NancyDrew Mystery Stories'' --&gt; ''The Nancy Drew Files'' (for older readers)--> <!-- ** ''Nancy Drew Mystery Stories'' --&gt; ''Nancy Drew: Girl Detective'' --&gt; ''The Nancy Drew Diaries'' (May or may not all take place in the same universe; hard to tell. If so, it would be new adventures of a character.)--> <!-- ** ''Nancy Drew Mystery Stories'' --&gt; '' The Nancy Drew Notebooks'' --&gt; ''Nancy Drew and the Clue Crew'' (for younger readers)--> <!-- * ''Literature/{{Private}}'' → ''Privilege''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SuperPowereds' title='/pmwiki/pmwiki.php/Literature/SuperPowereds' data-format='TGl0ZXJhdHVyZS9TdXBlclBvd2VyZWRz'>Super Powereds</a></em> has <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Corpies' title='/pmwiki/pmwiki.php/Literature/Corpies' data-format='TGl0ZXJhdHVyZS97e0NvcnBpZXN9fQ=='>Corpies</a></em>, focused on the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RetiredBadass' title='/pmwiki/pmwiki.php/Main/RetiredBadass' data-format='UmV0aXJlZEJhZGFzcw=='>Retired Badass</a> Titan, who decides to return to the Hero life after a 10-year absence following a sex scandal. He makes several appearances in the main series after the spin-off. Two other <em>Corpies</em> characters also make appearances in the main series, and one's full name is mentioned <em>only</em> in the main series. The author is also working on another spin-off called <em>Blades &amp; Barriers</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SweetValleyHigh' title='/pmwiki/pmwiki.php/Literature/SweetValleyHigh' data-format='TGl0ZXJhdHVyZS9Td2VldFZhbGxleUhpZ2g='>Sweet Valley High</a></em> gave us... dear lord. There were <em>eight different spin-offs</em> of the original series, all but one of them also being about the twins that served as main characters at various points in their lives. The seven that were about the twins were <em>Sweet Valley Twins, Sweet Valley University, Sweet Valley Kids, Sweet Valley Junior High, Sweet Valley Senior Year, Elizabeth,</em> and <em>The Sweet Life</em>. The last spin-off, <em>The Unicorn Club</em>, takes place when the twins are in middle school but focuses on the club instead. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArrivalsFromTheDark' title='/pmwiki/pmwiki.php/Literature/ArrivalsFromTheDark' data-format='TGl0ZXJhdHVyZS9BcnJpdmFsc0Zyb21UaGVEYXJr'>Arrivals from the Dark</a></em> series has a spin-off series called <em>Trevelyan's Mission</em>, taking place in the same universe but centuries later and focusing on a single character (while the <em>Arrivals</em> series largely focuses on different characters from the same family across generations). Unlike the main series, which could be considered military science fiction, the spin-off takes place in a time of peace and focuses on cultural exploration. Notably, both six-book series were largely written in parallel (and both are likely over given <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DiedDuringProduction' title='/pmwiki/pmwiki.php/Main/DiedDuringProduction' data-format='RGllZER1cmluZ1Byb2R1Y3Rpb24='>Died During Production</a>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WoodwalkersAndFriends' title='/pmwiki/pmwiki.php/Literature/WoodwalkersAndFriends' data-format='TGl0ZXJhdHVyZS9Xb29kd2Fsa2Vyc0FuZEZyaWVuZHM='>Woodwalkers And Friends</a></em> is one to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Woodwalkers' title='/pmwiki/pmwiki.php/Literature/Woodwalkers' data-format='TGl0ZXJhdHVyZS97e1dvb2R3YWxrZXJzfX0='>Woodwalkers</a></em>. The novels of the series are set during or between the events of the original books- for example, <em>Katzige Gefährten</em> is set between the last book of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Woodwalkers' title='/pmwiki/pmwiki.php/Literature/Woodwalkers' data-format='TGl0ZXJhdHVyZS97e1dvb2R3YWxrZXJzfX0='>Woodwalkers</a></em> and the first book of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Seawalkers' title='/pmwiki/pmwiki.php/Literature/Seawalkers' data-format='TGl0ZXJhdHVyZS97e1NlYXdhbGtlcnN9fQ=='>Seawalkers</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Live-Action TV&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <h3><strong>In General:</strong></h3> <ul ><li> Game show instances: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FamilyFeud' title='/pmwiki/pmwiki.php/Series/FamilyFeud' data-format='U2VyaWVzL0ZhbWlseUZldWQ='>Family Feud</a></em> is widely believed to be a spinoff of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MatchGame' title='/pmwiki/pmwiki.php/Series/MatchGame' data-format='U2VyaWVzL01hdGNoR2FtZQ=='>Match Game</a></em> in that its questions were formatted similar to the original 60s MG and used national surveys to cull answers (MG used previous studio audiences). </li><li> 1983's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Go' title='/pmwiki/pmwiki.php/Series/Go' data-format='U2VyaWVzL3t7R299fQ=='>Go</a></em> is thought to be a spinoff of 1980's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ChainReaction' title='/pmwiki/pmwiki.php/Series/ChainReaction' data-format='U2VyaWVzL0NoYWluUmVhY3Rpb24='>Chain Reaction</a></em> since its front game was the <em>Chain Reaction</em> bonus round. <!-- * The various ''Series/{{CSI}}'' and ''Franchise/LawAndOrder'' spinoffs.--> </li></ul></li></ul><h3><strong>Series:</strong></h3> <!-- * ''Series/ThirtyRock'' → ''Frank vs Lutz'' and ''Jack Donaghy: Executive Superhero''.--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AgentCarter' title='/pmwiki/pmwiki.php/Series/AgentCarter' data-format='U2VyaWVzL0FnZW50Q2FydGVy'>Agent Carter</a></em> spun off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CaptainAmericaTheFirstAvenger' title='/pmwiki/pmwiki.php/Film/CaptainAmericaTheFirstAvenger' data-format='RmlsbS9DYXB0YWluQW1lcmljYVRoZUZpcnN0QXZlbmdlcg=='>Captain America: The First Avenger</a></em>. Peggy Carter was Cap's main love interest in the 40's, and her show is about her moving on with her life and having adventures of her own after he was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanPopsicle' title='/pmwiki/pmwiki.php/Main/HumanPopsicle' data-format='W1tIdW1hblBvcHNpY2xlIGZyb3plbiBpbiB0aGUgQXJjdGljXV0='>frozen in the Arctic</a> and presumed dead. Had the show not been cancelled after two seasons, it would have showed her founding SHIELD with <a class='twikilink' href='/pmwiki/pmwiki.php/Film/IronManFilms' title='/pmwiki/pmwiki.php/Film/IronManFilms' data-format='RmlsbS97e0lyb24gTWFufEZpbG1zfX0='>Iron Man</a>'s father Howard Stark. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The show was later given a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FullyAbsorbedFinale' title='/pmwiki/pmwiki.php/Main/FullyAbsorbedFinale' data-format='RnVsbHlBYnNvcmJlZEZpbmFsZQ=='>Fully Absorbed Finale</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AvengersEndgame' title='/pmwiki/pmwiki.php/Film/AvengersEndgame' data-format='RmlsbS9BdmVuZ2Vyc0VuZGdhbWU='>Avengers: Endgame</a></em> when (after seeing Edwin Jarvis and Peggy in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSeventies' title='/pmwiki/pmwiki.php/Main/TheSeventies' data-format='VGhlU2V2ZW50aWVz'>The '70s</a>), Steve Rogers elects to stay in the past and live out his life with her</span>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/NormanLear' title='/pmwiki/pmwiki.php/Creator/NormanLear' data-format='Q3JlYXRvci9Ob3JtYW5MZWFy'>Norman Lear</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AllInTheFamily' title='/pmwiki/pmwiki.php/Series/AllInTheFamily' data-format='U2VyaWVzL0FsbEluVGhlRmFtaWx5'>All in the Family</a></em> spun off multiple shows, some of which had their own spinoffs: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Maude' title='/pmwiki/pmwiki.php/Series/Maude' data-format='U2VyaWVzL3t7TWF1ZGV9fQ=='>Maude</a></em> focused on the antics of Edith's limousine liberal cousin. <ul ><li> Maude had a housekeeper named Florida, who became the lead of the equally successful <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GoodTimes' title='/pmwiki/pmwiki.php/Series/GoodTimes' data-format='U2VyaWVzL0dvb2RUaW1lcw=='>Good Times</a></em>. However, its spin-off status is hazy since much of the backstory we're given would have made it impossible for Florida to have been Maude's maid due to living in Chicago. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheJeffersons' title='/pmwiki/pmwiki.php/Series/TheJeffersons' data-format='U2VyaWVzL1RoZUplZmZlcnNvbnM='>The Jeffersons</a></em> was about Archie's neighbors, George and Louse Jefferson (natch), who unexpectedly became wealthy and moved away to their own show. <ul ><li> Like Florida, their housekeeper Florence later received her own spin-off, <em>Checking In</em>, which was <em>not</em> equally successful &#8212; cancelled after four episodes. Florence returned to her former employers. </li></ul></li><li> As its original stars moved on to other projects, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AllInTheFamily' title='/pmwiki/pmwiki.php/Series/AllInTheFamily' data-format='U2VyaWVzL0FsbEluVGhlRmFtaWx5'>All in the Family</a></em> spun off its sequel, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ArchieBunkersPlace' title='/pmwiki/pmwiki.php/Series/ArchieBunkersPlace' data-format='U2VyaWVzL0FyY2hpZUJ1bmtlcnNQbGFjZQ=='>Archie Bunker's Place</a></em>. <ul ><li> The sequel itself had a one season spin-off, <em>Gloria,</em> which featured Archie's daughter Gloria, having divorced Mike, starting a new life in New York. </li></ul></li><li> The last gasp of the franchise came in 1994, with yet another (short-lived) spinoff: <em>704 Hauser</em>, about the people who were then living in what had been Archie's house. The adult Joey Stivic (son of Michael and Gloria) drops by for a visit in the first episode. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AmericasFunniestHomeVideos' title='/pmwiki/pmwiki.php/Series/AmericasFunniestHomeVideos' data-format='U2VyaWVzL0FtZXJpY2FzRnVubmllc3RIb21lVmlkZW9z'>America's Funniest Home Videos</a></em> spun off into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AmericasFunniestPeople' title='/pmwiki/pmwiki.php/Series/AmericasFunniestPeople' data-format='U2VyaWVzL0FtZXJpY2FzRnVubmllc3RQZW9wbGU='>America's Funniest People</a></em>. Unlike the former, which specalized in candid and unscripted funny moments getting caught on-camera and sent in by home viewers, the latter relied on intentionally staged comedy sketches. Both shows were hosted by <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FullHouse' title='/pmwiki/pmwiki.php/Series/FullHouse' data-format='U2VyaWVzL0Z1bGxIb3VzZQ=='>Full House</a></em> alumni at their inception (<a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BobSaget' title='/pmwiki/pmwiki.php/Creator/BobSaget' data-format='Q3JlYXRvci9Cb2JTYWdldA=='>Bob Saget</a> on the former; <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DaveCoulier' title='/pmwiki/pmwiki.php/Creator/DaveCoulier' data-format='Q3JlYXRvci9EYXZlQ291bGllcg=='>Dave Coulier</a> on the latter) and both even had <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ErnieAnderson' title='/pmwiki/pmwiki.php/Creator/ErnieAnderson' data-format='Q3JlYXRvci9Fcm5pZUFuZGVyc29u'>Ernie Anderson</a> as the announcer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Arrowverse' title='/pmwiki/pmwiki.php/Franchise/Arrowverse' data-format='RnJhbmNoaXNlL3t7QXJyb3d2ZXJzZX19'>Arrowverse</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheFlash2014' title='/pmwiki/pmwiki.php/Series/TheFlash2014' data-format='U2VyaWVzL1RoZUZsYXNoMjAxNA=='>The Flash (2014)</a></em> spun off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Arrow' title='/pmwiki/pmwiki.php/Series/Arrow' data-format='U2VyaWVzL3t7QXJyb3d9fQ=='>Arrow</a></em>. Main character Barry Allen was introduced in a two-parter from <em>Arrow</em>'s second season, gaining his super-speed powers at the end, and a later episode that season introduced supporting characters Cisco and Caitlin. Plans for a full-on <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BackdoorPilot' title='/pmwiki/pmwiki.php/Main/BackdoorPilot' data-format='QmFja2Rvb3JQaWxvdA=='>Backdoor Pilot</a> were cancelled. </li><li> Both <em>Arrow</em> and <em>The Flash</em> then spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LegendsOfTomorrow' title='/pmwiki/pmwiki.php/Series/LegendsOfTomorrow' data-format='U2VyaWVzL0xlZ2VuZHNPZlRvbW9ycm93'>Legends of Tomorrow</a></em>, laying the groundwork in their 2015 crossover "Legends of Today" / "Legends of Yesterday". </li><li> Two animated shows were spun off as well, on the streaming service CW Seed: <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Vixen' title='/pmwiki/pmwiki.php/WesternAnimation/Vixen' data-format='V2VzdGVybkFuaW1hdGlvbi97e1ZpeGVufX0='>Vixen</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/FreedomFightersTheRay' title='/pmwiki/pmwiki.php/WesternAnimation/FreedomFightersTheRay' data-format='V2VzdGVybkFuaW1hdGlvbi9GcmVlZG9tRmlnaHRlcnNUaGVSYXk='>Freedom Fighters: The Ray</a></em>. </li><li> Other shows began separately but were added to the Arrowverse retroactively: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Supergirl2015' title='/pmwiki/pmwiki.php/Series/Supergirl2015' data-format='U2VyaWVzL3t7U3VwZXJnaXJsfDIwMTV9fQ=='>Supergirl</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Constantine2014' title='/pmwiki/pmwiki.php/Series/Constantine2014' data-format='U2VyaWVzL3t7Q29uc3RhbnRpbmV8MjAxNH19'>Constantine</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BlackLightning2018' title='/pmwiki/pmwiki.php/Series/BlackLightning2018' data-format='W1tTZXJpZXMvQmxhY2tMaWdodG5pbmcyMDE4IEJsYWNrIExpZ2h0bmluZ11d'>Black Lightning</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Batwoman2019' title='/pmwiki/pmwiki.php/Series/Batwoman2019' data-format='U2VyaWVzL3t7QmF0d29tYW58MjAxOX19'>Batwoman</a></em> was spun off from the 2018 "<a class='twikilink' href='/pmwiki/pmwiki.php/Series/Elseworlds2018' title='/pmwiki/pmwiki.php/Series/Elseworlds2018' data-format='U2VyaWVzL3t7RWxzZXdvcmxkc3wyMDE4fX0='>Elseworlds</a>" crossover. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SupermanAndLois' title='/pmwiki/pmwiki.php/Series/SupermanAndLois' data-format='U2VyaWVzL1N1cGVybWFuQW5kTG9pcw=='>Superman & Lois</a></em> was originally developed as a spinoff from <em>Supergirl</em>, with many actors reprising their roles, but was later shown to take place in a different universe. </li></ul></li><li> You probably wouldn't expect a <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/KenBurns' title='/pmwiki/pmwiki.php/Creator/KenBurns' data-format='Q3JlYXRvci9LZW5CdXJucw=='>Ken Burns</a> documentary series, let alone that within his Great American Trilogy, to have one, but <em>Baseball</em> does&#8212;specifically, a 2016 two-part miniseries following the life of Brooklyn Dodgers player Jackie Robinson. </li><li> After Steve Wilkos left <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheJerrySpringerShow' title='/pmwiki/pmwiki.php/Series/TheJerrySpringerShow' data-format='U2VyaWVzL1RoZUplcnJ5U3ByaW5nZXJTaG93'>The Jerry Springer Show</a></em> after being the director of security there, he was given his own series, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheSteveWilkosShow' title='/pmwiki/pmwiki.php/Series/TheSteveWilkosShow' data-format='U2VyaWVzL1RoZVN0ZXZlV2lsa29zU2hvdw=='>The Steve Wilkos Show</a></em>, which deals with <em>much</em> more serious topics. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Baptiste' title='/pmwiki/pmwiki.php/Series/Baptiste' data-format='U2VyaWVzL3t7QmFwdGlzdGV9fQ=='>Baptiste</a></em> is a spinoff from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMissing2014' title='/pmwiki/pmwiki.php/Series/TheMissing2014' data-format='U2VyaWVzL1RoZU1pc3NpbmcyMDE0'>The Missing (2014)</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BattlestarGalactica2003' title='/pmwiki/pmwiki.php/Series/BattlestarGalactica2003' data-format='U2VyaWVzL0JhdHRsZXN0YXJHYWxhY3RpY2EyMDAz'>Battlestar Galactica (2003)</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Caprica' title='/pmwiki/pmwiki.php/Series/Caprica' data-format='U2VyaWVzL3t7Q2FwcmljYX19'>Caprica</a></em>, a prequel spinoff which follows the creation of Cylons ~50 years before the setting of the parent show. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BeingHumanUK' title='/pmwiki/pmwiki.php/Series/BeingHumanUK' data-format='U2VyaWVzL3t7QmVpbmcgSHVtYW58VUt9fQ=='>Being Human</a></em> had an online spinoff called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BecomingHuman' title='/pmwiki/pmwiki.php/Series/BecomingHuman' data-format='U2VyaWVzL0JlY29taW5nSHVtYW4='>Becoming Human</a></em> which focused on Adam, a character that had featured in an episode of the parent show, and otherwise entirely new characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBeverlyHillbillies' title='/pmwiki/pmwiki.php/Series/TheBeverlyHillbillies' data-format='U2VyaWVzL1RoZUJldmVybHlIaWxsYmlsbGllcw=='>The Beverly Hillbillies</a></em>, the other rural big sitcom franchise of the 1960s, spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PetticoatJunction' title='/pmwiki/pmwiki.php/Series/PetticoatJunction' data-format='U2VyaWVzL1BldHRpY29hdEp1bmN0aW9u'>Petticoat Junction</a></em>, which in turn spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GreenAcres' title='/pmwiki/pmwiki.php/Series/GreenAcres' data-format='U2VyaWVzL0dyZWVuQWNyZXM='>Green Acres</a>.</em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BeverlyHills90210' title='/pmwiki/pmwiki.php/Series/BeverlyHills90210' data-format='U2VyaWVzL0JldmVybHlIaWxsczkwMjEw'>Beverly Hills, 90210</a></em> had a spin-off, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MelrosePlace' title='/pmwiki/pmwiki.php/Series/MelrosePlace' data-format='U2VyaWVzL01lbHJvc2VQbGFjZQ=='>Melrose Place</a></em>, within two years of its introduction. <em>Melrose Place</em> itself spun off a not-as-successful spin-off <em>Models Inc.</em>, which lasted only a season. </li><li> <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> had the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Aftershow' title='/pmwiki/pmwiki.php/Main/Aftershow' data-format='e3tBZnRlcnNob3d9fQ=='>After Show</a> prequel <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/YoungSheldon' title='/pmwiki/pmwiki.php/Series/YoungSheldon' data-format='U2VyaWVzL1lvdW5nU2hlbGRvbg=='>Young Sheldon</a></em>, which itself spun off <em>Georgie &amp; Mandy's First Marriage</em>. <!-- * ''Series/TheBionicWoman'' → ''Series/BionicWoman'' (2007)--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Bones' title='/pmwiki/pmwiki.php/Series/Bones' data-format='U2VyaWVzL3t7Qm9uZXN9fQ=='>Bones</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheFinder' title='/pmwiki/pmwiki.php/Series/TheFinder' data-format='U2VyaWVzL1RoZUZpbmRlcg=='>The Finder</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBoys2019' title='/pmwiki/pmwiki.php/Series/TheBoys2019' data-format='U2VyaWVzL1RoZUJveXMyMDE5'>The Boys (2019)</a></em> spun off into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GenV' title='/pmwiki/pmwiki.php/Series/GenV' data-format='U2VyaWVzL0dlblY='>Gen V</a></em>, focusing on an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperheroSchool' title='/pmwiki/pmwiki.php/Main/SuperheroSchool' data-format='W1tTdXBlcmhlcm9TY2hvb2wgdW5pdmVyc2l0eSB0aGF0IHRyYWlucyB5b3VuZyBzdXBlc11d'>university that trains young supes</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BreakingBad' title='/pmwiki/pmwiki.php/Series/BreakingBad' data-format='U2VyaWVzL0JyZWFraW5nQmFk'>Breaking Bad</a></em> has <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BetterCallSaul' title='/pmwiki/pmwiki.php/Series/BetterCallSaul' data-format='U2VyaWVzL0JldHRlckNhbGxTYXVs'>Better Call Saul</a></em>, which the protagonist is Saul Goodman, Walter White's lawyer and "advisor". The series focus on Saul's life before he was a lawyer under his real name (Jimmy <span class='esc-seq' title='non-wikiword'>McGill</span>) and also shows what happened to him after the events of <em>Breaking Bad</em>, serving as both a prequel and a sequel to the main series as well. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBrittasEmpire' title='/pmwiki/pmwiki.php/Series/TheBrittasEmpire' data-format='U2VyaWVzL1RoZUJyaXR0YXNFbXBpcmU='>The Brittas Empire</a></em> had a very short one after it's end called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GetFitWithBrittas' title='/pmwiki/pmwiki.php/Series/GetFitWithBrittas' data-format='U2VyaWVzL0dldEZpdFdpdGhCcml0dGFz'>Get Fit with Brittas</a></em>, which was an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EdutainmentShow' title='/pmwiki/pmwiki.php/Main/EdutainmentShow' data-format='RWR1dGFpbm1lbnRTaG93'>Edutainment Show</a> where Brittas taught the audience about the importance of healthy living. The other cast members of the show do show up, but not all of them and only in one shot roles. </li><li> Referenced in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrandFinale' title='/pmwiki/pmwiki.php/Main/GrandFinale' data-format='R3JhbmRGaW5hbGU='>Grand Finale</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BrooklynNineNine' title='/pmwiki/pmwiki.php/Series/BrooklynNineNine' data-format='U2VyaWVzL0Jyb29rbHluTmluZU5pbmU='>Brooklyn Nine-Nine</a></em>, Amy tricks Jake into believing he's been in a coma for years, and in the intervening period Boyle became the sheriff of a small town in Arizona, where he is also the principal of the local high school. </li></ul><div class='indent'><strong>Jake:</strong> OK, that's weird.<br data-format="\\" /><strong>Amy:</strong> It's actually very funny, and surprisingly heartwarming. </div><ul ><li> <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> spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Angel' title='/pmwiki/pmwiki.php/Series/Angel' data-format='U2VyaWVzL3t7QW5nZWx9fQ=='>Angel</a></em>, featuring the <em>Buffy</em> main characters of Angel and Cordelia, with the guest character Wesley joining later in the series. Crossovers between the two were frequent until <em>Buffy</em> moved to a new network. </li><li> <em>Caerdydd</em> spun into <em>Gwaith Cartref</em>. Neither Emyr nor Sara mentions Lea, Peter, or any of the other characters from the earlier show – which is strange, given how it ended. <!-- * ''Series/CanadasWorstDriver'' → ''Series/CanadasWorstHandyman''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheCarolBurnettShow' title='/pmwiki/pmwiki.php/Series/TheCarolBurnettShow' data-format='U2VyaWVzL1RoZUNhcm9sQnVybmV0dFNob3c='>The Carol Burnett Show</a></em>, later in its run, featured a recurring segment entitled <em>The Family.</em> With <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/CarolBurnett' title='/pmwiki/pmwiki.php/Creator/CarolBurnett' data-format='Q3JlYXRvci9DYXJvbEJ1cm5ldHQ='>Carol Burnett</a> as Eunice, Harvey Norman as her husband Ed, Tim Conway as Ed's employee and sidekick Mickey Hart, and Vicki Lawrence as Eunice's Mama, the sketch-series was an immediate hit and is still fondly remembered by the show's fans. When the series ended, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MamasFamily' title='/pmwiki/pmwiki.php/Series/MamasFamily' data-format='U2VyaWVzL01hbWFzRmFtaWx5'>Mama's Family</a></em> was spun off. Sadly, with only Ms. Lawrence reprising her role, the spinoff never achieved the comic heights of the original. <!-- * The end game of ''Series/ChainReaction'' → ''Go!''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Cheers' title='/pmwiki/pmwiki.php/Series/Cheers' data-format='U2VyaWVzL3t7Q2hlZXJzfX0='>Cheers</a></em>: <ul ><li> <em>Cheers</em> had a prior spinoff, <em>Meet the Tortellis</em>, featuring Carla's ex-husband. The show did not last very long. </li><li> When the series ended, Frasier Crane left Boston to move back home to Seattle, becoming the main character of his own show, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Frasier' title='/pmwiki/pmwiki.php/Series/Frasier' data-format='U2VyaWVzL3t7RnJhc2llcn19'>Frasier</a></em>. Crossovers with characters from <em>Cheers</em> were frequent, with all of Sam, Diane, Lilith, Carla, Norm, Cliff, and Woody all making appearances at one point or another. </li></ul></li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/TheChicaShow' title='/pmwiki/pmwiki.php/Series/TheChicaShow' data-format='U2VyaWVzL1RoZUNoaWNhU2hvdw=='>The Chica Show</a></em> is this to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Sprout' title='/pmwiki/pmwiki.php/Creator/Sprout' data-format='Q3JlYXRvci97e1Nwcm91dH19'>Sprout</a></em>'s "The Sunny Side Up Show." <!-- * ''Series/ChildrensHospital'' → ''Series/{{NTSFSDSUV}}''--> <!-- * ''Series/TheCloser'' → ''Series/MajorCrimes''--> <!-- * ''Series/{{Community}}'' → The Comumunity College Chronicle--> <!-- * ''Series/CriminalMinds'' → ''Series/CriminalMindsSuspectBehavior''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheDailyShow' title='/pmwiki/pmwiki.php/Series/TheDailyShow' data-format='U2VyaWVzL1RoZURhaWx5U2hvdw=='>The Daily Show</a></em> gave birth to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheColbertReport' title='/pmwiki/pmwiki.php/Series/TheColbertReport' data-format='U2VyaWVzL1RoZUNvbGJlcnRSZXBvcnQ='>The Colbert Report</a></em>, which started as a fictional show in commercials promoting <em>The Daily Show</em> and became defictionalized. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Dallas' title='/pmwiki/pmwiki.php/Series/Dallas' data-format='U2VyaWVzL3t7RGFsbGFzfX0='>Dallas</a></em> gave rise to the show <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KnotsLanding' title='/pmwiki/pmwiki.php/Series/KnotsLanding' data-format='U2VyaWVzL0tub3RzTGFuZGluZw=='>Knots Landing</a></em>. Interestingly enough, <em>Knots Landing</em> was actually shopped first to CBS, but rejected. When <em>Dallas</em> took off, they inserted one of the Ewing brothers and re-shopped <em>Knots Landing</em> as a spin-off. What makes this situation unusual is that when an entire season of <em>Dallas</em> was retconned to have been <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllJustADream' title='/pmwiki/pmwiki.php/Main/AllJustADream' data-format='QWxsSnVzdEFEcmVhbQ=='>All Just a Dream</a>, <em>Knots Landing</em> did not do the same for the plot developments it had already built off the events of that season of <em>Dallas</em> – instead, it just stopped referring to its parent show altogether. <!-- * ''Series/DaVincisInquest'' → ''Da Vinci's City Hall''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DeathInParadise' title='/pmwiki/pmwiki.php/Series/DeathInParadise' data-format='U2VyaWVzL0RlYXRoSW5QYXJhZGlzZQ=='>Death in Paradise</a></em> has two, running concurrently: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BeyondParadise2023' title='/pmwiki/pmwiki.php/Series/BeyondParadise2023' data-format='U2VyaWVzL0JleW9uZFBhcmFkaXNlMjAyMw=='>Beyond Paradise (2023)</a></em>, continuing the story of previous protagonist Humphrey Goodman several years after his departure from the main show, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ReturnToParadise' title='/pmwiki/pmwiki.php/Series/ReturnToParadise' data-format='U2VyaWVzL1JldHVyblRvUGFyYWRpc2U='>Return to Paradise</a></em>, which is a shared continuity spinoff featuring an entirely new setting and cast of characters (with one cameo character from the parent show). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DepartmentS' title='/pmwiki/pmwiki.php/Series/DepartmentS' data-format='U2VyaWVzL0RlcGFydG1lbnRT'>Department S</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JasonKing' title='/pmwiki/pmwiki.php/Series/JasonKing' data-format='U2VyaWVzL0phc29uS2luZw=='>Jason King</a></em>, which gave <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PeterWyngarde' title='/pmwiki/pmwiki.php/Creator/PeterWyngarde' data-format='Q3JlYXRvci9QZXRlcld5bmdhcmRl'>Peter Wyngarde</a>'s flamboyant novelist/detective character his own adventures. </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>: Various other television series have been made, set in the <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Whoniverse' title='/pmwiki/pmwiki.php/Franchise/Whoniverse' data-format='RnJhbmNoaXNlL3t7V2hvbml2ZXJzZX19'>Whoniverse</a>. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/K9AndCompany' title='/pmwiki/pmwiki.php/Series/K9AndCompany' data-format='U2VyaWVzL0s5QW5kQ29tcGFueQ=='>K-9 and Company</a></em> (1981), teaming up a new incarnation of K9 with Sarah Jane Smith, investigative reporter and the Doctor's former companion, on Earth. Only a pilot episode was made, which aired as a Christmas special. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Torchwood' title='/pmwiki/pmwiki.php/Series/Torchwood' data-format='U2VyaWVzL3t7VG9yY2h3b29kfX0='>Torchwood</a></em> (2006-2011), a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkerAndEdgier' title='/pmwiki/pmwiki.php/Main/DarkerAndEdgier' data-format='RGFya2VyQW5kRWRnaWVy'>Darker and Edgier</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HotterAndSexier' title='/pmwiki/pmwiki.php/Main/HotterAndSexier' data-format='SG90dGVyQW5kU2V4aWVy'>Hotter and Sexier</a> show about a team of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMenInBlack' title='/pmwiki/pmwiki.php/Main/TheMenInBlack' data-format='W1tUaGVNZW5JbkJsYWNrIHNlY3JldCBhZ2VudHNdXQ=='>secret agents</a> defending Great Britain from alien threats, led by former companion Captain Jack Harkness. Ran for four series, with the third and fourth series each following serialised story arcs under the respective subtitles <em>Children of Earth</em> and <em>Miracle Day</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheSarahJaneAdventures' title='/pmwiki/pmwiki.php/Series/TheSarahJaneAdventures' data-format='U2VyaWVzL1RoZVNhcmFoSmFuZUFkdmVudHVyZXM='>The Sarah Jane Adventures</a></em> (2007-2011), a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LighterAndSofter' title='/pmwiki/pmwiki.php/Main/LighterAndSofter' data-format='TGlnaHRlckFuZFNvZnRlcg=='>Lighter and Softer</a> show made for <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/CBBC' title='/pmwiki/pmwiki.php/Creator/CBBC' data-format='Q3JlYXRvci97e0NCQkN9fQ=='>CBBC</a>, featuring Sarah Jane Smith encountering aliens and monsters alongside a group of local kids including her adopted <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtificialHuman' title='/pmwiki/pmwiki.php/Main/ArtificialHuman' data-format='QXJ0aWZpY2lhbEh1bWFu'>Artificial Human</a> son. Ran for five series altogether. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/K9' title='/pmwiki/pmwiki.php/Series/K9' data-format='U2VyaWVzL3t7Szl9fQ=='>K9</a></em> (2009-2010), a children's show set <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwentyMinutesIntoTheFuture' title='/pmwiki/pmwiki.php/Main/TwentyMinutesIntoTheFuture' data-format='VHdlbnR5TWludXRlc0ludG9UaGVGdXR1cmU='>20 Minutes into the Future</a>, featuring the first K9 alongside a group of teens defending Earth from alien menaces. Was made without the BBC's involvement as an Australian-British co-production, and so the only thing linking <em>K9</em> to the Whoniverse is the presence of the eponymous robot dog: it could not directly reference <em>Doctor Who</em> and vice versa. Ran for one series. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Class2016' title='/pmwiki/pmwiki.php/Series/Class2016' data-format='U2VyaWVzL3t7Q2xhc3N8MjAxNn19'>Class</a></em> (2016), set at Coal Hill School, blending science fiction with teen drama. Ran for one series. </li><li> In the early 2000s, there were four <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em> online animated specials featuring the Sixth, <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/DeathComesToTime' title='/pmwiki/pmwiki.php/WebAnimation/DeathComesToTime' data-format='W1tXZWJBbmltYXRpb24vRGVhdGhDb21lc1RvVGltZSBTZXZlbnRoXV0='>Seventh</a> and Eighth Doctors, and an <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/ScreamOfTheShalka' title='/pmwiki/pmwiki.php/WebAnimation/ScreamOfTheShalka' data-format='W1tXZWJBbmltYXRpb24vU2NyZWFtT2ZUaGVTaGFsa2EgYWx0ZXJuYXRlIE5pbnRoIERvY3Rvcl1d'>alternate Ninth Doctor</a>. </li></ul></li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TLC' title='/pmwiki/pmwiki.php/Creator/TLC' data-format='Q3JlYXRvci97e1RMQ319'>TLC</a> series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DrPimplePopper' title='/pmwiki/pmwiki.php/Series/DrPimplePopper' data-format='U2VyaWVzL0RyUGltcGxlUG9wcGVy'>Dr. Pimple Popper</a></em> is an inversion of the Online Spin-Off, and is possibly the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UrExample' title='/pmwiki/pmwiki.php/Main/UrExample' data-format='VXJFeGFtcGxl'>Ur-Example</a> of a web video property that moved to linear TV. It's an expansion of the <a class='twikilink' href='/pmwiki/pmwiki.php/Website/YouTube' title='/pmwiki/pmwiki.php/Website/YouTube' data-format='V2Vic2l0ZS9Zb3VUdWJl'>YouTube</a> channel of Southern California dermatologist Sandra Lee, who became a major Internet celebrity as "Dr. Pimple Popper". </li><li> <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> → <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/Enos' title='/pmwiki/pmwiki.php/Series/Enos' data-format='U2VyaWVzL3t7RW5vc319'>Enos</a></em>, which focused on Deputy Enos Strate moving out West and working for the LAPD. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/EastEnders' title='/pmwiki/pmwiki.php/Series/EastEnders' data-format='U2VyaWVzL0Vhc3RFbmRlcnM='>EastEnders</a></em> had a spin-off <em><span class='esc-seq' title='non-wikiword'>E20</span></em> following a group of teenagers outside of the main cast. Some were later promoted to the main series. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Eureka' title='/pmwiki/pmwiki.php/Series/Eureka' data-format='U2VyaWVzL3t7RXVyZWthfX0='>Eureka</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Warehouse13' title='/pmwiki/pmwiki.php/Series/Warehouse13' data-format='U2VyaWVzL1dhcmVob3VzZTEz'>Warehouse 13</a></em> are established as a shared canon during an episode on each show in which each had a character visiting from the other. There was also a brief appearance of a recurring <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Warehouse13' title='/pmwiki/pmwiki.php/Series/Warehouse13' data-format='U2VyaWVzL1dhcmVob3VzZTEz'>Warehouse 13</a></em> character in an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Alphas' title='/pmwiki/pmwiki.php/Series/Alphas' data-format='U2VyaWVzL3t7QWxwaGFzfX0='>Alphas</a></em>, putting all three series in one universe. <!-- * ''Series/FamilyTies'' → ''[[http://en.wikipedia.org/wiki/The_Art_of_Being_Nick The Art of Being Nick]]''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FantasyIsland2021' title='/pmwiki/pmwiki.php/Series/FantasyIsland2021' data-format='U2VyaWVzL0ZhbnRhc3lJc2xhbmQyMDIx'>Fantasy Island (2021)</a></em>: The series is one of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FantasyIsland' title='/pmwiki/pmwiki.php/Series/FantasyIsland' data-format='U2VyaWVzL0ZhbnRhc3lJc2xhbmQ='>Fantasy Island</a></em>, with Mr. Rourke's grand niece Elena now running things. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FBI' title='/pmwiki/pmwiki.php/Series/FBI' data-format='U2VyaWVzL3t7RkJJfX0='>FBI</a></em> led to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FBIMostWanted' title='/pmwiki/pmwiki.php/Series/FBIMostWanted' data-format='U2VyaWVzL0ZCSU1vc3RXYW50ZWQ='>FBI: Most Wanted</a></em> and to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FBIInternational' title='/pmwiki/pmwiki.php/Series/FBIInternational' data-format='U2VyaWVzL0ZCSUludGVybmF0aW9uYWw='>FBI: International</a></em>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/FiveFwd' title='/pmwiki/pmwiki.php/Series/FiveFwd' data-format='U2VyaWVzL0ZpdmVGd2Q='>Five Fwd</a></em> is the parent show for Channel Five's <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/TheGadgetShow' title='/pmwiki/pmwiki.php/Series/TheGadgetShow' data-format='U2VyaWVzL1RoZUdhZGdldFNob3c='>The Gadget Show</a></em> and <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/FifthGear' title='/pmwiki/pmwiki.php/Series/FifthGear' data-format='U2VyaWVzL0ZpZnRoR2Vhcg=='>Fifth Gear</a></em>. The former features a formalised news segment which has never been part of the main programme with a different presenter and games reviews and interviews with one of the regular presenters- something that rarely appears in the show proper. </li><li> Home-renovation show <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/FlipOrFlop' title='/pmwiki/pmwiki.php/Series/FlipOrFlop' data-format='U2VyaWVzL0ZsaXBPckZsb3A='>Flip Or Flop</a></em> has a complicated series of spinoffs. When stars Tarek and Christina El Moussa were getting divorced and the show's future was uncertain, HGTV gave them each a separate show &#8212; <em>Christina on the Coast</em> (focusing on Christina's interior design business) and <em>Flipping 101</em> (in which Tarek serves as mentor to novice house-flippers). <em>Flip or Flop</em> continued for a couple more seasons before ending in 2022, meaning all three shows were on HGTV's schedule. Since then, <em>Christina on the Coast</em> received its own spinoff, <em>Christina in the Country</em> (featuring Christina setting up a design business in Tennessee, where she has a home with her new husband), and the original show has a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' title='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' data-format='U3Bpcml0dWFsU3VjY2Vzc29y'>Spiritual Successor</a> with <em>The Flipping El Moussas</em>, in which Tarek is joined by his new wife. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Friends' title='/pmwiki/pmwiki.php/Series/Friends' data-format='U2VyaWVzL3t7RnJpZW5kc319'>Friends</a></em> had a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOff' title='/pmwiki/pmwiki.php/Main/SpinOff' data-format='U3Bpbk9mZg=='>Spin-Off</a> called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Joey' title='/pmwiki/pmwiki.php/Series/Joey' data-format='U2VyaWVzL3t7Sm9leX19'>Joey</a></em>, focussing on the character of Joey Tribbiani, who was popular enough to get his own show. It revolved around Joey moving to Los Angeles to try and make it as a big star, and introduced new members of Joey's family. Though popular at first, its popularity declined during the second season, causing it to be cancelled mid-season in the US, though the remaining episodes did air overseas and were eventually released on <span class='esc-seq' title='non-wikiword'>DVD</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GameOfThrones' title='/pmwiki/pmwiki.php/Series/GameOfThrones' data-format='U2VyaWVzL0dhbWVPZlRocm9uZXM='>Game of Thrones</a></em> (based on <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GeorgeRRMartin' title='/pmwiki/pmwiki.php/Creator/GeorgeRRMartin' data-format='Q3JlYXRvci9HZW9yZ2VSUk1hcnRpbg=='>George R. R. Martin</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ASongOfIceAndFire' title='/pmwiki/pmwiki.php/Literature/ASongOfIceAndFire' data-format='TGl0ZXJhdHVyZS9BU29uZ09mSWNlQW5kRmlyZQ=='>A Song of Ice and Fire</a></em>) has prequel spin-offs so far: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HouseOfTheDragon' title='/pmwiki/pmwiki.php/Series/HouseOfTheDragon' data-format='U2VyaWVzL0hvdXNlT2ZUaGVEcmFnb24='>House of the Dragon</a></em> (partly based on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FireAndBlood' title='/pmwiki/pmwiki.php/Literature/FireAndBlood' data-format='TGl0ZXJhdHVyZS9GaXJlQW5kQmxvb2Q='>Fire & Blood</a></em>), set one century and a half before the events of the parent show, when the ancestors of Daenerys Targaryen ended up <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AHouseDivided' title='/pmwiki/pmwiki.php/Main/AHouseDivided' data-format='QUhvdXNlRGl2aWRlZA=='>A House Divided</a> and fought each other in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccessionCrisis' title='/pmwiki/pmwiki.php/Main/SuccessionCrisis' data-format='U3VjY2Vzc2lvbkNyaXNpcw=='>Succession Crisis</a> turned <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CivilWar' title='/pmwiki/pmwiki.php/Main/CivilWar' data-format='Q2l2aWxXYXI='>Civil War</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AKnightOfTheSevenKingdoms' title='/pmwiki/pmwiki.php/Series/AKnightOfTheSevenKingdoms' data-format='U2VyaWVzL0FLbmlnaHRPZlRoZVNldmVuS2luZ2RvbXM='>A Knight of the Seven Kingdoms</a></em> (based on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TalesOfDunkAndEgg' title='/pmwiki/pmwiki.php/Literature/TalesOfDunkAndEgg' data-format='TGl0ZXJhdHVyZS9UYWxlc09mRHVua0FuZEVnZw=='>Tales of Dunk and Egg</a></em>) is set one century before the events of <em>Game of Thrones</em> and some decades after those of <em>House of the Dragon</em> and features an adventurous knight and yet another Targaryen ancestor. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GarthMarenghisDarkplace' title='/pmwiki/pmwiki.php/Series/GarthMarenghisDarkplace' data-format='U2VyaWVzL0dhcnRoTWFyZW5naGlzRGFya3BsYWNl'>Garth Marenghis Darkplace</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ManToManWithDeanLearner' title='/pmwiki/pmwiki.php/Series/ManToManWithDeanLearner' data-format='U2VyaWVzL01hblRvTWFuV2l0aERlYW5MZWFybmVy'>Man to Man with Dean Learner</a></em>. A complicated one - the first show was a metafictional horror parody also featuring "interviews" with the fictional actors and creators involved with the fictional "show". The second show was a parody talk show featuring one of the fictional actors as host. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GeneralHospital' title='/pmwiki/pmwiki.php/Series/GeneralHospital' data-format='U2VyaWVzL0dlbmVyYWxIb3NwaXRhbA=='>General Hospital</a></em> had <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PortCharles' title='/pmwiki/pmwiki.php/Series/PortCharles' data-format='U2VyaWVzL1BvcnRDaGFybGVz'>Port Charles</a></em>, which initially focused on a group of interns at the hospital, with a few regular characters imported from the parent show plus other <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RequiredSpinoffCrossover' title='/pmwiki/pmwiki.php/Main/RequiredSpinoffCrossover' data-format='UmVxdWlyZWRTcGlub2ZmQ3Jvc3NvdmVy'>Required Spinoff Crossover</a> character appearances, but then made a sudden shift into a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SupernaturalSoapOpera' title='/pmwiki/pmwiki.php/Main/SupernaturalSoapOpera' data-format='U3VwZXJuYXR1cmFsU29hcE9wZXJh'>Supernatural Soap Opera</a> centered mostly on a new group of characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheGoldenGirls' title='/pmwiki/pmwiki.php/Series/TheGoldenGirls' data-format='U2VyaWVzL1RoZUdvbGRlbkdpcmxz'>The Golden Girls</a></em>: <ul ><li> The series led into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/EmptyNest' title='/pmwiki/pmwiki.php/Series/EmptyNest' data-format='U2VyaWVzL0VtcHR5TmVzdA=='>Empty Nest</a></em>, focusing on the life and adventures of the Girls' neighbor and friend Harry, a hospital pediatrician. Occasional crossovers between the two casts took place on both shows. <em>Empty Nest</em> had its own short-lived spinoff, <em>Nurses</em>, which was about the nurses who worked with Harry at the hospital. </li><li> <em>The Golden Girls</em> had a second spinoff, <em>The Golden Palace</em>, which started after the series finale. With Dorothy off being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappilyMarried' title='/pmwiki/pmwiki.php/Main/HappilyMarried' data-format='SGFwcGlseU1hcnJpZWQ='>Happily Married</a>, the remaining three Girls joined forces to purchase and run a hotel called the Golden Palace. It didn't live up to the popularity of the original and only lasted for one season. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GrowingPains' title='/pmwiki/pmwiki.php/Series/GrowingPains' data-format='U2VyaWVzL0dyb3dpbmdQYWlucw=='>Growing Pains</a></em> spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JustTheTenOfUs' title='/pmwiki/pmwiki.php/Series/JustTheTenOfUs' data-format='U2VyaWVzL0p1c3RUaGVUZW5PZlVz'>Just the Ten of Us</a></em> when recurring character Coach Lubbock loses his job at Dewey High and is subsequently offered a teaching job in Eureka, California. <!--* ''Series/GreysAnatomy'' → ''Series/PrivatePractice''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheGruenTransfer' title='/pmwiki/pmwiki.php/Series/TheGruenTransfer' data-format='U2VyaWVzL1RoZUdydWVuVHJhbnNmZXI='>The Gruen Transfer</a></em>, an Australian panel show mocking and dissecting real-life examples of advertising, blurs the line between spin-off, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NewSeasonNewName' title='/pmwiki/pmwiki.php/Main/NewSeasonNewName' data-format='TmV3U2Vhc29uTmV3TmFtZQ=='>New Season, New Name</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Retool' title='/pmwiki/pmwiki.php/Main/Retool' data-format='e3tSZXRvb2x9fQ=='>Retool</a>. <a class='urllink' href='https://en.wikipedia.org/wiki/Gruen_(TV_series)'>The Other Wiki<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> considers it all one single television show with a changing title and shifting focus: <ul ><li> <em>Gruen Nation</em>, focusing on political advertising in elections. First ran for four episodes during the 2010 federal election, as an interlude in the third series of <em>The Gruen Transfer</em>. Came back for four more episodes during the 2013 federal election, and then for two episodes during the 2022 federal election. </li><li> <em>Gruen Planet</em>, with a broader focus on public relations and spin. Began one week after the fourth series of <em>The Gruen Transfer</em> ended; became the main format of the show, running for three series altogether. </li><li> <em>Gruen Sweat</em>, focusing on advertising for the 2012 London Olympics. Ran for four episodes preceding the fifth series (i.e. the second series of <em>Gruen Planet</em>). </li><li> <em>Gruen</em>, beginning with the seventh series in 2015, is the latest incarnation of the show: its focus is somewhere between <em>The Gruen Transfer</em> and <em>Gruen Planet</em>. <!-- * ''Series/H2OJustAddWater'' → ''Series/MakoMermaidsAnH2OAdventure''--> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HappyDays' title='/pmwiki/pmwiki.php/Series/HappyDays' data-format='U2VyaWVzL0hhcHB5RGF5cw=='>Happy Days</a></em> originated from an episode on the anthology series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LoveAmericanStyle' title='/pmwiki/pmwiki.php/Series/LoveAmericanStyle' data-format='U2VyaWVzL0xvdmVBbWVyaWNhblN0eWxl'>Love, American Style</a></em>, spun off into its own series. <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GarryMarshall' title='/pmwiki/pmwiki.php/Creator/GarryMarshall' data-format='Q3JlYXRvci9HYXJyeU1hcnNoYWxs'>Garry Marshall</a> used <em>Happy Days</em> as a launching pad for new shows, with varying degrees of success, though only <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AllInTheFamily' title='/pmwiki/pmwiki.php/Series/AllInTheFamily' data-format='U2VyaWVzL0FsbEluVGhlRmFtaWx5'>All in the Family</a></em> could boast more hit spinoffs: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LaverneAndShirley' title='/pmwiki/pmwiki.php/Series/LaverneAndShirley' data-format='U2VyaWVzL0xhdmVybmVBbmRTaGlybGV5'>Laverne & Shirley</a></em> (1976-1983): The title characters first appeared in the third season of <em>Happy Days</em> for several episodes. In its third and fourth seasons <em>Laverne and Shirley</em> became <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='W1tNb3JlUG9wdWxhclNwaW5vZmYgbW9yZSBwb3B1bGFyXV0='>more popular</a> than <em>Happy Days</em>, ranked number one in ratings. </li><li> <em>Blansky's Beauties</em> (1977): Centered on Howard Cunningham's cousin Nancy Blansky, managing a troupe of Las Vegas showgirls. Set in the present-day, unlike its parent show. Among the cast was Eddie Mekka as Joey, the younger cousin of his character Carmine from <em>Laverne and Shirley</em>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PatMorita' title='/pmwiki/pmwiki.php/Creator/PatMorita' data-format='Q3JlYXRvci9QYXRNb3JpdGE='>Pat Morita</a> reprising his role of Arnold from <em>Happy Days</em>. After the show's cancellation, main cast members Lynda Goodfriend and Scott Baio debuted on <em>Happy Days</em> as Lori Beth and Chachi respectively. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MorkAndMindy' title='/pmwiki/pmwiki.php/Series/MorkAndMindy' data-format='U2VyaWVzL01vcmtBbmRNaW5keQ=='>Mork & Mindy</a></em> (1978-1982), starring <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobinWilliams' title='/pmwiki/pmwiki.php/Creator/RobinWilliams' data-format='Q3JlYXRvci9Sb2JpbldpbGxpYW1z'>Robin Williams</a> as the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmusingAlien' title='/pmwiki/pmwiki.php/Main/AmusingAlien' data-format='W1tBbXVzaW5nQWxpZW4gYWxpZW5dXQ=='>alien</a> Mork, who first appeared in a one-off <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BizarroEpisode' title='/pmwiki/pmwiki.php/Main/BizarroEpisode' data-format='Qml6YXJyb0VwaXNvZGU='>Bizarro Episode</a> of <em>Happy Days</em> season 5. (Which was <em>not</em> meant to be a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' title='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' data-format='UG9vcmx5RGlzZ3Vpc2VkUGlsb3Q='>Poorly Disguised Pilot</a>; in fact, Robin Williams was a last-minute substitute for John Byner!) Set in the present day and mostly unconnected to its parent show. </li><li> <em>Out of the Blue</em> (1979): Centered on the guardian angel Random, who aides Chachi in the season 7 episode "Chachi Sells His Soul." There has been debate over whether this was a true spin-off or not, as the series premiered before the cited episode. It's been suggested that was merely a scheduling error on the network's part. Mork also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinoffSendoff' title='/pmwiki/pmwiki.php/Main/SpinoffSendoff' data-format='W1tTcGlub2ZmU2VuZG9mZiBhcHBlYXJzXV0='>appears</a> in the series premiere. </li><li> <em>Katmandu</em> (1980): An unsuccessful pilot episode centered on the girl from the season 7 episode "Fonzie Meets Kat". </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/JoanieLovesChachi' title='/pmwiki/pmwiki.php/Series/JoanieLovesChachi' data-format='U2VyaWVzL0pvYW5pZUxvdmVzQ2hhY2hp'>Joanie Loves Chachi</a></em> (1982-1983): Features the title characters moving to Chicago and playing in a rock band. While remembered as a flop, it actually had decent ratings the first season and might have been a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/QuietlyPerformingSisterShow' title='/pmwiki/pmwiki.php/Main/QuietlyPerformingSisterShow' data-format='UXVpZXRseVBlcmZvcm1pbmdTaXN0ZXJTaG93'>Quietly Performing Sister Show</a> if the network hadn't played with its scheduling. After its cancellation, Joanie and Chachi moved back to <em>Happy Days</em>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HerculesTheLegendaryJourneys' title='/pmwiki/pmwiki.php/Series/HerculesTheLegendaryJourneys' data-format='U2VyaWVzL0hlcmN1bGVzVGhlTGVnZW5kYXJ5Sm91cm5leXM='>Hercules: The Legendary Journeys</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/XenaWarriorPrincess' title='/pmwiki/pmwiki.php/Series/XenaWarriorPrincess' data-format='U2VyaWVzL1hlbmFXYXJyaW9yUHJpbmNlc3M='>Xena: Warrior Princess</a></em>. Xena was introduced as villain who considered Hercules a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorthyOpponent' title='/pmwiki/pmwiki.php/Main/WorthyOpponent' data-format='V29ydGh5T3Bwb25lbnQ='>Worthy Opponent</a>, but a short-lived romance between the two convinced her to become a hero herself, and her own series revolves around her redemption from her warlord past. <!-- * ''Series/HomicideLifeOnTheStreet'' → ''Series/LawAndOrderSpecialVictimsUnit'' (''Homicide'' and ''Law &amp; Order'' were already a Shared Continuity before JustForFun/JohnMunch and Captain Cragen transferred to <span class='esc-seq' title='non-wikiword'>SVU</span> from those respective shows.)--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ICarly' title='/pmwiki/pmwiki.php/Series/ICarly' data-format='U2VyaWVzL0lDYXJseQ=='>iCarly</a></em> set up a spinoff built around Gibby that never got past a pilot. On the other hand, Sam as well as Cat from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Victorious' title='/pmwiki/pmwiki.php/Series/Victorious' data-format='U2VyaWVzL3t7VmljdG9yaW91c319'>Victorious</a></em> went on to, well, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SamAndCat' title='/pmwiki/pmwiki.php/Series/SamAndCat' data-format='U2VyaWVzL1NhbUFuZENhdA=='>Sam &amp; Cat</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/InspectorMorse' title='/pmwiki/pmwiki.php/Series/InspectorMorse' data-format='U2VyaWVzL0luc3BlY3Rvck1vcnNl'>Inspector Morse</a></em> spun off into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Lewis' title='/pmwiki/pmwiki.php/Series/Lewis' data-format='U2VyaWVzL3t7TGV3aXN9fQ=='>Lewis</a></em> with a minor <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeSkip' title='/pmwiki/pmwiki.php/Main/TimeSkip' data-format='VGltZVNraXA='>Time Skip</a>. The series picked up in 2007 after <em>Inspector Morse</em> ended in 2000. In 2012 a second spin-off was started, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Endeavour' title='/pmwiki/pmwiki.php/Series/Endeavour' data-format='U2VyaWVzL3t7RW5kZWF2b3VyfX0='>Endeavour</a></em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Prequel' title='/pmwiki/pmwiki.php/Main/Prequel' data-format='e3tQcmVxdWVsfX0='>Prequel</a> featuring a young Morse as a rookie cop in the 1960s. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/InspectorRex' title='/pmwiki/pmwiki.php/Series/InspectorRex' data-format='U2VyaWVzL0luc3BlY3RvclJleA=='>Inspector Rex</a></em>: Stockinger got his own series after he was transferred to Salzburg. It lasted two seasons. </li><li> The Australian anthology romantic comedy series <em>It's a Date</em>, which mostly revolved around different couples' first dates, inspired the sitcom <em>How to Stay Married</em>, which followed two of the characters from the first episode thirteen years into their marriage (one of them played by the creator of both series, Peter Helliar). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JAG' title='/pmwiki/pmwiki.php/Series/JAG' data-format='U2VyaWVzL3t7SkFHfX0='>JAG</a></em> led to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='TW9yZVBvcHVsYXJTcGlub2Zm'>More Popular Spin-Off</a> about the investigators behind the courtroom cases, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NCIS' title='/pmwiki/pmwiki.php/Series/NCIS' data-format='U2VyaWVzL3t7TkNJU319'>NCIS</a></em>, which takes place at the agency's headquarters in Washington, D.C. Three spinoffs to date about NCIS teams in other cities with heavy Navy presence have been produced: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NCISLosAngeles' title='/pmwiki/pmwiki.php/Series/NCISLosAngeles' data-format='U2VyaWVzL05DSVNMb3NBbmdlbGVz'>NCIS: Los Angeles</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NCISNewOrleans' title='/pmwiki/pmwiki.php/Series/NCISNewOrleans' data-format='U2VyaWVzL05DSVNOZXdPcmxlYW5z'>NCIS: New Orleans</a></em>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NCISHawaii' title='/pmwiki/pmwiki.php/Series/NCISHawaii' data-format='U2VyaWVzL05DSVNIYXdhaWk='>NCIS: Hawai&#699;i</a></em>. Crossovers between these and other CBS shows give rise to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SharedUniverse' title='/pmwiki/pmwiki.php/Main/SharedUniverse' data-format='U2hhcmVkVW5pdmVyc2U='>Shared Universe</a> referred to as the <a class='twikilink' href='/pmwiki/pmwiki.php/Series/Bellisarioverse' title='/pmwiki/pmwiki.php/Series/Bellisarioverse' data-format='U2VyaWVzL3t7QmVsbGlzYXJpb3ZlcnNlfX0='>Bellisarioverse</a> after <em>JAG</em>'s creator, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DonaldPBellisario' title='/pmwiki/pmwiki.php/Creator/DonaldPBellisario' data-format='Q3JlYXRvci9Eb25hbGRQQmVsbGlzYXJpbw=='>Donald P. Bellisario</a>. <!-- * ''Series/KamenRiderDenO'' → ''Imagin Anime''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KnightRider' title='/pmwiki/pmwiki.php/Series/KnightRider' data-format='U2VyaWVzL0tuaWdodFJpZGVy'>Knight Rider</a></em> spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TeamKnightRider' title='/pmwiki/pmwiki.php/Series/TeamKnightRider' data-format='U2VyaWVzL1RlYW1LbmlnaHRSaWRlcg=='>Team Knight Rider</a></em> which focused on five new talking vehicles and heroes. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Knuckles' title='/pmwiki/pmwiki.php/Series/Knuckles' data-format='U2VyaWVzL3t7S251Y2tsZXN9fQ=='>Knuckles</a></em> spun off from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/SonicTheHedgehog' title='/pmwiki/pmwiki.php/Franchise/SonicTheHedgehog' data-format='RnJhbmNoaXNlL1NvbmljVGhlSGVkZ2Vob2c='>Sonic the Hedgehog</a></em> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/SonicTheHedgehogFilmSeries' title='/pmwiki/pmwiki.php/Franchise/SonicTheHedgehogFilmSeries' data-format='W1tGcmFuY2hpc2UvU29uaWNUaGVIZWRnZWhvZ0ZpbG1TZXJpZXMgZmlsbSBzZXJpZXNdXQ=='>film series</a> with <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/IdrisElba' title='/pmwiki/pmwiki.php/Creator/IdrisElba' data-format='Q3JlYXRvci9JZHJpc0VsYmE='>Idris Elba</a> reprising his role as Knuckles the Echidna from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SonicTheHedgehog22022' title='/pmwiki/pmwiki.php/Film/SonicTheHedgehog22022' data-format='RmlsbS9Tb25pY1RoZUhlZGdlaG9nMjIwMjI='>Sonic the Hedgehog 2 (2022)</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LagunaBeach' title='/pmwiki/pmwiki.php/Series/LagunaBeach' data-format='U2VyaWVzL0xhZ3VuYUJlYWNo'>Laguna Beach</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheHills' title='/pmwiki/pmwiki.php/Series/TheHills' data-format='U2VyaWVzL1RoZUhpbGxz'>The Hills</a></em> → <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/TheCity2008' title='/pmwiki/pmwiki.php/Series/TheCity2008' data-format='U2VyaWVzL1RoZUNpdHkyMDA4'>The City 2008</a></em>. At the end of the second season of <em>Laguna Beach</em>, lead character Lauren decides to pursue an internship at Teen Vogue and heads off to Los Angeles, while minor background character Heidi (glimpsed in scenes during the second season) also moves to L.A. to live with Lauren and work at another company. That premise became <em>The Hills</em>, which followed both of their adventures in the city. Several seasons later, Whitney Port (Lauren's co-worker at Teen Vogue) decides to move to New York after meeting Kelly Cutrone, the founder of PR firm The People's Revolution. That premise became <em>The City</em>, which lasted for two seasons and had a similar format to <em>The Hills</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LifeOnMars2006' title='/pmwiki/pmwiki.php/Series/LifeOnMars2006' data-format='U2VyaWVzL3t7TGlmZSBvbiBNYXJzfDIwMDZ9fQ=='>Life on Mars</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AshesToAshes2008' title='/pmwiki/pmwiki.php/Series/AshesToAshes2008' data-format='U2VyaWVzL3t7QXNoZXMgdG8gQXNoZXN8MjAwOH19'>Ashes to Ashes</a></em>. This was partly a spin-off and partly a sequel, as it featured a new protagonist, but retained most of the other regular characters from the previous show after a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeSkip' title='/pmwiki/pmwiki.php/Main/TimeSkip' data-format='VGltZVNraXA='>Time Skip</a>. <!-- * ''Series/LoveAmericanStyle'' → ''Series/HappyDays''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LoveVictor' title='/pmwiki/pmwiki.php/Series/LoveVictor' data-format='U2VyaWVzL0xvdmVWaWN0b3I='>Love, Victor</a></em> is a spin-off of the movie <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/LoveSimon' title='/pmwiki/pmwiki.php/Film/LoveSimon' data-format='RmlsbS9Mb3ZlU2ltb24='>Love, Simon</a></em>. It takes place a few years after the movie an dit follows a new character named Victor who attends the same school Simon did. When he starts to question his sexuality he decides to write Simon and they become the digital <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PenPals' title='/pmwiki/pmwiki.php/Main/PenPals' data-format='UGVuUGFscw=='>Pen Pals</a>. <!--* ''The City'' was both this and a revamping of ''Series/{{Loving}}''.--> </li><li> The Sheldon Leonard-produced, Danny Thomas sitcom <em>Make Room for Daddy</em> has one memorable episode in which Thomas <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' title='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' data-format='W1tQb29ybHlEaXNndWlzZWRQaWxvdCBlbmNvdW50ZXJzIGEgaG9tZXNwdW4gU291dGhlcm4gc2hlcmlmZi5dXQ=='>encounters a homespun Southern sheriff.</a> The resulting show, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheAndyGriffithShow' title='/pmwiki/pmwiki.php/Series/TheAndyGriffithShow' data-format='U2VyaWVzL1RoZUFuZHlHcmlmZml0aFNob3c='>The Andy Griffith Show</a></em>, went on to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='W1tNb3JlUG9wdWxhclNwaW5vZmYgYW4gZXZlbiBiaWdnZXIgc3VjY2VzcyB0aGFuIGl0cyBwcm9nZW5pdG9yLl1d'>an even bigger success than its progenitor.</a> It in turn spun off sister show <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GomerPyleUSMC' title='/pmwiki/pmwiki.php/Series/GomerPyleUSMC' data-format='U2VyaWVzL0dvbWVyUHlsZVVTTUM='>Gomer Pyle, U.S.M.C.</a></em> and sequel <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MayberryRFD' title='/pmwiki/pmwiki.php/Series/MayberryRFD' data-format='U2VyaWVzL01heWJlcnJ5UkZE'>Mayberry R.F.D.</a></em>, becoming the first major big "rural sitcom" franchise of the 1960s. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ManAboutTheHouse' title='/pmwiki/pmwiki.php/Series/ManAboutTheHouse' data-format='U2VyaWVzL01hbkFib3V0VGhlSG91c2U='>Man About the House</a></em> had two spin-offs: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GeorgeAndMildred' title='/pmwiki/pmwiki.php/Series/GeorgeAndMildred' data-format='U2VyaWVzL0dlb3JnZUFuZE1pbGRyZWQ='>George & Mildred</a></em> and <em>Robin's Nest</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMaryTylerMooreShow' title='/pmwiki/pmwiki.php/Series/TheMaryTylerMooreShow' data-format='U2VyaWVzL1RoZU1hcnlUeWxlck1vb3JlU2hvdw=='>The Mary Tyler Moore Show</a></em> spun off two sister series, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Rhoda' title='/pmwiki/pmwiki.php/Series/Rhoda' data-format='U2VyaWVzL3t7UmhvZGF9fQ=='>Rhoda</a></em> and <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/Phyllis' title='/pmwiki/pmwiki.php/Series/Phyllis' data-format='U2VyaWVzL3t7UGh5bGxpc319'>Phyllis</a></em>, as well as its retool/sequel spinoff <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LouGrant' title='/pmwiki/pmwiki.php/Series/LouGrant' data-format='U2VyaWVzL0xvdUdyYW50'>Lou Grant</a></em>. </li><li> The popularity of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MASH' title='/pmwiki/pmwiki.php/Series/MASH' data-format='U2VyaWVzL3t7TUFTSH19'>M*A*S*H</a></em> was such that a spinoff was all but inevitable, and it had two: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AfterMASH' title='/pmwiki/pmwiki.php/Series/AfterMASH' data-format='U2VyaWVzL0FmdGVyTUFTSA=='>AfterMASH</a></em>, which brought Klinger, Potter, and Father Mulcahy together again in the United States, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TrapperJohnMD' title='/pmwiki/pmwiki.php/Series/TrapperJohnMD' data-format='U2VyaWVzL1RyYXBwZXJKb2huTUQ='>Trapper John, M.D.</a></em>, which was about Trapper John's life after his discharge. <!-- * ''Series/{{Monk}}'' → ''Little Monk''--> <!-- * ''Series/NameThatTune'' → ''Series/FaceTheMusic''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OddSquad' title='/pmwiki/pmwiki.php/Series/OddSquad' data-format='U2VyaWVzL09kZFNxdWFk'>Odd Squad</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/OddTube' title='/pmwiki/pmwiki.php/WebVideo/OddTube' data-format='V2ViVmlkZW8ve3tPZGRUdWJlfX0='>OddTube</a></em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VlogSeries' title='/pmwiki/pmwiki.php/Main/VlogSeries' data-format='VmxvZ1Nlcmllcw=='>Vlog Series</a> spin-off with a first season that focuses on the Season 2 main characters (Otis, Olympia, Oona and Oprah) with Olympia serving as primary host, while its second season shifts focus towards the Season 3 main characters (Opal, Orla, Omar, and Oprah, as the Big O) with Orla serving as primary host. Season 1 is considered canon in the main show, but it's left ambiguous as to whether that is the case with Season 2 as well. </li><li> By definition, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OddSquad' title='/pmwiki/pmwiki.php/Series/OddSquad' data-format='U2VyaWVzL09kZFNxdWFk'>Odd Squad</a></em> has the spin-off <em>Odd Squad Mobile Unit,</em> taking place in the same universe with the same premise but with a different core setting and different characters. It's marketed as a spinoff in countries outside of the United States. <!-- * ''Series/{{Offspring}}'' → ''The Nurses''--> </li></ul></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> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OnceUponATimeInWonderland' title='/pmwiki/pmwiki.php/Series/OnceUponATimeInWonderland' data-format='U2VyaWVzL09uY2VVcG9uQVRpbWVJbldvbmRlcmxhbmQ='>Once Upon a Time in Wonderland</a></em>, a mini-series featuring mainly characters related to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AlicesAdventuresInWonderland' title='/pmwiki/pmwiki.php/Literature/AlicesAdventuresInWonderland' data-format='TGl0ZXJhdHVyZS9BbGljZXNBZHZlbnR1cmVzSW5Xb25kZXJsYW5k'>Alice's Adventures in Wonderland</a></em>, some of whom were later brought into the main series. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OnlyFoolsAndHorses' title='/pmwiki/pmwiki.php/Series/OnlyFoolsAndHorses' data-format='U2VyaWVzL09ubHlGb29sc0FuZEhvcnNlcw=='>Only Fools and Horses</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheGreenGreenGrass' title='/pmwiki/pmwiki.php/Series/TheGreenGreenGrass' data-format='U2VyaWVzL1RoZUdyZWVuR3JlZW5HcmFzcw=='>The Green Green Grass</a></em>, in which two supporting characters, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SmugSnake' title='/pmwiki/pmwiki.php/Main/SmugSnake' data-format='W1tTbXVnU25ha2UgQm95Y2llXV0='>Boycie</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReallyGetsAround' title='/pmwiki/pmwiki.php/Main/ReallyGetsAround' data-format='W1tSZWFsbHlHZXRzQXJvdW5kIE1hcmxlbmVdXQ=='>Marlene</a>, relocated from London to rural Shropshire in order to escape the wrath of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LondonGangster' title='/pmwiki/pmwiki.php/Main/LondonGangster' data-format='W1tMb25kb25HYW5nc3RlciB0aGUgRHJpc2NvbGwgYnJvdGhlcnNdXQ=='>the Driscoll brothers</a>. Back in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/The80s' title='/pmwiki/pmwiki.php/Main/The80s' data-format='VGhlODBz'>The '80s</a> when the original show was at its peak, writer John Sullivan had plans for a sequel called <em>Hot Rod</em> (which would have actually been an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AfterShow' title='/pmwiki/pmwiki.php/Main/AfterShow' data-format='QWZ0ZXJTaG93'>After Show</a> as it was basically intended to be <em>Only Fools and Horses</em> without Del Boy) when actor David Jason wanted to leave, but when he changed his mind that plan was shelved. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PerfectStrangers' title='/pmwiki/pmwiki.php/Series/PerfectStrangers' data-format='U2VyaWVzL1BlcmZlY3RTdHJhbmdlcnM='>Perfect Strangers</a></em> spun off the minor character of Harriette Winslow, the elevator operator at Balki and Larry's employer, into her own show, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FamilyMatters' title='/pmwiki/pmwiki.php/Series/FamilyMatters' data-format='U2VyaWVzL0ZhbWlseU1hdHRlcnM='>Family Matters</a></em>. <!-- * ''Peter Kay's Series/PhoenixNights'' → ''Max &amp; Paddy's Road To Nowhere''--> </li><li> The first seven seasons of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/PowerRangers' title='/pmwiki/pmwiki.php/Franchise/PowerRangers' data-format='RnJhbmNoaXNlL1Bvd2VyUmFuZ2Vycw=='>Power Rangers</a></em> used a few old characters mixed with new ones. Starting with <em>Lightspeed Rescue</em>, they used the no character variant, all set in the same universe, with characters only returning for team-up episodes. The exceptions were <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> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersSamurai' title='/pmwiki/pmwiki.php/Series/PowerRangersSamurai' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc1NhbXVyYWk='>Power Rangers Samurai</a></em>, where Tommy and Bulk returned as main characters, respectively. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PoliceStory1973' title='/pmwiki/pmwiki.php/Series/PoliceStory1973' data-format='U2VyaWVzL1BvbGljZVN0b3J5MTk3Mw=='>Police Story (1973)</a></em> had <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PoliceWoman' title='/pmwiki/pmwiki.php/Series/PoliceWoman' data-format='U2VyaWVzL1BvbGljZVdvbWFu'>Police Woman</a></em>, <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/JoeForrester' title='/pmwiki/pmwiki.php/Series/JoeForrester' data-format='U2VyaWVzL0pvZUZvcnJlc3Rlcg=='>Joe Forrester</a></em>, and <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/DavidCassidyManUnderCover' title='/pmwiki/pmwiki.php/Series/DavidCassidyManUnderCover' data-format='U2VyaWVzL0RhdmlkQ2Fzc2lkeU1hblVuZGVyQ292ZXI='>David Cassidy Man Under Cover</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThePractice' title='/pmwiki/pmwiki.php/Series/ThePractice' data-format='U2VyaWVzL1RoZVByYWN0aWNl'>The Practice</a></em> had the spin off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BostonLegal' title='/pmwiki/pmwiki.php/Series/BostonLegal' data-format='U2VyaWVzL0Jvc3RvbkxlZ2Fs'>Boston Legal</a></em>, where the spinoff was designed around characters originally introduced in the original in a serious case of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalSeasonCasting' title='/pmwiki/pmwiki.php/Main/FinalSeasonCasting' data-format='RmluYWxTZWFzb25DYXN0aW5n'>Final Season Casting</a>. <!-- * ''Series/TheRealWorld'' → ''Series/RoadRules''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/RowanAndMartinsLaughIn' title='/pmwiki/pmwiki.php/Series/RowanAndMartinsLaughIn' data-format='U2VyaWVzL1Jvd2FuQW5kTWFydGluc0xhdWdoSW4='>Rowan and Martin's Laugh-In</a></em> spun off the daytime series <em>Letters to Laugh-In</em>, where a celebrity panel read jokes sent in by viewers and were scored by an enclave of judges. It replaced the original <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MatchGame' title='/pmwiki/pmwiki.php/Series/MatchGame' data-format='U2VyaWVzL01hdGNoR2FtZQ=='>Match Game</a></em> on NBC and ran thirteen weeks. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SaturdayNightLive' title='/pmwiki/pmwiki.php/Series/SaturdayNightLive' data-format='U2VyaWVzL1NhdHVyZGF5TmlnaHRMaXZl'>Saturday Night Live</a></em><span class='esc-seq' title='non-wikiword'>'s</span> "TV Funhouse" segments eventually became <a class='twikilink' href='/pmwiki/pmwiki.php/Series/TVFunhouse' title='/pmwiki/pmwiki.php/Series/TVFunhouse' data-format='W1tTZXJpZXMvVFZGdW5ob3VzZSB0aGVpciBvd24gc2VyaWVzXV0='>their own series</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Soap' title='/pmwiki/pmwiki.php/Series/Soap' data-format='U2VyaWVzL3t7U29hcH19'>Soap</a></em>'s sarcastic butler, Benson, was given his own show, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Benson' title='/pmwiki/pmwiki.php/Series/Benson' data-format='U2VyaWVzL3t7QmVuc29ufX0='>Benson</a></em>, where the character eventually became <span class="spoiler" title="you can set spoilers visible by default on your profile" >Lieutenant Governor of the state</span>. <!-- * ''Series/SonnyWithAChance'' → ''Mackenzie Falls'' and ''Series/SoRandom''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StargateSG1' title='/pmwiki/pmwiki.php/Series/StargateSG1' data-format='U2VyaWVzL1N0YXJnYXRlU0cx'>Stargate SG-1</a></em>, which itself was based on the film <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Stargate' title='/pmwiki/pmwiki.php/Film/Stargate' data-format='RmlsbS97e1N0YXJnYXRlfX0='>Stargate</a></em>, spun off the shows <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StargateAtlantis' title='/pmwiki/pmwiki.php/Series/StargateAtlantis' data-format='U2VyaWVzL1N0YXJnYXRlQXRsYW50aXM='>Stargate Atlantis</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StargateUniverse' title='/pmwiki/pmwiki.php/Series/StargateUniverse' data-format='U2VyaWVzL1N0YXJnYXRlVW5pdmVyc2U='>Stargate Universe</a></em>. <em>Atlantis</em> was set in the lost city of Atlantis and began while <em>SG-1</em> was still running, with occasional crossovers between the shows, and featured many characters who had debuted on <em>SG-1</em> – including Samantha Carter, who joined the <em>Atlantis</em> main cast for season 4. <em>Universe</em> began after <em>SG-1</em> and <em>Atlantis</em> had both ended and was set on a ship in intergalactic space, meaning that old characters showed up far less often. </li><li> <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> gave rise to a whole <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='W1tGcmFuY2hpc2UvU3RhclRyZWsgdW5pdmVyc2Ugb2Ygc3Bpbi1vZmZzXV0='>universe of spin-offs</a>: <ul ><li> <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> was set approximately a century after TOS and focused on a new ship named <em>Enterprise</em> which was the successor to the original. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekDeepSpaceNine' title='/pmwiki/pmwiki.php/Series/StarTrekDeepSpaceNine' data-format='U2VyaWVzL1N0YXJUcmVrRGVlcFNwYWNlTmluZQ=='>Star Trek: Deep Space Nine</a></em> was spun off from <em>The Next Generation</em> while TNG was still airing. Recurring character Chief Miles O'Brien left TNG to become a main character on <span class='esc-seq' title='non-wikiword'>DS9</span> (and eventually TNG main character Worf joined him), and there were substantial crossovers between the two shows in the <span class='esc-seq' title='non-wikiword'>DS9</span> pilot "Emissary" and the TNG episode "Birthright Part 1". Some plot threads that began on TNG later concluded on <span class='esc-seq' title='non-wikiword'>DS9</span>, such as the political conflicts within the Klingon Empire. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekVoyager' title='/pmwiki/pmwiki.php/Series/StarTrekVoyager' data-format='U2VyaWVzL1N0YXJUcmVrVm95YWdlcg=='>Star Trek: Voyager</a></em> began almost immediately after TNG concluded, as the franchise's new "flagship show"; although it does not feature any continuing characters, it does continue various stories and themes originating from TNG and <span class='esc-seq' title='non-wikiword'>DS9</span>. Some recurring characters from TNG continue to recur on VOY, such as Reginald Barclay and the popular <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntiVillain' title='/pmwiki/pmwiki.php/Main/AntiVillain' data-format='QW50aVZpbGxhaW4='>Anti-Villain</a> Q. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekEnterprise' title='/pmwiki/pmwiki.php/Series/StarTrekEnterprise' data-format='U2VyaWVzL1N0YXJUcmVrRW50ZXJwcmlzZQ=='>Star Trek: Enterprise</a></em> was set more than 110 years before <em>The Original Series</em>, and was arguably a spinoff of TOS, TNG or both. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekDiscovery' title='/pmwiki/pmwiki.php/Series/StarTrekDiscovery' data-format='U2VyaWVzL1N0YXJUcmVrRGlzY292ZXJ5'>Star Trek: Discovery</a></em> is set a decade before <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> in its first season, and prominently features several characters who originated in TOS: Captain Christopher Pike is a main character in the second season, and characters such as Spock, Sarek, and Harry Mudd have recurring roles. The main character Michael Burnham is also Spock's adopted sister. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekPicard' title='/pmwiki/pmwiki.php/Series/StarTrekPicard' data-format='U2VyaWVzL1N0YXJUcmVrUGljYXJk'>Star Trek: Picard</a></em> is spun off from <span class='esc-seq' title='non-wikiword'>TNG</span>, taking place nearly 30 years after the show ended and featuring a much older, more jaded Jean-Luc Picard. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekStrangeNewWorlds' title='/pmwiki/pmwiki.php/Series/StarTrekStrangeNewWorlds' data-format='U2VyaWVzL1N0YXJUcmVrU3RyYW5nZU5ld1dvcmxkcw=='>Star Trek: Strange New Worlds</a></em> is both a spin-off from <em>Discovery</em> and a direct prequel to <em>The Original Series</em>, taking place on the Enterprise during Captain Pike's last five-year mission before Captain Kirk took over command. Many of the show's main characters originated on TOS either as main characters (Spock, Uhura, Chapel) or guest characters (Pike, M'Benga). </li><li> Each <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='RnJhbmNoaXNlL1N0YXJUcmVr'>Star Trek</a></em> series from TNG to ENT featured a crossover at the beginning of each new spin-off as a symbolic "passing the torch": the first episode of TNG included a cameo appearance by an aged Dr. <span class='esc-seq' title='non-wikiword'>McCoy</span>; the pilot of <span class='esc-seq' title='non-wikiword'>DS9</span> prominently featured Captain Picard; the first episode of VOY included a cameo by <span class='esc-seq' title='non-wikiword'>DS9</span>'s Quark; the first episode of ENT showed a video recording of Dr. Zefram Cochrane, a major character in the TNG film <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarTrekFirstContact' title='/pmwiki/pmwiki.php/Film/StarTrekFirstContact' data-format='RmlsbS9TdGFyVHJla0ZpcnN0Q29udGFjdA=='>Star Trek: First Contact</a></em>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheSuiteLifeOfZackAndCody' title='/pmwiki/pmwiki.php/Series/TheSuiteLifeOfZackAndCody' data-format='U2VyaWVzL1RoZVN1aXRlTGlmZU9mWmFja0FuZENvZHk='>The Suite Life of Zack & Cody</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheSuiteLifeOnDeck' title='/pmwiki/pmwiki.php/Series/TheSuiteLifeOnDeck' data-format='U2VyaWVzL1RoZVN1aXRlTGlmZU9uRGVjaw=='>The Suite Life on Deck</a></em>, where some of the main cast move to a cruise ship to attend a special school. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThatsSoRaven' title='/pmwiki/pmwiki.php/Series/ThatsSoRaven' data-format='U2VyaWVzL1RoYXRzU29SYXZlbg=='>That's So Raven</a></em> spun into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/CoryInTheHouse' title='/pmwiki/pmwiki.php/Series/CoryInTheHouse' data-format='U2VyaWVzL0NvcnlJblRoZUhvdXNl'>Cory in the House</a></em> after a small <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeSkip' title='/pmwiki/pmwiki.php/Main/TimeSkip' data-format='VGltZVNraXA='>Time Skip</a>. <em>CITH</em> takes place some time after <em>TSR</em>, after Raven goes to college. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThreesCompany' title='/pmwiki/pmwiki.php/Series/ThreesCompany' data-format='U2VyaWVzL1RocmVlc0NvbXBhbnk='>Three's Company</a></em> (adapted from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ManAboutTheHouse' title='/pmwiki/pmwiki.php/Series/ManAboutTheHouse' data-format='U2VyaWVzL01hbkFib3V0VGhlSG91c2U='>Man About the House</a></em>) spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheRopers' title='/pmwiki/pmwiki.php/Series/TheRopers' data-format='U2VyaWVzL1RoZVJvcGVycw=='>The Ropers</a></em> (which focuses on Helen and Stanley Roper after they sell the apartment and move away, adapted from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GeorgeAndMildred' title='/pmwiki/pmwiki.php/Series/GeorgeAndMildred' data-format='U2VyaWVzL0dlb3JnZUFuZE1pbGRyZWQ='>George & Mildred</a></em>) and <em>Three's a Crowd</em> (which dealt with Jack living with his wife Vicky and her father, adapted from <em>Robin's Nest</em>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheToysThatMadeUs' title='/pmwiki/pmwiki.php/Series/TheToysThatMadeUs' data-format='U2VyaWVzL1RoZVRveXNUaGF0TWFkZVVz'>The Toys That Made Us</a></em>: Series creator Brian Volk-Weiss also created a similarly-title spin-off called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMoviesThatMadeUs' title='/pmwiki/pmwiki.php/Series/TheMoviesThatMadeUs' data-format='U2VyaWVzL1RoZU1vdmllc1RoYXRNYWRlVXM='>The Movies That Made Us</a></em>. <!-- * ''Series/UglyBetty'' → ''Mode After Dark''--> </li><li> In 2013, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Ultraman' title='/pmwiki/pmwiki.php/Series/Ultraman' data-format='U2VyaWVzL3t7VWx0cmFtYW59fQ=='>Ultraman</a></em> was awarded by the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GuinnessWorldRecords' title='/pmwiki/pmwiki.php/Literature/GuinnessWorldRecords' data-format='TGl0ZXJhdHVyZS9HdWlubmVzc1dvcmxkUmVjb3Jkcw=='>Guinness World Records</a></em> with <a class='urllink' href='http://www.crunchyroll.com/anime-news/2013/09/12/video-ultraman-gets-guinness-record-for-most-spin-off-shows'>the record for most spin-offs<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (which form the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/UltraSeries' title='/pmwiki/pmwiki.php/Franchise/UltraSeries' data-format='RnJhbmNoaXNlL1VsdHJhU2VyaWVz'>Ultra Series</a></em> franchise). There were 27 series in 2013, and in 2017 there were 30 series, with the number increasing with every year. Ironically, <em>Ultraman</em> itself is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinOff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinOff' data-format='TW9yZVBvcHVsYXJTcGluT2Zm'>More Popular Spin Off</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/UltraQ' title='/pmwiki/pmwiki.php/Series/UltraQ' data-format='U2VyaWVzL1VsdHJhUQ=='>Ultra Q</a></em>, but since the former show is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PopularityPower' title='/pmwiki/pmwiki.php/Main/PopularityPower' data-format='W1tQb3B1bGFyaXR5UG93ZXIgYmV0dGVyIGtub3duIHdvcmxkd2lkZV1d'>better known worldwide</a>, it gets the award instead. <!-- * ''Series/UpstairsDownstairs'' → ''Series/ThomasAndSarah''--> </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> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheOriginals' title='/pmwiki/pmwiki.php/Series/TheOriginals' data-format='U2VyaWVzL1RoZU9yaWdpbmFscw=='>The Originals</a></em>. The second series centred around a group of characters who had been the main arc villains in the third season of the original show. </li><li> The Australian game show <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HardQuiz' title='/pmwiki/pmwiki.php/Series/HardQuiz' data-format='U2VyaWVzL0hhcmRRdWl6'>Hard Quiz</a></em> was spun off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheWeeklyWithCharliePickering' title='/pmwiki/pmwiki.php/Series/TheWeeklyWithCharliePickering' data-format='U2VyaWVzL1RoZVdlZWtseVdpdGhDaGFybGllUGlja2VyaW5n'>The Weekly with Charlie Pickering</a></em>, specifically the regular segment <em>Hard Chat</em>. In one episode, a contestant's special subject was <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HappyDays' title='/pmwiki/pmwiki.php/Series/HappyDays' data-format='U2VyaWVzL0hhcHB5RGF5cw=='>Happy Days</a></em>, and when Tom Gleeson brought up the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LoveAmericanStyle' title='/pmwiki/pmwiki.php/Series/LoveAmericanStyle' data-format='U2VyaWVzL0xvdmVBbWVyaWNhblN0eWxl'>Love, American Style</a></em> example, he then went on to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlatantLies' title='/pmwiki/pmwiki.php/Main/BlatantLies' data-format='W1tCbGF0YW50TGllcyBjbGFpbV1d'>claim</a> that <em>Hard Quiz</em> was, in contrast, completely original. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheWalkingDeadTelevisionUniverse' title='/pmwiki/pmwiki.php/Franchise/TheWalkingDeadTelevisionUniverse' data-format='RnJhbmNoaXNlL1RoZVdhbGtpbmdEZWFkVGVsZXZpc2lvblVuaXZlcnNl'>The Walking Dead Television Universe</a>: The mother series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheWalkingDead2010' title='/pmwiki/pmwiki.php/Series/TheWalkingDead2010' data-format='U2VyaWVzL3t7VGhlIFdhbGtpbmcgRGVhZHwyMDEwfX0='>The Walking Dead</a></em> spun off into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FearTheWalkingDead' title='/pmwiki/pmwiki.php/Series/FearTheWalkingDead' data-format='U2VyaWVzL0ZlYXJUaGVXYWxraW5nRGVhZA=='>Fear the Walking Dead</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheWalkingDeadWorldBeyond' title='/pmwiki/pmwiki.php/Series/TheWalkingDeadWorldBeyond' data-format='U2VyaWVzL1RoZVdhbGtpbmdEZWFkV29ybGRCZXlvbmQ='>The Walking Dead: World Beyond</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TalesOfTheWalkingDead' title='/pmwiki/pmwiki.php/Series/TalesOfTheWalkingDead' data-format='U2VyaWVzL1RhbGVzT2ZUaGVXYWxraW5nRGVhZA=='>Tales of the Walking Dead</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheWalkingDeadDeadCity' title='/pmwiki/pmwiki.php/Series/TheWalkingDeadDeadCity' data-format='U2VyaWVzL1RoZVdhbGtpbmdEZWFkRGVhZENpdHk='>The Walking Dead: Dead City</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheXFiles' title='/pmwiki/pmwiki.php/Series/TheXFiles' data-format='U2VyaWVzL1RoZVhGaWxlcw=='>The X-Files</a></em> featured a trio of recurring characters, conspiracy theorists, known as The Lone Gunmen. They were spun off into their own short-lived eponymous show, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheLoneGunmen' title='/pmwiki/pmwiki.php/Series/TheLoneGunmen' data-format='U2VyaWVzL1RoZUxvbmVHdW5tZW4='>The Lone Gunmen</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Podcasts&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <!-- * ''Podcast/RandomAssault'': The "Minor Assault" casts, which usually involve only two people and focus on a specific show, game, or series.--> <!-- ** RA Views, video reviews done by one host each.--> <!-- ** RA Plays, which are LetsPlay videos done by the hosts.--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/CanceledTooSoon' title='/pmwiki/pmwiki.php/Podcast/CanceledTooSoon' data-format='UG9kY2FzdC9DYW5jZWxlZFRvb1Nvb24='>Canceled Too Soon</a></em>: <ul ><li> The podcast was inspired from a segment on the hosts' other (and since ended) podcast <em>The B Movies Podcast</em>, where Bibbs and Witney reviewed the first season of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Shadowhunters' title='/pmwiki/pmwiki.php/Series/Shadowhunters' data-format='U2VyaWVzL3t7U2hhZG93aHVudGVyc319'>Shadowhunters</a></em> weekly. </li><li> The podcast has a spin-off of its own: <em>All the Best</em>, a monthly Patreon-exclusive podcast where Bibbs and Witney review every movie nominated for the Academy Award for Best Picture by year. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Pro Wrestling&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> The Heartland Wrestling Association was one to <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/WCW' title='/pmwiki/pmwiki.php/Wrestling/WCW' data-format='V3Jlc3RsaW5nL3t7V0NXfX0='>WCW</a>, "Adrenaline" being one to <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/WCWMondayNitro' title='/pmwiki/pmwiki.php/Wrestling/WCWMondayNitro' data-format='W1tXcmVzdGxpbmcvV0NXTW9uZGF5Tml0cm8gIk5pdHJvIi5dXQ=='>"Nitro".</a> Focusing mainly on developmental wrestlers who may or may not "graduate" to WCW's main roster or elsewhere, Heartland ended up running shows and training successful wrestlers well after WCW went out of business. </li><li> Oz Academy was originally based around Mayumi Ozaki's attempts to train new wrestlers for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerStable' title='/pmwiki/pmwiki.php/Main/PowerStable' data-format='UG93ZXJTdGFibGU='>Power Stable</a> of the same name <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainBasedFranchise' title='/pmwiki/pmwiki.php/Main/VillainBasedFranchise' data-format='W1tWaWxsYWluQmFzZWRGcmFuY2hpc2UgdG8gYWlkIGhlciBpbiBoZXIgY2FtcGFpZ25dXQ=='>to aid her in her campaign</a> against the GAEA promotion. After GAEA closed down, Oz Academy became increasingly self contained, though a rivalry with GAEA's would be successor Sendai Girls Pro Wrestling periodically rises to the surface. As of 2018, wrestlers associated with Oz Academy also started smashing their ways onto shows of GAEA's other would be successor, Marvelous. </li><li> Pro Wrestling Sem straddles the line between spinoff and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BShow' title='/pmwiki/pmwiki.php/Main/BShow' data-format='QlNob3c='>B Show</a> in regards to <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ProWrestlingNOAH' title='/pmwiki/pmwiki.php/Wrestling/ProWrestlingNOAH' data-format='V3Jlc3RsaW5nL1Byb1dyZXN0bGluZ05PQUg='>Pro Wrestling NOAH</a>, focusing mainly on the misadventures of Naomichi Marufuji and <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/KENTAKobayashi' title='/pmwiki/pmwiki.php/Wrestling/KENTAKobayashi' data-format='V3Jlc3RsaW5nL3t7S0VOVEF8S29iYXlhc2hpfX0='>KENTA</a> as they coach rookies from the NOAH dojo in much smaller buildings than NOAH usually runs in. <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/MitsuharuMisawa' title='/pmwiki/pmwiki.php/Wrestling/MitsuharuMisawa' data-format='V3Jlc3RsaW5nL01pdHN1aGFydU1pc2F3YQ=='>Mitsuharu Misawa</a> said he got the idea from working in westside Xtreme wrestling. The show stopped happening when KENTA left NOAH. </li><li> Strangely, Pro Wrestling RESPECT started out as a spin off to both <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/RingOfHonor' title='/pmwiki/pmwiki.php/Wrestling/RingOfHonor' data-format='V3Jlc3RsaW5nL1JpbmdPZkhvbm9y'>Ring of Honor</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/SHIMMER' title='/pmwiki/pmwiki.php/Wrestling/SHIMMER' data-format='V3Jlc3RsaW5nL3t7U0hJTU1FUn19'>SHIMMER</a>, focused mainly around the students of their academy. However, it eventually drifted into "Wrestling Is Respect", one of many "Wrestling Is" promotions that serve as spin offs to <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Chikara' title='/pmwiki/pmwiki.php/Wrestling/Chikara' data-format='V3Jlc3RsaW5nL3t7Q2hpa2FyYX19'>Chikara</a>(and ended up being the longest lasting of them). </li><li> Inheriting its name from <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ECW' title='/pmwiki/pmwiki.php/Wrestling/ECW' data-format='V3Jlc3RsaW5nL3t7RUNXfX0='>ECW</a>'s training facility, House Of Hardcore started doing their own shows as a spin off of Family Wrestling Entertainment, with school head <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TommyDreamer' title='/pmwiki/pmwiki.php/Wrestling/TommyDreamer' data-format='V3Jlc3RsaW5nL1RvbW15RHJlYW1lcg=='>Tommy Dreamer</a> was their champion. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/MoneyInTheBank' title='/pmwiki/pmwiki.php/Wrestling/MoneyInTheBank' data-format='V3Jlc3RsaW5nL01vbmV5SW5UaGVCYW5r'>Money in the Bank</a></em> started off life as an annual <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GimmickMatches' title='/pmwiki/pmwiki.php/Main/GimmickMatches' data-format='W1tHaW1taWNrTWF0Y2hlcyBnaW1taWNrIG1hdGNoXV0='>gimmick match</a> at <em><a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/WrestleMania' title='/pmwiki/pmwiki.php/Wrestling/WrestleMania' data-format='V3Jlc3RsaW5nL1dyZXN0bGVNYW5pYQ=='>WrestleMania</a></em> and proved so popular that it got spun off into its own PPV, and now features MITB matches for both genders, much like the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/RoyalRumble' title='/pmwiki/pmwiki.php/Wrestling/RoyalRumble' data-format='V3Jlc3RsaW5nL1JveWFsUnVtYmxl'>Royal Rumble</a></em>. <em>TLC</em> (another show based around a multi-person ladder match) and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/HellInACell' title='/pmwiki/pmwiki.php/Wrestling/HellInACell' data-format='V3Jlc3RsaW5nL0hlbGxJbkFDZWxs'>Hell in a Cell</a></em> used to be examples, but got axed when <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TripleH' title='/pmwiki/pmwiki.php/Wrestling/TripleH' data-format='V3Jlc3RsaW5nL1RyaXBsZUg='>Triple H</a> took over the book. </li><li> The Scotland-based Insane Championship Wrestling opened a sister promotion called Fierce Females in 2012, in order to give more focus to said group. However, FF and ICW parted ways in 2014 and ICW started a women's division that ran on the same shows as all its other talent instead. </li><li> Ring Ka King was to be a spin off of <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TNA' title='/pmwiki/pmwiki.php/Wrestling/TNA' data-format='V3Jlc3RsaW5nL3t7VE5BfX0='>TNA</a> based in India, though it only lasted a single televised season. </li><li> New Borinquen Pro Wrestling was a developmental territory of The World Wrestling League that was based around independent circuit and former IWA Puerto Rico wrestler tryouts, in addition to a stronger focus on "strong style" (<a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/NewJapanProWrestling' title='/pmwiki/pmwiki.php/Wrestling/NewJapanProWrestling' data-format='W1tXcmVzdGxpbmcvTmV3SmFwYW5Qcm9XcmVzdGxpbmcgaWYgdGhlIG5hbWUgZGlkbiYjMDM5O3QgbWFrZSB0aGF0IGNsZWFyXV0='>if the name didn't make that clear</a>). It is another "farm league" that has chugged along after its larger partner closed down. And it didn't return to being its farm league when WWL started back up. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/CZW' title='/pmwiki/pmwiki.php/Wrestling/CZW' data-format='V3Jlc3RsaW5nL3t7Q1pXfX0='>CZW</a> started "Dojo Wars" in 2014, based around the students of its dojo and those (hopefully) destined for <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/WSU' title='/pmwiki/pmwiki.php/Wrestling/WSU' data-format='V3Jlc3RsaW5nL3t7V1NVfX0='>WSU</a>'s locker room. Sometimes they get into scuffles with students from other wrestling schools. </li><li> RISE initially started as a feeder program for SHIMMER's Sparkle Showcase but quickly became a much more ambitious project, running shows across the United States, linking up with <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ImpactWrestling' title='/pmwiki/pmwiki.php/Wrestling/ImpactWrestling' data-format='V3Jlc3RsaW5nL0ltcGFjdFdyZXN0bGluZw=='>Impact Wrestling</a> and STARDOM, reviving <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/BullNakano' title='/pmwiki/pmwiki.php/Wrestling/BullNakano' data-format='V3Jlc3RsaW5nL0J1bGxOYWthbm8='>Bull Nakano</a>'s feud with STARDOM executive <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Madusa' title='/pmwiki/pmwiki.php/Wrestling/Madusa' data-format='V3Jlc3RsaW5nL3t7TWFkdXNhfX0='>Madusa</a>, which in turn revived <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerStable' title='/pmwiki/pmwiki.php/Main/PowerStable' data-format='W1tQb3dlclN0YWJsZSBHb2t1bW9uLXRvXV0='>Gokumon-to</a> and filming a weekly show. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/AllEliteWrestling' title='/pmwiki/pmwiki.php/Wrestling/AllEliteWrestling' data-format='V3Jlc3RsaW5nL0FsbEVsaXRlV3Jlc3RsaW5n'>All Elite Wrestling</a> was an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerendipityWritesThePlot' title='/pmwiki/pmwiki.php/Main/SerendipityWritesThePlot' data-format='W1tTZXJlbmRpcGl0eVdyaXRlc1RoZVBsb3QgdW5pbnRlbnRpb25hbF1d'>unintentional</a> one to <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/RingOfHonor' title='/pmwiki/pmwiki.php/Wrestling/RingOfHonor' data-format='V3Jlc3RsaW5nL1JpbmdPZkhvbm9y'>Ring of Honor</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/CodyRhodes' title='/pmwiki/pmwiki.php/Wrestling/CodyRhodes' data-format='V3Jlc3RsaW5nL3t7Q29keXxSaG9kZXN9fQ=='>Cody</a> took <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TheWrestlingObserverNewsletter' title='/pmwiki/pmwiki.php/Wrestling/TheWrestlingObserverNewsletter' data-format='W1tXcmVzdGxpbmcvVGhlV3Jlc3RsaW5nT2JzZXJ2ZXJOZXdzbGV0dGVyIERhdmUgTWVsdHplciYjMDM5O3NdXQ=='>Dave Meltzer's</a> claim ROH couldn't draw 10,000 fans into an arena as a challenge. But when ROH instead gave Cody and <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TheYoungBucks' title='/pmwiki/pmwiki.php/Wrestling/TheYoungBucks' data-format='V3Jlc3RsaW5nL1RoZVlvdW5nQnVja3M='>The Young Bucks</a> the okay to try to draw a crowd that large on their own, <em>All In</em> did just that and then some. The show's success led to the trio meeting billionaire Tony Khan, and with his finances, and a roster of departing ex-ROH talent, AEW was formed. It ended up becoming a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='TW9yZVBvcHVsYXJTcGlub2Zm'>More Popular Spin-Off</a>, with Khan buying ROH in 2022 and rebooting it as a sister promotion to AEW. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Radio&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> </p><p><ul ><li> The rare example of the nonfiction spinoff: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/ThisAmericanLife' title='/pmwiki/pmwiki.php/Radio/ThisAmericanLife' data-format='UmFkaW8vVGhpc0FtZXJpY2FuTGlmZQ=='>This American Life</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/Serial' title='/pmwiki/pmwiki.php/Podcast/Serial' data-format='UG9kY2FzdC97e1NlcmlhbH19'>Serial</a></em>. <em>Serial</em> takes the essential format of a <em>This American Life</em> investigative story (which typically lasts 15-20 minutes, although sometimes it can take a whole hour) and stretches it out over a twelve-episode season's worth of 45-minute(ish) episodes. It was explicitly called a spinoff by the <em>TAL</em> crew, features <em>TAL</em> producer Sarah Koenig as its presenter/investigator/producer, and inherits a lot of both personnel and style from the mothership. It was also launched by a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' title='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' data-format='W1tQb29ybHlEaXNndWlzZWRQaWxvdCBjb21wbGV0ZWx5IHVuZGlzZ3Vpc2VkIHBpbG90XV0='>completely undisguised pilot</a>, in which the first episode of <em>Serial</em> was aired as an episode of <em>This American Life</em> (Episode #537, "The Alibi"). </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Radio/Eileen1999' title='/pmwiki/pmwiki.php/Radio/Eileen1999' data-format='UmFkaW8ve3tFaWxlZW58MTk5OX19'>Eileen</a></em> is a spin-off from Welsh-language TV soap opera <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PobolYCwm' title='/pmwiki/pmwiki.php/Series/PobolYCwm' data-format='U2VyaWVzL1BvYm9sWUN3bQ=='>Pobol y Cwm</a></em>, following the titular character after she moves away from the village of Cwmderi. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/FibberMcGeeAndMolly' title='/pmwiki/pmwiki.php/Radio/FibberMcGeeAndMolly' data-format='UmFkaW8vRmliYmVyTWNHZWVBbmRNb2xseQ=='>Fibber McGee and Molly</a></em> helped pioneer this in American broadcasting, with <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/TheGreatGildersleeve' title='/pmwiki/pmwiki.php/Radio/TheGreatGildersleeve' data-format='UmFkaW8vVGhlR3JlYXRHaWxkZXJzbGVldmU='>The Great Gildersleeve</a></em> (centered on the <span class='esc-seq' title='non-wikiword'>McGees'</span> blowhard neighbor after he moved away) and <em>Beulah</em> (the <span class='esc-seq' title='non-wikiword'>McGees'</span> maid goes to work for a new family). <em>Beulah</em> was the first radio show to star an African-American performer, and successfully moved to television. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/ImSorryIHaventAClue' title='/pmwiki/pmwiki.php/Radio/ImSorryIHaventAClue' data-format='UmFkaW8vSW1Tb3JyeUlIYXZlbnRBQ2x1ZQ=='>I'm Sorry I Haven't a Clue</a></em>: <ul ><li> The show was spun off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/ImSorryIllReadThatAgain' title='/pmwiki/pmwiki.php/Radio/ImSorryIllReadThatAgain' data-format='UmFkaW8vSW1Tb3JyeUlsbFJlYWRUaGF0QWdhaW4='>I'm Sorry I'll Read That Again</a></em>, featuring (at first) most of the same performers (plus Humphrey Lyttelton as chairman) but in a ridiculous <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PanelGame' title='/pmwiki/pmwiki.php/Main/PanelGame' data-format='UGFuZWxHYW1l'>Panel Game</a> rather than a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SketchShow' title='/pmwiki/pmwiki.php/Main/SketchShow' data-format='U2tldGNoU2hvdw=='>Sketch Show</a>. It has been running <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LongRunners' title='/pmwiki/pmwiki.php/Main/LongRunners' data-format='W1tMb25nUnVubmVycyBzaW5jZSAxOTcyXV0='>since 1972</a>, far <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinOff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinOff' data-format='W1tNb3JlUG9wdWxhclNwaW5PZmYgc3VycGFzc2luZ11d'>surpassing</a> the original (which had a very respectable run itself). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/ImSorryIHaventAClue' title='/pmwiki/pmwiki.php/Radio/ImSorryIHaventAClue' data-format='UmFkaW8vSW1Tb3JyeUlIYXZlbnRBQ2x1ZQ=='>I'm Sorry I Haven't a Clue</a></em> eventually got a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOff' title='/pmwiki/pmwiki.php/Main/SpinOff' data-format='U3Bpbk9mZg=='>Spin-Off</a> of its own. In one of the games, which involves improvising a comedic dialogue that suggests the title of a book, film etc. (usually by way of an elaborate pun), one pair of contestants would usually adopt the characters of a pair of eccentric Scotsmen, exchanging numerous puns and double-entendres along the way. These characters were spun off into their own scripted comedy series, <em>You'll Have Had Your Tea: The Doings of <a class='twikilink' href='/pmwiki/pmwiki.php/Radio/HamishAndDougal' title='/pmwiki/pmwiki.php/Radio/HamishAndDougal' data-format='UmFkaW8vSGFtaXNoQW5kRG91Z2Fs'>Hamish and Dougal</a></em>. </li></ul></li><li> <em>It Sticks Out Half a Mile</em> was a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DadsArmy' title='/pmwiki/pmwiki.php/Series/DadsArmy' data-format='U2VyaWVzL0RhZHNBcm15'>Dad's Army</a></em> broadcast between 1983-84. It centred around Hodges, Pike, and Wilson teaming up to renovate the abandoned pier in a nearby seaside town. The pilot featured Mainwaring and Wilson, but <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ArthurLowe' title='/pmwiki/pmwiki.php/Creator/ArthurLowe' data-format='Q3JlYXRvci9BcnRodXJMb3dl'>Arthur Lowe</a> died soon afterwards, and Mainwaring was replaced with Hodges. Then, when <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JohnLeMesurier' title='/pmwiki/pmwiki.php/Creator/JohnLeMesurier' data-format='Q3JlYXRvci9Kb2huTGVNZXN1cmllcg=='>John Le Mesurier</a> passed away after recording one series, it was decided to just put it to rest (as a direct <em>Dad's Army</em> spin-off, at least). It was later turned into an original TV series called <em>High &amp; Dry</em> starring <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BernardCribbins' title='/pmwiki/pmwiki.php/Creator/BernardCribbins' data-format='Q3JlYXRvci9CZXJuYXJkQ3JpYmJpbnM='>Bernard Cribbins</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RichardWilson' title='/pmwiki/pmwiki.php/Creator/RichardWilson' data-format='Q3JlYXRvci9SaWNoYXJkV2lsc29u'>Richard Wilson</a>. <!-- * SoundToScreenAdaptation example: "Dave Hollins Space Cadet" in ''Son of Cliche'' --&gt; ''Series/RedDwarf''--> </li></ul></div> <!--&#010;--> <!--<div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Roleplay&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;">--> <!-- * ''Roleplay/SurvivalOfTheFittest'' → ''<span class='esc-seq' title='non-wikiword'>SOTF</span> Mini''--> <!--</div>--> </p><p><div class="folderlabel" onclick="togglefolder('folder14');">&nbsp;&nbsp;&nbsp;&nbsp;Theatre&nbsp;</div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> One of the earliest known spinoffs comes from the work of <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' title='/pmwiki/pmwiki.php/Creator/WilliamShakespeare' data-format='Q3JlYXRvci9XaWxsaWFtU2hha2VzcGVhcmU='>William Shakespeare</a>: the character of Falstaff, an amalgam of several 14th- and 15th-century figures, who appeared as a secondary character in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/HenryIV' title='/pmwiki/pmwiki.php/Theatre/HenryIV' data-format='VGhlYXRyZS9IZW5yeUlW'>Henry IV</a></em> (both <a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/HenryIVPart1' title='/pmwiki/pmwiki.php/Theatre/HenryIVPart1' data-format='W1tUaGVhdHJlL0hlbnJ5SVZQYXJ0MSBQYXJ0IDFdXQ=='>Part 1</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/HenryIVPart2' title='/pmwiki/pmwiki.php/Theatre/HenryIVPart2' data-format='W1tUaGVhdHJlL0hlbnJ5SVZQYXJ0MiBQYXJ0IDJdXQ=='>Part 2</a>), who was given his own play in the form of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/TheMerryWivesOfWindsor' title='/pmwiki/pmwiki.php/Theatre/TheMerryWivesOfWindsor' data-format='VGhlYXRyZS9UaGVNZXJyeVdpdmVzT2ZXaW5kc29y'>The Merry Wives of Windsor</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');">&nbsp;&nbsp;&nbsp;&nbsp;Toys&nbsp;</div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/AmericanGirl' title='/pmwiki/pmwiki.php/Toys/AmericanGirl' data-format='VG95cy9BbWVyaWNhbkdpcmw='>American Girl</a></em> has done this multiple times. The Bitty Baby line started as "Our New Baby," designed to introduce children to the concept of a new baby in the house and is now its own brand. AG Minis was a brand of minature light-up rooms that let buyers <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnInteriorDecoratorIsYou' title='/pmwiki/pmwiki.php/Main/AnInteriorDecoratorIsYou' data-format='W1tBbkludGVyaW9yRGVjb3JhdG9ySXNZb3UgZGVzaWduIHNtYWxsIHJvb21zXV0='>design small rooms</a>, aimed at older children. The <a class='twikilink' href='/pmwiki/pmwiki.php/Toys/WellieWishers' title='/pmwiki/pmwiki.php/Toys/WellieWishers' data-format='VG95cy9XZWxsaWVXaXNoZXJz'>WellieWishers</a> line is the more sucessful attempt to fill the age gap between the Bitty Baby and main line, as there was no AG brand specifically aimed at early elementary students (which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanTheyThink' title='/pmwiki/pmwiki.php/Main/OlderThanTheyThink' data-format='W1tPbGRlclRoYW5UaGV5VGhpbmsgd2FzIGZpcnN0IGF0dGVtcHRlZF1d'>was first attempted</a> as the Hopscotch Hill brand.) <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GirlsOfManyLands' title='/pmwiki/pmwiki.php/Literature/GirlsOfManyLands' data-format='TGl0ZXJhdHVyZS9HaXJsc09mTWFueUxhbmRz'>Girls of Many Lands</a></em> was an attempt to aim at older consumers again, with display dolls and chapter books focused on girls around the world instead of just within the United States. And the 22-book series <em>History Mysteries</em> focused on mystery stories that were set at times in American History that&#8212;at the time of the series&#8212;hadn't been covered by the main historical characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/MonsterHigh' title='/pmwiki/pmwiki.php/Toys/MonsterHigh' data-format='VG95cy9Nb25zdGVySGlnaA=='>Monster High</a></em> had the spin off <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/EverAfterHigh' title='/pmwiki/pmwiki.php/Toys/EverAfterHigh' data-format='VG95cy9FdmVyQWZ0ZXJIaWdo'>Ever After High</a></em>, which focused on the children of fairy tale characters; they were connected by the character C. A. Cupid, who transferred from one school to the other. </li><li> In 1986, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MyLittlePony' title='/pmwiki/pmwiki.php/Franchise/MyLittlePony' data-format='RnJhbmNoaXNlL015TGl0dGxlUG9ueQ=='>My Little Pony</a></em> introduced the Pony Friends, which was the Little Pony concept applied to animals that aren't ponies. The Pony Friends are part of the regular <em>My Little Pony</em> line, but that same year a separate line was launched called <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/FairyTails' title='/pmwiki/pmwiki.php/Toys/FairyTails' data-format='VG95cy9GYWlyeVRhaWxz'>Fairy Tails</a></em>, which stars birds. It was a short-lived line. Another Spin-Off followed in 1991 with <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/MyPrettyMermaids' title='/pmwiki/pmwiki.php/Toys/MyPrettyMermaids' data-format='VG95cy9NeVByZXR0eU1lcm1haWRz'>My Pretty Mermaids</a></em>, which takes the Little Pony concept and applies it to mermaids. Of course, its launch year coincided with a development in the <em>My Little Pony</em> lineup, namely the introduction of the Fancy Mermaid Ponies. As with <em>Fairy Tails</em>, <em>My Pretty Mermaids</em> was short-lived. And although the three lines and their stories are separate, they do have a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecurringElement' title='/pmwiki/pmwiki.php/Main/RecurringElement' data-format='UmVjdXJyaW5nRWxlbWVudA=='>Recurring Element</a> in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EverythingsBetterWithRainbows' title='/pmwiki/pmwiki.php/Main/EverythingsBetterWithRainbows' data-format='W1tFdmVyeXRoaW5nc0JldHRlcldpdGhSYWluYm93cyByYWluYm93XV0='>rainbow</a>, which is always used as a point of reference where the characters live. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder16');">&nbsp;&nbsp;&nbsp;&nbsp;Video Games&nbsp;</div><div id="folder16" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GhostsNGoblins' title='/pmwiki/pmwiki.php/VideoGame/GhostsNGoblins' data-format='VmlkZW9HYW1lL0dob3N0c05Hb2JsaW5z'>Ghosts 'n Goblins</a></em>'s recurring enemy the Red Arremer became such an infamous bane to arcade goers that it received its own subseries of action-<span class='esc-seq' title='non-wikiword'>RPGs</span>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GargoylesQuest' title='/pmwiki/pmwiki.php/VideoGame/GargoylesQuest' data-format='VmlkZW9HYW1lL0dhcmdveWxlc1F1ZXN0'>Gargoyle's Quest</a></em>. To a lesser extent, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MaximoGhostsToGlory' title='/pmwiki/pmwiki.php/VideoGame/MaximoGhostsToGlory' data-format='VmlkZW9HYW1lL01heGltb0dob3N0c1RvR2xvcnk='>Maximo: Ghosts to Glory</a></em> and its sequel are considered a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' title='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' data-format='U3Bpcml0dWFsU3VjY2Vzc29y'>Spiritual Successor</a> to the <em>Ghosts 'n Goblins</em> line but played in a 3D space. </li><li> <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> had a spin off series. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/AceAttorneyInvestigationsMilesEdgeworth' title='/pmwiki/pmwiki.php/VisualNovel/AceAttorneyInvestigationsMilesEdgeworth' data-format='VmlzdWFsTm92ZWwvQWNlQXR0b3JuZXlJbnZlc3RpZ2F0aW9uc01pbGVzRWRnZXdvcnRo'>Ace Attorney Investigations: Miles Edgeworth</a></em> was a mystery solving game and featured the prosecutor from the first game as the main character. <!-- * ''VideoGame/{{Lemmings}}'' → ''VideoGame/TheAdventuresOfLomax''--> </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Portal' title='/pmwiki/pmwiki.php/VideoGame/Portal' data-format='VmlkZW9HYW1lL3t7UG9ydGFsfX0='>Portal</a></em> <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Portal2' title='/pmwiki/pmwiki.php/VideoGame/Portal2' data-format='W1tWaWRlb0dhbWUvUG9ydGFsMiBzZXJpZXNdXQ=='>series</a> is a spinoff from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HalfLife' title='/pmwiki/pmwiki.php/VideoGame/HalfLife' data-format='VmlkZW9HYW1lL0hhbGZMaWZl'>Half-Life</a></em>. It features new characters and setting, but has references to the events of Half-Life. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/ShinMegamiTensei' title='/pmwiki/pmwiki.php/Franchise/ShinMegamiTensei' data-format='RnJhbmNoaXNlL1NoaW5NZWdhbWlUZW5zZWk='>Shin Megami Tensei</a></em> series has several concurrent timelines, with the main timeline and the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ShinMegamiTenseiIf' title='/pmwiki/pmwiki.php/VideoGame/ShinMegamiTenseiIf' data-format='W1tWaWRlb0dhbWUvU2hpbk1lZ2FtaVRlbnNlaUlmIGlmLi4uXV0='>if...</a></em>/<em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Persona' title='/pmwiki/pmwiki.php/Franchise/Persona' data-format='RnJhbmNoaXNlL3t7UGVyc29uYX19'>Persona</a></em> timeline being the most notable ones. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ShinMegamiTenseiNocturne' title='/pmwiki/pmwiki.php/VideoGame/ShinMegamiTenseiNocturne' data-format='W1tWaWRlb0dhbWUvU2hpbk1lZ2FtaVRlbnNlaU5vY3R1cm5lIE5vY3R1cm5lXV0='>Nocturne</a></em> implies that many if not all the timelines are canon within the same multiverse. <em>Shin Megami Tensei</em> itself was a spinoff of the original <em>Megami Tensei</em> games on the Famicom, although the name change was mostly due to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WritingAroundTrademarks' title='/pmwiki/pmwiki.php/Main/WritingAroundTrademarks' data-format='W1tXcml0aW5nQXJvdW5kVHJhZGVtYXJrcyB0cmFkZW1hcmsgcmVhc29uc11d'>trademark reasons</a>, as the original <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MegamiTensei' title='/pmwiki/pmwiki.php/VideoGame/MegamiTensei' data-format='VmlkZW9HYW1lL01lZ2FtaVRlbnNlaQ=='>Megami Tensei</a></em> was a tie-in to the first book in Aya Nishitani's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DigitalDevilStory' title='/pmwiki/pmwiki.php/Literature/DigitalDevilStory' data-format='TGl0ZXJhdHVyZS9EaWdpdGFsRGV2aWxTdG9yeQ=='>Digital Devil Story</a></em> series. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Persona' title='/pmwiki/pmwiki.php/Franchise/Persona' data-format='RnJhbmNoaXNlL3t7UGVyc29uYX19'>Persona</a></em> RPG subseries itself has multiple spin-offs. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona4Arena' title='/pmwiki/pmwiki.php/VideoGame/Persona4Arena' data-format='VmlkZW9HYW1lL1BlcnNvbmE0QXJlbmE='>Persona 4 Arena</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona4ArenaUltimax' title='/pmwiki/pmwiki.php/VideoGame/Persona4ArenaUltimax' data-format='VmlkZW9HYW1lL1BlcnNvbmE0QXJlbmFVbHRpbWF4'>Persona 4 Arena Ultimax</a></em> are fighting game sequels to <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona3' title='/pmwiki/pmwiki.php/VideoGame/Persona3' data-format='VmlkZW9HYW1lL1BlcnNvbmEz'>Persona 3</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona4' title='/pmwiki/pmwiki.php/VideoGame/Persona4' data-format='VmlkZW9HYW1lL1BlcnNvbmE0'>Persona 4</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona3DancingInMoonlight' title='/pmwiki/pmwiki.php/VideoGame/Persona3DancingInMoonlight' data-format='VmlkZW9HYW1lL1BlcnNvbmEzRGFuY2luZ0luTW9vbmxpZ2h0'>Persona 3: Dancing in Moonlight</a></em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RhythmGame' title='/pmwiki/pmwiki.php/Main/RhythmGame' data-format='Umh5dGhtR2FtZQ=='>Rhythm Game</a> side story to <em>Persona 3</em>, while <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona4DancingAllNight' title='/pmwiki/pmwiki.php/VideoGame/Persona4DancingAllNight' data-format='VmlkZW9HYW1lL1BlcnNvbmE0RGFuY2luZ0FsbE5pZ2h0'>Persona 4: Dancing All Night</a></em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RhythmGame' title='/pmwiki/pmwiki.php/Main/RhythmGame' data-format='Umh5dGhtR2FtZQ=='>Rhythm Game</a> sequel to <em>Persona 4</em>, and <em> <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Persona5DancingInStarlight' title='/pmwiki/pmwiki.php/VideoGame/Persona5DancingInStarlight' data-format='VmlkZW9HYW1lL1BlcnNvbmE1RGFuY2luZ0luU3RhcmxpZ2h0'>Persona 5: Dancing in Starlight</a></em> is this to <em>Persona 5</em>. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PersonaQShadowOfTheLabyrinth' title='/pmwiki/pmwiki.php/VideoGame/PersonaQShadowOfTheLabyrinth' data-format='VmlkZW9HYW1lL1BlcnNvbmFRU2hhZG93T2ZUaGVMYWJ5cmludGg='>Persona Q: Shadow of the Labyrinth</a></em> is a crossover of <em>Persona 3</em> and <em>4</em> with <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/EtrianOdyssey' title='/pmwiki/pmwiki.php/VideoGame/EtrianOdyssey' data-format='VmlkZW9HYW1lL0V0cmlhbk9keXNzZXk='>Etrian Odyssey</a></em>-style gameplay, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PersonaQ2NewCinemaLabyrinth' title='/pmwiki/pmwiki.php/VideoGame/PersonaQ2NewCinemaLabyrinth' data-format='VmlkZW9HYW1lL1BlcnNvbmFRMk5ld0NpbmVtYUxhYnlyaW50aA=='>Persona Q2: New Cinema Labyrinth</a></em> adds <em>5</em> to the mix. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DynastyWarriors' title='/pmwiki/pmwiki.php/VideoGame/DynastyWarriors' data-format='VmlkZW9HYW1lL0R5bmFzdHlXYXJyaW9ycw=='>Dynasty Warriors</a></em> franchise was successful enough to spawn quite a few spinoffs. The spinoffs basically just take the original mob hack'n'slash gameplay formula of <em>Dynasty Warriors</em>, and apply it to different settings and universes. Some of them are even licensed properties, such as anime, manga, or other video game franchises. <ul ><li> The <em>Empires</em> expansions are spinoffs of the main games. They contain the same hack'n'slash core gameplay for battles, but with a more strategic approach, allowing for battle formations, politics, kingdom-building, and simulation. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SamuraiWarriors' title='/pmwiki/pmwiki.php/VideoGame/SamuraiWarriors' data-format='VmlkZW9HYW1lL1NhbXVyYWlXYXJyaW9ycw=='>Samurai Warriors</a></em> originally started as a spinoff to <em>Dynasty Warriors</em>. Its popularity and success has lead it to becoming its own separate series, with its own spinoffs, sequels, and expansions. Yep, this is a spinoff that spawned spinoffs of itself. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/WarriorsOrochi' title='/pmwiki/pmwiki.php/VideoGame/WarriorsOrochi' data-format='VmlkZW9HYW1lL1dhcnJpb3JzT3JvY2hp'>Warriors Orochi</a></em> was a spinoff that brought the cast of Dynasty Warriors and Samurai Warriors together. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DynastyWarriorsGundam' title='/pmwiki/pmwiki.php/VideoGame/DynastyWarriorsGundam' data-format='VmlkZW9HYW1lL0R5bmFzdHlXYXJyaW9yc0d1bmRhbQ=='>Dynasty Warriors: Gundam</a></em>, crossed over with the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Gundam' title='/pmwiki/pmwiki.php/Franchise/Gundam' data-format='RnJhbmNoaXNlL3t7R3VuZGFtfX0='>Gundam</a></em> franchise. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FistOfTheNorthStarKensRage' title='/pmwiki/pmwiki.php/VideoGame/FistOfTheNorthStarKensRage' data-format='VmlkZW9HYW1lL0Zpc3RPZlRoZU5vcnRoU3RhcktlbnNSYWdl'>Fist of the North Star: Ken's Rage</a></em>, based on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FistOfTheNorthStar' title='/pmwiki/pmwiki.php/Manga/FistOfTheNorthStar' data-format='TWFuZ2EvRmlzdE9mVGhlTm9ydGhTdGFy'>Fist of the North Star</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/OnePiecePirateWarriors' title='/pmwiki/pmwiki.php/VideoGame/OnePiecePirateWarriors' data-format='VmlkZW9HYW1lL09uZVBpZWNlUGlyYXRlV2FycmlvcnM='>One Piece: Pirate Warriors</a></em>, based on the popular manga <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/OnePiece' title='/pmwiki/pmwiki.php/Manga/OnePiece' data-format='TWFuZ2EvT25lUGllY2U='>One Piece</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HyruleWarriors' title='/pmwiki/pmwiki.php/VideoGame/HyruleWarriors' data-format='VmlkZW9HYW1lL0h5cnVsZVdhcnJpb3Jz'>Hyrule Warriors</a></em>, based on the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheLegendOfZelda' title='/pmwiki/pmwiki.php/Franchise/TheLegendOfZelda' data-format='RnJhbmNoaXNlL1RoZUxlZ2VuZE9mWmVsZGE='>The Legend of Zelda</a></em> franchise. It is also one to <em>The Legend Of Zelda</em>. A non-canon entry handled by Tecmo-Koei that uses gameplay similar to <em>Dynasty Warriors</em> but with a <em>Zelda</em> twist (like incorporating <em>Zelda</em> items into combat). It's basically <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/XMeetsY' title='/pmwiki/pmwiki.php/JustForFun/XMeetsY' data-format='W1tKdXN0Rm9yRnVuL1hNZWV0c1kgWmVsZGEgbWVldHMgRHluYXN0eSBXYXJyaW9yc11d'>Zelda meets Dynasty Warriors</a>. In 2020, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HyruleWarriorsAgeOfCalamity' title='/pmwiki/pmwiki.php/VideoGame/HyruleWarriorsAgeOfCalamity' data-format='VmlkZW9HYW1lL0h5cnVsZVdhcnJpb3JzQWdlT2ZDYWxhbWl0eQ=='>Hyrule Warriors: Age of Calamity</a></em>, based in <span class="spoiler" title="you can set spoilers visible by default on your profile" >and ultimately, an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlternateTimeline' title='/pmwiki/pmwiki.php/Main/AlternateTimeline' data-format='QWx0ZXJuYXRlVGltZWxpbmU='>Alternate Timeline</a> game to</span> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheLegendOfZeldaBreathOfTheWild' title='/pmwiki/pmwiki.php/VideoGame/TheLegendOfZeldaBreathOfTheWild' data-format='VmlkZW9HYW1lL1RoZUxlZ2VuZE9mWmVsZGFCcmVhdGhPZlRoZVdpbGQ='>The Legend of Zelda: Breath of the Wild</a></em> was released. </li><li> <em>Arslan: The Warriors of Legend</em>, based on the 2015 anime adaptation of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHeroicLegendOfArslan' title='/pmwiki/pmwiki.php/Literature/TheHeroicLegendOfArslan' data-format='TGl0ZXJhdHVyZS9UaGVIZXJvaWNMZWdlbmRPZkFyc2xhbg=='>The Heroic Legend of Arslan</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BerserkAndTheBandOfTheHawk' title='/pmwiki/pmwiki.php/VideoGame/BerserkAndTheBandOfTheHawk' data-format='VmlkZW9HYW1lL0JlcnNlcmtBbmRUaGVCYW5kT2ZUaGVIYXdr'>Berserk and the Band of the Hawk</a></em>, based on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Berserk' title='/pmwiki/pmwiki.php/Manga/Berserk' data-format='TWFuZ2Eve3tCZXJzZXJrfX0='>Berserk</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MusouStars' title='/pmwiki/pmwiki.php/VideoGame/MusouStars' data-format='VmlkZW9HYW1lL011c291U3RhcnM='>Musou Stars</a></em> was a spinoff that incorporated characters from across Koei Tecmo's intellectual properties. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FireEmblemWarriors' title='/pmwiki/pmwiki.php/VideoGame/FireEmblemWarriors' data-format='VmlkZW9HYW1lL0ZpcmVFbWJsZW1XYXJyaW9ycw=='>Fire Emblem Warriors</a></em>, based on the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/FireEmblem' title='/pmwiki/pmwiki.php/Franchise/FireEmblem' data-format='RnJhbmNoaXNlL0ZpcmVFbWJsZW0='>Fire Emblem</a></em> video game franchise. Like <em>Zelda</em> above, is also one to the <em>Fire Emblem</em> franchise, as well as a non-canon entry handled by Tecmo-Koei that uses gameplay similar to <em>Dynasty Warriors</em> but with a <em>Fire Emblem</em> twist (like incorporating <em>Fire Emblem</em> strategic elements into combat). It's basically <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/XMeetsY' title='/pmwiki/pmwiki.php/JustForFun/XMeetsY' data-format='W1tKdXN0Rm9yRnVuL1hNZWV0c1kgRmlyZSBFbWJsZW0gbWVldHMgRHluYXN0eSBXYXJyaW9yc11d'>Fire Emblem meets Dynasty Warriors</a>. Similarly to <em>Age of Calamity</em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatIf' title='/pmwiki/pmwiki.php/Main/WhatIf' data-format='V2hhdElm'>What If?</a> game based on <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FireEmblemThreeHouses' title='/pmwiki/pmwiki.php/VideoGame/FireEmblemThreeHouses' data-format='VmlkZW9HYW1lL0ZpcmVFbWJsZW1UaHJlZUhvdXNlcw=='>Fire Emblem: Three Houses</a></em>, named <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FireEmblemWarriorsThreeHopes' title='/pmwiki/pmwiki.php/VideoGame/FireEmblemWarriorsThreeHopes' data-format='VmlkZW9HYW1lL0ZpcmVFbWJsZW1XYXJyaW9yc1RocmVlSG9wZXM='>Fire Emblem Warriors: Three Hopes</a></em>, was released in 2022. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GwentTheWitcherCardGame' title='/pmwiki/pmwiki.php/VideoGame/GwentTheWitcherCardGame' data-format='VmlkZW9HYW1lL0d3ZW50VGhlV2l0Y2hlckNhcmRHYW1l'>Gwent: The Witcher Card Game</a></em>: Popular demand for more of the sidequest <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MiniGame' title='/pmwiki/pmwiki.php/Main/MiniGame' data-format='TWluaUdhbWU='>Mini-Game</a> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheWitcher3WildHunt' title='/pmwiki/pmwiki.php/VideoGame/TheWitcher3WildHunt' data-format='VmlkZW9HYW1lL1RoZVdpdGNoZXIzV2lsZEh1bnQ='>The Witcher 3: Wild Hunt</a></em> led to this standalone game. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/SuperMarioBros' title='/pmwiki/pmwiki.php/Franchise/SuperMarioBros' data-format='W1tGcmFuY2hpc2UvU3VwZXJNYXJpb0Jyb3MgTWFyaW9dXQ=='>Mario</a></em> franchise has <em>loads</em> of spinoffs, since only the mainline platformer games are officially the core installments. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MarioKart' title='/pmwiki/pmwiki.php/VideoGame/MarioKart' data-format='VmlkZW9HYW1lL01hcmlvS2FydA=='>Mario Kart</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MarioParty' title='/pmwiki/pmwiki.php/VideoGame/MarioParty' data-format='VmlkZW9HYW1lL01hcmlvUGFydHk='>Mario Party</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MarioGolf' title='/pmwiki/pmwiki.php/VideoGame/MarioGolf' data-format='VmlkZW9HYW1lL01hcmlvR29sZg=='>Mario Golf</a></em> and other sports just to name a few. <em>Mario</em> itself is a spinoff of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/DonkeyKong' title='/pmwiki/pmwiki.php/Franchise/DonkeyKong' data-format='RnJhbmNoaXNlL0RvbmtleUtvbmc='>Donkey Kong</a></em> series, though the latter is treated as a spinoff of the former by most people, including Nintendo. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/LuigisMansion' title='/pmwiki/pmwiki.php/VideoGame/LuigisMansion' data-format='VmlkZW9HYW1lL0x1aWdpc01hbnNpb24='>Luigi's Mansion</a></em> is one starred by Mario's brother Luigi, serving as a family-friendly take on the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SurvivalHorror' title='/pmwiki/pmwiki.php/Main/SurvivalHorror' data-format='U3Vydml2YWxIb3Jyb3I='>Survival Horror</a> genre, mixed with puzzle-solving and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DefangedHorrors' title='/pmwiki/pmwiki.php/Main/DefangedHorrors' data-format='RGVmYW5nZWRIb3Jyb3Jz'>Defanged Horrors</a>. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Wario' title='/pmwiki/pmwiki.php/VideoGame/Wario' data-format='VmlkZW9HYW1lL3t7V2FyaW99fQ=='>Wario</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YoshisIsland' title='/pmwiki/pmwiki.php/VideoGame/YoshisIsland' data-format='VmlkZW9HYW1lL1lvc2hpc0lzbGFuZA=='>Yoshi's Island</a></em> series are spinoffs of the <em>Mario</em> series that have developed enough of their own identity to be considered franchises in their own right. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SuperMario3DWorld' title='/pmwiki/pmwiki.php/VideoGame/SuperMario3DWorld' data-format='VmlkZW9HYW1lL1N1cGVyTWFyaW8zRFdvcmxk'>Super Mario 3D World</a></em> gave Captain Toad, whom originated from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SuperMarioGalaxy' title='/pmwiki/pmwiki.php/VideoGame/SuperMarioGalaxy' data-format='VmlkZW9HYW1lL1N1cGVyTWFyaW9HYWxheHk='>Super Mario Galaxy</a></em>, his own personal levels. They served as a sort of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BackdoorPilot' title='/pmwiki/pmwiki.php/Main/BackdoorPilot' data-format='W1tCYWNrZG9vclBpbG90IGJhY2tkb29yIHBpbG90XV0='>backdoor pilot</a>, as they eventually spun-off into their own full-fledged game: <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CaptainToadTreasureTracker' title='/pmwiki/pmwiki.php/VideoGame/CaptainToadTreasureTracker' data-format='VmlkZW9HYW1lL0NhcHRhaW5Ub2FkVHJlYXN1cmVUcmFja2Vy'>Captain Toad: Treasure Tracker</a></em>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/LikeADragon' title='/pmwiki/pmwiki.php/VideoGame/LikeADragon' data-format='VmlkZW9HYW1lL0xpa2VBRHJhZ29u'>Like a Dragon</a></em> (formerly <em>Yakuza</em>) has several: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Judgment' title='/pmwiki/pmwiki.php/VideoGame/Judgment' data-format='VmlkZW9HYW1lL3t7SnVkZ21lbnR9fQ=='>Judgment</a></em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GaidenGame' title='/pmwiki/pmwiki.php/Main/GaidenGame' data-format='R2FpZGVuR2FtZQ=='>Gaiden Game</a> that uses the general setting of <em>Yakuza</em> and the Tojo Clan, but none of the central characters appear besides a few shout outs here and there. The action instead focuses on disgraced lawyer turned <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrivateDetective' title='/pmwiki/pmwiki.php/Main/PrivateDetective' data-format='UHJpdmF0ZURldGVjdGl2ZQ=='>Private Detective</a> Takayuki Yagami as he searches through Kamurocho's underworld for a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SerialKiller' title='/pmwiki/pmwiki.php/Main/SerialKiller' data-format='U2VyaWFsS2lsbGVy'>Serial Killer</a>, while also dealing with some of the franchises trademark wackyness along the way. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/RyuGaGotokuKenzan' title='/pmwiki/pmwiki.php/VideoGame/RyuGaGotokuKenzan' data-format='VmlkZW9HYW1lL1J5dUdhR290b2t1S2VuemFu'>Ry&#363; ga Gotoku Kenzan!</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/RyuGaGotokuIshin' title='/pmwiki/pmwiki.php/VideoGame/RyuGaGotokuIshin' data-format='VmlkZW9HYW1lL1J5dUdhR290b2t1SXNoaW4='>Ry&#363; ga Gotoku Ishin!</a></em>, a pair of (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoExportForYou' title='/pmwiki/pmwiki.php/Main/NoExportForYou' data-format='W1tOb0V4cG9ydEZvcllvdSBKYXBhbiBleGNsdXNpdmVdXQ=='>Japan exclusive</a>) <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Jidaigeki' title='/pmwiki/pmwiki.php/Main/Jidaigeki' data-format='e3tKaWRhaWdla2l9fQ=='>Jidaigeki</a> spinoffs that see the main <em>Yakuza</em> characters taking up the roles of various real-life figures in Japanese history (with Kiryu "playing" the role of Miyamoto Musashi and Sakamoto Ryoma, respectively). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YakuzaDeadSouls' title='/pmwiki/pmwiki.php/VideoGame/YakuzaDeadSouls' data-format='VmlkZW9HYW1lL1lha3V6YURlYWRTb3Vscw=='>Yakuza: Dead Souls</a></em>; <em>Yakuza</em> <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/RecycledInSpace' title='/pmwiki/pmwiki.php/JustForFun/RecycledInSpace' data-format='W1tKdXN0Rm9yRnVuL1JlY3ljbGVkSW5TcGFjZSBBUyBBIFRISVJEIFBFUlNPTiBaT01CSUUgU0hPT1RFUiFdXQ=='>AS A THIRD PERSON ZOMBIE SHOOTER!</a> Nearly became a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FranchiseKiller' title='/pmwiki/pmwiki.php/Main/FranchiseKiller' data-format='RnJhbmNoaXNlS2lsbGVy'>Franchise Killer</a> in the U.S. due to its poor reception. </li><li> <em>Black Panther</em>, another Japan exclusive for the PSP, focused on a delinquent named Tatsuya Ukyo as he tries to survive after killing a Tojo associate in a botched robbery. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FistOfTheNorthStarLostParadise' title='/pmwiki/pmwiki.php/VideoGame/FistOfTheNorthStarLostParadise' data-format='VmlkZW9HYW1lL0Zpc3RPZlRoZU5vcnRoU3Rhckxvc3RQYXJhZGlzZQ=='>Fist of the North Star: Lost Paradise</a></em>, a licensed spin-off based on the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/FistOfTheNorthStar' title='/pmwiki/pmwiki.php/Manga/FistOfTheNorthStar' data-format='TWFuZ2EvRmlzdE9mVGhlTm9ydGhTdGFy'>Fist of the North Star</a></em> series, placing the characters and setting of the manga into the <em>Yakuza</em> games' engine, with <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TakayaKuroda' title='/pmwiki/pmwiki.php/Creator/TakayaKuroda' data-format='Q3JlYXRvci9UYWtheWFLdXJvZGE='>Takaya Kuroda</a>, the voice of <em>Yakuza</em> protagonist Kazuma Kiryu, portraying Kenshiro. </li></ul></li><li> An interesting case with <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CommandAndConquerRedAlertSeries' title='/pmwiki/pmwiki.php/VideoGame/CommandAndConquerRedAlertSeries' data-format='W1tWaWRlb0dhbWUvQ29tbWFuZEFuZENvbnF1ZXJSZWRBbGVydFNlcmllcyBSZWQgQWxlcnRdXQ=='>Red Alert</a></em>, which was originally supposed to be a prequel to <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CommandAndConquer' title='/pmwiki/pmwiki.php/VideoGame/CommandAndConquer' data-format='VmlkZW9HYW1lL0NvbW1hbmRBbmRDb25xdWVy'>Command & Conquer</a></em>. However, the tone of the game proved a little too campy for <em>C&amp;C</em>, so it was decided to split the series, despite Kane, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> of <em>C&amp;C</em> being present in the original <em>Red Alert</em>. As such, both series have moved on in separate directions. Some fans speculate that the two endings of <em>Red Alert</em> mark a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PointOfDivergence' title='/pmwiki/pmwiki.php/Main/PointOfDivergence' data-format='UG9pbnRPZkRpdmVyZ2VuY2U='>Point of Divergence</a>: the Allied victory results in the <em>Red Alert</em> series, while the Soviet victory (where Kane makes an appearance) results in the main <em>C&amp;C</em> series. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DragonSlayer' title='/pmwiki/pmwiki.php/VideoGame/DragonSlayer' data-format='VmlkZW9HYW1lL0RyYWdvblNsYXllcg=='>Dragon Slayer</a></em> series has split off into two seperate series: The <em>Xanadu</em> series, and the <em>Legend of Heroes</em> series. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='W1tNb3JlUG9wdWxhclNwaW5vZmYgQm90aCBwcm92ZWQgdG8gYmUgc28gcG9wdWxhcl1d'>Both proved to be so popular</a> that the <em>Dragon Slayer</em> moniker is no longer used, and the <em>Legend of Heroes</em> series even got its <em>own</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='TW9yZVBvcHVsYXJTcGlub2Zm'>More Popular Spin-Off</a> with the <em>Trails</em> series. </li><li> The arcade game <em>Grobda</em> is a spinoff of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Xevious' title='/pmwiki/pmwiki.php/VideoGame/Xevious' data-format='VmlkZW9HYW1lL3t7WGV2aW91c319'>Xevious</a></em>, which features tank enemies called Grobdas. </li><li> A lesser known arcade game called <em>Pistol Daimyo no Bouken</em> (The Adventures of Pistol Shogun), is a spinoff of the arcade game that was released in the U.S. on the <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/Turbografx16' title='/pmwiki/pmwiki.php/Platform/Turbografx16' data-format='UGxhdGZvcm0vVHVyYm9ncmFmeDE2'>Turbografx 16</a> as <em>Bravoman</em>, where Pistol Shogun appears as a boss. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Pokemon' title='/pmwiki/pmwiki.php/Franchise/Pokemon' data-format='RnJhbmNoaXNlL3t7UG9rZW1vbn19'>Pokémon</a></em> has had many, <em>many</em> spinoffs over the years. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonGo' title='/pmwiki/pmwiki.php/VideoGame/PokemonGo' data-format='VmlkZW9HYW1lL1Bva2Vtb25Hbw=='>Pokémon GO</a></em> is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AugmentedReality' title='/pmwiki/pmwiki.php/Main/AugmentedReality' data-format='QXVnbWVudGVkUmVhbGl0eQ=='>Augmented Reality</a> game where the player has to travel around the real world to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GottaCatchThemAll' title='/pmwiki/pmwiki.php/Main/GottaCatchThemAll' data-format='W1tHb3R0YUNhdGNoVGhlbUFsbCBjYXRjaCAmIzAzOTtlbSBhbGxdXQ=='>catch 'em all</a>. The game immediately blew up in popularity, casting the largest spotlight the franchise has had on itself since the late '90s. </li><li> Aside from <em>GO</em>, <em>Pokémon</em> has had plenty of other mobile games, including <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonDuel' title='/pmwiki/pmwiki.php/VideoGame/PokemonDuel' data-format='VmlkZW9HYW1lL1Bva2Vtb25EdWVs'>Pokémon Duel</a></em> (a digital board game), <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonMasters' title='/pmwiki/pmwiki.php/VideoGame/PokemonMasters' data-format='VmlkZW9HYW1lL1Bva2Vtb25NYXN0ZXJz'>Pokémon Masters</a></em> (a 3v3 game with similar combat to the main series) and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonQuest' title='/pmwiki/pmwiki.php/VideoGame/PokemonQuest' data-format='VmlkZW9HYW1lL1Bva2Vtb25RdWVzdA=='>Pokémon Quest</a></em> (an action-adventure game). </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Platform/PokemonMini' title='/pmwiki/pmwiki.php/Platform/PokemonMini' data-format='UGxhdGZvcm0vUG9rZW1vbk1pbmk='>Pokémon mini</a></em> was an entire <strong>console</strong> dedicated to small <em>Pokémon</em> spinoffs. It didn't stay on shelves long enough to get many, though. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DetectivePikachu' title='/pmwiki/pmwiki.php/VideoGame/DetectivePikachu' data-format='VmlkZW9HYW1lL0RldGVjdGl2ZVBpa2FjaHU='>Detective Pikachu</a></em> is a dialogue focused mystery-adventure game where the player is tasked with solving crimes alongside the titular character. It also spawned <a class='twikilink' href='/pmwiki/pmwiki.php/Film/PokemonDetectivePikachu' title='/pmwiki/pmwiki.php/Film/PokemonDetectivePikachu' data-format='W1tGaWxtL1Bva2Vtb25EZXRlY3RpdmVQaWthY2h1IGEgbW92aWVdXQ=='>a movie</a> in 2019 and <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DetectivePikachuReturns' title='/pmwiki/pmwiki.php/VideoGame/DetectivePikachuReturns' data-format='W1tWaWRlb0dhbWUvRGV0ZWN0aXZlUGlrYWNodVJldHVybnMgYSBzZXF1ZWxdXQ=='>a sequel</a> in 2023. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonStadium' title='/pmwiki/pmwiki.php/VideoGame/PokemonStadium' data-format='VmlkZW9HYW1lL1Bva2Vtb25TdGFkaXVt'>Pokémon Stadium</a></em> and its <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' title='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' data-format='U3Bpcml0dWFsU3VjY2Vzc29y'>Spiritual Successor</a>, <em>Battle Revolution</em> were recreations of the classic battle system featured in the mainline entries, but with 3D models for all of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Mon' title='/pmwiki/pmwiki.php/Main/Mon' data-format='e3tNb259fXM='>Mons</a>. The latter two <em>Stadium</em> titles also had various <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Minigame' title='/pmwiki/pmwiki.php/Main/Minigame' data-format='e3ttaW5pZ2FtZX19cw=='>minigames</a> for players tired of traditional battling. These games have seemingly been discontinued after <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VideoGame3DLeap' title='/pmwiki/pmwiki.php/Main/VideoGame3DLeap' data-format='W1tWaWRlb0dhbWUzRExlYXAgM0QgbW9kZWxzIGVudGVyZWQgdGhlIG1haW4gc2VyaWVzXV0='>3D models entered the main series</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonColosseum' title='/pmwiki/pmwiki.php/VideoGame/PokemonColosseum' data-format='VmlkZW9HYW1lL1Bva2Vtb25Db2xvc3NldW0='>Pokémon Colosseum</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonXDGaleOfDarkness' title='/pmwiki/pmwiki.php/VideoGame/PokemonXDGaleOfDarkness' data-format='W1tWaWRlb0dhbWUvUG9rZW1vblhER2FsZU9mRGFya25lc3MgWEQ6IEdhbGUgb2YgRGFya25lc3NdXQ=='>XD: Gale of Darkness</a></em> were, similarly to the <em>Stadium</em> series, adaptations of the standard <em>Pokémon</em> gameplay into 3D; however, these games also adapted the RPG progression of the main series, along with possessing a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkerAndEdgier' title='/pmwiki/pmwiki.php/Main/DarkerAndEdgier' data-format='RGFya2VyQW5kRWRnaWVy'>Darker and Edgier</a> story where the player steals and rehabilitates corrupted Pokémon from the villains. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonMysteryDungeon' title='/pmwiki/pmwiki.php/VideoGame/PokemonMysteryDungeon' data-format='VmlkZW9HYW1lL1Bva2Vtb25NeXN0ZXJ5RHVuZ2Vvbg=='>Pok&eacute;mon Mystery Dungeon</a></em>, the longest running spinoff series as of now, are entries in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MysteryDungeon' title='/pmwiki/pmwiki.php/VideoGame/MysteryDungeon' data-format='VmlkZW9HYW1lL015c3RlcnlEdW5nZW9u'>Mystery Dungeon</a></em> series of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Roguelike' title='/pmwiki/pmwiki.php/Main/Roguelike' data-format='e3tSb2d1ZWxpa2V9fXM='>Roguelikes</a>. The games are most well known for their narratives, putting a stronger, more <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TearJerker' title='/pmwiki/pmwiki.php/Main/TearJerker' data-format='W1tUZWFySmVya2VyIGVtb3Rpb25hbF1d'>emotional</a> emphasis on their stories than most of the mainline games. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonSnap' title='/pmwiki/pmwiki.php/VideoGame/PokemonSnap' data-format='VmlkZW9HYW1lL1Bva2Vtb25TbmFw'>Pokémon Snap</a></em> and its 2021 sequel <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/NewPokemonSnap' title='/pmwiki/pmwiki.php/VideoGame/NewPokemonSnap' data-format='VmlkZW9HYW1lL05ld1Bva2Vtb25TbmFw'>New Pokémon Snap</a></em> are games that task players to take photos of Pokémon in an on-rails perspective, ranking them based on the quality of the photos. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonTradingCardGame' title='/pmwiki/pmwiki.php/VideoGame/PokemonTradingCardGame' data-format='VmlkZW9HYW1lL1Bva2Vtb25UcmFkaW5nQ2FyZEdhbWU='>Pokémon Trading Card Game</a></em> is an adaptation of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CollectibleCardGame' title='/pmwiki/pmwiki.php/Main/CollectibleCardGame' data-format='Q29sbGVjdGlibGVDYXJkR2FtZQ=='>Collectible Card Game</a> <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Pokemon' title='/pmwiki/pmwiki.php/TabletopGame/Pokemon' data-format='W1tUYWJsZXRvcEdhbWUve3tQb2tlbW9ufX0gb2YgdGhlIHNhbWUgbmFtZV1d'>of the same name</a>, with the addition of RPG style progression and a plot in the same style as the normal games. It got a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoExportForYou' title='/pmwiki/pmwiki.php/Main/NoExportForYou' data-format='W1tOb0V4cG9ydEZvcllvdSBKYXBhbiBvbmx5XV0='>Japan only</a> sequel, and many years later <em>Pokémon TCG Online</em> came out, which serves as a much more direct adaptation of the card game. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonRanger' title='/pmwiki/pmwiki.php/VideoGame/PokemonRanger' data-format='VmlkZW9HYW1lL1Bva2Vtb25SYW5nZXI='>Pokémon Ranger</a></em> was a trilogy that focused on the <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/NintendoDS' title='/pmwiki/pmwiki.php/Platform/NintendoDS' data-format='UGxhdGZvcm0vTmludGVuZG9EUw=='>Nintendo DS</a>' touch screen, having the player draw circles around Pokémon to capture them and use them to bypass obstacles. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonConquest' title='/pmwiki/pmwiki.php/VideoGame/PokemonConquest' data-format='VmlkZW9HYW1lL1Bva2Vtb25Db25xdWVzdA=='>Pokémon Conquest</a></em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Crossover' title='/pmwiki/pmwiki.php/Main/Crossover' data-format='e3tjcm9zc292ZXJ9fQ=='>crossover</a> between the <em>Pokémon</em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/NobunagasAmbition' title='/pmwiki/pmwiki.php/VideoGame/NobunagasAmbition' data-format='VmlkZW9HYW1lL05vYnVuYWdhc0FtYml0aW9u'>Nobunaga's Ambition</a></em> series of games, taking the gameplay and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JidaiGeki' title='/pmwiki/pmwiki.php/Main/JidaiGeki' data-format='W1tKaWRhaUdla2kgV2FycmluZyBTdGF0ZXNdXQ=='>Warring States</a> based characters of the latter series, and putting them into a Pokémon themed plot where they fight their battles using the titular monsters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonRumble' title='/pmwiki/pmwiki.php/VideoGame/PokemonRumble' data-format='VmlkZW9HYW1lL1Bva2Vtb25SdW1ibGU='>Pokémon Rumble</a></em> is a series of top-down <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeatEmUp' title='/pmwiki/pmwiki.php/Main/BeatEmUp' data-format='W1tCZWF0RW1VcCBiZWF0ICYjMDM5O2VtIHVwXV0='>beat 'em up</a>s with a toy-collecting theme. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokkenTournament' title='/pmwiki/pmwiki.php/VideoGame/PokkenTournament' data-format='VmlkZW9HYW1lL1Bva2tlblRvdXJuYW1lbnQ='>Pokkén Tournament</a></em> is an arena based fighting game which, as the title suggests, is made by the creators of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Tekken' title='/pmwiki/pmwiki.php/Franchise/Tekken' data-format='RnJhbmNoaXNlL3t7VGVra2VufX0='>Tekken</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonTrozei' title='/pmwiki/pmwiki.php/VideoGame/PokemonTrozei' data-format='VmlkZW9HYW1lL1Bva2Vtb25Ucm96ZWk='>Pokémon Trozei!</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonShuffle' title='/pmwiki/pmwiki.php/VideoGame/PokemonShuffle' data-format='VmlkZW9HYW1lL1Bva2Vtb25TaHVmZmxl'>Pokémon Shuffle</a></em> are both icon based <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MatchThreeGame' title='/pmwiki/pmwiki.php/Main/MatchThreeGame' data-format='W1tNYXRjaFRocmVlR2FtZSBNYXRjaCAzIHB1enpsZSBnYW1lc11d'>Match 3 puzzle games</a>. </li><li> <em>Pokémon Puzzle League</em> and <em>Puzzle Challenge</em> are entires in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PanelDePon' title='/pmwiki/pmwiki.php/VideoGame/PanelDePon' data-format='VmlkZW9HYW1lL1BhbmVsRGVQb24='>Panel de Pon</a></em> series of competitive puzzle games, with a <em>Pokémon</em> skin. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonDash' title='/pmwiki/pmwiki.php/VideoGame/PokemonDash' data-format='VmlkZW9HYW1lL1Bva2Vtb25EYXNo'>Pokémon Dash</a></em> is a top-down racing game where the player guides a Pikachu through checkpoints with the DS stylus. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HeyYouPikachu' title='/pmwiki/pmwiki.php/VideoGame/HeyYouPikachu' data-format='VmlkZW9HYW1lL0hleVlvdVBpa2FjaHU='>Hey You, Pikachu!</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonChannel' title='/pmwiki/pmwiki.php/VideoGame/PokemonChannel' data-format='VmlkZW9HYW1lL1Bva2Vtb25DaGFubmVs'>Pokémon Channel</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokeParkWii' title='/pmwiki/pmwiki.php/VideoGame/PokeParkWii' data-format='VmlkZW9HYW1lL1Bva2VQYXJrV2lp'>PokéPark Wii</a></em> are all Pikachu focused spinoffs aimed at younger audiences, with gameplay ranging from playing a collection of minigames, to doing different activities with Pikachu, to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InGameTV' title='/pmwiki/pmwiki.php/Main/InGameTV' data-format='W1tJbkdhbWVUViB3YXRjaGluZyB0ZWxldmlzaW9uXV0='>watching television</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonPinball' title='/pmwiki/pmwiki.php/VideoGame/PokemonPinball' data-format='VmlkZW9HYW1lL1Bva2Vtb25QaW5iYWxs'>Pokémon Pinball</a></em> is exactly what you'd expect <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PinballSpinoff' title='/pmwiki/pmwiki.php/Main/PinballSpinoff' data-format='W1tQaW5iYWxsU3Bpbm9mZiBmcm9tIHRoZSB0aXRsZV1d'>from the title</a>. As is <em>Pokémon <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Picross' title='/pmwiki/pmwiki.php/VideoGame/Picross' data-format='VmlkZW9HYW1lL3t7UGljcm9zc319'>Picross</a></em>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HarvestMoonNatsume' title='/pmwiki/pmwiki.php/VideoGame/HarvestMoonNatsume' data-format='VmlkZW9HYW1lL0hhcnZlc3RNb29uTmF0c3VtZQ=='>Harvest Moon (Natsume)</a></em> has the 2019 puzzle spinoff <em>Harvest Moon: Mad Dash</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/StoryOfSeasons' title='/pmwiki/pmwiki.php/VideoGame/StoryOfSeasons' data-format='VmlkZW9HYW1lL1N0b3J5T2ZTZWFzb25z'>Story of Seasons</a></em> has a few spinoffs including: <ul ><li> <em>Puzzle De Harvest Moon</em> and its sequel <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HarvestMoonFranticFarming' title='/pmwiki/pmwiki.php/VideoGame/HarvestMoonFranticFarming' data-format='VmlkZW9HYW1lL0hhcnZlc3RNb29uRnJhbnRpY0Zhcm1pbmc='>Harvest Moon: Frantic Farming</a></em>, a puzzle game. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/InnocentLifeAFuturisticHarvestMoon' title='/pmwiki/pmwiki.php/VideoGame/InnocentLifeAFuturisticHarvestMoon' data-format='VmlkZW9HYW1lL0lubm9jZW50TGlmZUFGdXR1cmlzdGljSGFydmVzdE1vb24='>Innocent Life: A Futuristic Harvest Moon</a></em>, the 10th anniversary title. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DoraemonStoryOfSeasons' title='/pmwiki/pmwiki.php/VideoGame/DoraemonStoryOfSeasons' data-format='VmlkZW9HYW1lL0RvcmFlbW9uU3RvcnlPZlNlYXNvbnM='>Doraemon: Story of Seasons</a></em>, the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Doraemon' title='/pmwiki/pmwiki.php/Manga/Doraemon' data-format='TWFuZ2Eve3tEb3JhZW1vbn19'>Doraemon</a></em> crossover. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/RuneFactory' title='/pmwiki/pmwiki.php/VideoGame/RuneFactory' data-format='VmlkZW9HYW1lL1J1bmVGYWN0b3J5'>Rune Factory</a></em>, which started as a fantasy themed <em>Harvest Moon</em> game, that has become a series of its own. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/YokaiWatch' title='/pmwiki/pmwiki.php/Franchise/YokaiWatch' data-format='RnJhbmNoaXNlL1lva2FpV2F0Y2g='>Yo-kai Watch</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YokaiWatchWibbleWobble' title='/pmwiki/pmwiki.php/VideoGame/YokaiWatchWibbleWobble' data-format='VmlkZW9HYW1lL1lva2FpV2F0Y2hXaWJibGVXb2JibGU='>Yo-kai Watch: Wibble Wobble</a></em> is a mobile puzzle spinoff. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YokaiWatchBlasters' title='/pmwiki/pmwiki.php/VideoGame/YokaiWatchBlasters' data-format='VmlkZW9HYW1lL1lva2FpV2F0Y2hCbGFzdGVycw=='>Yo-kai Watch Blasters</a></em> and its Japanese-only sequel are yokai-focused spinoffs expanding upon a game-mode in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YokaiWatch2' title='/pmwiki/pmwiki.php/VideoGame/YokaiWatch2' data-format='VmlkZW9HYW1lL1lva2FpV2F0Y2gy'>Yo-kai Watch 2</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YokaiSangokushi' title='/pmwiki/pmwiki.php/VideoGame/YokaiSangokushi' data-format='VmlkZW9HYW1lL1lva2FpU2FuZ29rdXNoaQ=='>Yo-kai Sangokushi</a></em> is a collaboration with the <em>Sangokushi</em> series of Koei-Tecmo, featuring the Yo-kai modeled after important characters of the <em>Romance of the Three Kingdoms</em> novels. It was popular enough to get segments in the anime series and a mobile spinoff. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/YokaiWatchWorld' title='/pmwiki/pmwiki.php/VideoGame/YokaiWatchWorld' data-format='VmlkZW9HYW1lL1lva2FpV2F0Y2hXb3JsZA=='>Yo-kai Watch World</a></em> is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AugmentedReality' title='/pmwiki/pmwiki.php/Main/AugmentedReality' data-format='QXVnbWVudGVkUmVhbGl0eQ=='>Augmented Reality</a> game where you befriend yokai using your mobile phone. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BritannicPatronessOfTheMediterranean' title='/pmwiki/pmwiki.php/VideoGame/BritannicPatronessOfTheMediterranean' data-format='VmlkZW9HYW1lL0JyaXRhbm5pY1BhdHJvbmVzc09mVGhlTWVkaXRlcnJhbmVhbg=='>Britannic: Patroness of the Mediterranean</a></em> is a spin-off project from the developer's main project, the currently in development Titanic Honor and Glory, produced in response to the overwhelmingly positive reception to the teams Centenary Anniversary sinking video. By happy coincidence, this Spin Off First approach acts as a sort of Demo for the main game, as it features peared down versions of the main draws of Honor and Glory, namely the tour mode of the ship recreated as accurately as possible (in this case it's a 2-for-1 deal because we get spaces and exteriors of the ship as both the hospital ship she was, and as the ocean liner she should have been), and the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealTime' title='/pmwiki/pmwiki.php/Main/RealTime' data-format='UmVhbFRpbWU='>Real Time</a> sinking (though in this case there are no historical figures the player can interact with). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DragonQuestIV' title='/pmwiki/pmwiki.php/VideoGame/DragonQuestIV' data-format='VmlkZW9HYW1lL0RyYWdvblF1ZXN0SVY='>Dragon Quest IV</a></em>: Torneko went on to star in the first of Chunsoft's "Mysterious Dungeon" series of Roguelike games which first appeared on the Super NES. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/EpicBattleFantasy' title='/pmwiki/pmwiki.php/VideoGame/EpicBattleFantasy' data-format='VmlkZW9HYW1lL0VwaWNCYXR0bGVGYW50YXN5'>Epic Battle Fantasy</a></em> series has multiple spinoffs, one of them turning into a series of its own: <ul ><li> <em>Bullet Heaven</em> series: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BulletHeaven' title='/pmwiki/pmwiki.php/VideoGame/BulletHeaven' data-format='VmlkZW9HYW1lL0J1bGxldEhlYXZlbg=='>Bullet Heaven</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BulletHeaven2' title='/pmwiki/pmwiki.php/VideoGame/BulletHeaven2' data-format='VmlkZW9HYW1lL0J1bGxldEhlYXZlbjI='>Bullet Heaven 2</a></em> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/AdventureStory' title='/pmwiki/pmwiki.php/VideoGame/AdventureStory' data-format='VmlkZW9HYW1lL0FkdmVudHVyZVN0b3J5'>Adventure Story</a></em> </li></ul></li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Soundodger' title='/pmwiki/pmwiki.php/VideoGame/Soundodger' data-format='VmlkZW9HYW1lL3t7U291bmRvZGdlcn19'>Soundodger</a></em> series has the spinoff <em>soundodgerLIVE</em>, which reworks its music-based bullet hell gameplay to use motion controls with <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/Kinect' title='/pmwiki/pmwiki.php/Platform/Kinect' data-format='UGxhdGZvcm0ve3tLaW5lY3R9fQ=='>Kinect</a> rather than the standard mouse cursor movement. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder17');">&nbsp;&nbsp;&nbsp;&nbsp;Web Animation&nbsp;</div><div id="folder17" class="folder" isfolder="true" style="display:block;"> <!-- * ''WebAnimation/AnimatorVsAnimation'' → ''[[https://www.youtube.com/watch?v=6k0OYOt7GDE Animation vs. Minecraft]]''--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/AyasakiSan' title='/pmwiki/pmwiki.php/WebAnimation/AyasakiSan' data-format='V2ViQW5pbWF0aW9uL0F5YXNha2lTYW4='>Ayasaki-san</a></em> is a spin off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/KanonsRomComMangas' title='/pmwiki/pmwiki.php/WebAnimation/KanonsRomComMangas' data-format='V2ViQW5pbWF0aW9uL0thbm9uc1JvbUNvbU1hbmdhcw=='>Kanon's RomCom Mangas</a></em>, focusing on Miyu Ayasaki, a girl who appears cold and cool but is in fact just shy and cannot confess her feelings to Chiaki Akaba. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/CRiTORA' title='/pmwiki/pmwiki.php/WebAnimation/CRiTORA' data-format='V2ViQW5pbWF0aW9uL3t7Q1JpVE9SQX19'>CRiTORA</a></em> started out as a little-known web comic named <em>Avey</em>, which, in turn, repurposed a couple of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Mixels' title='/pmwiki/pmwiki.php/WesternAnimation/Mixels' data-format='V2VzdGVybkFuaW1hdGlvbi97e01peGVsc319'>Mixels</a></em> fan characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheDebbieAndCarrieShow' title='/pmwiki/pmwiki.php/WebAnimation/TheDebbieAndCarrieShow' data-format='V2ViQW5pbWF0aW9uL1RoZURlYmJpZUFuZENhcnJpZVNob3c='>The Debbie and Carrie Show</a></em> had several such spinoffs, including "The Hudson Phamily Show" (which lasted one season and featured a rock band of family members in Los Angeles), "The Sims of Boston" (which was later retooled into a subplot of the original show) "Debbie and Carrie: the Next Generation" (set about 40 years after the first one started, lasting three seasons and featuring most of the same characters as the original series), "The Cultbusters" (a spinoff of Debbie and Carrie, the Next Generation and featuring a group in Chicago) and "Grolok and Pelabong" (set 100,000 years ago and featuring a family of cavedwellers that first appeared in Debbie and Carrie: the Next Generation). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/GothamGirls' title='/pmwiki/pmwiki.php/WebAnimation/GothamGirls' data-format='V2ViQW5pbWF0aW9uL0dvdGhhbUdpcmxz'>Gotham Girls</a></em> is a spin-off of <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>, focusing on <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Catwoman' title='/pmwiki/pmwiki.php/ComicBook/Catwoman' data-format='Q29taWNCb29rL3t7Q2F0d29tYW59fQ=='>Catwoman</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn' title='/pmwiki/pmwiki.php/ComicBook/HarleyQuinn' data-format='Q29taWNCb29rL0hhcmxleVF1aW5u'>Harley Quinn</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/PoisonIvy' title='/pmwiki/pmwiki.php/ComicBook/PoisonIvy' data-format='Q29taWNCb29rL1BvaXNvbkl2eQ=='>Poison Ivy</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batgirl' title='/pmwiki/pmwiki.php/ComicBook/Batgirl' data-format='Q29taWNCb29rL3t7QmF0Z2lybH19'>Batgirl</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HazbinHotel' title='/pmwiki/pmwiki.php/WesternAnimation/HazbinHotel' data-format='V2VzdGVybkFuaW1hdGlvbi9IYXpiaW5Ib3RlbA=='>Hazbin Hotel</a></em> has <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HelluvaBoss' title='/pmwiki/pmwiki.php/WebAnimation/HelluvaBoss' data-format='V2ViQW5pbWF0aW9uL0hlbGx1dmFCb3Nz'>Helluva Boss</a></em> which is set in the same universe and sometimes even references characters and events from the former. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ObjectShows' title='/pmwiki/pmwiki.php/Main/ObjectShows' data-format='T2JqZWN0U2hvd3M='>Object Shows</a>: <ul ><li> <em>Battle For Dream Island: All-Stars</em> has <em>Battle For Dream Island: Moon Mix</em> which happens at the same time as <em>All Stars</em> but is disconnected from the main series and somehow outlasted it when the former is undergoing a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SoftReboot' title='/pmwiki/pmwiki.php/Main/SoftReboot' data-format='U29mdFJlYm9vdA=='>Soft Reboot</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/BattleForObjectDestination' title='/pmwiki/pmwiki.php/WebAnimation/BattleForObjectDestination' data-format='V2ViQW5pbWF0aW9uL0JhdHRsZUZvck9iamVjdERlc3RpbmF0aW9u'>Battle for Object Destination</a></em> got one with <em>Earthquake</em> where Flip Phone (The host of the main series) gets kidnapped by another <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GameShowHost' title='/pmwiki/pmwiki.php/Main/GameShowHost' data-format='R2FtZVNob3dIb3N0'>Game Show Host</a> for their Japanese-esque game show. From there, he and five other kidnapped contestants have to solve puzzles before an earthquake hits the island they are abducted to and kills them all. Alas, neither shows lasted long after the creator was exposed for sketchy behaviors around a minor. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/ObjectKnockout' title='/pmwiki/pmwiki.php/WebAnimation/ObjectKnockout' data-format='V2ViQW5pbWF0aW9uL09iamVjdEtub2Nrb3V0'>Object Knockout</a></em> revolves around the two pilots of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/ObjectsAroundTheWorld' title='/pmwiki/pmwiki.php/WebAnimation/ObjectsAroundTheWorld' data-format='V2ViQW5pbWF0aW9uL09iamVjdHNBcm91bmRUaGVXb3JsZA=='>Objects Around the World</a></em>, Octopus Hanger and Ctrl-Z, who are hosting their own competition show in their plane. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/OneMinuteMelee' title='/pmwiki/pmwiki.php/WebAnimation/OneMinuteMelee' data-format='V2ViQW5pbWF0aW9uL09uZU1pbnV0ZU1lbGVl'>1 Minute Melee</a></em> is a spin-off of <a class='twikilink' href='/pmwiki/pmwiki.php/Website/ScrewAttack' title='/pmwiki/pmwiki.php/Website/ScrewAttack' data-format='V2Vic2l0ZS9TY3Jld0F0dGFjaw=='>ScrewAttack</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/DeathBattle' title='/pmwiki/pmwiki.php/WebAnimation/DeathBattle' data-format='V2ViQW5pbWF0aW9uL0RlYXRoQmF0dGxl'>DEATH BATTLE!</a></em>. While <em>Death Battle</em> is made up of roughly 20 minute-long episodes where the hosts put <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShownTheirWork' title='/pmwiki/pmwiki.php/Main/ShownTheirWork' data-format='W1tTaG93blRoZWlyV29yayBleGhhdXN0aXZlIHJlc2VhcmNoIGFuZCBjb21wYXJpc29ucyBpbnRvIHR3byBjb21iYXRhbnRzIGFuZCB0aGVpciByZXNwZWN0aXZlIHN0cmVuZ3Rocywgc2tpbGxzIGFuZCB3ZWFrbmVzc2VzLCBhbmQgZGVjaWRlcyB0aGUgd2lubmVyIGJhc2VkIG9uIHRoYXRdXQ=='>exhaustive research and comparisons into two combatants and their respective strengths, skills and weaknesses, and decides the winner based on that</a>, <em>OMM</em> is far more simply a match-up between two fictional combatants where the fights last no longer than 60 seconds and the winner is determined by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AuthorAppeal' title='/pmwiki/pmwiki.php/Main/AuthorAppeal' data-format='QXV0aG9yQXBwZWFs'>Author Appeal</a>. It's basically meant for <em>DB</em> fans who are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustHereForGodzilla' title='/pmwiki/pmwiki.php/Main/JustHereForGodzilla' data-format='SnVzdEhlcmVGb3JHb2R6aWxsYQ=='>Just Here for Godzilla</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/RWBY' title='/pmwiki/pmwiki.php/WebAnimation/RWBY' data-format='V2ViQW5pbWF0aW9uL3t7UldCWX19'>RWBY</a></em> has a comedic spinoff called <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/RWBYChibi' title='/pmwiki/pmwiki.php/WebAnimation/RWBYChibi' data-format='V2ViQW5pbWF0aW9uL1JXQllDaGliaQ=='>RWBY Chibi</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/SunsetParadise' title='/pmwiki/pmwiki.php/WebAnimation/SunsetParadise' data-format='V2ViQW5pbWF0aW9uL1N1bnNldFBhcmFkaXNl'>Sunset Paradise</a></em> is a spin-off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/Supermarioglitchy4sSuperMario64Bloopers' title='/pmwiki/pmwiki.php/WebAnimation/Supermarioglitchy4sSuperMario64Bloopers' data-format='V2ViQW5pbWF0aW9uL1N1cGVybWFyaW9nbGl0Y2h5NHNTdXBlck1hcmlvNjRCbG9vcGVycw=='>Supermarioglitchy4's Super Mario 64 Bloopers</a></em> staring it’s most iconic <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakoutCharacter' title='/pmwiki/pmwiki.php/Main/BreakoutCharacter' data-format='QnJlYWtvdXRDaGFyYWN0ZXI='>Breakout Character</a>, Meggy Spletzer, and her misadventures while on vacationing on the island of Port Aurora. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder18');">&nbsp;&nbsp;&nbsp;&nbsp;Webcomics&nbsp;</div><div id="folder18" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/BasicInstructions' title='/pmwiki/pmwiki.php/Webcomic/BasicInstructions' data-format='V2ViY29taWMvQmFzaWNJbnN0cnVjdGlvbnM='>Basic Instructions</a></em> once played with the concept in the strip "How to Create a Spin-Off", with the idea of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ButtMonkey' title='/pmwiki/pmwiki.php/Main/ButtMonkey' data-format='QnV0dE1vbmtleQ=='>Butt-Monkey</a> Rick getting his own comic. It was never meant to seriously take off, but the man who inspired Rick did use the character's popularity to briefly run his own spin-off blog called "Asking the Wrong Guy", playing Rick answering reader's questions. <!-- * ''Webcomic/BetterDays'' → ''Webcomic/OriginalLife''--> <!-- * ''Webcomic/{{Homestuck}}'' → ''Webcomic/ParadoxSpace''--> </li><li> The action-oriented <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/JetDream' title='/pmwiki/pmwiki.php/Webcomic/JetDream' data-format='V2ViY29taWMvSmV0RHJlYW0='>Jet Dream</a></em> title spawned two spin-offs: <em>It's Cookie</em>, a teen humor comic starring T-Girl Cookie Jarr, and <em>My Jet Dream Romance</em>, a romance comic that focuses on the love lives of the T-Girls. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/LaurenIpsum' title='/pmwiki/pmwiki.php/Webcomic/LaurenIpsum' data-format='V2ViY29taWMvTGF1cmVuSXBzdW0='>Lauren Ipsum</a></em> originally appeared near the end of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheFuzzyPrincess' title='/pmwiki/pmwiki.php/Webcomic/TheFuzzyPrincess' data-format='V2ViY29taWMvVGhlRnV6enlQcmluY2Vzcw=='>The Fuzzy Princess</a></em> before gaining her own series. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/MaddieOnTheIslandHue' title='/pmwiki/pmwiki.php/Webcomic/MaddieOnTheIslandHue' data-format='W1tXZWJjb21pYy9NYWRkaWVPblRoZUlzbGFuZEh1ZSBNYWRdXQ=='>Mad</a><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/MaddieInAmerica' title='/pmwiki/pmwiki.php/Webcomic/MaddieInAmerica' data-format='W1tXZWJjb21pYy9NYWRkaWVJbkFtZXJpY2EgZGllXV0='>die</a></em> series → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Outsiders' title='/pmwiki/pmwiki.php/Webcomic/Outsiders' data-format='V2ViY29taWMve3tPdXRzaWRlcnN9fQ=='>Outsiders</a></em>, which follows the lives of same-sex lovers Siobhan Pattinson and Ebony Larsson, previously secondary characters. <!-- * ''Webcomic/{{Narbonic}}'' → ''Webcomic/SkinHorse''--> <!-- * ''Webcomic/PennyAndAggie'' → ''Webcomic/{{QUILTBAG}}''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Precocious' title='/pmwiki/pmwiki.php/Webcomic/Precocious' data-format='V2ViY29taWMve3tQcmVjb2Npb3VzfX0='>Precocious</a></em> has a spinoff <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Webcomic/CopperRoad' title='/pmwiki/pmwiki.php/Webcomic/CopperRoad' data-format='V2ViY29taWMvQ29wcGVyUm9hZA=='>Copper Road</a></em>, about the character Kaitlyn Hu and the "other side of the class" that lives on Copper Road. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/PusheenTheCat' title='/pmwiki/pmwiki.php/Webcomic/PusheenTheCat' data-format='V2ViY29taWMvUHVzaGVlblRoZUNhdA=='>Pusheen the Cat</a></em> started out as a character in a webcomic called <em>Everyday Cute</em>. This series soon proved to be a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinoff' data-format='TW9yZVBvcHVsYXJTcGlub2Zm'>More Popular Spin-Off</a> and survives whereas <em>Everyday Cute</em> withered and died in 2011. <!-- * ''Webcomic/QueenOfWands'' → ''Webcomic/PunchAnPie''--> <!-- * ''Webcomic/SquareRootOfMinusGarfield'' → ''Webcomic/IToons''--> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder19');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder19" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Website/TheAvocado' title='/pmwiki/pmwiki.php/Website/TheAvocado' data-format='V2Vic2l0ZS9UaGVBdm9jYWRv'>The Avocado</a> is an unofficial spinoff of <a class='twikilink' href='/pmwiki/pmwiki.php/Website/AVClub' title='/pmwiki/pmwiki.php/Website/AVClub' data-format='W1tXZWJzaXRlL0FWQ2x1YiBUaGUgQVYgQ2x1Yl1d'>The AV Club</a>, created by commenters on that site looking to create their own venue for pop culture reviews and discussion. Was originally called "The AV Club After Dark", but the initials AVCAD over time morphed into the word AVOCADO. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Website/FreakinAwesomeNetwork' title='/pmwiki/pmwiki.php/Website/FreakinAwesomeNetwork' data-format='V2Vic2l0ZS9GcmVha2luQXdlc29tZU5ldHdvcms='>Freakin Awesome Network</a>, as well as its forum, was spun off from the original <a class='twikilink' href='/pmwiki/pmwiki.php/Website/WrestleCrap' title='/pmwiki/pmwiki.php/Website/WrestleCrap' data-format='V2Vic2l0ZS9XcmVzdGxlQ3JhcA=='>WrestleCrap</a> forums in October 2010; its placeholder name was "The 'Crap" during the transistion. <!-- * ''Literature/TheLiamSmithShow'' → ''Literature/JusticeSquad''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/SCPFoundation' title='/pmwiki/pmwiki.php/Website/SCPFoundation' data-format='V2Vic2l0ZS9TQ1BGb3VuZGF0aW9u'>SCP Foundation</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/TheWanderersLibrary' title='/pmwiki/pmwiki.php/Website/TheWanderersLibrary' data-format='V2Vic2l0ZS9UaGVXYW5kZXJlcnNMaWJyYXJ5'>The Wanderer's Library</a></em>, <em><a class='urllink' href='http://goc.wikidot.com'>Global Occult Coalition<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> and the <a class='urllink' href='http://cbg.wikidot.com/'>Church of the Broken God<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. The Library, the GOC and the Church all originated as enemies of the Foundation (in the Library's case, it's the de facto headquarters of a group called the Serpent's Hand), but were interesting enough they received their own wikis. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Blog/Superman86To99' title='/pmwiki/pmwiki.php/Blog/Superman86To99' data-format='QmxvZy9TdXBlcm1hbjg2VG85OQ=='>Superman 86 To 99</a></em>, a blog dedicated to recapping <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Superman' title='/pmwiki/pmwiki.php/ComicBook/Superman' data-format='Q29taWNCb29rL3t7U3VwZXJtYW59fQ=='>Superman</a></em><span class='esc-seq' title='non-wikiword'>'</span>s run from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheManOfSteel' title='/pmwiki/pmwiki.php/ComicBook/TheManOfSteel' data-format='Q29taWNCb29rL1RoZU1hbk9mU3RlZWw='>The Man of Steel</a></em> to <em>Superman Vol. 2 #150</em> (the last issue by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DanJurgens' title='/pmwiki/pmwiki.php/Creator/DanJurgens' data-format='Q3JlYXRvci9EYW5KdXJnZW5z'>Dan Jurgens</a> before a new creative team took over), got a spinoff called <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Blog/GreenLantern94To04' title='/pmwiki/pmwiki.php/Blog/GreenLantern94To04' data-format='QmxvZy9HcmVlbkxhbnRlcm45NFRvMDQ='>Green Lantern 94 To 04</a></em>, which similarly looks into <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLantern' title='/pmwiki/pmwiki.php/ComicBook/GreenLantern' data-format='Q29taWNCb29rL0dyZWVuTGFudGVybg=='>Green Lantern</a></em> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/EmeraldTwilight' title='/pmwiki/pmwiki.php/ComicBook/EmeraldTwilight' data-format='Q29taWNCb29rL0VtZXJhbGRUd2lsaWdodA=='>Emerald Twilight</a></em> to <em>Green Lantern Vol. 3 #181</em> (the last issue by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RonMarz' title='/pmwiki/pmwiki.php/Creator/RonMarz' data-format='Q3JlYXRvci9Sb25NYXJ6'>Ron Marz</a> before <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GeoffJohns' title='/pmwiki/pmwiki.php/Creator/GeoffJohns' data-format='Q3JlYXRvci9HZW9mZkpvaG5z'>Geoff Johns</a> revamped the franchise with <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLanternRebirth' title='/pmwiki/pmwiki.php/ComicBook/GreenLanternRebirth' data-format='Q29taWNCb29rL0dyZWVuTGFudGVyblJlYmlydGg='>Green Lantern: Rebirth</a></em>) <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AuthorAppeal' title='/pmwiki/pmwiki.php/Main/AuthorAppeal' data-format='W1tBdXRob3JBcHBlYWwgd2l0aCBhIHNpZGUgb2ZdXQ=='>with a side of</a> Guy Gardner (especially Beau Smith's run on Guy's comics). <!-- * ''[[http://yoisthisracist.com Yo, Is This Racist?]]'' → ''[[http://yoshouldidumpthisahole.com Yo, Should I Dump This Asshole?]]''--> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder20');">&nbsp;&nbsp;&nbsp;&nbsp;Web Videos&nbsp;</div><div id="folder20" class="folder" isfolder="true" style="display:block;"> <!-- * ''WebVideo/TheAnnoyingOrange'' has a spin-off ''WebVideo/LiamTheLeprechaun''. Liam actually predates the orange but the series is considered a spinoff anyway.--> <ul ><li> The edutainment <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TheBenHeckShow' title='/pmwiki/pmwiki.php/WebVideo/TheBenHeckShow' data-format='V2ViVmlkZW8vVGhlQmVuSGVja1Nob3c='>The Ben Heck Show</a></em> had the 2011 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VerySpecialEpisode' title='/pmwiki/pmwiki.php/Main/VerySpecialEpisode' data-format='W1tWZXJ5U3BlY2lhbEVwaXNvZGUgc3BlY2lhbF1d'>special</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HalloweenEpisode' title='/pmwiki/pmwiki.php/Main/HalloweenEpisode' data-format='SGFsbG93ZWVuRXBpc29kZQ=='>Halloween Episode</a> <em>Ghost Hunting with Ben Heck!</em>, which is a thinly veiled pilot for the <a class='twikilink' href='/pmwiki/pmwiki.php/Pinball/AmericasMostHaunted' title='/pmwiki/pmwiki.php/Pinball/AmericasMostHaunted' data-format='UGluYmFsbC9BbWVyaWNhc01vc3RIYXVudGVk'>America's Most Haunted</a> pinball. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/DreamSMP' title='/pmwiki/pmwiki.php/WebVideo/DreamSMP' data-format='V2ViVmlkZW8vRHJlYW1TTVA='>Dream SMP</a></em> has <em>Tales From the SMP</em>, a series of one-shot roleplay livestreams focused on Karl's time travel adventures, interspersed with his own character arc between adventures. Sometimes, these streams feature characters that are ancestors or descendants of characters we see in the main series. <!-- * ''WebVideo/GameGrumps'' → ''WebVideo/SteamTrain'' --&gt; ''Table Flip''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/StopSkeletonsFromFighting' title='/pmwiki/pmwiki.php/WebVideo/StopSkeletonsFromFighting' data-format='W1tXZWJWaWRlby9TdG9wU2tlbGV0b25zRnJvbUZpZ2h0aW5nIFRoZSBIYXBweSBWaWRlbyBHYW1lIE5lcmRdXQ=='>The Happy Video Game Nerd</a></em>: His 'SSFF' and 'Is it really that bad?' series of videos, usually featuring his friend Calvin. They're all improvised, edited-for-length-and-highlights videos of Derek playing various games not featured on HVGN. <!-- * ''Franchise/{{Noob}}'' → ''Literature/{{Neogicia}}''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/SMPLive' title='/pmwiki/pmwiki.php/WebVideo/SMPLive' data-format='V2ViVmlkZW8vU01QTGl2ZQ=='>SMPLive</a></em> has two: <em>SMP Classic</em>, a server that features <span class='esc-seq' title='non-wikiword'>SMPLive</span> members playing on old versions of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Minecraft' title='/pmwiki/pmwiki.php/VideoGame/Minecraft' data-format='VmlkZW9HYW1lL3t7TWluZWNyYWZ0fX0='>Minecraft</a></em>, and <em><span class='esc-seq' title='non-wikiword'>TekkitLive</span></em>, a modded server using the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TechnicPack' title='/pmwiki/pmwiki.php/VideoGame/TechnicPack' data-format='W1tWaWRlb0dhbWUvVGVjaG5pY1BhY2sgVGVra2l0IENsYXNzaWNdXQ=='>Tekkit Classic</a></em> modpack that skews more roleplay-focused than the comedic main server. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder21');">&nbsp;&nbsp;&nbsp;&nbsp;Western Animation&nbsp;</div><div id="folder21" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' title='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' data-format='V2VzdGVybkFuaW1hdGlvbi9GYW1pbHlHdXk='>Family Guy</a></em> would spawn <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheClevelandShow' title='/pmwiki/pmwiki.php/WesternAnimation/TheClevelandShow' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVDbGV2ZWxhbmRTaG93'>The Cleveland Show</a></em>, featuring Cleveland Brown, which originated from <em>Family Guy</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/WackyRaces' title='/pmwiki/pmwiki.php/WesternAnimation/WackyRaces' data-format='V2VzdGVybkFuaW1hdGlvbi9XYWNreVJhY2Vz'>Wacky Races</a></em> would spin off <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DastardlyAndMuttleyInTheirFlyingMachines' title='/pmwiki/pmwiki.php/WesternAnimation/DastardlyAndMuttleyInTheirFlyingMachines' data-format='V2VzdGVybkFuaW1hdGlvbi9EYXN0YXJkbHlBbmRNdXR0bGV5SW5UaGVpckZseWluZ01hY2hpbmVz'>Dastardly & Muttley in Their Flying Machines</a></em> and <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> in 1969. At midseason, CBS switched <em>Wacky Races</em>, which aired at 12:30 PM ET, with <em>Penelope Pitstop</em> (10 AM ET), essentially making the 9:30 AM time period the Dick Dastardly Hour. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Arthur' title='/pmwiki/pmwiki.php/WesternAnimation/Arthur' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FydGh1cn19'>Arthur</a></em> → <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PostcardsFromBuster' title='/pmwiki/pmwiki.php/WesternAnimation/PostcardsFromBuster' data-format='V2VzdGVybkFuaW1hdGlvbi9Qb3N0Y2FyZHNGcm9tQnVzdGVy'>Postcards from Buster</a></em>. The spin-off is an extension of an <em>Arthur</em> episode also titled "Postcards from Buster", where Buster leaves to explore the world with his father. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheFlintstones' title='/pmwiki/pmwiki.php/WesternAnimation/TheFlintstones' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVGbGludHN0b25lcw=='>The Flintstones</a></em> has a spin-off called <em>The Pebbles &amp; Bamm-Bamm Show</em> about the children of the couples who starred in the original show. </li><li> The finale of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HongKongPhooey' title='/pmwiki/pmwiki.php/WesternAnimation/HongKongPhooey' data-format='V2VzdGVybkFuaW1hdGlvbi9Ib25nS29uZ1Bob29leQ=='>Hong Kong Phooey</a></em> featured three inept cowboys who were unofficially named "Posse Impossible". Three years later they would get a cartoon of their own as a segment of the 1977 show <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/CBBears' title='/pmwiki/pmwiki.php/WesternAnimation/CBBears' data-format='V2VzdGVybkFuaW1hdGlvbi9DQkJlYXJz'>CB Bears</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/CosgroveHall' title='/pmwiki/pmwiki.php/Creator/CosgroveHall' data-format='Q3JlYXRvci9Db3Nncm92ZUhhbGw='>Cosgrove Hall</a> did this in a conga line. <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/CountDuckula' title='/pmwiki/pmwiki.php/WesternAnimation/CountDuckula' data-format='V2VzdGVybkFuaW1hdGlvbi9Db3VudER1Y2t1bGE='>Count Duckula</a></em> was a spin-off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DangerMouse' title='/pmwiki/pmwiki.php/WesternAnimation/DangerMouse' data-format='V2VzdGVybkFuaW1hdGlvbi9EYW5nZXJNb3VzZQ=='>Danger Mouse</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/VictorAndHugo' title='/pmwiki/pmwiki.php/WesternAnimation/VictorAndHugo' data-format='V2VzdGVybkFuaW1hdGlvbi9WaWN0b3JBbmRIdWdv'>Victor &amp; Hugo</a></em> was a spin-off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/CountDuckula' title='/pmwiki/pmwiki.php/WesternAnimation/CountDuckula' data-format='V2VzdGVybkFuaW1hdGlvbi9Db3VudER1Y2t1bGE='>Count Duckula</a>.</em> </li><li> Sabrina the Teenage Witch became so popular on <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheArchieShow' title='/pmwiki/pmwiki.php/WesternAnimation/TheArchieShow' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1RoZUFyY2hpZVNob3cgVGhlIEFyY2hpZSBDb21lZHkgSG91cl1d'>The Archie Comedy Hour</a></em> that she was given her own show, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SabrinaAndTheGroovieGoolies' title='/pmwiki/pmwiki.php/WesternAnimation/SabrinaAndTheGroovieGoolies' data-format='V2VzdGVybkFuaW1hdGlvbi9TYWJyaW5hQW5kVGhlR3Jvb3ZpZUdvb2xpZXM='>Sabrina and The Groovie Goolies</a></em>, a year later. Sabrina would star in a standalone series after that. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheAdventuresOfJimmyNeutronBoyGenius' title='/pmwiki/pmwiki.php/WesternAnimation/TheAdventuresOfJimmyNeutronBoyGenius' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVBZHZlbnR1cmVzT2ZKaW1teU5ldXRyb25Cb3lHZW5pdXM='>The Adventures of Jimmy Neutron, Boy Genius</a></em> spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PlanetSheen' title='/pmwiki/pmwiki.php/WesternAnimation/PlanetSheen' data-format='V2VzdGVybkFuaW1hdGlvbi9QbGFuZXRTaGVlbg=='>Planet Sheen</a></em>, where Sheen accidentally gets stranded on an alien planet. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheAristocats' title='/pmwiki/pmwiki.php/WesternAnimation/TheAristocats' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVBcmlzdG9jYXRz'>The Aristocats</a></em>: <ul ><li> The film has received four spin offs as of 2022 (three starring Marie). The first is a 2006 book called <a class='urllink' href='http://ecx.images-amazon.com/images/I/51ZM6jSIdBL.jpg'>"Disney's Marie"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small> which has <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnsembleDarkHorse' title='/pmwiki/pmwiki.php/Main/EnsembleDarkHorse' data-format='W1tFbnNlbWJsZURhcmtIb3JzZSBNYXJpZV1d'>Marie</a> taking readers on sightseeing adventures and traveling around the world. The second is a a <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MiriyaAndMarie' title='/pmwiki/pmwiki.php/Manga/MiriyaAndMarie' data-format='W1tNYW5nYS9NaXJpeWFBbmRNYXJpZSBvbmVzaG90IG1hbmdhXV0='>oneshot manga</a> created in Spring 2015 (June 2018 for the US and Canada) called <a class='urllink' href='http://blog.opovo.com.br/bancadoanime/wp-content/uploads/sites/56/2015/03/Miriya-e-Marie-c01-04.jpg'>"Miriya &amp; Marie"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small> which stars Marie and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CanonForeigner' title='/pmwiki/pmwiki.php/Main/CanonForeigner' data-format='W1tDYW5vbkZvcmVpZ25lciBNaXJpeWFdXQ=='>Miriya</a>, and a third book called <a class='urllink' href='http://edelweiss.abovethetreeline.com/ProductDetailPage.aspx?sequence=89&amp;group=catalog&amp;mailingID=0&amp;mailingGroupID=0&amp;catalogID=908248&amp;org=&amp;sku=1484713737'>"Disney Tails We Love Marie".<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> The 2022 graphic novel series <em>The Aristokittens</em> by Jennifer Castle stars Duchess' kittens (Toulouse, Marie, and Berlioz) secretly running an animal cafe in Paris. <span class="notelabel" onclick="togglenote('note4lyxs');"><sup>note&nbsp;</sup></span><span id="note4lyxs" class="inlinefolder" isnote="true" onclick="togglenote('note4lyxs');" style="cursor:pointer;font-size:smaller;display:none;"> Not to be confushed with the 1970s Gold Key comic series of the same name. </span> <!-- * ''Tijuana Toads'' → ''The Blue Racer'' and ''Crazylegs Crane''--> <!-- * ''WesternAnimation/{{Ben 10}}'' → ''WesternAnimation/Ben10AlienForce'' → ''WesternAnimation/Ben10UltimateAlien'' → ''WesternAnimation/Ben10Omniverse''--> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DoraTheExplorer' title='/pmwiki/pmwiki.php/WesternAnimation/DoraTheExplorer' data-format='V2VzdGVybkFuaW1hdGlvbi9Eb3JhVGhlRXhwbG9yZXI='>Dora the Explorer</a></em> spun off <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GoDiegoGo' title='/pmwiki/pmwiki.php/WesternAnimation/GoDiegoGo' data-format='V2VzdGVybkFuaW1hdGlvbi9Hb0RpZWdvR28='>Go, Diego, Go!</a></em> (which is about Dora's cousin who rescues wild animals) and <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DoraAndFriendsIntoTheCity' title='/pmwiki/pmwiki.php/WesternAnimation/DoraAndFriendsIntoTheCity' data-format='V2VzdGVybkFuaW1hdGlvbi9Eb3JhQW5kRnJpZW5kc0ludG9UaGVDaXR5'>Dora and Friends: Into the City!</a></em> (where Dora is aged up and has adventures with a new group of friends). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/CowAndChicken' title='/pmwiki/pmwiki.php/WesternAnimation/CowAndChicken' data-format='V2VzdGVybkFuaW1hdGlvbi9Db3dBbmRDaGlja2Vu'>Cow and Chicken</a></em> became a three-C&amp;C shorts show when <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/IAmWeasel' title='/pmwiki/pmwiki.php/WesternAnimation/IAmWeasel' data-format='V2VzdGVybkFuaW1hdGlvbi9JQW1XZWFzZWw='>I Am Weasel</a></em> broke off from it on its own. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GrimAndEvil' title='/pmwiki/pmwiki.php/WesternAnimation/GrimAndEvil' data-format='V2VzdGVybkFuaW1hdGlvbi9HcmltQW5kRXZpbA=='>Grim & Evil</a></em>: <ul ><li> The "Grim" part of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GrimAndEvil' title='/pmwiki/pmwiki.php/WesternAnimation/GrimAndEvil' data-format='V2VzdGVybkFuaW1hdGlvbi9HcmltQW5kRXZpbA=='>Grim & Evil</a></em> would break off on its own to become <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheGrimAdventuresOfBillyAndMandy' title='/pmwiki/pmwiki.php/WesternAnimation/TheGrimAdventuresOfBillyAndMandy' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVHcmltQWR2ZW50dXJlc09mQmlsbHlBbmRNYW5keQ=='>The Grim Adventures of Billy & Mandy</a></em> while the "Evil" part became <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/EvilConCarne' title='/pmwiki/pmwiki.php/WesternAnimation/EvilConCarne' data-format='V2VzdGVybkFuaW1hdGlvbi9FdmlsQ29uQ2FybmU='>Evil Con Carne</a></em>. <em>Billy &amp; Mandy</em> would have the more prolific run. </li><li> <em>Underfist</em> was a pilot for a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheGrimAdventuresOfBillyAndMandy' title='/pmwiki/pmwiki.php/WesternAnimation/TheGrimAdventuresOfBillyAndMandy' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVHcmltQWR2ZW50dXJlc09mQmlsbHlBbmRNYW5keQ=='>The Grim Adventures of Billy & Mandy</a>,</em> starring Hoss Delgado, Irwin, Jeffy the Spider, General Skarr and Fred Fredberger. It never got past the hour-long special telecast. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/YogiBear' title='/pmwiki/pmwiki.php/WesternAnimation/YogiBear' data-format='V2VzdGVybkFuaW1hdGlvbi9Zb2dpQmVhcg=='>Yogi Bear</a></em> is probably the earliest example of a made-for-TV cartoon as it began as a segment of <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> three years earlier. <!-- * ''WesternAnimation/KaBlam!'' → ''Action League Now''--> </li><li> Some of the segments featured on <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/OhYeahCartoons' title='/pmwiki/pmwiki.php/WesternAnimation/OhYeahCartoons' data-format='V2VzdGVybkFuaW1hdGlvbi9PaFllYWhDYXJ0b29ucw=='>Oh Yeah! Cartoons</a></em> were the pilots for <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheFairlyOddParents' title='/pmwiki/pmwiki.php/WesternAnimation/TheFairlyOddParents' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVGYWlybHlPZGRQYXJlbnRz'>The Fairly OddParents!</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MyLifeAsATeenageRobot' title='/pmwiki/pmwiki.php/WesternAnimation/MyLifeAsATeenageRobot' data-format='V2VzdGVybkFuaW1hdGlvbi9NeUxpZmVBc0FUZWVuYWdlUm9ib3Q='>My Life as a Teenage Robot</a></em>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ChalkZone' title='/pmwiki/pmwiki.php/WesternAnimation/ChalkZone' data-format='V2VzdGVybkFuaW1hdGlvbi9DaGFsa1pvbmU='>ChalkZone</a></em>. <!-- * ''Franchise/ToyStory'' → ''WesternAnimation/BuzzLightyearOfStarCommand''--> <!-- * ''WesternAnimation/DanielTigersNeighborhood'' is an animated spinoff of ''Series/MisterRogersNeighborhood''--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheWorldOfDavidTheGnome' title='/pmwiki/pmwiki.php/WesternAnimation/TheWorldOfDavidTheGnome' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVXb3JsZE9mRGF2aWRUaGVHbm9tZQ=='>The World of David the Gnome</a></em> was spun off into <em>The Wisdom of the Gnomes</em> with no room for crossovers since <span class="spoiler" title="you can set spoilers visible by default on your profile" > David and his wife die in the last episode of their series. Although they did make an appearance in flashback in the last episode</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' title='/pmwiki/pmwiki.php/WesternAnimation/TheSimpsons' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTaW1wc29ucw=='>The Simpsons</a></em> began life as a series of short skits on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheTraceyUllmanShow' title='/pmwiki/pmwiki.php/Series/TheTraceyUllmanShow' data-format='U2VyaWVzL1RoZVRyYWNleVVsbG1hblNob3c='>The Tracey Ullman Show</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/WorldOfWinx' title='/pmwiki/pmwiki.php/WesternAnimation/WorldOfWinx' data-format='V2VzdGVybkFuaW1hdGlvbi9Xb3JsZE9mV2lueA=='>World of Winx</a></em> is this to <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/WinxClub' title='/pmwiki/pmwiki.php/WesternAnimation/WinxClub' data-format='V2VzdGVybkFuaW1hdGlvbi9XaW54Q2x1Yg=='>Winx Club</a></em>. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PBSKids' title='/pmwiki/pmwiki.php/Creator/PBSKids' data-format='Q3JlYXRvci9QQlNLaWRz'>PBS Kids</a> series <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DanielTigersNeighborhood' title='/pmwiki/pmwiki.php/WesternAnimation/DanielTigersNeighborhood' data-format='V2VzdGVybkFuaW1hdGlvbi9EYW5pZWxUaWdlcnNOZWlnaGJvcmhvb2Q='> Daniel Tiger's Neighborhood</a></em> is a spin off to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MisterRogersNeighborhood' title='/pmwiki/pmwiki.php/Series/MisterRogersNeighborhood' data-format='U2VyaWVzL01pc3RlclJvZ2Vyc05laWdoYm9yaG9vZA=='>Mister Rogers' Neighborhood</a></em> complete with a similar opening. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotalDrama' title='/pmwiki/pmwiki.php/WesternAnimation/TotalDrama' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbERyYW1h'>Total Drama</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotalDramaPresentsTheRidonculousRace' title='/pmwiki/pmwiki.php/WesternAnimation/TotalDramaPresentsTheRidonculousRace' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbERyYW1hUHJlc2VudHNUaGVSaWRvbmN1bG91c1JhY2U='>Total Drama Presents: The Ridonculous Race</a></em> is a spinoff of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotalDrama' title='/pmwiki/pmwiki.php/WesternAnimation/TotalDrama' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbERyYW1h'>Total Drama</a></em> that parodies <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheAmazingRace' title='/pmwiki/pmwiki.php/Series/TheAmazingRace' data-format='U2VyaWVzL1RoZUFtYXppbmdSYWNl'>The Amazing Race</a></em> instead of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Survivor' title='/pmwiki/pmwiki.php/Series/Survivor' data-format='U2VyaWVzL3t7U3Vydml2b3J9fQ=='>Survivor</a></em> with a different host, four of the contestants from the parent show (Noah, Owen, Geoff and Leonard) appearing as competitors, and a few cameos from or mentions of the old cast here and there. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotalDramaRama' title='/pmwiki/pmwiki.php/WesternAnimation/TotalDramaRama' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbERyYW1hUmFtYQ=='>Total DramaRama</a></em>, which was revealed on December 19, 2017 as <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorkingTitle' title='/pmwiki/pmwiki.php/Main/WorkingTitle' data-format='W1tXb3JraW5nVGl0bGUgVG90YWwgRHJhbWEgRGF5Y2FyZV1d'>Total Drama Daycare</a></em>, serves as the second spinoff to <em>Total Drama</em>, adapting 11 of the original 22 contestants<span class="notelabel" onclick="togglenote('note5omfm');"><sup>note&nbsp;</sup></span><span id="note5omfm" class="inlinefolder" isnote="true" onclick="togglenote('note5omfm');" style="cursor:pointer;font-size:smaller;display:none;">Beth, Bridgette, Cody, Courtney, Duncan, Gwen, Harold, Izzy, Leshawna, Noah, and Owen</span> (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/MyFriendsAndZoidberg' title='/pmwiki/pmwiki.php/Main/MyFriendsAndZoidberg' data-format='W1tNeUZyaWVuZHNBbmRab2lkYmVyZyBhbmQgSnVkZSBmcm9tXV0='>and Jude from</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Sixteen' title='/pmwiki/pmwiki.php/WesternAnimation/Sixteen' data-format='V2VzdGVybkFuaW1hdGlvbi97e1NpeHRlZW59fQ=='>6teen</a></em>) as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinoffBabies' title='/pmwiki/pmwiki.php/Main/SpinoffBabies' data-format='W1tTcGlub2ZmQmFiaWVzIHRvZGRsZXJzIGF0IGEgZGF5Y2FyZV1d'>toddlers at a daycare</a> run by Chef Hatchet. Like with the prior spin-off, other characters from the previous shows cameo here and there. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheAmazingSpiez' title='/pmwiki/pmwiki.php/WesternAnimation/TheAmazingSpiez' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVBbWF6aW5nU3BpZXo='>The Amazing Spiez!</a></em>, is a spinoff of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotallySpies' title='/pmwiki/pmwiki.php/WesternAnimation/TotallySpies' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbGx5U3BpZXM='>Totally Spies!</a></em> centered around 3 separate, younger WHOOP agents. Jerry is still featured prominently like in the core show, and Sam, Alex, and Clover occasionally have cameos in this series, but otherwise it could be argued that this is just a carbon copy of Totally Spies but with different leads and villains. The show only lasted 2 seasons before getting canceled. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Unikitty' title='/pmwiki/pmwiki.php/WesternAnimation/Unikitty' data-format='V2VzdGVybkFuaW1hdGlvbi97e1VuaWtpdHR5fX0='>Unikitty!</a></em> is another <em>LEGO Movie</em> spin-off, featuring secondary character Unikitty. </li><li> Though can be surprising for some people, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Daria' title='/pmwiki/pmwiki.php/WesternAnimation/Daria' data-format='V2VzdGVybkFuaW1hdGlvbi97e0RhcmlhfX0='>Daria</a></em> is a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BeavisAndButthead' title='/pmwiki/pmwiki.php/WesternAnimation/BeavisAndButthead' data-format='V2VzdGVybkFuaW1hdGlvbi9CZWF2aXNBbmRCdXR0aGVhZA=='>Beavis And Butthead</a></em>. She was originally a recurring classmate of theirs and would make cynical remarks about their stupidity. Her own show kicked off when her family moved from Texas to the East Coast. While <em>Beavis And Butthead</em> may have had a larger pop culture impact, <em>Daria</em> was a much more intelligent <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Dramedy' title='/pmwiki/pmwiki.php/Main/Dramedy' data-format='e3tkcmFtZWR5fX0='>dramedy</a>, examining the pains and insecurities of adolescence. To this day it retains a cult following and a very vocal fanbase. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ShaunTheSheep' title='/pmwiki/pmwiki.php/WesternAnimation/ShaunTheSheep' data-format='V2VzdGVybkFuaW1hdGlvbi9TaGF1blRoZVNoZWVw'>Shaun the Sheep</a></em> is a spin-off from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/WallaceAndGromit' title='/pmwiki/pmwiki.php/WesternAnimation/WallaceAndGromit' data-format='V2VzdGVybkFuaW1hdGlvbi9XYWxsYWNlQW5kR3JvbWl0'>Wallace & Gromit</a></em> using the Shaun character of one of their shorts. <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ShaunTheSheep' title='/pmwiki/pmwiki.php/WesternAnimation/ShaunTheSheep' data-format='V2VzdGVybkFuaW1hdGlvbi9TaGF1blRoZVNoZWVw'>Shaun the Sheep</a></em> at the same time has a spin-off with <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TimmyTime' title='/pmwiki/pmwiki.php/WesternAnimation/TimmyTime' data-format='V2VzdGVybkFuaW1hdGlvbi9UaW1teVRpbWU='>Timmy Time</a></em> with Timmy the lamb as the protagonist of a show for toddlers. </li><li> If you don't know that the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TinyToonAdventures' title='/pmwiki/pmwiki.php/WesternAnimation/TinyToonAdventures' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1RpbnlUb29uQWR2ZW50dXJlcyBUaW55IFRvb25zXV0='>Tiny Toons</a></em> had a spin-off series named <em>The Plucky Show</em> with the character of Plucky as the protagonist, don't feel bad. A lot of people don't like it as the show was not very popular and ran for only one season. Although the term "spin-off" might be an overstatement considering that most of the show's epsiodes consisted in clips from the original cartoon. </li><li> Due to the Pinky and the Brain sketches' popularity in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Animaniacs' title='/pmwiki/pmwiki.php/WesternAnimation/Animaniacs' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FuaW1hbmlhY3N9fQ=='>Animaniacs</a></em>, a spin-off series with them was made: <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PinkyAndTheBrain' title='/pmwiki/pmwiki.php/WesternAnimation/PinkyAndTheBrain' data-format='V2VzdGVybkFuaW1hdGlvbi9QaW5reUFuZFRoZUJyYWlu'>Pinky and the Brain</a></em>. Then a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Crossover' title='/pmwiki/pmwiki.php/Main/Crossover' data-format='e3tjcm9zc292ZXJ9fQ=='>crossover</a>/spin-off was made, called <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PinkyElmyraAndTheBrain' title='/pmwiki/pmwiki.php/WesternAnimation/PinkyElmyraAndTheBrain' data-format='V2VzdGVybkFuaW1hdGlvbi9QaW5reUVsbXlyYUFuZFRoZUJyYWlu'>Pinky, Elmyra & the Brain</a></em>, with the <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TinyToonAdventures' title='/pmwiki/pmwiki.php/WesternAnimation/TinyToonAdventures' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1RpbnlUb29uQWR2ZW50dXJlcyBUaW55IFRvb25zXV0='>Tiny Toons</a>' character Elmyra in probably one of the most questioned moves ever done in animated television. </li><li> The common consensus among fans is to consider <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DarkwingDuck' title='/pmwiki/pmwiki.php/WesternAnimation/DarkwingDuck' data-format='V2VzdGVybkFuaW1hdGlvbi9EYXJrd2luZ0R1Y2s='>Darkwing Duck</a></em> as a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DuckTales1987' title='/pmwiki/pmwiki.php/WesternAnimation/DuckTales1987' data-format='V2VzdGVybkFuaW1hdGlvbi9EdWNrVGFsZXMxOTg3'>DuckTales (1987)</a></em> as the character of Launchpad Mc Quack appears in both but is one of the protagonists in the former. Nevertheless according to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a>; show creator Tad Stone, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DarkwingDuck' title='/pmwiki/pmwiki.php/WesternAnimation/DarkwingDuck' data-format='V2VzdGVybkFuaW1hdGlvbi9EYXJrd2luZ0R1Y2s='>Darkwing Duck</a></em> happens in a different universe than <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DuckTales1987' title='/pmwiki/pmwiki.php/WesternAnimation/DuckTales1987' data-format='V2VzdGVybkFuaW1hdGlvbi9EdWNrVGFsZXMxOTg3'>DuckTales (1987)</a></em> with Launchpad as just an alternate version. If this is canonical inside the Disney Animated Universe, of course, is up to debate. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyEquestriaGirls' title='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyEquestriaGirls' data-format='V2VzdGVybkFuaW1hdGlvbi9NeUxpdHRsZVBvbnlFcXVlc3RyaWFHaXJscw=='>My Little Pony: Equestria Girls</a></em> is a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyFriendshipIsMagic' title='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyFriendshipIsMagic' data-format='V2VzdGVybkFuaW1hdGlvbi9NeUxpdHRsZVBvbnlGcmllbmRzaGlwSXNNYWdpYw=='>My Little Pony: Friendship Is Magic</a></em>, taking place in a parallel universe and starring the teenage human equivalents of the main characters. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a> states that while both works are canon to each other (Sunset Shimmer was indeed Celestia's previous student, Starswirl did banish the sirens to the human world, etc.), the team deliberately avoids writing <em>Equestria Girls</em> plots that could affect the main universe for simplicity's sake. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DonaldDuck' title='/pmwiki/pmwiki.php/WesternAnimation/DonaldDuck' data-format='V2VzdGVybkFuaW1hdGlvbi9Eb25hbGREdWNr'>Donald Duck</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Goofy' title='/pmwiki/pmwiki.php/WesternAnimation/Goofy' data-format='V2VzdGVybkFuaW1hdGlvbi97e0dvb2Z5fX0='>Goofy</a></em>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Pluto' title='/pmwiki/pmwiki.php/WesternAnimation/Pluto' data-format='V2VzdGVybkFuaW1hdGlvbi97e1BsdXRvfX0='>Pluto</a></em> were each the stars of their own animated shorts, spinning off from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MickeyMouse' title='/pmwiki/pmwiki.php/WesternAnimation/MickeyMouse' data-format='V2VzdGVybkFuaW1hdGlvbi9NaWNrZXlNb3VzZQ=='>Mickey Mouse</a></em> shorts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HumphreyTheBear' title='/pmwiki/pmwiki.php/WesternAnimation/HumphreyTheBear' data-format='V2VzdGVybkFuaW1hdGlvbi9IdW1waHJleVRoZUJlYXI='>Humphrey the Bear</a></em> also was a spinoff character originating from a Goofy short to recurring in <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DonaldDuck' title='/pmwiki/pmwiki.php/WesternAnimation/DonaldDuck' data-format='V2VzdGVybkFuaW1hdGlvbi9Eb25hbGREdWNr'>Donald Duck</a> into his very own. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Popeye' title='/pmwiki/pmwiki.php/WesternAnimation/Popeye' data-format='V2VzdGVybkFuaW1hdGlvbi97e1BvcGV5ZX19'>Popeye</a></em> made his first (animated) appearance in a <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BettyBoop' title='/pmwiki/pmwiki.php/WesternAnimation/BettyBoop' data-format='V2VzdGVybkFuaW1hdGlvbi9CZXR0eUJvb3A='>Betty Boop</a></em> cartoon, before getting his own (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorePopularSpinOff' title='/pmwiki/pmwiki.php/Main/MorePopularSpinOff' data-format='W1tNb3JlUG9wdWxhclNwaW5PZmYgYXJndWFibHkgbW9yZSBwb3B1bGFyXV0='>arguably more popular</a>) series. It should be noted that his appearance in the Betty Boop cartoon was an intentional <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' title='/pmwiki/pmwiki.php/Main/PoorlyDisguisedPilot' data-format='UG9vcmx5RGlzZ3Vpc2VkUGlsb3Q='>Poorly Disguised Pilot</a>, and that the short itself barely features her. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheRenAndStimpyShow' title='/pmwiki/pmwiki.php/WesternAnimation/TheRenAndStimpyShow' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVSZW5BbmRTdGltcHlTaG93'>The Ren & Stimpy Show</a></em> While there are the same characters from the original series, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/RenAndStimpyAdultPartyCartoon' title='/pmwiki/pmwiki.php/WesternAnimation/RenAndStimpyAdultPartyCartoon' data-format='V2VzdGVybkFuaW1hdGlvbi9SZW5BbmRTdGltcHlBZHVsdFBhcnR5Q2FydG9vbg=='>Ren & Stimpy "Adult Party Cartoon"</a></em> this is an adult version. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SpaceGhostCoastToCoast' title='/pmwiki/pmwiki.php/WesternAnimation/SpaceGhostCoastToCoast' data-format='V2VzdGVybkFuaW1hdGlvbi9TcGFjZUdob3N0Q29hc3RUb0NvYXN0'>Space Ghost Coast to Coast</a></em>, a prime-time parody talk show featuring repurposed animation from the sixties cartoon <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SpaceGhost' title='/pmwiki/pmwiki.php/WesternAnimation/SpaceGhost' data-format='V2VzdGVybkFuaW1hdGlvbi9TcGFjZUdob3N0'>Space Ghost</a></em>, got a spin-off called <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/CartoonPlanet' title='/pmwiki/pmwiki.php/WesternAnimation/CartoonPlanet' data-format='V2VzdGVybkFuaW1hdGlvbi9DYXJ0b29uUGxhbmV0'>Cartoon Planet</a></em> starring Space Ghost, Zorak, and Brak hosting old cartoons and bantering with each other in silly skits. An ad for <em>Cartoon Planet</em> even had the characters discussing the phenomenon of spin-offs. <div class='indent'><strong>Zorak:</strong> You mean how <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Cheers' title='/pmwiki/pmwiki.php/Series/Cheers' data-format='U2VyaWVzL3t7Q2hlZXJzfX0='>Cheers</a></em> spun off into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Frasier' title='/pmwiki/pmwiki.php/Series/Frasier' data-format='U2VyaWVzL3t7RnJhc2llcn19'>Frasier</a></em>?<br data-format="\\" /><strong>Space Ghost:</strong> Right, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BarneyMiller' title='/pmwiki/pmwiki.php/Series/BarneyMiller' data-format='U2VyaWVzL0Jhcm5leU1pbGxlcg=='>Barney Miller</a></em> spat out <em>Fish</em>.<br data-format="\\" /><strong>Brak:</strong> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HappyDays' title='/pmwiki/pmwiki.php/Series/HappyDays' data-format='U2VyaWVzL0hhcHB5RGF5cw=='>Happy Days</a></em> had a baby, and they named it <em>Joanie Loves Chachi</em>! </div></li><li> Once again, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='RnJhbmNoaXNlL1N0YXJUcmVr'>Star Trek</a></em> provides multiple entries: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/StarTrekTheAnimatedSeries' title='/pmwiki/pmwiki.php/WesternAnimation/StarTrekTheAnimatedSeries' data-format='V2VzdGVybkFuaW1hdGlvbi9TdGFyVHJla1RoZUFuaW1hdGVkU2VyaWVz'>Star Trek: The Animated Series</a></em> directly continued from <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> with most of the same crew. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/StarTrekLowerDecks' title='/pmwiki/pmwiki.php/WesternAnimation/StarTrekLowerDecks' data-format='V2VzdGVybkFuaW1hdGlvbi9TdGFyVHJla0xvd2VyRGVja3M='>Star Trek: Lower Decks</a></em> is set shortly after the last <span class='esc-seq' title='non-wikiword'>TNG</span> film, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarTrekNemesis' title='/pmwiki/pmwiki.php/Film/StarTrekNemesis' data-format='RmlsbS9TdGFyVHJla05lbWVzaXM='>Star Trek: Nemesis</a></em>, and departs from tradition by following a group of low-level ensigns on an unremarkable starship doing mop-up for the more glamourous crews featured in other shows. There have been a handful of cameos from previous series to date, as well as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityCavalcade' title='/pmwiki/pmwiki.php/Main/ContinuityCavalcade' data-format='W1tDb250aW51aXR5Q2F2YWxjYWRlIGEgd2VhbHRoIG9mIHJlZmVyZW5jZXMgdG8gcGFzdCBldmVudHMgYW5kIGNoYXJhY3RlcnNdXQ=='>a wealth of references to past events and characters</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/StarTrekProdigy' title='/pmwiki/pmwiki.php/WesternAnimation/StarTrekProdigy' data-format='V2VzdGVybkFuaW1hdGlvbi9TdGFyVHJla1Byb2RpZ3k='>Star Trek: Prodigy</a></em> is set a few years after <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekVoyager' title='/pmwiki/pmwiki.php/Series/StarTrekVoyager' data-format='U2VyaWVzL1N0YXJUcmVrVm95YWdlcg=='>Star Trek: Voyager</a></em> in the same part of the galaxy, and has a hologram version of Captain Janeway from VOY as one of its main characters. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Rintindumb' title='/pmwiki/pmwiki.php/WesternAnimation/Rintindumb' data-format='V2VzdGVybkFuaW1hdGlvbi97e1JpbnRpbmR1bWJ9fQ=='>Rintindumb</a></em>: The show is a spin-off of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/LuckyLuke' title='/pmwiki/pmwiki.php/ComicBook/LuckyLuke' data-format='Q29taWNCb29rL0x1Y2t5THVrZQ=='>Lucky Luke</a></em> comics starring Luke's dog, Rantanplan, known as "Rintindumb" here. It mainly shows little snippets where Rintindumb does something to live up to his given name. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SpongeBobSquarePants' title='/pmwiki/pmwiki.php/WesternAnimation/SpongeBobSquarePants' data-format='V2VzdGVybkFuaW1hdGlvbi9TcG9uZ2VCb2JTcXVhcmVQYW50cw=='>SpongeBob SquarePants</a></em> has had two spin-offs. <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/KampKoral' title='/pmwiki/pmwiki.php/WesternAnimation/KampKoral' data-format='V2VzdGVybkFuaW1hdGlvbi9LYW1wS29yYWw='>Kamp Koral</a></em> is about a younger <span class='esc-seq' title='non-wikiword'>SpongeBob</span> and his friends at a summer camp. <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ThePatrickStarShow' title='/pmwiki/pmwiki.php/WesternAnimation/ThePatrickStarShow' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVQYXRyaWNrU3RhclNob3c='>The Patrick Star Show</a></em> has Patrick and a cast of new characters as his family &#8212; it's much <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DenserAndWackier' title='/pmwiki/pmwiki.php/Main/DenserAndWackier' data-format='RGVuc2VyQW5kV2Fja2llcg=='>Denser and Wackier</a> than the original show. While the focus is mainly on Patrick, <span class='esc-seq' title='non-wikiword'>SpongeBob</span> is a recurring character. </li><li> Like <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HappyDays' title='/pmwiki/pmwiki.php/Series/HappyDays' data-format='U2VyaWVzL0hhcHB5RGF5cw=='>Happy Days</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/WaitTillYourFatherGetsHome' title='/pmwiki/pmwiki.php/WesternAnimation/WaitTillYourFatherGetsHome' data-format='V2VzdGVybkFuaW1hdGlvbi9XYWl0VGlsbFlvdXJGYXRoZXJHZXRzSG9tZQ=='>Wait Till Your Father Gets Home</a></em> was a spin-off of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LoveAmericanStyle' title='/pmwiki/pmwiki.php/Series/LoveAmericanStyle' data-format='U2VyaWVzL0xvdmVBbWVyaWNhblN0eWxl'>Love, American Style</a></em>. </li></ul></div> </p><p><hr data-format='&#8212;&#8212;' /> </p></div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Characters/ProjectRunwaySeason17">Project Runway Season 17</a> </li> <li> <a href="/pmwiki/pmwiki.php/Characters/ProjectRunway">Characters/Project Runway</a> </li> <li> <a href="/pmwiki/pmwiki.php/Characters/ProjectRunwayJudges">Project Runway Judges</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ShockingElimination">Shocking Elimination</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/RealityTVTropes">Reality TV Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/StageMom">Stage Mom</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/SharedUniverse">Shared Universe</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CanonUniverse">Canon Universe</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/UniverseBible">Universe Bible</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/SophomoreSlump">Sophomore Slump</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Sequel">Sequel</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FromTheAshes">From the Ashes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OneWomanWail">One-Woman Wail</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GothRock">Goth Rock</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PostPunk">Post-Punk</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/VideoGame/EuropaUniversalis">Europa Universalis</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/ParadoxInteractive">Creator/Paradox Interactive</a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoGame/AirfixDogfighter">Airfix Dogfighter</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Manga/ACertainScientificAccelerator">A Certain Scientific Accelerator</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/KazumaKamachi">Creator/Kazuma Kamachi</a> </li> <li> <a href="/pmwiki/pmwiki.php/Manga/ACertainScientificDarkMatter">A Certain Scientific Dark Matter</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/ComicBook/MajorGrom">Major Grom</a> </li> <li> <a href="/pmwiki/pmwiki.php/Franchise/MajorGrom">Franchise/Major Grom</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ADayInTheLimelight">A Day in the Limelight</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/SparedByTheAdaptation">Spared by the Adaptation</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DerivativeWorks">Derivative Works</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SpinoffBabies">Spin-Off Babies</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Animation/GattuBattu">Gattu Battu</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AsianAnimation">Asian Animation</a> </li> <li> <a href="/pmwiki/pmwiki.php/Animation/TheJungleBook2010">The Jungle Book (2010)</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Series/TheNineLivesOfChloeKing">The Nine Lives of Chloe King</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/Freeform">Creator/Freeform</a> </li> <li> <a href="/pmwiki/pmwiki.php/Series/Paranoia">Paranoia</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/Animaniacs">Animaniacs</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AnimatedAnthology">Animated Anthology</a> </li> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/GarfieldAndFriends">Garfield and Friends</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Music/TheresARiotGoinOn">There's a Riot Goin' On</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Funk">Funk</a> </li> <li> <a href="/pmwiki/pmwiki.php/Music/Thundercat">Thundercat</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/TheOctonauts">The Octonauts</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/EdutainmentShow">Edutainment Show</a> </li> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/PeepAndTheBigWideWorld">Peep and the Big Wide World</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/ComicBook/StarWarsCaptainPhasma">Star Wars: Captain Phasma</a> </li> <li> <a href="/pmwiki/pmwiki.php/Franchise/StarWars">Franchise/Star Wars</a> </li> <li> <a href="/pmwiki/pmwiki.php/ComicBook/StarWarsHanSoloImperialCadet">Star Wars: Han Solo - Imperial Cadet</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheSoulless">The Soulless</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/TheSimpsons">QuoteSource/The Simpsons</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SpoofingInTheRain">Spoofing in the Rain</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Roleplay/TheIndomitableHumanSpiritVsAGalaxyOfAngst">The Indomitable Human Spirit Vs A Galaxy Of Angst</a> </li> <li> <a href="/pmwiki/pmwiki.php/FanWorks/Warhammer40000">FanWorks/Warhammer 40,000</a> </li> <li> <a href="/pmwiki/pmwiki.php/Roleplay/TheLostPrimarchQuest">The Lost Primarch Quest</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/VideoGame/MarioGolf">Mario Golf</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/SuperMarioBros">ImageSource/Super Mario Bros.</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SuperNotDrowningSkills">Super Not-Drowning Skills</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/ComicBook/DoomPatrol1987">Doom Patrol (1987)</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ComicBooksOfThe1990s">Comic Books of the 1990s</a> </li> <li> <a href="/pmwiki/pmwiki.php/ComicBook/DoubleDragon1991">Double Dragon (1991)</a> </li> </ul> </div> </div> <div id="proper_player_insert_div" class="outer_ads_by_salon_wrapper"> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=0be7dc0061d227d69754a0ef6494d97a715e244d'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=0be7dc0061d227d69754a0ef6494d97a715e244d'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

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