CINXE.COM
Canis Major - TV Tropes
<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Canis Major - TV Tropes</title> <meta name="description" content="The Canis Major trope as used in popular culture. A giant canine. Any canid will do: domestic dogs, wolves, coyotes, foxes, etc., as long as it's far bigger …" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/CanisMajor" /> <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="Canis Major - TV Tropes" /> <meta name="twitter:description" content="The Canis Major trope as used in popular culture. A giant canine. Any canid will do: domestic dogs, wolves, coyotes, foxes, etc., as long as it's far bigger …" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/CliffordBigRedDog.jpg" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Canis Major - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/CanisMajor" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/CliffordBigRedDog.jpg" /> <meta property="og:description" content="A giant canine. Any canid will do: domestic dogs, wolves, coyotes, foxes, etc., as long as it's far bigger than any in real life. Temperament varies from the Angry Guard Dog on the one end to the Big Friendly Dog on the other, but since an animal …" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="" /> <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/FragileSpeedster" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Literature/RapunzelAndTheLostLagoon" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, fb_token, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).forEach(el => { el.classList.toggle(toggleClass); }); } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/CanisMajor?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/CanisMajor"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.CanisMajor" 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.CanisMajor" 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/CanisMajor?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="CanisMajor"/> <input type="hidden" id="article_id" value="40873" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/CanisMajor</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"> Canis Major </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": "Canis Major", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/CanisMajor" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Canis Major", "headline": "Canis Major", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/CanisMajor", "image": "https://static.tvtropes.org/pmwiki/pub/images/CliffordBigRedDog.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2009-07-27T00:00:00-07:00", "dateModified": "2024-11-06T07:43:30-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/CanisMajor" 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/CanisMajor" 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/ImageLinks/CanisMajor" class="subpage-link " title="The ImageLinks page"> <span class="wrapper">ImageLinks</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/CanisMajor" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/CanisMajor?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/CanisMajor?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/CanisMajor?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/CanisMajor?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/CanisMajor?action=edit">DerivativeWork…</option> <option value="/pmwiki/pmwiki.php/FanWorks/CanisMajor?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/CanisMajor?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/CanisMajor?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/CanisMajor?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/CanisMajor?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/CanisMajor?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/CanisMajor?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageSource/CanisMajor?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/CanisMajor?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/CanisMajor?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/CanisMajor?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/CanisMajor?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/CanisMajor?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Quotes/CanisMajor?action=edit">Quotes</option> <option value="/pmwiki/pmwiki.php/Recap/CanisMajor?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/CanisMajor?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/CanisMajor?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/CanisMajor?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/CanisMajor?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/CanisMajor?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/CanisMajor?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/CanisMajor?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--
--> <!--
--> <!--
--> <!--
--> <!-- This list of examples has been alphabetized. Please add your example in the proper place. Thanks!--> <!--
--> <!--
--> <!--
--> <!--
--> <!--
--> <div class="quoteright" style="width:244px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/CliffordTheBigRedDog' title='/pmwiki/pmwiki.php/Literature/CliffordTheBigRedDog' data-format='W1tMaXRlcmF0dXJlL0NsaWZmb3JkVGhlQmlnUmVkRG9nIGh0dHBzOi8vc3RhdGljLnR2dHJvcGVzLm9yZy9wbXdpa2kvcHViL2ltYWdlcy9DbGlmZm9yZEJpZ1JlZERvZy5qcGddXQ=='><div class="lazy_load_img_box" style="padding-top:115.16%"><img src='https://static.tvtropes.org/pmwiki/pub/images/CliffordBigRedDog.jpg' class='embeddedimage' border='0' alt='Canis Major (trope)' width=244 height=281></div></a></div> <span class="font-s"><div class="acaptionright" style="width:244px;" >Aww, look at the cute, lit...cute gigantic doggie!</div></span> </p><p>A giant canine. Any canid will do: domestic dogs, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WolfTropes' title='/pmwiki/pmwiki.php/Main/WolfTropes' data-format='W1tXb2xmVHJvcGVzIHdvbHZlc11d'>wolves</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThoseWilyCoyotes' title='/pmwiki/pmwiki.php/Main/ThoseWilyCoyotes' data-format='W1tUaG9zZVdpbHlDb3lvdGVzIGNveW90ZXNdXQ=='>coyotes</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CunningLikeAFox' title='/pmwiki/pmwiki.php/Main/CunningLikeAFox' data-format='W1tDdW5uaW5nTGlrZUFGb3ggZm94ZXNdXQ=='>foxes</a>, etc., as long as it's far bigger than any in real life. Temperament varies from the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AngryGuardDog' title='/pmwiki/pmwiki.php/Main/AngryGuardDog' data-format='QW5ncnlHdWFyZERvZw=='>Angry Guard Dog</a> on the one end to the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigFriendlyDog' title='/pmwiki/pmwiki.php/Main/BigFriendlyDog' data-format='QmlnRnJpZW5kbHlEb2c='>Big Friendly Dog</a> on the other, but since an animal's size is more often than not <strong>perceived</strong> to be proportional with how dangerous it is, the former tends to be more expected... which can make subversions all the funnier when a supposedly dangerous giant dog/wolf turns out to be as cute, playful and benign in behavior as your average puppy. </p><p>May or may not be a case of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnimalsNotToScale' title='/pmwiki/pmwiki.php/Main/AnimalsNotToScale' data-format='QW5pbWFsc05vdFRvU2NhbGU='>Animals Not to Scale</a>, depending on what real-life species (or, in case of domestic dogs, breed) it most closely resembles, if at all. </p><p>A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SubTrope' title='/pmwiki/pmwiki.php/Main/SubTrope' data-format='U3ViVHJvcGU='>Sub-Trope</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DireBeast' title='/pmwiki/pmwiki.php/Main/DireBeast' data-format='RGlyZUJlYXN0'>Dire Beast</a>. A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SisterTrope' title='/pmwiki/pmwiki.php/Main/SisterTrope' data-format='U2lzdGVyVHJvcGU='>Sister Trope</a> to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MegaNeko' title='/pmwiki/pmwiki.php/Main/MegaNeko' data-format='TWVnYU5la28='>Mega Neko</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RodentsOfUnusualSize' title='/pmwiki/pmwiki.php/Main/RodentsOfUnusualSize' data-format='Um9kZW50c09mVW51c3VhbFNpemU='>Rodents of Unusual Size</a>. </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PreciousPuppies' title='/pmwiki/pmwiki.php/Main/PreciousPuppies' data-format='UHJlY2lvdXNQdXBwaWVz'>Precious Puppies</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hellhound' title='/pmwiki/pmwiki.php/Main/Hellhound' data-format='e3tIZWxsaG91bmR9fQ=='>Hellhound</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CuteGiant' title='/pmwiki/pmwiki.php/Main/CuteGiant' data-format='Q3V0ZUdpYW50'>Cute Giant</a>. And who's afraid of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheBigBadWolf' title='/pmwiki/pmwiki.php/Main/TheBigBadWolf' data-format='VGhlQmlnQmFkV29sZg=='>The Big Bad Wolf</a>? </p><p><hr data-format='——' /> <h2>Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();"> open/close all folders </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');"> Anime & Manga </div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/AnimalLand' title='/pmwiki/pmwiki.php/Manga/AnimalLand' data-format='TWFuZ2EvQW5pbWFsTGFuZA=='>Animal Land</a></em>, wolves like Jeek's father and other canines are huge. </li><li> Belle from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/BelleAndSebastian' title='/pmwiki/pmwiki.php/Anime/BelleAndSebastian' data-format='QW5pbWUvQmVsbGVBbmRTZWJhc3RpYW4='>Belle and Sebastian</a></em> is a large white Pyrenean Mountain dog. </li><li> Pluto from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/BlackButler' title='/pmwiki/pmwiki.php/Manga/BlackButler' data-format='TWFuZ2EvQmxhY2tCdXRsZXI='>Black Butler</a></em>, which can turn into a white haired human but keeps a dog mind. And can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreathWeapon' title='/pmwiki/pmwiki.php/Main/BreathWeapon' data-format='e3ticmVhdGh8V2VhcG9ufX1l'>breathe</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncendiaryExponent' title='/pmwiki/pmwiki.php/Main/IncendiaryExponent' data-format='W1tJbmNlbmRpYXJ5RXhwb25lbnQgZmlyZV1d'>fire</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Bleach' title='/pmwiki/pmwiki.php/Manga/Bleach' data-format='TWFuZ2Eve3tCbGVhY2h9fQ=='>Bleach</a></em>: Captain Sajin Komamura is the largest Gotei captain <em>and</em> a wolf. <span class="spoiler" title="you can set spoilers visible by default on your profile" > He has nothing on his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoNameGiven' title='/pmwiki/pmwiki.php/Main/NoNameGiven' data-format='W1tOb05hbWVHaXZlbiB1bm5hbWVkXV0='>unnamed</a> ancestor, who turns out to be <em>even bigger</em> - to put it on perspective, the Leader is at least <strong>five</strong> times bigger than Koma himself.</span> </li><li> Giant canines are a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecurringElement' title='/pmwiki/pmwiki.php/Main/RecurringElement' data-format='UmVjdXJyaW5nRWxlbWVudA=='>Recurring Element</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Digimon' title='/pmwiki/pmwiki.php/Franchise/Digimon' data-format='RnJhbmNoaXNlL3t7RGlnaW1vbn19'>Digimon</a></em>: <ul ><li> <a class='urllink' href='https://wikimon.net/Dobermon'>Dobermon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is a giant doberman pinscher digimon. In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DigimonTamers' title='/pmwiki/pmwiki.php/Anime/DigimonTamers' data-format='QW5pbWUvRGlnaW1vblRhbWVycw=='>Digimon Tamers</a></em> it's accompanied by a human partner, sent by the Digimon Sovereigns to assist the tamers in battling the D-reaper by giving them the ability to biomerge in the real world. </li><li> Gabumon's evolved form, <a class='urllink' href='https://wikimon.net/Garurumon'>Garurumon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, is a wolf big enough to be ridden with no problem. Being an evolution of one of the franchise's mascots, it tends to appear in a lot of <em>Digimon</em> media. There's also <a class='urllink' href='https://wikimon.net/Garurumon_(Black)'>a viral palette-swap<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that shows up less often. </li><li> There's the saber-toothed shiba dog, <a class='urllink' href='https://wikimon.net/Gaogamon'>Gaogamon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DigimonDataSquad' title='/pmwiki/pmwiki.php/Anime/DigimonDataSquad' data-format='QW5pbWUvRGlnaW1vbkRhdGFTcXVhZA=='>Digimon Data Squad</a></em>. </li><li> <a class='urllink' href='http://digimon.wikia.com/wiki/Seasarmon'>Seasarmon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, the lion-dog digimon with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerOfTheSun' title='/pmwiki/pmwiki.php/Main/PowerOfTheSun' data-format='W1tQb3dlck9mVGhlU3VuIHNvbGFyIGF0dGFja3NdXQ=='>solar attacks</a>, and <a class='urllink' href='http://digimon.wikia.com/wiki/Caturamon'>Caturamon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> the Dog-deva digimon, who has a surprisingly large effect on the plot of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DigimonTamers' title='/pmwiki/pmwiki.php/Anime/DigimonTamers' data-format='QW5pbWUvRGlnaW1vblRhbWVycw=='>Digimon Tamers</a></em> despite being a member of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/QuirkyMinibossSquad' title='/pmwiki/pmwiki.php/Main/QuirkyMinibossSquad' data-format='UXVpcmt5TWluaWJvc3NTcXVhZA=='>Quirky Miniboss Squad</a>. </li><li> <a class='urllink' href='http://digimon.wikia.com/wiki/Cerberumon'>Cerberumon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is another big dog Digimon based on Cerberus of Greek myth; it can evolve from all of the above except Gaogamon. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DigimonAdventure2020' title='/pmwiki/pmwiki.php/Anime/DigimonAdventure2020' data-format='QW5pbWUvRGlnaW1vbkFkdmVudHVyZTIwMjA='>Digimon Adventure: (2020)</a></em> features a Cerberumon so big that one of its heads is nearly as large as the already bus-sized Komondomon, quite possibly making it the largest example of this trope in the franchise. It leads a pack of car-sized <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SavageWolves' title='/pmwiki/pmwiki.php/Main/SavageWolves' data-format='W1tTYXZhZ2VXb2x2ZXMgRmFuZ21vbl1d'>Fangmon</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DigimonFusion' title='/pmwiki/pmwiki.php/Anime/DigimonFusion' data-format='QW5pbWUvRGlnaW1vbkZ1c2lvbg=='>Digimon Fusion</a></em> introduces Dorulumon, a big orange wolf with drills all over his body. He usually serves as either one member of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FusionDance' title='/pmwiki/pmwiki.php/Main/FusionDance' data-format='RnVzaW9uRGFuY2U='>Fusion Dance</a> or as an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EquippableAlly' title='/pmwiki/pmwiki.php/Main/EquippableAlly' data-format='RXF1aXBwYWJsZUFsbHk='>Equippable Ally</a>. </li><li> Komondomon from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DigimonAdventure2020' title='/pmwiki/pmwiki.php/Anime/DigimonAdventure2020' data-format='QW5pbWUvRGlnaW1vbkFkdmVudHVyZTIwMjA='>Digimon Adventure: (2020)</a></em> is an eight-legged <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnimalVehicleHybrid' title='/pmwiki/pmwiki.php/Main/AnimalVehicleHybrid' data-format='W1tBbmltYWxWZWhpY2xlSHlicmlkIGh5YnJpZF1d'>hybrid</a> of a Hungarian sheepdog and a troop transport the size of a double-decker bus. Komondomon is a <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigFriendlyDog' title='/pmwiki/pmwiki.php/Main/BigFriendlyDog' data-format='W1tCaWdGcmllbmRseURvZyB2ZXJ5XV0='>very</a></em> good boy, always making the protection of its passengers its first priority. </li><li> Loogamon, the main Digimon of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DigimonSeekers' title='/pmwiki/pmwiki.php/Literature/DigimonSeekers' data-format='TGl0ZXJhdHVyZS9EaWdpbW9uU2Vla2Vycw=='>Digimon Seekers</a></em> evolves into Loogarmon, a muzzled, flame-spouting wolf with giant forelegs. Its dark evolution <span class='esc-seq' title='non-wikiword'>HelLoogarmon</span> and Mega form <span class='esc-seq' title='non-wikiword'>FenriLoogamon</span> are even larger and are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WreathedInFlames' title='/pmwiki/pmwiki.php/Main/WreathedInFlames' data-format='V3JlYXRoZWRJbkZsYW1lcw=='>Wreathed in Flames</a>. </li></ul></li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Manga/Duklyon' title='/pmwiki/pmwiki.php/Manga/Duklyon' data-format='TWFuZ2Eve3tEdWtseW9ufX0='>Duklyon</a>: Clamp School Defenders</em> - Ineffectual villain Imonoyama uses a growth ray to enlarge the duo's beloved dog, Inuko, into a giant monster dog. Fortunately, she still retains her playful personality and is "defeated" when an equally enlarged Takeshi commands her to shake hands with him, awwwww! </li><li> Kaibutsu from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/GingaDensetsuWeed' title='/pmwiki/pmwiki.php/Anime/GingaDensetsuWeed' data-format='QW5pbWUvR2luZ2FEZW5zZXRzdVdlZWQ='>Ginga Densetsu Weed</a></em>. According to the Ginga wikia, he weighs at around 1200 pounds. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Gintama' title='/pmwiki/pmwiki.php/Manga/Gintama' data-format='TWFuZ2Eve3tHaW50YW1hfX0='>Gintama</a></em>: Kagura's big dog Sadaharu. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/InuYasha' title='/pmwiki/pmwiki.php/Manga/InuYasha' data-format='TWFuZ2EvSW51WWFzaGE='>Inuyasha</a></em>, the true form of Sesshomaru, his father and his mother are all giant white dogs—Sesshomaru and his mother are the size of a large house, while the father's corpse is the size of a <em>mountain</em>. We also see a giant mountain dog and a giant fox kami. </li><li> The second <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' title='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' data-format='TW9uc3Rlck9mVGhlV2Vlaw=='>Monster of the Week</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanoha' title='/pmwiki/pmwiki.php/Anime/MagicalGirlLyricalNanoha' data-format='QW5pbWUvTWFnaWNhbEdpcmxMeXJpY2FsTmFub2hh'>Magical Girl Lyrical Nanoha</a></em>. Unlike the later <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MegaNeko' title='/pmwiki/pmwiki.php/Main/MegaNeko' data-format='TWVnYU5la28='>Mega Neko</a>, this erred more towards the monstrous-looking side. <ul ><li> Arf and Zafira can both take on the form of wolves, though they look more like foxes when not in their puppy forms. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MyHime' title='/pmwiki/pmwiki.php/Anime/MyHime' data-format='QW5pbWUvTXlIaW1l'>My-HiME</a></em>: Natsuki Kuga's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttackAnimal' title='/pmwiki/pmwiki.php/Main/AttackAnimal' data-format='W1tBdHRhY2tBbmltYWwgQ0hJTERdXQ=='>CHILD</a>, Duran, is a pretty large mecha-wolf she can ride on. <span class="spoiler" title="you can set spoilers visible by default on your profile" >During her climatic fight with Shizuru Fujino, whose CHILD is a kaiju-sized hydra-octopus, Natsuki's Duran grows into a massive wolf of equal size.</span> </li><li> Fenrir's real form in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MythicalDetectiveLokiRagnarok' title='/pmwiki/pmwiki.php/Manga/MythicalDetectiveLokiRagnarok' data-format='TWFuZ2EvTXl0aGljYWxEZXRlY3RpdmVMb2tpUmFnbmFyb2s='>Mythical Detective Loki Ragnarok</a></em>; see below under <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>. </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> Akamaru grows quite huge after the <em>Shippuden</em> timeskip. <span class="spoiler" title="you can set spoilers visible by default on your profile" >And don't even think about <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OmnicidalManiac' title='/pmwiki/pmwiki.php/Main/OmnicidalManiac' data-format='W1tPbW5pY2lkYWxNYW5pYWMgUGFpbiYjMDM5O3NdXQ=='>Pain's</a> Giant Multi-Headed Dog, one of the most perfectly terrifying creatures incarnate.</span> </li><li> The nine-tailed fox, who was quite large when he was going around rampaging. It's interesting to wonder how large he actually is now that he's sealed inside Naruto. The one-tailed tanuki too because although tanukis resemble raccoons greatly, they're actually dogs. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/NatsumesBookOfFriends' title='/pmwiki/pmwiki.php/Manga/NatsumesBookOfFriends' data-format='TWFuZ2EvTmF0c3VtZXNCb29rT2ZGcmllbmRz'>Natsume's Book of Friends</a></em>, Nyanko-sensei's true form is a giant inugami. </li><li> Kotarou's full beast form in <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Manga/NegimaMagisterNegieMagi' title='/pmwiki/pmwiki.php/Manga/NegimaMagisterNegieMagi' data-format='TWFuZ2EvTmVnaW1hTWFnaXN0ZXJOZWdpZU1hZ2k='>Negima Magister Negie Magi</a></em>. The series also had a Cerberus, complete with the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShownTheirWork' title='/pmwiki/pmwiki.php/Main/ShownTheirWork' data-format='W1tTaG93blRoZWlyV29yayBtYW5lIG9mIHNuYWtlcyBhbmQgZHJhZ29uIHRhaWwgb2YgdGhlIG9yaWdpbmFsIEdyZWVrIHZlcnNpb25zIHRoYXQgbW9zdCBtb2Rlcm4gZGVwaWN0aW9ucyBvbWl0XV0='>mane of snakes and dragon tail of the original Greek versions that most modern depictions omit</a>. It didn't have the right number of heads, so Nodoka also theorizes that it might actually be <a class='urllink' href='http://en.wikipedia.org/wiki/Orthrus'>Orthrus<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/NuraRiseOfTheYokaiClan' title='/pmwiki/pmwiki.php/Manga/NuraRiseOfTheYokaiClan' data-format='TWFuZ2EvTnVyYVJpc2VPZlRoZVlva2FpQ2xhbg=='>Nura: Rise of the Yokai Clan</a></em>: <ul ><li> Yura's shikigami Tanro is a massive wolf twice as tall as she is. </li><li> Inugami, who grows to absolutely massive size when he's angry, which is most of the time. </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> featured a zombie Cerberus, and a squad of dog-riders in Enies Lobby. There was also wolf-man Jabura, Ohm's giant attack dog Holy, and possibly Mr. 4's dog-gun Lassoo. Yamato can turn into a huge white wolf due to his [[devil fruit abilities]]. </li><li> Moro from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/PrincessMononoke' title='/pmwiki/pmwiki.php/Anime/PrincessMononoke' data-format='QW5pbWUvUHJpbmNlc3NNb25vbm9rZQ=='>Princess Mononoke</a></em>. Her (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/WildChild' title='/pmwiki/pmwiki.php/Main/WildChild' data-format='W1tXaWxkQ2hpbGQgbm9uLVNhbl1d'>non-San</a>) children are quite a bit larger than normal wolves, and are implied to be <em>young children</em>. She is considerably bigger compared to them. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/RebuildWorld' title='/pmwiki/pmwiki.php/Literature/RebuildWorld' data-format='TGl0ZXJhdHVyZS9SZWJ1aWxkV29ybGQ='>Rebuild World</a></em>, The largest of the cannon dogs Akira encounters is so huge that it dwarfs the nearby buildings. Akira is barely as large as its pupil, and he empties his clip in a panic on Alpha's orders in a desperate but successful attempt to kill it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SpiceAndWolf' title='/pmwiki/pmwiki.php/Literature/SpiceAndWolf' data-format='TGl0ZXJhdHVyZS9TcGljZUFuZFdvbGY='>Spice and Wolf</a></em>: Holo is a harvest deity whose true form is a very, VERY large wolf. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FluffyTheTerrible' title='/pmwiki/pmwiki.php/Main/FluffyTheTerrible' data-format='W1tGbHVmZnlUaGVUZXJyaWJsZSBUZXJyeSBDbG90aF1d'>Terry Cloth</a> the Battlewolf from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Toriko' title='/pmwiki/pmwiki.php/Manga/Toriko' data-format='TWFuZ2Eve3tUb3Jpa299fQ=='>Toriko</a></em> starts out pretty big (an adorable puppy that comes up to the main character's waist) and as the story progresses grows to truly gigantic proportions. <span class="spoiler" title="you can set spoilers visible by default on your profile" >We get a good look at a full-grown Battle Wolf in Chapter 263 which looks like it's the size of a building at the very least.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ToTheAbandonedSacredBeasts' title='/pmwiki/pmwiki.php/Manga/ToTheAbandonedSacredBeasts' data-format='TWFuZ2EvVG9UaGVBYmFuZG9uZWRTYWNyZWRCZWFzdHM='>To the Abandoned Sacred Beasts</a></em>: Hank Henriette's true Incarnate form is Fenrir, the gigantic, world-destroying wolf of Norse myth. When Hank takes on Fenrir's form, he becomes big enough to crush the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GiantEnemyCrab' title='/pmwiki/pmwiki.php/Main/GiantEnemyCrab' data-format='R2lhbnRFbmVteUNyYWI='>Giant Enemy Crab</a> Incarnate Karkinos, who is stated to be 13 feet tall, underfoot. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WoofWoofStory' title='/pmwiki/pmwiki.php/Literature/WoofWoofStory' data-format='TGl0ZXJhdHVyZS9Xb29mV29vZlN0b3J5'>Woof Woof Story</a></em>, the main character is reincarnated into a puppy who is adopted by a wealthy noble girl in a fantasy world after he died of overwork as a Japanese salaryman. This was after a goddess apparently granted his wish to be reborn as a pet to live an easy life. The first hint that he's not a normal dog is when he looks in a mirror and realizes that he is <em>much</em> larger than his owner after only one month after his adoption. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');"> Comic Books </div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/AtomicKnights' title='/pmwiki/pmwiki.php/ComicBook/AtomicKnights' data-format='Q29taWNCb29rL0F0b21pY0tuaWdodHM='>Atomic Knights</a></em> rode giant Dalmatians who had been gentically altered due to exposure to radiation. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Fables' title='/pmwiki/pmwiki.php/ComicBook/Fables' data-format='Q29taWNCb29rL3t7RmFibGVzfX0='>Fables</a></em>: Bigby's true form which he can assume anytime he wishes is that of a huge wolf as tall as a two story house. </li><li> John Constantine of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Hellblazer' title='/pmwiki/pmwiki.php/ComicBook/Hellblazer' data-format='Q29taWNCb29rL3t7SGVsbGJsYXplcn19'>Hellblazer</a></em> once had to put down a ghost-possessed bulldog the size of a rhino. </li><li> Lockjaw from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheInhumans' title='/pmwiki/pmwiki.php/ComicBook/TheInhumans' data-format='Q29taWNCb29rL1RoZUluaHVtYW5z'>The Inhumans</a></em>, though for a while he was considered an Inhuman mutated into his current form, as per <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JohnByrne' title='/pmwiki/pmwiki.php/Creator/JohnByrne' data-format='Q3JlYXRvci9Kb2huQnlybmU='>John Byrne</a>. This later got retconned into Gorgon and Karnak playing a cruel joke on <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/FantasticFour' title='/pmwiki/pmwiki.php/ComicBook/FantasticFour' data-format='W1tDb21pY0Jvb2svRmFudGFzdGljRm91ciB0aGUgVGhpbmddXQ=='>the Thing</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheMightyThor' title='/pmwiki/pmwiki.php/ComicBook/TheMightyThor' data-format='Q29taWNCb29rL1RoZU1pZ2h0eVRob3I='>The Mighty Thor</a></em> features Fenrir, the giant wolf from <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>, as a member of Thor's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoguesGallery' title='/pmwiki/pmwiki.php/Main/RoguesGallery' data-format='Um9ndWVzR2FsbGVyeQ=='>Rogues Gallery</a>. This version is also a shapeshifter, powerful enough to take on <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/DoctorStrange' title='/pmwiki/pmwiki.php/ComicBook/DoctorStrange' data-format='W1tDb21pY0Jvb2svRG9jdG9yU3RyYW5nZSBEb3JtYW1tdV1d'>Dormammu</a>, and the progenitor of many wolf gods and spirits. The latter tidbit ends up making him <span class="spoiler" title="you can set spoilers visible by default on your profile" > a "grandfather" of sorts to <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/NewMutants' title='/pmwiki/pmwiki.php/ComicBook/NewMutants' data-format='W1tDb21pY0Jvb2svTmV3TXV0YW50cyBXb2xmc2JhbmUmIzAzOTtzXV0='>Wolfsbane's</a> son, who was fathered with Hrimhari, one of Fenrir's many kids.</span> Personality wise, he's mean and aggressive, but also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvenEvilHasLovedOnes' title='/pmwiki/pmwiki.php/Main/EvenEvilHasLovedOnes' data-format='W1tFdmVuRXZpbEhhc0xvdmVkT25lcyBkZWVwbHkgcHJvdGVjdGl2ZSBvZiBoaXMgY2hpbGRyZW4vZGVzY2VuZGFudHNdXQ=='>deeply protective of his children/descendants</a> and isn't totally unreasonable. Still a major-league <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Jerkass' title='/pmwiki/pmwiki.php/Main/Jerkass' data-format='e3tKZXJrYXNzfX0='>Jerkass</a>, but he could be worse. </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> had the giant dog Martin Tenbones, about the size of a small car, originally the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImaginaryFriend' title='/pmwiki/pmwiki.php/Main/ImaginaryFriend' data-format='W1tJbWFnaW5hcnlGcmllbmQgaW1hZ2luYXJ5IHBsYXltYXRlXV0='>imaginary playmate</a> of Barbie, the protagonist of the "A Game of You" arc, but who came into the waking world to try to warn her about the arc's villian, giving her The Porpentine, a magical amulet, before <span class="spoiler" title="you can set spoilers visible by default on your profile" > he was shot and killed by the authorities</span>. Despite being a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigFriendlyDog' title='/pmwiki/pmwiki.php/Main/BigFriendlyDog' data-format='QmlnRnJpZW5kbHlEb2c='>Big Friendly Dog</a>, upon his appearance he terrified an itinerant woman half to death. </li><li> The epilogue of the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/EmilyCarroll' title='/pmwiki/pmwiki.php/Creator/EmilyCarroll' data-format='Q3JlYXRvci9FbWlseUNhcnJvbGw='>Emily Carroll</a> horror comic anthology <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ThroughTheWoods' title='/pmwiki/pmwiki.php/ComicBook/ThroughTheWoods' data-format='Q29taWNCb29rL1Rocm91Z2hUaGVXb29kcw=='>Through the Woods</a></em> is a short story where a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedRidingHoodReplica' title='/pmwiki/pmwiki.php/Main/RedRidingHoodReplica' data-format='UmVkUmlkaW5nSG9vZFJlcGxpY2E='>Red Riding Hood Replica</a> travels through the woods to her grandmother's house safely and without incident. In her room that night, she looks out the window at the moon and comments out loud what a pleasant walk it was and how she knew the wolf wouldn't get her. The moon promptly turns out to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThatsNoMoon' title='/pmwiki/pmwiki.php/Main/ThatsNoMoon' data-format='W1tUaGF0c05vTW9vbiBvbmUgb2YgdGhlIHdvbGYmIzAzOTtzIGV5ZXNdXQ=='>one of the wolf's eyes</a>, and he takes a moment to address her, leaving her traumatized and her confidence shattered. <div class='indent'><strong>Wolf:</strong> Oh, but you must travel through those woods again and again, and you must be lucky to avoid the wolf every time. But the <em>wolf</em>... <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilOnlyHasToWinOnce' title='/pmwiki/pmwiki.php/Main/EvilOnlyHasToWinOnce' data-format='W1tFdmlsT25seUhhc1RvV2luT25jZSB0aGUgd29sZiBvbmx5IG5lZWRzIGVub3VnaCBsdWNrIHRvIGZpbmQgeW91IG9uY2VdXQ=='>the wolf only needs enough luck to find you once</a>. </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');"> Eastern Animation </div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Animation/MaxipesFik' title='/pmwiki/pmwiki.php/Animation/MaxipesFik' data-format='QW5pbWF0aW9uL01heGlwZXNGaWs='>Maxipes Fik</a></em>: Maxipes (dog=pes) F铆k, the dog hero from Czech animated shorts for children. When a girl named 脕ja (pronounced Ah-ya) got him as a puppy, he was normal-sized, but he grew to enormous size. He grew even bigger when he drank a barrel of beer, and 脕ja's father had to build a garage-like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BiggerOnTheInside' title='/pmwiki/pmwiki.php/Main/BiggerOnTheInside' data-format='W1tCaWdnZXJPblRoZUluc2lkZSBkb2ctaG91c2VdXQ=='>dog-house</a> for F铆k. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');"> Fan Works </div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheBeastOfGusu' title='/pmwiki/pmwiki.php/Fanfic/TheBeastOfGusu' data-format='RmFuZmljL1RoZUJlYXN0T2ZHdXN1'>The Beast Of Gusu</a></em>: Shifters' animal forms are all slightly bigger than regular animals, but wolf shifters are stated to become massive, to the point where it鈥檚 rumoured that a wolf alone could take down an army. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ADiplomaticVisit' title='/pmwiki/pmwiki.php/Fanfic/ADiplomaticVisit' data-format='RmFuZmljL0FEaXBsb21hdGljVmlzaXQ='>A Diplomatic Visit</a></em>: In chapter 9, while Twilight and Swift-Pad are meeting the students at the Ponyville Schoolhouse, Snails mentions a legend about the Dire Wolves, larger wolves that supposedly inhabit the land that the Three Tribes migrated away from, and asks if Swift-Pad's people are related to them. Later, when meeting Wise-Mind, Packleader of the Strong-Defend pack, Twilight sees how much larger and more intimidating he is in appearance and thinks to herself that he looks like what she'd expect of the Dire Wolves that Snails described. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/GuardiansWizardsAndKungFuFighters' title='/pmwiki/pmwiki.php/Fanfic/GuardiansWizardsAndKungFuFighters' data-format='RmFuZmljL0d1YXJkaWFuc1dpemFyZHNBbmRLdW5nRnVGaWdodGVycw=='>Guardians, Wizards, and Kung-Fu Fighters</a></em>: After <span class="spoiler" title="you can set spoilers visible by default on your profile" > Jade</span> becomes a Shapeshifter, she can transform into a giant wolf. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheMoonstoneCup' title='/pmwiki/pmwiki.php/Fanfic/TheMoonstoneCup' data-format='RmFuZmljL1RoZU1vb25zdG9uZUN1cA=='>The Moonstone Cup</a></em>: The lands north of Equestria are home to giant sapient wolves. Their ruler, the immortal god-wolf Amarok, is immense — he's easily larger than Celestia, who is herself around three times a regular pony's height. </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>: Zim's new ally <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurVampiresAreDifferent' title='/pmwiki/pmwiki.php/Main/OurVampiresAreDifferent' data-format='W1tPdXJWYW1waXJlc0FyZURpZmZlcmVudCBOb3Jsb2NrXV0='>Norlock</a> has a pet wolf named Phil, who's described as being the size of a horse and built like a silverback gorilla. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ATroublesomeCharge' title='/pmwiki/pmwiki.php/Fanfic/ATroublesomeCharge' data-format='RmFuZmljL0FUcm91Ymxlc29tZUNoYXJnZQ=='>A Troublesome Charge</a></em> series, Fairy the spiritual dog is normally the size of a small pony. She gets even bigger in battle! </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');"> Film — Animation </div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> Due to the shifted scale, Toby from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheGreatMouseDetective' title='/pmwiki/pmwiki.php/WesternAnimation/TheGreatMouseDetective' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVHcmVhdE1vdXNlRGV0ZWN0aXZl'>The Great Mouse Detective</a></em> qualifies. He's an ordinary pup, but all the other characters are mice. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Steampunk' title='/pmwiki/pmwiki.php/Main/Steampunk' data-format='e3tTdGVhbXB1bmt9fQ=='>Steampunk</a> cartoon <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MrHublot' title='/pmwiki/pmwiki.php/WesternAnimation/MrHublot' data-format='V2VzdGVybkFuaW1hdGlvbi9Nckh1YmxvdA=='>Mr. Hublot</a></em>, a cute little mechanical puppy grows (somehow) into an enormous mechanical dog that is several times larger than its owner. </li><li> The titular Big Paw from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PoundPuppiesAndTheLegendOfBigPaw' title='/pmwiki/pmwiki.php/WesternAnimation/PoundPuppiesAndTheLegendOfBigPaw' data-format='V2VzdGVybkFuaW1hdGlvbi9Qb3VuZFB1cHBpZXNBbmRUaGVMZWdlbmRPZkJpZ1Bhdw=='>Pound Puppies and the Legend of Big Paw</a></em> is a giant <em>puppy</em>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Wolfwalkers' title='/pmwiki/pmwiki.php/WesternAnimation/Wolfwalkers' data-format='V2VzdGVybkFuaW1hdGlvbi97e1dvbGZ3YWxrZXJzfX0='>Wolfwalkers</a></em>, adult <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurWerewolvesAreDifferent' title='/pmwiki/pmwiki.php/Main/OurWerewolvesAreDifferent' data-format='W1tPdXJXZXJld29sdmVzQXJlRGlmZmVyZW50IFdvbGZ3YWxrZXJzXV0='>Wolfwalkers</a> are huge in their wolf forms, standing eye-to-eye with grown men. Meanwhile, child Wolfwalkers like Mebh are a bit smaller than an average wolf. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');"> Film — Live-Action </div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Film/DigbyTheBiggestDogInTheWorld' title='/pmwiki/pmwiki.php/Film/DigbyTheBiggestDogInTheWorld' data-format='RmlsbS9EaWdieVRoZUJpZ2dlc3REb2dJblRoZVdvcmxk'>Digby The Biggest Dog In The World</a></em>. The titular hound is a freakishly huge Old English Sheepdog who grew due to drinking liquid growth formula. </li><li> King Caesar from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Godzilla' title='/pmwiki/pmwiki.php/Franchise/Godzilla' data-format='RnJhbmNoaXNlL3t7R29kemlsbGF9fQ=='>Godzilla</a></em> movies. Maybe. The mythological creature that he is based on (a shisa, hence his name) has attributes of both dogs and lions. Further complicating things is the fact that he is not a flesh and blood creature but rather an elaborate <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LivingStatue' title='/pmwiki/pmwiki.php/Main/LivingStatue' data-format='TGl2aW5nU3RhdHVl'>Living Statue</a>, though this isn't really made clear in his introduction. </li><li> The three giant dogs from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Hulk' title='/pmwiki/pmwiki.php/Film/Hulk' data-format='RmlsbS97e0h1bGt9fQ=='>Hulk</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/InvisibleMom' title='/pmwiki/pmwiki.php/Film/InvisibleMom' data-format='RmlsbS9JbnZpc2libGVNb20='>Invisible Mom</a></em>: After Laura becomes visible again during the film, her husband Karl begins talking about a new invented chemical that makes things bigger. When Laura insists him to stop working on risky experiments (since his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Invisibility' title='/pmwiki/pmwiki.php/Main/Invisibility' data-format='e3tpbnZpc2liaWxpdHl9fQ=='>invisibility</a> chemical was what caused the movie's overarching conflict), he assures her that he threw it to the trash bin... too bad <span class="spoiler" title="you can set spoilers visible by default on your profile" >their dog Cosmo snooped there and drank the disposed growth chemical, becoming a giant dog</span>. </li><li> The wolves in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheJungleBook2016' title='/pmwiki/pmwiki.php/Film/TheJungleBook2016' data-format='RmlsbS9UaGVKdW5nbGVCb29rMjAxNg=='>The Jungle Book (2016)</a></em>. They're at least twice the size of real grey wolves. <!--* Gmork from ''Film/TheNeverendingStory1984''.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Rampage2018' title='/pmwiki/pmwiki.php/Film/Rampage2018' data-format='RmlsbS9SYW1wYWdlMjAxOA=='>Rampage (2018)</a></em>: Ralph is a mutated wolf that grows to the size of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Kaiju' title='/pmwiki/pmwiki.php/Main/Kaiju' data-format='e3tLYWlqdX19'>Kaiju</a>. </li><li> The Beast in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheSandlot' title='/pmwiki/pmwiki.php/Film/TheSandlot' data-format='RmlsbS9UaGVTYW5kbG90'>The Sandlot</a></em> is played by a real dog, but photographed to appear almost supernaturally large. Then again, the canine actor was a mastiff who weighed over 200 pounds, pushing this trope into <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a> territory. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ThorRagnarok' title='/pmwiki/pmwiki.php/Film/ThorRagnarok' data-format='RmlsbS9UaG9yUmFnbmFyb2s='>Thor: Ragnarok</a></em> has Fenris, a gender-swapped version of Fenrir (see Comics section). She's as tall as a building and wide enough to take up the entire Rainbow Bridge. During the finale, she ends up <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CoolVersusAwesome' title='/pmwiki/pmwiki.php/Main/CoolVersusAwesome' data-format='W1tDb29sVmVyc3VzQXdlc29tZSBoYXZpbmcgYSBicnV0YWwgYmF0dGxlIHdpdGggdGhlIEh1bGtdXQ=='>having a brutal battle with the Hulk</a>. Notably, she's big and powerful enough to make the Hulk bleed — something few people, aside from <a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheIncredibleHulk2008' title='/pmwiki/pmwiki.php/Film/TheIncredibleHulk2008' data-format='W1tGaWxtL1RoZUluY3JlZGlibGVIdWxrMjAwOCBUaGUgQWJvbWluYXRpb25dXQ=='>The Abomination</a>, has ever been able to do. </li><li> Brutus the Great Dane from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheUglyDachshund' title='/pmwiki/pmwiki.php/Film/TheUglyDachshund' data-format='RmlsbS9UaGVVZ2x5RGFjaHNodW5k'>The Ugly Dachshund</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');"> Literature </div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BlackLegion' title='/pmwiki/pmwiki.php/Literature/BlackLegion' data-format='TGl0ZXJhdHVyZS9CbGFja0xlZ2lvbg=='>Black Legion</a></em> Khayon's bond creature, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDemonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDemonsAreDifferent' data-format='W1tPdXJEZW1vbnNBcmVEaWZmZXJlbnQgZGFlbW9uXV0='>daemon</a> Gyre, takes a form of enormous Fenrisian she-wolf. Khayon notes, though, that she doesn't really act like a wolf. </li><li> Pictured above: <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/CliffordTheBigRedDog' title='/pmwiki/pmwiki.php/Literature/CliffordTheBigRedDog' data-format='TGl0ZXJhdHVyZS9DbGlmZm9yZFRoZUJpZ1JlZERvZw=='>Clifford the Big Red Dog</a></em>. The girl over there is his owner, Emily Elizabeth. Note that Clifford was born the runt of the litter; we're told that his growing to that size was a direct result of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThePowerOfLove' title='/pmwiki/pmwiki.php/Main/ThePowerOfLove' data-format='W1tUaGVQb3dlck9mTG92ZSBFbWlseSBFbGl6YWJldGgmIzAzOTtzIGxvdmVdXQ=='>Emily Elizabeth's love</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDresdenFiles' title='/pmwiki/pmwiki.php/Literature/TheDresdenFiles' data-format='TGl0ZXJhdHVyZS9UaGVEcmVzZGVuRmlsZXM='>The Dresden Files</a></em> has Mouse, who gets his name as a puppy when Harry has him riding around in his pocket for the book. Turns out he had a whole lot of growing to do. Harry often makes jokes about the fact that Mouse is the size of a pony (literally; Harry is somewhere in the region of 6'8'' tall, and Mouse's shoulders come to his waist), ranging from calling him a "West Highlands Dogasaurus" to, "He's a mutt. Half mastiff, half woolly mammoth." He's also explicitly magical and seems to be somewhere around human intelligence, although his inability to speak can make it tough to tell exactly how much he knows. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheGeneralSeries' title='/pmwiki/pmwiki.php/Literature/TheGeneralSeries' data-format='TGl0ZXJhdHVyZS9UaGVHZW5lcmFsU2VyaWVz'>The General Series</a></em> standard cavalry mounts are dogs bred up to the size of horses, and described as between eight- and fifteen-hundred pounds of fur, fangs and bad tempers. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HarryPotter' title='/pmwiki/pmwiki.php/Literature/HarryPotter' data-format='TGl0ZXJhdHVyZS9IYXJyeVBvdHRlcg=='>Harry Potter</a></em>: Fluffy from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HarryPotterAndThePhilosophersStone' title='/pmwiki/pmwiki.php/Literature/HarryPotterAndThePhilosophersStone' data-format='TGl0ZXJhdHVyZS9IYXJyeVBvdHRlckFuZFRoZVBoaWxvc29waGVyc1N0b25l'>Harry Potter and the Philosopher's Stone</a></em> is a three-headed dog that is inspired by <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='W1tNeXRoL0NsYXNzaWNhbE15dGhvbG9neSBDZXJiZXJ1c11d'>Cerberus</a>. He is big enough to nearly fill a room. </li><li> The lack of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapeshifterBaggage' title='/pmwiki/pmwiki.php/Main/ShapeshifterBaggage' data-format='U2hhcGVzaGlmdGVyQmFnZ2FnZQ=='>Shapeshifter Baggage</a> for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurWerebeastsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurWerebeastsAreDifferent' data-format='W1tPdXJXZXJlYmVhc3RzQXJlRGlmZmVyZW50IEx5Y2FudGhyb3Blc11d'>Lycanthropes</a> in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/KittyNorville' title='/pmwiki/pmwiki.php/Literature/KittyNorville' data-format='TGl0ZXJhdHVyZS9LaXR0eU5vcnZpbGxl'>Kitty Norville</a></em> books mean that werewolves range from 100-pound "That's a big one." to 250-pound <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OhCrap' title='/pmwiki/pmwiki.php/Main/OhCrap' data-format='W1tPaENyYXAgIkFBQUFBSEhISEhIISEhISEhIl1d'>"AAAAAHHHHHH!!!!!!"</a> wolves when they shift. </li><li> The feral dogs in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/LocksmithsCloset' title='/pmwiki/pmwiki.php/Literature/LocksmithsCloset' data-format='TGl0ZXJhdHVyZS9Mb2Nrc21pdGhzQ2xvc2V0'>Locksmith's Closet</a></em>. Some of them are three feet tall at the shoulder and weigh about 200 pounds. Others are bigger than that. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MalazanBookOfTheFallen' title='/pmwiki/pmwiki.php/Literature/MalazanBookOfTheFallen' data-format='TGl0ZXJhdHVyZS9NYWxhemFuQm9va09mVGhlRmFsbGVu'>Malazan Book of the Fallen</a></em> loves its huge canines: <ul ><li> The T'lan Ay are huge prehistoric wolves. And <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheUndead' title='/pmwiki/pmwiki.php/Main/TheUndead' data-format='W1tUaGVVbmRlYWQgVW5kZWFkXV0='>Undead</a> to boot, as they've been extinct for about 320,000 years, when the T'lan Imass decided to include them in the Ritual of Tellann, which made the Imass undead. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HellHound' title='/pmwiki/pmwiki.php/Main/HellHound' data-format='W1tIZWxsSG91bmQgSG91bmRzIG9mIFNoYWRvd11d'>Hounds of Shadow</a> and eventually the <span class="spoiler" title="you can set spoilers visible by default on your profile" >Hounds of Light</span> also count. They're said to be the size of ponies, and the former can travel between realms using <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CastingAShadow' title='/pmwiki/pmwiki.php/Main/CastingAShadow' data-format='W1tDYXN0aW5nQVNoYWRvdyBzaGFkb3cgbWFnaWNdXQ=='>shadow magic</a> as they are basically the pets of the King of High House Shadow. They are also thousands, if not hundreds of thousands years old. </li><li> The Deragoth, or Hounds of Darkness, are supposed to be even bigger and to reseble bears in size. They may be even older than the Hounds of Shadow, old enough, in fact, to once have domesticated early humans as <em>their</em> pets. </li><li> There is also Ryllandaras, a man/jackal <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VoluntaryShapeshifting' title='/pmwiki/pmwiki.php/Main/VoluntaryShapeshifting' data-format='W1tWb2x1bnRhcnlTaGFwZXNoaWZ0aW5nIHNoYXBlc2hpZnRpbmddXQ=='>shapeshifting</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Animorphism' title='/pmwiki/pmwiki.php/Main/Animorphism' data-format='W1t7e0FuaW1vcnBoaXNtfX0gYmVhc3RdXQ=='>beast</a> that towers over everyone around it. </li></ul></li><li> Werewolves in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MercyThompson' title='/pmwiki/pmwiki.php/Literature/MercyThompson' data-format='TGl0ZXJhdHVyZS9NZXJjeVRob21wc29u'>Mercy Thompson</a></em> <em>always</em> gain mass when they take wolf form. This means that a human woman who weighs 110 lbs turns into a 180 lb wolf while a 180 lb man turns into a 250 lb wolf. The wolf forms of characters like Adam and Charles are described as being enormous. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/OperationChaos' title='/pmwiki/pmwiki.php/Literature/OperationChaos' data-format='TGl0ZXJhdHVyZS9PcGVyYXRpb25DaGFvcw=='>Operation Chaos</a></em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PoulAnderson' title='/pmwiki/pmwiki.php/Creator/PoulAnderson' data-format='Q3JlYXRvci9Qb3VsQW5kZXJzb24='>Poul Anderson</a>, the werewolf hero can be a 180-pound man or a 180-pound wolf. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PercyJacksonAndTheOlympians' title='/pmwiki/pmwiki.php/Literature/PercyJacksonAndTheOlympians' data-format='TGl0ZXJhdHVyZS97e1BlcmN5IEphY2tzb258QW5kVGhlT2x5bXBpYW5zfX0='>Percy Jackson</a>'s lovable hellhound Mrs. O'Leary. </li><li> Fully grown <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NobleWolf' title='/pmwiki/pmwiki.php/Main/NobleWolf' data-format='W1tOb2JsZVdvbGYgZGlyZXdvbHZlc11d'>direwolves</a> in <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> are the size of a pony. </li><li> The adults in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SpotTheDog' title='/pmwiki/pmwiki.php/WesternAnimation/SpotTheDog' data-format='V2VzdGVybkFuaW1hdGlvbi9TcG90VGhlRG9n'>Spot the Dog</a></em>'s world. At least, in the early books, and assuming the scale of their houses are one-to-one with those of the human world. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheFireRose' title='/pmwiki/pmwiki.php/Literature/TheFireRose' data-format='TGl0ZXJhdHVyZS9UaGVGaXJlUm9zZQ=='>The Fire Rose</a></em>: Jason Cameron's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Animorphism' title='/pmwiki/pmwiki.php/Main/Animorphism' data-format='e3tBbmltb3JwaGlzbX19'>Animorphism</a> ritual that went wrong was intended to "shape his own body into the form of a gigantic, man-sized wolf." </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RogerZelazny' title='/pmwiki/pmwiki.php/Creator/RogerZelazny' data-format='Q3JlYXRvci9Sb2dlclplbGF6bnk='>Roger Zelazny</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ThisImmortal' title='/pmwiki/pmwiki.php/Literature/ThisImmortal' data-format='TGl0ZXJhdHVyZS9UaGlzSW1tb3J0YWw='>This Immortal</a></em> has Bortan, Conrad's dog he once found as a puppy and reared, never imagining it would grow as big as a horse — with plates at his sides and other mutations — or live for as long as thirty years and counting. If not for natural causes (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/Mutants' title='/pmwiki/pmwiki.php/Main/Mutants' data-format='W1t7e011dGFudHN9fSBtdXRhdGlvbiB0aHJvdWdoIHJhZGlhdGlvbl1d'>mutation through radiation</a>), Bortan would qualify as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hellhound' title='/pmwiki/pmwiki.php/Main/Hellhound' data-format='e3tIZWxsaG91bmR9fQ=='>Hellhound</a>, and Conrad even calls him one repeatedly. <div class='indent'><strong>Conrad:</strong> Was there ever another dog the size of a small horse, with armor plates on his sides, and jaws like a trap for bears? </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TimeOutOfTime' title='/pmwiki/pmwiki.php/Literature/TimeOutOfTime' data-format='TGl0ZXJhdHVyZS9UaW1lT3V0T2ZUaW1l'>Time Out of Time</a></em>: Gwydon is a massive wolf with the ability to fly. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TolkiensLegendarium' title='/pmwiki/pmwiki.php/Franchise/TolkiensLegendarium' data-format='RnJhbmNoaXNlL1RvbGtpZW5zTGVnZW5kYXJpdW0='>Tolkien's Legendarium</a></em>: <ul ><li> Orcs occasionally ride Wargs (most noticeably seen in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHobbit' title='/pmwiki/pmwiki.php/Literature/TheHobbit' data-format='TGl0ZXJhdHVyZS9UaGVIb2JiaXQ='>The Hobbit</a></em>), which are giant evil wolves. </li><li> Also, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSilmarillion' title='/pmwiki/pmwiki.php/Literature/TheSilmarillion' data-format='TGl0ZXJhdHVyZS9UaGVTaWxtYXJpbGxpb24='>The Silmarillion</a></em> has Huan, the huge intelligent dog (good), and Carcharoth, the huge (were)wolf (evil). </li></ul></li><li> The Quileute shapeshifters in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTwilightSaga' title='/pmwiki/pmwiki.php/Literature/TheTwilightSaga' data-format='TGl0ZXJhdHVyZS9UaGVUd2lsaWdodFNhZ2E='>The Twilight Saga</a></em> sequels turn into wolves as big as horses. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/LewisCarroll' title='/pmwiki/pmwiki.php/Creator/LewisCarroll' data-format='Q3JlYXRvci9MZXdpc0NhcnJvbGw='>Lewis Carroll</a>'s <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>, Alice briefly encounters a puppy about the size of a minivan. (Actually the puppy is normal; <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncredibleShrinkingMan' title='/pmwiki/pmwiki.php/Main/IncredibleShrinkingMan' data-format='W1tJbmNyZWRpYmxlU2hyaW5raW5nTWFuIGl0JiMwMzk7cyBBbGljZSB3aG8gaXMgYW5vbWFsb3VzLl1d'>it's Alice who is anomalous.</a>) Its boisterousness makes it more than a little frightening. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheWolvesOfParis' title='/pmwiki/pmwiki.php/Literature/TheWolvesOfParis' data-format='TGl0ZXJhdHVyZS9UaGVXb2x2ZXNPZlBhcmlz'>The Wolves of Paris</a></em> is based on the Beast of G茅vaudan. In the book, the Beast of G茅vaudan is a wolf-dog who's several feet larger than a human. This is because his father was an alaunt, a breed known for being huge. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');"> Live-Action TV </div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GameOfThrones' title='/pmwiki/pmwiki.php/Series/GameOfThrones' data-format='U2VyaWVzL0dhbWVPZlRocm9uZXM='>Game of Thrones</a></em>: The Stark direwolves, which are an unusually large and intelligent species of wolf. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='e3tCaWcgR29vZH19cw=='>Big Goods</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TokusouSentaiDekaranger' title='/pmwiki/pmwiki.php/Series/TokusouSentaiDekaranger' data-format='U2VyaWVzL1Rva3Vzb3VTZW50YWlEZWthcmFuZ2Vy'>Tokusou Sentai Dekaranger</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersSPD' title='/pmwiki/pmwiki.php/Series/PowerRangersSPD' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc1NQRA=='>Power Rangers S.P.D.</a></em> are anthropomorphic dog aliens named Doggie Kruger/Deka Master and Anubis 'Doggie' Cruger/SPD Shadow Ranger respectively. Bonus points for <em>both</em> being voiced by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TetsuInada' title='/pmwiki/pmwiki.php/Creator/TetsuInada' data-format='Q3JlYXRvci9UZXRzdUluYWRh'>Tetsu Inada</a> in Japan (he was Kruger's original VA, but SPD gets a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecursiveImport' title='/pmwiki/pmwiki.php/Main/RecursiveImport' data-format='UmVjdXJzaXZlSW1wb3J0'>Recursive Import</a> so he's back to dub Cruger). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheTwilightZone1985' title='/pmwiki/pmwiki.php/Series/TheTwilightZone1985' data-format='U2VyaWVzL1RoZVR3aWxpZ2h0Wm9uZTE5ODU='>The Twilight Zone (1985)</a></em>: In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheTwilightZone1985S1E16' title='/pmwiki/pmwiki.php/Recap/TheTwilightZone1985S1E16' data-format='W1tSZWNhcC9UaGVUd2lsaWdodFpvbmUxOTg1UzFFMTYgVGhlIEVsZXZhdG9yXV0='>The Elevator</a>", Roger and Will find a dead dog that ate their father's super food and became a giant. It was killed by something larger which they later discover was a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GiantSpider' title='/pmwiki/pmwiki.php/Main/GiantSpider' data-format='R2lhbnRTcGlkZXI='>Giant Spider</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');"> Myths & Religion </div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='W1tNeXRoL0NsYXNzaWNhbE15dGhvbG9neSBHcmVlayBNeXRob2xvZ3ldXQ=='>Greek Mythology</a>: <ul ><li> Cerberus which also is three-headed and, depending on the story, is on fire or possesses a mane of snakes. </li><li> Orthros, the hound of Geryon, Orthros had two heads and a snake for a tail. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>: <ul ><li> Garm like Cerberus, guards the Underworld (Hel). </li><li> Fenrir, the son of Loki and a giantess, who bit off the hand of the god Tyr; fated to kill Odin. Fenrir in particular is enormous. When he opens his mouth his lower jaw is on the ground and his upper jaw hits the sky. </li><li> Sk枚ll who is fated to consume S贸l, aka the sun. </li><li> Hati who is fated to consume M谩ni, aka the moon. </li><li> If you go back far enough the Valkyries rode wolves the size of war horses. </li></ul></li><li> Black Shuck, the mysterious <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HellHound' title='/pmwiki/pmwiki.php/Main/HellHound' data-format='W1tIZWxsSG91bmQgQmxhY2sgRG9nXV0='>Black Dog</a> from Norfolk folklore, is sometimes said to be the size of a horse. Smaller than some other examples here, but still much bigger than a dog should be. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');"> Radio </div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> Tony Hancock bought a pet puppy for his girlfriend Andr茅e in one episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/HancocksHalfHour' title='/pmwiki/pmwiki.php/Radio/HancocksHalfHour' data-format='UmFkaW8vSGFuY29ja3NIYWxmSG91cg=='>Hancock's Half Hour</a></em>, said puppy turned out to be one of these. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');"> Roleplay </div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/TheDaoOfTheAwakened' title='/pmwiki/pmwiki.php/Roleplay/TheDaoOfTheAwakened' data-format='Um9sZXBsYXkvVGhlRGFvT2ZUaGVBd2FrZW5lZA=='>The Dao of the Awakened</a></em>, there is Tianlang, a Spirit Wolf living at a Font, is about the size of a house. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');"> Tabletop Games </div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em>: Various forms of giant wolves (and, sometimes, other canids and vulpines) have shown up throughout the games. The iconic three, which seem to show up in every setting, are Dire Wolves (regular wolves, but bigger and stronger), Wargs/Worgs (Dire Wolves with human-like intelligence and evil alignments), and Winter Wolves (Wargs that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnIcePerson' title='/pmwiki/pmwiki.php/Main/AnIcePerson' data-format='W1tBbkljZVBlcnNvbiBoYXZlIGEgZnJlZXppbmcgY29sZCBiaXRlIGF0dGFjayBhbmRdXQ=='>have a freezing cold bite attack and</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreathWeapon' title='/pmwiki/pmwiki.php/Main/BreathWeapon' data-format='QnJlYXRoV2VhcG9u'>Breath Weapon</a>). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' title='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' data-format='VGFibGV0b3BHYW1lL01hZ2ljVGhlR2F0aGVyaW5n'>Magic: The Gathering</a></em> has <a class='urllink' href='http://magiccards.info/shm/en/68.html'>Hollowborn Barghest<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, a very big dog. That's not dry grass it's standing in — those are <em>trees</em>. </li><li> The mammoth rider <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrestigeClass' title='/pmwiki/pmwiki.php/Main/PrestigeClass' data-format='UHJlc3RpZ2VDbGFzcw=='>Prestige Class</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' title='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' data-format='VGFibGV0b3BHYW1lL3t7UGF0aGZpbmRlcn19'>Pathfinder</a></em> allows players to have a Huge (roughly elephant-sized) wolf if they want to, among other possible choices of massive animal companions. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SpaceWolf' title='/pmwiki/pmwiki.php/Literature/SpaceWolf' data-format='TGl0ZXJhdHVyZS97e1NwYWNlIFdvbHxmfX12ZXM='>Space Wolves</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' data-format='VGFibGV0b3BHYW1lL1dhcmhhbW1lcjQwMDAw'>Warhammer 40,000</a></em> ride giant wolves called <a class='urllink' href='https://wh40k.lexicanum.com/wiki/Fenrisian_Wolf'>Fenrisian Wolves<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (named after their homeworld). How giant? They can take a <em>seven-foot-tall</em> Viking <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpaceMarine' title='/pmwiki/pmwiki.php/Main/SpaceMarine' data-format='U3BhY2VNYXJpbmU='>Space Marine</a> in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoweredArmor' title='/pmwiki/pmwiki.php/Main/PoweredArmor' data-format='UG93ZXJlZEFybW9y'>Powered Armor</a> to ride and some reach the size of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AwesomePersonnelCarrier' title='/pmwiki/pmwiki.php/Main/AwesomePersonnelCarrier' data-format='W1tBd2Vzb21lUGVyc29ubmVsQ2FycmllciBSaGlubyB0YW5rXV0='>Rhino tank</a>, (whose carrying capacity is ten of the aforementioned <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoweredArmor' title='/pmwiki/pmwiki.php/Main/PoweredArmor' data-format='UG93ZXJlZEFybW9y'>Powered Armor</a>-wearing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpaceMarine' title='/pmwiki/pmwiki.php/Main/SpaceMarine' data-format='e3tTcGFjZSBNYXJpbmV9fXM='>Space Marines</a>). They're also technically <span class="spoiler" title="you can set spoilers visible by default on your profile" >not wolves at all, but the genetically-modified descendants of the original Fenrisian settlers who underwent mutations</span> to survive the planet-wide <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrimUpNorth' title='/pmwiki/pmwiki.php/Main/GrimUpNorth' data-format='R3JpbVVwTm9ydGg='>Grim Up North</a> setting. </li><li> Werewolves in <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlQXBvY2FseXBzZQ=='>Werewolf: The Apocalypse</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheForsaken' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheForsaken' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlRm9yc2FrZW4='>Werewolf: The Forsaken</a></em> can take on five forms, including a 800 pound bipedal wolf-headed war-beast and a dire wolf that is only marginally smaller and even more nimble to make up for the lack of thumbs. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');"> Video Games </div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Bloodborne' title='/pmwiki/pmwiki.php/VideoGame/Bloodborne' data-format='VmlkZW9HYW1lL3t7Qmxvb2Rib3JuZX19'>Bloodborne</a></em> some of the enemies are this trope, with a massive, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManOnFire' title='/pmwiki/pmwiki.php/Main/ManOnFire' data-format='W1tNYW5PbkZpcmUgZmllcnldXQ=='>fiery</a> Guardian of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='W1tFbGRyaXRjaEFib21pbmF0aW9uIHRoZSBHcmVhdCBPbGQgT25lc11d'>the Great Old Ones</a> serving as one of the bosses of the Chalice Dungeons. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BoPathOfTheTealLotus' title='/pmwiki/pmwiki.php/VideoGame/BoPathOfTheTealLotus' data-format='VmlkZW9HYW1lL0JvUGF0aE9mVGhlVGVhbExvdHVz'>B艒: Path of the Teal Lotus</a></em>: Kitsura, the guardian of the Midori Forest and the Kitsune clan is a giant kitsune. </li><li> Giant wolves in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Castlevania' title='/pmwiki/pmwiki.php/Franchise/Castlevania' data-format='RnJhbmNoaXNlL3t7Q2FzdGxldmFuaWF9fQ=='>Castlevania</a></em> games. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DarkSoulsI' title='/pmwiki/pmwiki.php/VideoGame/DarkSoulsI' data-format='VmlkZW9HYW1lL0RhcmtTb3Vsc0k='>Dark Souls</a></em> has the Great Grey Wolf Sif, a giant wolf that wields a giant sword. In the DLC, which takes place centuries in the past, you can meet Sif as a puppy, and they are still slightly larger than a fully grown normal wolf. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DarkSoulsIII' title='/pmwiki/pmwiki.php/VideoGame/DarkSoulsIII' data-format='VmlkZW9HYW1lL0RhcmtTb3Vsc0lJSQ=='>Dark Souls III</a></em> has the Greatwolves of the Painted World, which are just as massive as Sif. One is the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RightHandAttackDog' title='/pmwiki/pmwiki.php/Main/RightHandAttackDog' data-format='UmlnaHRIYW5kQXR0YWNrRG9n'>Right-Hand Attack Dog</a> of the Champion's Gravetender and serves as one half of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DualBoss' title='/pmwiki/pmwiki.php/Main/DualBoss' data-format='RHVhbEJvc3M='>Dual Boss</a> fight against the both of them. The "regular" wolves found in the DLC count as well, with the pack leaders being the size of <a class='urllink' href='https://www.youtube.com/watch?v=7bWF0dbZTIQ'>horses<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> The Mystic Beasts in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Disgaea' title='/pmwiki/pmwiki.php/Franchise/Disgaea' data-format='RnJhbmNoaXNlL3t7RGlzZ2FlYX19'>Disgaea</a></em> series are large horned canids, and seemingly a popular form of transportation, judging from some scenes in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Disgaea4APromiseUnforgotten' title='/pmwiki/pmwiki.php/VideoGame/Disgaea4APromiseUnforgotten' data-format='VmlkZW9HYW1lL3t7RGlzZ2FlYSA0fCBBIFByb21pc2UgVW5mb3Jnb3R0ZW59fQ=='>Disgaea 4</a></em>. In the same game, they can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeMyMonsterGrow' title='/pmwiki/pmwiki.php/Main/MakeMyMonsterGrow' data-format='W1tNYWtlTXlNb25zdGVyR3JvdyBiZWNvbWUgZXZlbiBiaWdnZXJdXQ=='>become even bigger</a> in battle if another monster merges with them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DwarfFortress' title='/pmwiki/pmwiki.php/VideoGame/DwarfFortress' data-format='VmlkZW9HYW1lL0R3YXJmRm9ydHJlc3M='>Dwarf Fortress</a></em>: Savage versions of regular biomes include, among other things, giant versions of all normal animals, including canids (with the exception of actual dogs, as domestic animals don't have giant versions). Giant coyotes are larger than elk, giant dingos are the size of bears, giant foxes are about four times the size of a dwarf and giant wolves are the biggest canids of any sort and grow larger than polar bears. </li><li> Demon Canine from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/EasternExorcist' title='/pmwiki/pmwiki.php/VideoGame/EasternExorcist' data-format='VmlkZW9HYW1lL0Vhc3Rlcm5FeG9yY2lzdA=='>Eastern Exorcist</a></em> is a doberman-turned-giant monster terrorizing a village, who can grab and lift a whole person in it's jaws. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/EternityTheLastUnicorn' title='/pmwiki/pmwiki.php/VideoGame/EternityTheLastUnicorn' data-format='VmlkZW9HYW1lL0V0ZXJuaXR5VGhlTGFzdFVuaWNvcm4='>Eternity: The Last Unicorn</a></em> have Ulfstorr, a gigantic wolf fought in an arena who can spam magical fireballs besides clawing you to shreds. As the game is based on Norse myths, Ulfstorr could be related to the Fenris Wolf. </li><li> The mutated dog-boss in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FurFighters' title='/pmwiki/pmwiki.php/VideoGame/FurFighters' data-format='VmlkZW9HYW1lL0Z1ckZpZ2h0ZXJz'>Fur Fighters</a></em>. An unusual boss as it saw two mutated spouses instead of one. The other rode around on-top of the beast. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HalfLife2' title='/pmwiki/pmwiki.php/VideoGame/HalfLife2' data-format='VmlkZW9HYW1lL0hhbGZMaWZlMg=='>Half-Life 2</a></em>: An honourable mention for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ADogNamedDog' title='/pmwiki/pmwiki.php/Main/ADogNamedDog' data-format='W1tBRG9nTmFtZWREb2cgRG9nXV0='>Dog</a>, Alyx Vance's enormous robotic pet that she's apparently owned since she was a child. He doesn't <em>look</em> much like a dog (at least not anymore, she's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WrenchWench' title='/pmwiki/pmwiki.php/Main/WrenchWench' data-format='W1tXcmVuY2hXZW5jaCBhbiBlbnRodXNpYXN0aWMgYW5kIHNraWxsZWQgbWVjaGFuaWNhbCBlbmdpbmVlcl1d'>an enthusiastic and skilled mechanical engineer</a> and probably upgraded him pretty extensively) but certainly acts like one. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MonsterHunter' title='/pmwiki/pmwiki.php/Franchise/MonsterHunter' data-format='RnJhbmNoaXNlL01vbnN0ZXJIdW50ZXI='>Monster Hunter</a></em>: <ul ><li> The Zinogre, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LightningBruiser' title='/pmwiki/pmwiki.php/Main/LightningBruiser' data-format='TGlnaHRuaW5nQnJ1aXNlcg=='>Lightning Bruiser</a> who was the only Fanged Wyvern in the series before <em>World.</em> It's a huge, fast and agile electric wolf. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MonsterHunterRise' title='/pmwiki/pmwiki.php/VideoGame/MonsterHunterRise' data-format='VmlkZW9HYW1lL01vbnN0ZXJIdW50ZXJSaXNl'>Monster Hunter: Rise</a></em> introduces the Canyne, a very large dog that's big enough to be employed as a mount. Canynes that are trained to accompany Hunters, including for riding, are known as Palamutes. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Pikmin4' title='/pmwiki/pmwiki.php/VideoGame/Pikmin4' data-format='VmlkZW9HYW1lL1Bpa21pbjQ='>Pikmin 4</a></em> introduces Oatchi, a dog-like creature that can carry around tens of Pikmin under the player's control, as well as the player themself. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FinalBoss' title='/pmwiki/pmwiki.php/Main/FinalBoss' data-format='RmluYWxCb3Nz'>Final Boss</a>, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AngryGuardDog' title='/pmwiki/pmwiki.php/Main/AngryGuardDog' data-format='W1tBbmdyeUd1YXJkRG9nIEFuY2llbnQgU2lyZWhvdW5kXV0='>Ancient Sirehound</a>, is about four times Oatchi's size.</span> </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 some notable examples: <ul ><li> The Fire-type Pok茅mon Arcanine, which is big enough to ride around on. </li><li> While Houndoom itself is not that big (though is larger than the dog breeds it most resembles), its <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperMode' title='/pmwiki/pmwiki.php/Main/SuperMode' data-format='W1tTdXBlck1vZGUgTWVnYSBFdm9sdXRpb25dXQ=='>Mega Evolution</a> clocks in at 6'03", the same size as Arcanine (although its horns make up a fair amount of that additional height). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonSwordAndShield' title='/pmwiki/pmwiki.php/VideoGame/PokemonSwordAndShield' data-format='VmlkZW9HYW1lL1Bva2Vtb25Td29yZEFuZFNoaWVsZA=='>Pok茅mon Sword and Shield</a></em> bring the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlympusMons' title='/pmwiki/pmwiki.php/Main/OlympusMons' data-format='W1tPbHltcHVzTW9ucyBjb3ZlciBsZWdlbmRhcmllc11d'>cover legendaries</a>, which are a pair of wolves that are both over 9 feet long and likely stand as tall as Arcanine. Zamazenta is nearly 3 meters long! <ul ><li> Also from <em>Sword and Shield</em>, any Dynamaxed canid Pok茅mon counts as this. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonLegendsArceus' title='/pmwiki/pmwiki.php/VideoGame/PokemonLegendsArceus' data-format='VmlkZW9HYW1lL1Bva2Vtb25MZWdlbmRzQXJjZXVz'>Pok茅mon Legends: Arceus</a></em> introduces Hisuian Arcanine, a regional variant which is slightly bigger than the base version. Then you encounter <a class='urllink' href='https://www.youtube.com/watch?v=N-5t8htuQWo'>Arcanine, Noble Lord of the Isles<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, who is easily 10 feet tall at his head. </li></ul></li><li> Old Red in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ProfessorLaytonAndTheAzranLegacy' title='/pmwiki/pmwiki.php/VideoGame/ProfessorLaytonAndTheAzranLegacy' data-format='VmlkZW9HYW1lL1Byb2Zlc3NvckxheXRvbkFuZFRoZUF6cmFuTGVnYWN5'>Professor Layton and the Azran Legacy</a></em> is, as his name indicates, a huge old red-furred wolf. He's so threatening-looking that he constantly scares the town of Torrido. <span class="spoiler" title="you can set spoilers visible by default on your profile" > Which is actually completely unintended, as he merely has the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FaceOfAThug' title='/pmwiki/pmwiki.php/Main/FaceOfAThug' data-format='RmFjZU9mQVRodWc='>Face of a Thug</a>: he just wants to see his old friend again.</span> </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PuyoPuyo' title='/pmwiki/pmwiki.php/VideoGame/PuyoPuyo' data-format='VmlkZW9HYW1lL1B1eW9QdXlv'>Puyo Puyo</a></em> series, Feli owns a giant armored <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hellhound' title='/pmwiki/pmwiki.php/Main/Hellhound' data-format='e3toZWxsaG91bmR9fQ=='>hellhound</a> named Baldanders. Despite towering over a lot of the other characters and disliking Feli's crush Lemres, Baldanders is actually quite sweet and is even willing to go out of his way to help Feli be with Lemres. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TalesOfBerseria' title='/pmwiki/pmwiki.php/VideoGame/TalesOfBerseria' data-format='VmlkZW9HYW1lL1RhbGVzT2ZCZXJzZXJpYQ=='>Tales of Berseria</a></em> has the boss Therion Orthrus, which is a giant two-headed dog with fire and wind attacks. <span class="spoiler" title="you can set spoilers visible by default on your profile" > It's actually the merged form of two dogs that belonged to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildhoodFriends' title='/pmwiki/pmwiki.php/Main/ChildhoodFriends' data-format='W1tDaGlsZGhvb2RGcmllbmRzIE5pa29dXQ=='>Niko</a> who was killed by Velvet when she first became a Therion herself. Velvet talks them down from killing her for the sake of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Revenge' title='/pmwiki/pmwiki.php/Main/Revenge' data-format='e3tSZXZlbmdlfX0='>Revenge</a> until after <em>she</em> has had her own revenge.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TokyoAfterschoolSummoners' title='/pmwiki/pmwiki.php/VideoGame/TokyoAfterschoolSummoners' data-format='VmlkZW9HYW1lL1Rva3lvQWZ0ZXJzY2hvb2xTdW1tb25lcnM='>Tokyo Afterschool Summoners</a></em>: <ul ><li> Fenrir, an anthropomorphic wolf transient, is able to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Sizeshifter' title='/pmwiki/pmwiki.php/Main/Sizeshifter' data-format='W1t7e1NpemVzaGlmdGVyfX0gY2hhbmdlIGludG8gYSBnYXJnYW50dWFuIHNpemVdXQ=='>change into a gargantuan size</a> that's similar to his mythological counterpart. </li><li> While he isn't a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Sizeshifter' title='/pmwiki/pmwiki.php/Main/Sizeshifter' data-format='e3tTaXplc2hpZnRlcn19'>Sizeshifter</a>, Horkeu Kamui, another wolf transient, stands over 6 ft. tall, making him one of the larger companions in the game. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Undertale' title='/pmwiki/pmwiki.php/VideoGame/Undertale' data-format='VmlkZW9HYW1lL3t7VW5kZXJ0YWxlfX0='>Undertale</a></em>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='W1tNZWFuaW5nZnVsTmFtZSBHcmVhdGVyIERvZ11d'>Greater Dog</a> (who turns out to be a dog in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoweredArmor' title='/pmwiki/pmwiki.php/Main/PoweredArmor' data-format='UG93ZXJlZEFybW9y'>Powered Armor</a>) and in addition the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='W1tNZWFuaW5nZnVsTmFtZSBMZXNzZXIgRG9nXV0='>Lesser Dog</a> (an actual dog-man). <span class="spoiler" title="you can set spoilers visible by default on your profile" > There is also the Endogeny Amalgamate, which is the largest of the dog type monsters by a considerable margin. It initially looks and acts terrifying, but in the end, it turns out to actually be a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigFriendlyDog' title='/pmwiki/pmwiki.php/Main/BigFriendlyDog' data-format='QmlnRnJpZW5kbHlEb2c='>Big Friendly Dog</a>.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Warcraft' title='/pmwiki/pmwiki.php/Franchise/Warcraft' data-format='RnJhbmNoaXNlL3t7V2FyY3JhZnR9fQ=='>Warcraft</a></em>: <ul ><li> Orcs ride large wolves. </li><li> Goldrinn, the wolf god. A picture shows Goldrinn carrying a kodo, a lizard the size of an elephant, in his teeth as if it were the size of a rabbit. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/WorldOfWarcraft' title='/pmwiki/pmwiki.php/VideoGame/WorldOfWarcraft' data-format='VmlkZW9HYW1lL1dvcmxkT2ZXYXJjcmFmdA=='>World of Warcraft</a></em>: Some bosses. Mostly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='W1tNZWFuaW5nZnVsTmFtZSBGZW5ydXMgdGhlIERldm91cmVyLl1d'>Fenrus the Devourer.</a> That thing is MASSIVE. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheWolfAmongUs' title='/pmwiki/pmwiki.php/VideoGame/TheWolfAmongUs' data-format='VmlkZW9HYW1lL1RoZVdvbGZBbW9uZ1Vz'>The Wolf Among Us</a></em>: In the finale, it's revealed that Bigby's true form is <span class="spoiler" title="you can set spoilers visible by default on your profile" >a wolf the size of a <em>Triceratops</em></span>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');"> Web Animation </div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> Parodied with <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/CyanideAndHappiness' title='/pmwiki/pmwiki.php/WebAnimation/CyanideAndHappiness' data-format='V2ViQW5pbWF0aW9uL0N5YW5pZGVBbmRIYXBwaW5lc3M='>Cyanide and Happiness</a></em>: <span class='esc-seq' title='non-wikiword'>S1E3</span>'s "Clawford The Big Blue Cat", which is a huge pain in the ass and kills the owner's mother. WHO CARES?! SHE HAS A DECIMATING GOLIATH! </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder14');"> Webcomics </div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/AllNightLaundry' title='/pmwiki/pmwiki.php/Webcomic/AllNightLaundry' data-format='V2ViY29taWMvQWxsTmlnaHRMYXVuZHJ5'>All Night Laundry</a></em> has one. At the beginning he's big, but not impossibly big. He's been bigger in each of his appearances since <span class="spoiler" title="you can set spoilers visible by default on your profile" > due to damage to Bina's Timeline</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Battlepug' title='/pmwiki/pmwiki.php/Webcomic/Battlepug' data-format='V2ViY29taWMve3tCYXR0bGVwdWd9fQ=='>Battlepug</a></em>, follows the life of a barbarian and his oversized dog, many other oversized creatures also appear. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ABeginnersGuideToTheEndOfTheUniverse' title='/pmwiki/pmwiki.php/Webcomic/ABeginnersGuideToTheEndOfTheUniverse' data-format='V2ViY29taWMvQUJlZ2lubmVyc0d1aWRlVG9UaGVFbmRPZlRoZVVuaXZlcnNl'>A Beginner's Guide to the End of the Universe</a></em>: While traveling along the train tracks, Snuffy and Ryan are attacked by a void wolf around twice the height of an elephant. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/CryHavoc' title='/pmwiki/pmwiki.php/Webcomic/CryHavoc' data-format='V2ViY29taWMvQ3J5SGF2b2M='>Cry 'Havoc'</a></em><span class='esc-seq' title='non-wikiword'>'s</span> werewolves become this with a full moon. They stand about 6 feet tall at the shoulder, and are capable of standing on two legs, raising their height to nearly 12 feet. Needless to say, they also weigh more than most cars. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Drowtales' title='/pmwiki/pmwiki.php/Webcomic/Drowtales' data-format='V2ViY29taWMve3tEcm93dGFsZXN9fQ=='>Drowtales</a></em>: The Sarghress breed extra large riding wolves. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/GunnerkriggCourt' title='/pmwiki/pmwiki.php/Webcomic/GunnerkriggCourt' data-format='V2ViY29taWMvR3VubmVya3JpZ2dDb3VydA=='>Gunnerkrigg Court</a></em>, Reynardine's true form is that of a large fox, and Ysengrin is an even larger wolf. But it is Coyote himself who can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShapeShifting' title='/pmwiki/pmwiki.php/Main/ShapeShifting' data-format='W1tTaGFwZVNoaWZ0aW5nIGJlY29tZV1d'>become</a> <a class='urllink' href='http://www.gunnerkrigg.com/archive_page.php?comicID=286'>truly massive,<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> towering over even Ysengrim. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Housepets' title='/pmwiki/pmwiki.php/Webcomic/Housepets' data-format='V2ViY29taWMve3tIb3VzZXBldHN9fQ=='>Housepets!</a></em>: <ul ><li> On the smaller end, Tarot's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HulkingOut' title='/pmwiki/pmwiki.php/Main/HulkingOut' data-format='SHVsa2luZ091dA=='>Hulking Out</a> form brings the pomeranian to being just larger than a human with muscles to boot. </li><li> On the larger end, Cerberus is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SizeShifter' title='/pmwiki/pmwiki.php/Main/SizeShifter' data-format='U2l6ZVNoaWZ0ZXI='>Sizeshifter</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GiantWoman' title='/pmwiki/pmwiki.php/Main/GiantWoman' data-format='R2lhbnRXb21hbg=='>Giant Woman</a> who tends to prefer being massive, at one point standing next to one of the Pyramids in Egypt and matching up to size. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' title='/pmwiki/pmwiki.php/Webcomic/TheOrderOfTheStick' data-format='V2ViY29taWMvVGhlT3JkZXJPZlRoZVN0aWNr'>The Order of the Stick</a></em>: Hinjo's mount Argent is a rather oversized dog/wolf. Also subverted when Belkar gets a <a class='urllink' href='http://www.giantitp.com/comics/oots0140.html'>riding dog<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/QuestionableContent' title='/pmwiki/pmwiki.php/Webcomic/QuestionableContent' data-format='V2ViY29taWMvUXVlc3Rpb25hYmxlQ29udGVudA=='>Questionable Content</a></em> author Jeph Jacques is the proud owner of a Great Pyrenees, one of the huge breeds, named Shelby. Inevitably, she's appeared in his non-canon work a <a class='urllink' href='http://questionablecontent.net/view.php?comic=1661'>couple<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='urllink' href='http://questionablecontent.net/view.php?comic=1730'>times<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/QuestOfCamelittle' title='/pmwiki/pmwiki.php/Webcomic/QuestOfCamelittle' data-format='V2ViY29taWMvUXVlc3RPZkNhbWVsaXR0bGU='>Quest of Camelittle</a></em> has Black Fang, a creatively-named wolf puppy who can grow bigger at his own will. </li><li> <a class='urllink' href='http://rhapsodies.wpmorse.com/comic/rhapsodies-date-135/'>Mitzi<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Rhapsodies' title='/pmwiki/pmwiki.php/Webcomic/Rhapsodies' data-format='V2ViY29taWMve3tSaGFwc29kaWVzfX0='>Rhapsodies</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SleipnirEquineInvaderFromJupiter' title='/pmwiki/pmwiki.php/Webcomic/SleipnirEquineInvaderFromJupiter' data-format='V2ViY29taWMvU2xlaXBuaXJFcXVpbmVJbnZhZGVyRnJvbUp1cGl0ZXI='>Sleipnir: Equine Invader from Jupiter</a></em>: Fenrir—named after the giant god-eating wolf from Norse mythology—is a cyborg canid kaiju that grows larger the more it eats and can mutate into more powerful forms. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Unsounded' title='/pmwiki/pmwiki.php/Webcomic/Unsounded' data-format='V2ViY29taWMve3tVbnNvdW5kZWR9fQ=='>Unsounded</a></em>: Dogs tend to be horse sized, or larger, and are used as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HorseOfADifferentColor' title='/pmwiki/pmwiki.php/Main/HorseOfADifferentColor' data-format='W1tIb3JzZU9mQURpZmZlcmVudENvbG9yIHNhZGRsZSBob3VuZHNdXQ=='>saddle hounds</a> as there are no actual horses in the setting. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ZebraGirl' title='/pmwiki/pmwiki.php/Webcomic/ZebraGirl' data-format='V2ViY29taWMvWmVicmFHaXJs'>Zebra Girl</a></em>: Wally the werewolf is much larger in canine form than an ordinary wolf. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');"> Web Original </div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Superhero' title='/pmwiki/pmwiki.php/Main/Superhero' data-format='e3tzdXBlcmhlcm99fQ=='>superhero</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WebSerialNovel' title='/pmwiki/pmwiki.php/Main/WebSerialNovel' data-format='V2ViU2VyaWFsTm92ZWw='>Web Serial Novel</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GamerGirl2016' title='/pmwiki/pmwiki.php/Literature/GamerGirl2016' data-format='TGl0ZXJhdHVyZS97e0dhbWVyIEdpcmx8MjAxNn19'>Gamer Girl</a></em>, the first enemy encountered by superhero partners Gamer Girl and Fangirl is the Canine, an SUV-sized, pariah dog-like monster coated in fangs. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WebSerialNovel' title='/pmwiki/pmwiki.php/Main/WebSerialNovel' data-format='V2ViU2VyaWFsTm92ZWw='>Web Serial Novel</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Worm' title='/pmwiki/pmwiki.php/Literature/Worm' data-format='TGl0ZXJhdHVyZS97e1dvcm19fQ=='>Worm</a></em>, one character, Bitch, has the ability to make dogs temporarily grow into giant, spiky monstrous forms. When she gets a wolf cub, it definitely fits this trope when transformed, particularly as it transforms better than the dogs do (it's less deformed by the transformation), possibly because wolves are just better. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder16');"> Western Animation </div><div id="folder16" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/AvatarTheLastAirbender' title='/pmwiki/pmwiki.php/WesternAnimation/AvatarTheLastAirbender' data-format='V2VzdGVybkFuaW1hdGlvbi9BdmF0YXJUaGVMYXN0QWlyYmVuZGVy'>Avatar: The Last Airbender</a></em>, we see giant wolves in the spirit world. </li><li> In the episode "Ace in the Hole" in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BatmanBeyond' title='/pmwiki/pmwiki.php/WesternAnimation/BatmanBeyond' data-format='V2VzdGVybkFuaW1hdGlvbi9CYXRtYW5CZXlvbmQ='>Batman Beyond</a></em> Terry (aka Batman) is locked in the dog fight ring with a vicious gigantic mutated mastiff. </li><li> The ghost dog in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DannyPhantom' title='/pmwiki/pmwiki.php/WesternAnimation/DannyPhantom' data-format='V2VzdGVybkFuaW1hdGlvbi9EYW5ueVBoYW50b20='>Danny Phantom</a></em> has the ability to grow several times its normal size whenever it feels threatened. Lots of destruction occurs. </li><li> The title character from <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/WesternAnimation/DinkyDog' title='/pmwiki/pmwiki.php/WesternAnimation/DinkyDog' data-format='V2VzdGVybkFuaW1hdGlvbi9EaW5reURvZw=='>Dinky Dog</a></em>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheFairlyOddParents' title='/pmwiki/pmwiki.php/WesternAnimation/TheFairlyOddParents' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVGYWlybHlPZGRQYXJlbnRz'>The Fairly OddParents!</a></em>, Timmy needs some enemy that would scare Catman enough to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RivalsTeamUp' title='/pmwiki/pmwiki.php/Main/RivalsTeamUp' data-format='W1tSaXZhbHNUZWFtVXAgdGVhbSB1cCB3aXRoIGhpcyByaXZhbF1d'>team up with his rival</a> Crimson Chin. Cosmo has one <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DumbassHasAPoint' title='/pmwiki/pmwiki.php/Main/DumbassHasAPoint' data-format='W1tEdW1iYXNzSGFzQVBvaW50IGJyaWdodF1d'>bright</a> moment and summons a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumongousMecha' title='/pmwiki/pmwiki.php/Main/HumongousMecha' data-format='SHVtb25nb3VzTWVjaGE='>Humongous Mecha</a> Dog. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GarfieldAndFriends' title='/pmwiki/pmwiki.php/WesternAnimation/GarfieldAndFriends' data-format='V2VzdGVybkFuaW1hdGlvbi9HYXJmaWVsZEFuZEZyaWVuZHM='>Garfield and Friends</a></em> episode "Legend of the Lake" tells a story set in prehistoric times where a cave cat tries to reach a distant island with lasagna trees that's guarded by cave dogs. Eventually he succeeds, only to discover to his horror that the dogs were "five whole times his size", easily towering over him. To be fair, the island was far away enough that from his starting point, the dogs looked normal-sized. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Hilda' title='/pmwiki/pmwiki.php/WesternAnimation/Hilda' data-format='V2VzdGVybkFuaW1hdGlvbi97e0hpbGRhfX0='>Hilda</a></em> has the Black Hound, an enormous black dog with glowing eyes that is mentioned several times throughout the series and becomes the main focus of the last episode of season 1. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/KimPossible' title='/pmwiki/pmwiki.php/WesternAnimation/KimPossible' data-format='V2VzdGVybkFuaW1hdGlvbi9LaW1Qb3NzaWJsZQ=='>Kim Possible</a></em>: Commodore Puddles (Drakken's toy poodle <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MakeMyMonsterGrow' title='/pmwiki/pmwiki.php/Main/MakeMyMonsterGrow' data-format='W1tNYWtlTXlNb25zdGVyR3JvdyB3aG8gYmVjYW1lIGdpYW50IHZpYSBhIGdyb3d0aCByYXldXQ=='>who became giant via a growth ray</a>) from "Rufus vs Commodore Puddles". </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/KipoAndTheAgeOfWonderbeasts' title='/pmwiki/pmwiki.php/WesternAnimation/KipoAndTheAgeOfWonderbeasts' data-format='V2VzdGVybkFuaW1hdGlvbi9LaXBvQW5kVGhlQWdlT2ZXb25kZXJiZWFzdHM='>Kipo and the Age of Wonderbeasts</a></em>, which takes place a few centuries into the future, dogs are some of the only animal species to not have evolved speech or wear clothes. On the other hand, they are all bigger than an average elephant, and some of them have multiple eyes. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLegendOfKorra' title='/pmwiki/pmwiki.php/WesternAnimation/TheLegendOfKorra' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMZWdlbmRPZktvcnJh'>The Legend of Korra</a></em>, Korra's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CanineCompanion' title='/pmwiki/pmwiki.php/Main/CanineCompanion' data-format='Q2FuaW5lQ29tcGFuaW9u'>Canine Companion</a> is Naga, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MixAndMatchCritters' title='/pmwiki/pmwiki.php/Main/MixAndMatchCritters' data-format='W1tNaXhBbmRNYXRjaENyaXR0ZXJzIHBvbGFyLWJlYXIgZG9nXV0='>polar-bear dog</a> so massive that she easily serves as Korra's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HorseOfADifferentColor' title='/pmwiki/pmwiki.php/Main/HorseOfADifferentColor' data-format='SG9yc2VPZkFEaWZmZXJlbnRDb2xvcg=='>Horse of a Different Color</a>, <a class='urllink' href='http://www.toplessrobot.com/2011/07/avatar_the_legend_of_the_biggest_damn_dog_and_to_a.php'>as seen here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. Naga's dog side is predominant. Occasionally, though, her <em>bear</em> side shows through, and it is <em>scary</em>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/LumberjackRabbit' title='/pmwiki/pmwiki.php/WesternAnimation/LumberjackRabbit' data-format='V2VzdGVybkFuaW1hdGlvbi9MdW1iZXJqYWNrUmFiYml0'>Lumberjack Rabbit</a></em>, <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BugsBunny' title='/pmwiki/pmwiki.php/WesternAnimation/BugsBunny' data-format='V2VzdGVybkFuaW1hdGlvbi9CdWdzQnVubnk='>Bugs Bunny</a> discovers a patch of giant carrots being grown by <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/PaulBunyan' title='/pmwiki/pmwiki.php/Myth/PaulBunyan' data-format='TXl0aC9QYXVsQnVueWFu'>Paul Bunyan</a>, but also finds they're being guarded by a giant dog named Smidgen. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSolidTinCoyote' title='/pmwiki/pmwiki.php/WesternAnimation/TheSolidTinCoyote' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTb2xpZFRpbkNveW90ZQ=='>The Solid Tin Coyote</a></em> is one of the <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/LooneyTunes' title='/pmwiki/pmwiki.php/Franchise/LooneyTunes' data-format='RnJhbmNoaXNlL0xvb25leVR1bmVz'>Looney Tunes</a> cartoons directed by <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Creator/RudyLarriva' title='/pmwiki/pmwiki.php/Creator/RudyLarriva' data-format='Q3JlYXRvci9SdWR5TGFycml2YQ=='>Rudy Larriva</a>. That winless coyote constructs a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GiantMecha' title='/pmwiki/pmwiki.php/Main/GiantMecha' data-format='R2lhbnRNZWNoYQ=='>Giant Mecha</a> coyote with which to pursue the Road Runner. The towering behemoth actually succeeds in capturing the quarry, but disposes of the coyote instead, due to obeying <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExactWords' title='/pmwiki/pmwiki.php/Main/ExactWords' data-format='RXhhY3RXb3Jkcw=='>Exact Words</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MyLittlePony' title='/pmwiki/pmwiki.php/Franchise/MyLittlePony' data-format='RnJhbmNoaXNlL015TGl0dGxlUG9ueQ=='>My Little Pony</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyAndFriends' title='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyAndFriends' data-format='V2VzdGVybkFuaW1hdGlvbi9NeUxpdHRsZVBvbnlBbmRGcmllbmRz'>My Little Pony 'n Friends</a></em>: "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/MyLittlePonyAndFriendsE20PonyPuppy' title='/pmwiki/pmwiki.php/Recap/MyLittlePonyAndFriendsE20PonyPuppy' data-format='W1tSZWNhcC9NeUxpdHRsZVBvbnlBbmRGcmllbmRzRTIwUG9ueVB1cHB5IFBvbnkgUHVwcHldXQ=='>Pony Puppy</a>" features Dinah, a dog who is, at the minimum, the size of a rhinoceros, and she's still only a puppy. </li><li> <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> has Cerberus, a bulldog the size of your average house. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Planimal' title='/pmwiki/pmwiki.php/Main/Planimal' data-format='W1t7e1BsYW5pbWFsfX0gVGltYmVyIFdvbHZlc11d'>Timber Wolves</a> can also combine into one massive wolf in the same size range as Cerberus, and Orthros, (yes, <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='W1tNeXRoL0NsYXNzaWNhbE15dGhvbG9neSB0aGF0IG9uZSB0b29dXQ=='>that one too</a>), while not as massive, is still substantially bigger than most ponies. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder17');"> Real Life </div><div id="folder17" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <a class='urllink' href='http://en.wikipedia.org/wiki/Canis_Major'>constellation of the same name<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. It is the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TropeNamers' title='/pmwiki/pmwiki.php/Main/TropeNamers' data-format='e3tUcm9wZSBOYW1lcnxzfX0='>Trope Namer</a>. </li><li> Subverted by real dire wolves. Despite fiction commonly portraying it as being nearly the size of a horse, they were actually no taller or longer than modern grey wolves (though they were more heavily built) and actually smaller than some of the largest breeds of domestic dog. Played straight, however, by the prehistoric canid <em><a class='urllink' href='https://www.newdinosaurs.com/epicyon/'>Epicyon<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, which grew to the size of a lion. </li><li> <em><a class='urllink' href='https://prehistoric-fauna.com/Amphicyon-ingens'>Amphicyon ingens<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrehistoricMonster' title='/pmwiki/pmwiki.php/Main/PrehistoricMonster' data-format='W1tQcmVoaXN0b3JpY01vbnN0ZXIgYmVhciBkb2ddXQ=='>bear dog</a> that prowled Miocene North America, could grow up to the size of a kodiak bear. Bear dogs, despite the name, are more closely related to dogs than to bears. </li></ul></p><p></div> <hr data-format='——' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div> </div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="5furuj" data-video-descrip="Skoll is the Heartless of Prince Hans of the Southern Isles, taking on the form of a giant phantom wolf." data-video-title="Skoll" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/5furuj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/5furuj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/5furuj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5furuj.jpg" data-video-trope="Main/CanisMajor" data-video-tropename="Canis Major" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.92" data-video-rating-count="13" data-video-media-sources="VideoGame/KingdomHeartsIII" class="video-launch-link video-overlay-link featured-widget-vid"> <div class="featured-widget-vid-iframe"> <div id="tvtropes_no_volume_player" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5furuj.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/5furuj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/5furuj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/5furuj.m3u8" data-controls="0" data-muted="1"> <script> tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); }); </script> </div> </div> </a> </div> <h2 class="bold font-l">Skoll</h2> <p class="_pmvv-vidbox-descTxt"> Skoll is the Heartless of Prince Hans of the Southern Isles, taking on the form of a giant phantom wolf. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="041k4c" data-video-descrip="When faced against Yarei, Holo transforms into a giant wolf to protect Lawrence." data-video-title="Holo" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/041k4c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/041k4c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/041k4c.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_11_16_145358.png" data-video-trope="Main/CanisMajor" data-video-tropename="Canis Major" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Literature/SpiceAndWolf,Main/BloodMagic,Main/DontLookAtMe,Main/NobleWolf,Main/RedEyesTakeWarning,Main/ShapeshiftingExcludesClothing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_11_16_145358.png"> <p><span class="bold">Holo</span></p> </a> <a href="#video-link" data-video-id="0etutz" data-video-descrip="Great Grey Wolf Sif is the wolf companion of Sir Artorias, the Abysswalker. After Artorias passed away, Sif became the guardian of Artorias' grave in the Darkroot Garden. Sif wields Artorias' Greatsword and uses some of his moves in combat." data-video-title="Great Grey Wolf Sif" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0etutz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0etutz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0etutz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0etutz.jpg" data-video-trope="Main/CanisMajor" data-video-tropename="Canis Major" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/DarkSoulsI,Main/CutlassBetweenTheTeeth,Main/BFS,Main/HandyMouth" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0etutz.jpg"> <p><span class="bold">Great Grey Wolf...</span></p> </a> <a href="#video-link" data-video-id="aw46pt" data-video-descrip="He is very violent, attacking anyone who wanders into his sight. He has red eyes and very sharp teeth, but never uses them to attack. Instead, he uses his claws to lay the smackdown.&lt;br&gt;&lt;br&gt;The wolf served as a valuable asset in the gang's plan to even up the gang's odds in the ACES finals. Bentley sedated the wolf in order for The Guru to ride it and kill several pilots." data-video-title="Lupus Gigantormus" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/aw46pt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/aw46pt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/aw46pt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/aw46pt.jpg" data-video-trope="Main/SavageWolves" data-video-tropename="Savage Wolves" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/Sly3HonorAmongThievesMission03FlightOfFancy,VideoGame/Sly3HonorAmongThieves,Main/CanisMajor" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/aw46pt.jpg"> <p><span class="bold">Lupus Gigantormus</span></p> </a> </div> </div> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BinomiumRidiculus">Binomium ridiculus</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TropeNamesFromOtherLanguages">Trope Names from Other Languages</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CarpeDiem">Carpe Diem</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BonsaiForest">Bonsai Forest</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexIsNotToScale">This Index Is Not To Scale</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CasuallyPowerfulGiant">Casually Powerful Giant</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CallAPegasusAHippogriff">Call a Pegasus a "Hippogriff"</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IndexOfFictionalCreatures">Index of Fictional Creatures</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CarbuncleCreature">Carbuncle Creature</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BigFriendlyDog">Big Friendly Dog</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BiggerIsBetter">Bigger Is Better</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ColossusClimb">Colossus Climb</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantEnemyCrab">Giant Enemy Crab</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AnimalsNotToScale">Animals Not to Scale</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheGreatSerpent">The Great Serpent</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CaninesPrimaryFelinesSecondary">Canines Primary, Felines Secondary</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexBarks">This Index Barks</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CartoonDogBreed">Cartoon Dog Breed</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BrutishBulls">Brutish Bulls</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DireBeast">Dire Beast</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CruelElephant">Cruel Elephant</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CameBackStrong">Came Back Strong</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BadassTropes">Badass Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheCaptain">The Captain</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BlackBeadEyes">Black Bead Eyes</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/Literature">ImageSource/Literature</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CuteGiant">Cute Giant</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime & Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-5furuj" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5furuj.jpg" data-video-title="Skoll" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/5furuj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/5furuj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/5furuj.m3u8" data-small-player="never" data-track-events="1" data-do-not-loop="1" data-starting-quality="1" data-autoplay="true"> </div> </div> </div> <div class="_pmvv-vidbox-desc"> <h1 id="overlay-title">Skoll</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Skoll is the Heartless of Prince Hans of the Southern Isles, taking on the form of a giant phantom wolf. </p> <div class="rating-row" data-video-id="5furuj" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">★</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">★</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">★</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">★</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">★</label> </div> <div id="star-rating-total"> 4.92 (13 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / CanisMajor</div> </div> <div class="media_second_wrapper"> <div class="media-sources-overlay example-overlay"> <p>Media sources:</p> <div id="overlay-media"></div> </div> <div class="example-overlay"> <div id="secondary_tropes_row"></div> <div id="overlay-second"></div> </div> </div> </div> <p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)"> <!-- <i class="fa fa-eye"></i> 11,241--> <a href="#video-feedback" class="float-right" data-modal-target="login" >Report</a> </p> </div> </div> </div> <div class="_pmvv-foot"> <div class="_pmvv-foot-scrollwrapper"> <a href="#video-link" data-video-id="5furuj" data-vimeo-id="335991486" data-video-descrip="Skoll is the Heartless of Prince Hans of the Southern Isles, taking on the form of a giant phantom wolf." data-video-title="Skoll" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/5furuj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/5furuj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/5furuj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5furuj.jpg" data-video-trope="Main/CanisMajor" data-video-tropename="Canis Major" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.92" data-video-rating-count="13" data-video-media-sources="VideoGame/KingdomHeartsIII" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/5furuj.jpg"> <p><span class="bold">Skoll</span></p> </a> <a href="#video-link" data-video-id="041k4c" data-vimeo-id="" data-video-descrip="When faced against Yarei, Holo transforms into a giant wolf to protect Lawrence." data-video-title="Holo" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/041k4c_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/041k4c.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/041k4c.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_11_16_145358.png" data-video-trope="Main/CanisMajor" data-video-tropename="Canis Major" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="1" data-video-media-sources="Literature/SpiceAndWolf,Main/BloodMagic,Main/DontLookAtMe,Main/NobleWolf,Main/RedEyesTakeWarning,Main/ShapeshiftingExcludesClothing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_11_16_145358.png"> <p><span class="bold">Holo</span></p> </a> <a href="#video-link" data-video-id="0etutz" data-vimeo-id="" data-video-descrip="Great Grey Wolf Sif is the wolf companion of Sir Artorias, the Abysswalker. After Artorias passed away, Sif became the guardian of Artorias' grave in the Darkroot Garden. Sif wields Artorias' Greatsword and uses some of his moves in combat." data-video-title="Great Grey Wolf Sif" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0etutz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0etutz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0etutz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0etutz.jpg" data-video-trope="Main/CanisMajor" data-video-tropename="Canis Major" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="VideoGame/DarkSoulsI,Main/CutlassBetweenTheTeeth,Main/BFS,Main/HandyMouth" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0etutz.jpg"> <p><span class="bold">Great Grey Wolf...</span></p> </a> <a href="#video-link" data-video-id="aw46pt" data-vimeo-id="382316313" data-video-descrip="He is very violent, attacking anyone who wanders into his sight. He has red eyes and very sharp teeth, but never uses them to attack. Instead, he uses his claws to lay the smackdown.&lt;br&gt;&lt;br&gt;The wolf served as a valuable asset in the gang's plan to even up the gang's odds in the ACES finals. Bentley sedated the wolf in order for The Guru to ride it and kill several pilots." data-video-title="Lupus Gigantormus" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/aw46pt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/aw46pt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/aw46pt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/aw46pt.jpg" data-video-trope="Main/SavageWolves" data-video-tropename="Savage Wolves" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="Recap/Sly3HonorAmongThievesMission03FlightOfFancy,VideoGame/Sly3HonorAmongThieves,Main/CanisMajor" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/aw46pt.jpg"> <p><span class="bold">Lupus Gigantormus</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&c2=38282685&cv=3.6.0&cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>