CINXE.COM

Giant Spider - 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>Giant Spider - TV Tropes</title> <meta name="description" content="The Giant Spider trope as used in popular culture. Arachnophobia is probably the second-most popular phobia (after coulrophobia), and even non-arachnophobes &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/GiantSpider" /> <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="Giant Spider - TV Tropes" /> <meta name="twitter:description" content="The Giant Spider trope as used in popular culture. Arachnophobia is probably the second-most popular phobia (after coulrophobia), and even non-arachnophobes &hellip;" /> <meta name="twitter:image:src" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/eight_legged_freaks.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="Giant Spider - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/GiantSpider" /> <meta property="og:image" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/eight_legged_freaks.jpg" /> <meta property="og:description" content="Arachnophobia is probably the second-most popular phobia (after coulrophobia), and even non-arachnophobes have to admit that spiders can be pretty freaky. Therefore, the most popular form of Big Creepy-Crawlies and one of the most popular 50-Foot &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/AlliterativeList" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/VideoGame/Tamarin" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, fb_token, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).forEach(el => { el.classList.toggle(toggleClass); }); } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/GiantSpider?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/GiantSpider"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.GiantSpider" 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.GiantSpider" 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/GiantSpider?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="GiantSpider"/> <input type="hidden" id="article_id" value="9279" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/GiantSpider</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"> Giant Spider </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": "Giant Spider", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/GiantSpider" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Giant Spider", "headline": "Giant Spider", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/GiantSpider", "image": "https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/eight_legged_freaks.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-01-14T00:00:00-08:00", "dateModified": "2024-11-19T19:49:38-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/GiantSpider" 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/GiantSpider" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/GiantSpider" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Es/GiantSpider" class="subpage-link " title="The Es page"> <span class="wrapper">Es</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageLinks/GiantSpider" class="subpage-link " title="The ImageLinks page"> <span class="wrapper">ImageLinks</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/PlayingWith/GiantSpider" class="subpage-link " title="The PlayingWith page"> <span class="wrapper">PlayingWith</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/GiantSpider" 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/GiantSpider?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/GiantSpider?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/GiantSpider?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/GiantSpider?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/GiantSpider?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/GiantSpider?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/GiantSpider?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/GiantSpider?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/GiantSpider?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/GiantSpider?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/GiantSpider?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/GiantSpider?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageSource/GiantSpider?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/GiantSpider?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/GiantSpider?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/GiantSpider?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/GiantSpider?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/GiantSpider?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/GiantSpider?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/GiantSpider?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/GiantSpider?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/GiantSpider?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/GiantSpider?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/GiantSpider?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/GiantSpider?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--&#010;--> <!-- This page has been alphabetized. Please add new examples in the correct order. Thanks!--> <!--&#010;--> <!--&#010;--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=1318729492082180000--> <!-- Please do not change or remove without starting a new thread.--> <!--&#010;--> <!-- Also, this page is not YMMV, so as tempting as it might be to mention "Literal DemonicSpiders", don't do it.--> <!-- Same goes for potholing to NightmareFuel or ParanoiaFuel.--> <!--&#010;--> </p><p><div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Film/EightLeggedFreaks' title='/pmwiki/pmwiki.php/Film/EightLeggedFreaks' data-format='W1tGaWxtL0VpZ2h0TGVnZ2VkRnJlYWtzIGh0dHBzOi8vc3RhdGljLnR2dHJvcGVzLm9yZy9wbXdpa2kvcHViL2ltYWdlcy9laWdodF9sZWdnZWRfZnJlYWtzLmpwZ11d'><div class="lazy_load_img_box" style="padding-top:54.83%"><img src='https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/eight_legged_freaks.jpg' class='embeddedimage' border='0' alt='Giant Spider (trope)' width=1200 height=658></div></a></div> <div class="acaptionright" style="width:350px;" >"Dispatch, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CaptainObvious' title='/pmwiki/pmwiki.php/Main/CaptainObvious' data-format='W1tDYXB0YWluT2J2aW91cyB3ZSBoYXZlIGEgcHJvYmxlbS5dXQ=='>we have a problem.</a>"</div> </p><p><div class='indent'><em>Most like a spider she was, but huger than the great hunting beasts, and more terrible than they because of the evil purpose in her remorseless eyes. Great horns she had, and behind her short stalk-like neck was her huge swollen body, a vast bloated bag, swaying and sagging beneath her legs; its great bulk was black, blotched with livid marks, but the belly underneath was pale and luminous and gave forth a stench. Her legs were bent, with great knobbed joints high above her back, and hairs that stuck out like steel spines, and at each leg's end there was a claw.</em> <div class='indent'>&#8212; <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' title='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' data-format='TGl0ZXJhdHVyZS9UaGVMb3JkT2ZUaGVSaW5ncw=='>The Lord of the Rings</a>: The Two Towers</em> </div></div></p><p>Arachnophobia is probably the second-most popular phobia (after <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AfraidOfClowns' title='/pmwiki/pmwiki.php/Main/AfraidOfClowns' data-format='W1tBZnJhaWRPZkNsb3ducyBjb3Vscm9waG9iaWFdXQ=='>coulrophobia</a>), and even non-arachnophobes have to admit that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpidersAreScary' title='/pmwiki/pmwiki.php/Main/SpidersAreScary' data-format='W1tTcGlkZXJzQXJlU2Nhcnkgc3BpZGVycyBjYW4gYmUgcHJldHR5IGZyZWFreV1d'>spiders can be pretty freaky</a>. Therefore, the most popular form of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigCreepyCrawlies' title='/pmwiki/pmwiki.php/Main/BigCreepyCrawlies' data-format='QmlnQ3JlZXB5Q3Jhd2xpZXM='>Big Creepy-Crawlies</a> and one of the most popular <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttackOfThe50FootWhatever' title='/pmwiki/pmwiki.php/Main/AttackOfThe50FootWhatever' data-format='W1tBdHRhY2tPZlRoZTUwRm9vdFdoYXRldmVyIDUwLUZvb3QgV2hhdGV2ZXJzXV0='>50-Foot Whatevers</a> to attack has to be (don't click the link if you like to browse TV Tropes before bed) a <a class='urllink' href='http://www.livescience.com/animals/news-spider-species-100111.html'>big spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. The bigger they are, the less likely there are to be more of them, but they're almost all so big that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SquareCubeLaw' title='/pmwiki/pmwiki.php/Main/SquareCubeLaw' data-format='W1tTcXVhcmVDdWJlTGF3IHRoZXkgcmVhbGlzdGljYWxseSBzaG91bGRuJiMwMzk7dCBiZSBhYmxlIHRvIG1vdmUgb3IgYnJlYXRoZV1d'>they realistically shouldn't be able to move or breathe</a> (according to natural laws of our universe's Earth, given our atmosphere's oxygen concentration). They will usually have hypertoxic venom, both spin webs and hunt for prey, and spit <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProjectileWebbing' title='/pmwiki/pmwiki.php/Main/ProjectileWebbing' data-format='UHJvamVjdGlsZVdlYmJpbmc='>Projectile Webbing</a> out of their mouths (most spiders in real life only focus on one trait). For extra terror, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderSwarm' title='/pmwiki/pmwiki.php/Main/SpiderSwarm' data-format='W1tTcGlkZXJTd2FybSB0aGV5IG1heSBldmVuIGF0dGFjayBpbiBncm91cHNdXQ=='>they may even attack in groups</a> (again, most spiders in real life are solitary). </p><p>Needless to say, they can be a bit of a problem for viewers that really are arachnophobic, especially in video games with them as a featured enemy. Many games get around this by making the spiders relatively cartoonish, or not having them correspond to any real-life spiders. Granted, they can still be freaky due to the sheer nature of being giant spiders. </p><p>They usually have little personality, beyond vague malevolence. Some of them can talk, but they're rarely very chatty, and only very rarely will they overlap with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendlyNeighborhoodSpider' title='/pmwiki/pmwiki.php/Main/FriendlyNeighborhoodSpider' data-format='RnJpZW5kbHlOZWlnaGJvcmhvb2RTcGlkZXI='>Friendly Neighborhood Spider</a>. They can turn up in a variety of situations, but their most common habitats are the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HungryJungle' title='/pmwiki/pmwiki.php/Main/HungryJungle' data-format='SHVuZ3J5SnVuZ2xl'>Hungry Jungle</a> and vast caverns of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasticUnderworld' title='/pmwiki/pmwiki.php/Main/FantasticUnderworld' data-format='RmFudGFzdGljVW5kZXJ3b3JsZA=='>Fantastic Underworld</a>. In fantasy works, they are also likely to turn up in dark, trackless and haunted forests, especially if the work is closely patterned after Tolkien. Sometimes, they're just ordinary spiders who meet up with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncredibleShrinkingMan' title='/pmwiki/pmwiki.php/Main/IncredibleShrinkingMan' data-format='W1tJbmNyZWRpYmxlU2hyaW5raW5nTWFuIGEgcHJvdGFnb25pc3Qgd2hvIGlzIHNtYWxsXV0='>a protagonist who is small</a>, although it amounts to the same thing. </p><p>Not to be confused with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemonicSpiders' title='/pmwiki/pmwiki.php/Main/DemonicSpiders' data-format='RGVtb25pY1NwaWRlcnM='>Demonic Spiders</a>, who are just difficult enemies, or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoneySpider' title='/pmwiki/pmwiki.php/Main/MoneySpider' data-format='e3tNb25leSBTcGlkZXJ9fXM='>Money Spiders</a>, which are just enemies that drop money even though they logically shouldn't &#8212; although either of these <em>can</em> be literal spiders. </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GiantEnemyCrab' title='/pmwiki/pmwiki.php/Main/GiantEnemyCrab' data-format='R2lhbnRFbmVteUNyYWI='>Giant Enemy Crab</a>. Subtrope of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DireBeast' title='/pmwiki/pmwiki.php/Main/DireBeast' data-format='RGlyZUJlYXN0'>Dire Beast</a>. Crossed over with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumongousMecha' title='/pmwiki/pmwiki.php/Main/HumongousMecha' data-format='SHVtb25nb3VzTWVjaGE='>Humongous Mecha</a>, you get the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderTank' title='/pmwiki/pmwiki.php/Main/SpiderTank' data-format='U3BpZGVyVGFuaw=='>Spider Tank</a>. <hr data-format='&#8212;&#8212;' /> <h2>Examples with their own pages:</h2> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/GiantSpider/LiveActionFilms' title='/pmwiki/pmwiki.php/GiantSpider/LiveActionFilms' data-format='W1tHaWFudFNwaWRlci9MaXZlQWN0aW9uRmlsbXMgRmlsbXMg4oCUIExpdmUtQWN0aW9uXV0='>Films — Live-Action</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/GiantSpider/Literature' title='/pmwiki/pmwiki.php/GiantSpider/Literature' data-format='R2lhbnRTcGlkZXIve3tMaXRlcmF0dXJlfX0='>Literature</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/GiantSpider/VideoGames' title='/pmwiki/pmwiki.php/GiantSpider/VideoGames' data-format='R2lhbnRTcGlkZXIvVmlkZW9HYW1lcw=='>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/GiantSpider/WesternAnimation' title='/pmwiki/pmwiki.php/GiantSpider/WesternAnimation' data-format='R2lhbnRTcGlkZXIvV2VzdGVybkFuaW1hdGlvbg=='>Western Animation</a> </li></ul><!&#8212;/index&#8212;> <h2>Other Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Anime and Manga&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <!--* ''Manga/{{Bizenghast}}'': Bali Lali. She and the other Cleaners are all spider people.--> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Digimon' title='/pmwiki/pmwiki.php/Franchise/Digimon' data-format='RnJhbmNoaXNlL3t7RGlnaW1vbn19'>Digimon</a></em>: Two Digimon skirt the line, namely Dokugumon (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllThereInTheManual' title='/pmwiki/pmwiki.php/Main/AllThereInTheManual' data-format='W1tBbGxUaGVyZUluVGhlTWFudWFsIHRlY2huaWNhbGx5IGFuIGluc2VjdCB0aGF0IHNwaW5zIHdlYnNdXQ=='>technically an insect that spins webs</a>) and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='W1tNZWFuaW5nZnVsTmFtZSBBcmFjaG5lbW9uXV0='>Arachnemon</a>/Arukenimon (who is more like a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderPeople' title='/pmwiki/pmwiki.php/Main/SpiderPeople' data-format='W1tTcGlkZXJQZW9wbGUgZHJpZGVyXV0='>drider</a> than the more spider-like Dokugumon). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/InuYasha' title='/pmwiki/pmwiki.php/Manga/InuYasha' data-format='TWFuZ2EvSW51WWFzaGE='>Inuyasha</a></em>: Giant spiders or spider-like beings are common, weak Youkai in feudal Japan. Sango and her family were tricked by Naraku (who's a spider-based demon himself) into fighting a giant, ogre-faced spider. In the final battle, Naraku's outer shell is a gargantuan black spider who acts as a final dungeon. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureGoldenWind' title='/pmwiki/pmwiki.php/Manga/JoJosBizarreAdventureGoldenWind' data-format='TWFuZ2EvSm9Kb3NCaXphcnJlQWR2ZW50dXJlR29sZGVuV2luZA=='>JoJo's Bizarre Adventure: Golden Wind</a></em> uses the "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/IncredibleShrinkingMan' title='/pmwiki/pmwiki.php/Main/IncredibleShrinkingMan' data-format='W1tJbmNyZWRpYmxlU2hyaW5raW5nTWFuIHNocnVua2VuIGhlcm9dXQ=='>shrunken hero</a>" vs. regular-sized spider variant, as Formaggio traps Narancia (who has been affected by Formaggio's Little Feet stand) in a bottle and pits him against a normal tarantula. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MajinDevil' title='/pmwiki/pmwiki.php/Manga/MajinDevil' data-format='TWFuZ2EvTWFqaW5EZXZpbA=='>Majin Devil</a></em>: The third chapter is rife with them. Demonic dog-sized spiders with embryos on their backs that crawl out of pregnant girls' hoohahs, tear their way out of their stomachs or rip themselves out of hosts' heads. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/Naruto' title='/pmwiki/pmwiki.php/Manga/Naruto' data-format='TWFuZ2Eve3tOYXJ1dG99fQ=='>Naruto</a></em>: In his fight with Kidomaru, Neji fights giant spiders. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/NegimaMagisterNegiMagi' title='/pmwiki/pmwiki.php/Manga/NegimaMagisterNegiMagi' data-format='TWFuZ2EvTmVnaW1hTWFnaXN0ZXJOZWdpTWFnaQ=='>Negima! Magister Negi Magi</a></em>: One of these accompanied <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WolfMan' title='/pmwiki/pmwiki.php/Main/WolfMan' data-format='W1tXb2xmTWFuIEtvdGFyb3VdXQ=='>Kotarou</a> on his first battle against Negi in the Kyoto Arc. It <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AntiMagic' title='/pmwiki/pmwiki.php/Main/AntiMagic' data-format='W1tBbnRpTWFnaWMgd2FzIGJhbmlzaGVkXV0='>was banished</a> by Asuna with one swing of her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PaperFanOfDoom' title='/pmwiki/pmwiki.php/Main/PaperFanOfDoom' data-format='W1tQYXBlckZhbk9mRG9vbSBJcm9uIEZhbl1d'>Iron Fan</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' title='/pmwiki/pmwiki.php/Anime/NeonGenesisEvangelion' data-format='QW5pbWUvTmVvbkdlbmVzaXNFdmFuZ2VsaW9u'>Neon Genesis Evangelion</a></em>: Matarael, which looks like a bowl with lots of eyes and has four legs. </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>: <ul ><li> The general zombie Talleran is an enormous spider that was crossed with a monkey by Dr. Hogback. If that wasn't enough he commands a large group of smaller (yet still big comparatively) spiders that were crossed with mice. Vice-Admiral Onigumo also lives up to his name by turning into some sort of human/spider hybrid with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MultiArmedAndDangerous' title='/pmwiki/pmwiki.php/Main/MultiArmedAndDangerous' data-format='W1tNdWx0aUFybWVkQW5kRGFuZ2Vyb3VzIDggYXJtcywgYWxsIHdpdGggc3dvcmRzXV0='>8 arms, all with swords</a>, and 2 legs to stand on. </li><li> One of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EliteMooks' title='/pmwiki/pmwiki.php/Main/EliteMooks' data-format='RWxpdGVNb29rcw=='>Elite Mooks</a> from the Punk Hazard arc, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MacheteMayhem' title='/pmwiki/pmwiki.php/Main/MacheteMayhem' data-format='W1tNYWNoZXRlTWF5aGVtICJNYWNoZXRlIiBSdW5dXQ=='>"Machete" Run</a> is a spider-centaur with a massive arachnid body, implying that giant spiders exist in the world of One Piece. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/SazanEyes' title='/pmwiki/pmwiki.php/Manga/SazanEyes' data-format='TWFuZ2EvU2F6YW5FeWVz'>3×3 Eyes</a></em>: Two different <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BondCreatures' title='/pmwiki/pmwiki.php/Main/BondCreatures' data-format='W1tCb25kQ3JlYXR1cmVzIERlbW9uIEJlYXN0c11d'>Demon Beasts</a> resembling giant spiders appear under the control of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='W1tUaGVIZXJvIFlha3Vtb11d'>Yakumo</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDragon' title='/pmwiki/pmwiki.php/Main/TheDragon' data-format='W1tUaGVEcmFnb24gQmVuYXJlc11d'>Benares</a>: the former has Jing Gu (Mirror Bug), a spider-like being the size of a soccer ball who can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttackReflector' title='/pmwiki/pmwiki.php/Main/AttackReflector' data-format='W1tBdHRhY2tSZWZsZWN0b3IgcmVmbGVjdCBsaWdodCBhdHRhY2tzXV0='>reflect light attacks</a> and spin thread. Benares control the much more formidable Fu Yao Zhizhu (Monster-Binding Spider), a giant, more realistic-looking spider that pins its victims down, extract their energy, and then imprisons them into a cocoon. Benares states that this monster can subdue even an immortal Wu like Yakumo. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/SpiderRiders' title='/pmwiki/pmwiki.php/Anime/SpiderRiders' data-format='QW5pbWUvU3BpZGVyUmlkZXJz'>Spider Riders</a></em>, as its name suggests, features giant spiders as the characters' mounts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/SpiritedAway' title='/pmwiki/pmwiki.php/Anime/SpiritedAway' data-format='QW5pbWUvU3Bpcml0ZWRBd2F5'>Spirited Away</a></em>: Kamaji the boiler man is a youkai who seems to be a cross between an old man and a large spider. (Or perhaps an opilione, also known as harvestmen or daddy longlegs.) He's not quite as scary as the other examples on this page, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' title='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' data-format='W1tEYXJrSXNOb3RFdmlsIGlzIGFjdHVhbGx5IGEgcmF0aGVyIGRlY2VudCBmZWxsb3cuXV0='>is actually a rather decent fellow.</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TsukimichiMoonlitFantasy' title='/pmwiki/pmwiki.php/Literature/TsukimichiMoonlitFantasy' data-format='TGl0ZXJhdHVyZS9Uc3VraW1pY2hpTW9vbmxpdEZhbnRhc3k='>TSUKIMICHI -Moonlit Fantasy-</a></em>: Mio, one of the story's two female protagonists, is a giant <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnergyAbsorption' title='/pmwiki/pmwiki.php/Main/EnergyAbsorption' data-format='W1tFbmVyZ3lBYnNvcnB0aW9uIG1hZ2ljLWFic29yYmluZ11d'>magic-absorbing</a> super-powered spider-monster called <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDreaded' title='/pmwiki/pmwiki.php/Main/TheDreaded' data-format='W1tUaGVEcmVhZGVkIFRoZSBCbGFjayBTcGlkZXIgb2YgQ2FsYW1pdHldXQ=='>The Black Spider of Calamity</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/YuGiOh5Ds' title='/pmwiki/pmwiki.php/Anime/YuGiOh5Ds' data-format='QW5pbWUvWXVHaU9oNURz'>Yu-Gi-Oh! 5D's</a></em>: Uru is a very big and menacing spider-looking <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='RWxkcml0Y2hBYm9taW5hdGlvbg=='>Eldritch Abomination</a>. How big? It towers over skyscrapers! </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/TheUltraman' title='/pmwiki/pmwiki.php/Anime/TheUltraman' data-format='QW5pbWUvVGhlVWx0cmFtYW4='>The&#9734;Ultraman</a></em> has a monster called Darantulas, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MixAndMAtchCritters' title='/pmwiki/pmwiki.php/Main/MixAndMAtchCritters' data-format='W1tNaXhBbmRNQXRjaENyaXR0ZXJzIGEgZ2lhbnQgdGFyYW50dWxhIHdpdGggZ2lhbnQgbW90aCB3aW5nc11d'>a giant tarantula with giant moth wings</a>. It <em>used</em> to be an ordinary creature from an alien planet, until an experiment on it <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoesHorriblyWrong' title='/pmwiki/pmwiki.php/Main/GoesHorriblyWrong' data-format='R29lc0hvcnJpYmx5V3Jvbmc='>Goes Horribly Wrong</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Asian Animation&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/Lamput' title='/pmwiki/pmwiki.php/Animation/Lamput' data-format='QW5pbWF0aW9uL3t7TGFtcHV0fX0='>Lamput</a></em>: In "Shape Shift", one of Lamput's transformations is a giant spider. The docs morph into a fly swatter afterwards to squash him. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/PleasantGoatAndBigBigWolf' title='/pmwiki/pmwiki.php/Animation/PleasantGoatAndBigBigWolf' data-format='QW5pbWF0aW9uL1BsZWFzYW50R29hdEFuZEJpZ0JpZ1dvbGY='>Pleasant Goat and Big Big Wolf</a></em>: <ul ><li> Wolffy runs into one in episode 65 and gets <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProjectileWebbing' title='/pmwiki/pmwiki.php/Main/ProjectileWebbing' data-format='UHJvamVjdGlsZVdlYmJpbmc='>Projectile Webbing</a> powers from it. </li><li> In one episode of <em>Mighty Little Defenders</em>, Gogoa is shown in a flashback being chased and bitten by a giant hallucination spider. <span class="spoiler" title="you can set spoilers visible by default on your profile" >It's actually being powered by a chip and shrinks to normal size once the chip is removed.</span> </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Comedy&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em>Phill Jupitus: Quadrophobia</em>: Phill claims to have encountered two "Category 3" spiders: <div class='indent'>The first time, I was nine and it was in my mum's house. Actually, it was in the bathroom. Actually, come to think of it, it was in the bath. Now, when I say "in the bath", it was actually <em>having</em> a bath. Six legs up the tap end, reading the <em>Daily Mirror</em>. "Fucking hell, Bobby Moore's gone to Fulham, what's that about? You alright, son, you don't look well." </div><div class='indent'>[...] </div><div class='indent'><em>[After a description of moving a cabinet out of the cellar more recently]</em> ...And there, in the corner of the cellar, was a <em>bigger</em> Category 3 than the one I saw when I was nine. This one reading <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JosephHeller' title='/pmwiki/pmwiki.php/Creator/JosephHeller' data-format='Q3JlYXRvci9Kb3NlcGhIZWxsZXI='>Joseph Heller</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Catch22' title='/pmwiki/pmwiki.php/Literature/Catch22' data-format='TGl0ZXJhdHVyZS9DYXRjaDIy'>Catch-22</a></em>. This spider, who was wearing a <em>beret</em>, looks up at me and goes "He died last year, you know. A tragic loss to the world of literature, don't you agree? I always thought he had another novel in him, what say you?" </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Books&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em>All Eight Eyes</em> is set in a world where giant spiders exist and prey on humans, but only a single vagrant is shown doing anything about them because people at large <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeirdnessCensor' title='/pmwiki/pmwiki.php/Main/WeirdnessCensor' data-format='W1tXZWlyZG5lc3NDZW5zb3IgcmF0aW9uYWxpemUgYXdheSBhbnkgZXZpZGVuY2VdXQ=='>rationalize away any evidence</a>. A teenager witnesses him killing one and is incapable of forgetting, so he ends up joining him. It's pointed out in the first issue that, though physical limitations prevent them from nesting anywhere but underground, physically they shouldn't be capable of being that big. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/AvengersTheInitiative' title='/pmwiki/pmwiki.php/ComicBook/AvengersTheInitiative' data-format='Q29taWNCb29rL0F2ZW5nZXJzVGhlSW5pdGlhdGl2ZQ=='>Avengers: The Initiative</a></em>: Trauma (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/BadPowersGoodPeople' title='/pmwiki/pmwiki.php/Main/BadPowersGoodPeople' data-format='W1tCYWRQb3dlcnNHb29kUGVvcGxlIHdob3NlIHN1cGVycG93ZXIgaXMgdHVybmluZyBpbnRvIHBlb3BsZSYjMDM5O3Mgd29yc3QgZmVhcnNdXQ=='>whose superpower is turning into people's worst fears</a>) transforms into one during a training exercise in issue #1. This turns out to be a very bad idea; the arachnophobic Armory freaks out and accidentally kills one of her teammates. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Batman66' title='/pmwiki/pmwiki.php/ComicBook/Batman66' data-format='Q29taWNCb29rL0JhdG1hbjY2'>Batman '66</a></em>: "Caught in the Widow's Web"/"Batman Fights the Penguins' Dread" features the Black Widow siccing a giant spider named Lulah on the Dynamic Duo during the final battle. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/CaptainKlutz' title='/pmwiki/pmwiki.php/ComicBook/CaptainKlutz' data-format='Q29taWNCb29rL0NhcHRhaW5LbHV0eg=='>Captain Klutz</a></em>: Gorgonzola is a giant spider with distinctly Martinesque features &#8212; which turned out to be a costume worn by a criminal who was wanted for 'trick-or-treating' without a license. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Cavewoman' title='/pmwiki/pmwiki.php/ComicBook/Cavewoman' data-format='Q29taWNCb29rL3t7Q2F2ZXdvbWFufX0='>Cavewoman</a></em>: Meriem runs afoul of a nest of giant spiders in <em>Cavewoman: Deadly Venom</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/ConanTheBarbarian' title='/pmwiki/pmwiki.php/Franchise/ConanTheBarbarian' data-format='RnJhbmNoaXNlL0NvbmFuVGhlQmFyYmFyaWFu'>Conan the Barbarian</a></em>: Conan encounters giant spiders all the goddamn time in Marvel's <em>Savage Sword of Conan</em> comics, but his most famous adventure involving a giant spider is probably his battle with Omm, a giant spider worshiped as a god in the city of Yezud. A later adventure has Conan fighting Omm's equally large offspring, Zath. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheDarkTower' title='/pmwiki/pmwiki.php/Franchise/TheDarkTower' data-format='RnJhbmNoaXNlL1RoZURhcmtUb3dlcg=='>The Dark Tower</a></em>: While not a giant spider <em>per se</em>, the Crimson King in the comic adaptation often sports a couple of spider legs and armored shell whenever he shows up. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheFrankensteinMonster' title='/pmwiki/pmwiki.php/ComicBook/TheFrankensteinMonster' data-format='Q29taWNCb29rL1RoZUZyYW5rZW5zdGVpbk1vbnN0ZXI='>The Frankenstein Monster</a></em>: One of the many opponents that the Monster must fight is a giant spider whose zombifying bite is used to create an army of slaves. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheGoon' title='/pmwiki/pmwiki.php/ComicBook/TheGoon' data-format='Q29taWNCb29rL1RoZUdvb24='>The Goon</a></em> has Spider (Actually called Percival Goodbody), a man-sized spider wearing a bowler hat with a tendency to cheat at card games getting him into trouble with Goon or other characters. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/HavocInc' title='/pmwiki/pmwiki.php/ComicBook/HavocInc' data-format='Q29taWNCb29rL0hhdm9jSW5j'>Havoc Inc</a></em>: In one issue, an unusually large tarantula caught Chester and Deck off guard as they were sleeping on a jungle planet. As portrayed on the <a class='urllink' href='http://www.radiocomix.com/havoc-inc/2012/03/07/havoc-inc-05-cover/'>cover art<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/ComicBook/JudgeDredd' title='/pmwiki/pmwiki.php/ComicBook/JudgeDredd' data-format='Q29taWNCb29rL0p1ZGdlRHJlZGQ='>Judge Dredd</a></em>: <ul ><li> AGV (Arachnid Gene Virus) is a rare disease in Mega City One that turns a person into a man-sized spider. One story features a woman with AGV slowly succumbing to it, and its sequel story has her visiting her husband who didn't stay by her side as promised... </li><li> There are giant spiders in the Cursed Earth that dig burrows in the ground, where they lie waiting before attacking unsuspecting prey. Dredd and a team of Judges ran into a couple of them during a patrol outside the new mutant settlements. </li><li> Additionally, there's an even rarer shapeshifting breed of giant spiders which disguise themselves as humans to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackWidow' title='/pmwiki/pmwiki.php/Main/BlackWidow' data-format='W1tCbGFja1dpZG93IHNlZHVjZSBoYXBsZXNzIG1lbiBiZWZvcmUgZGV2b3VyaW5nIHRoZW1dXQ=='>seduce hapless men before devouring them</a>. </li></ul></li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/JungleComics' title='/pmwiki/pmwiki.php/ComicBook/JungleComics' data-format='Q29taWNCb29rL0p1bmdsZUNvbWljcw=='>Jungle Comics</a></em>: The villain Org uses a drum to control giant spiders. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/JusticeSocietyOfAmerica' title='/pmwiki/pmwiki.php/ComicBook/JusticeSocietyOfAmerica' data-format='Q29taWNCb29rL0p1c3RpY2VTb2NpZXR5T2ZBbWVyaWNh'>Justice Society of America</a></em>: The denizens of Mercury that Johnny Thunder is found by in <em>All-Star Comics</em> # 13 look like giant spiders with a pair of their legs switched out for tentacles. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheLegendOfZeldaALinkToThePast1992' title='/pmwiki/pmwiki.php/ComicBook/TheLegendOfZeldaALinkToThePast1992' data-format='Q29taWNCb29rL1RoZUxlZ2VuZE9mWmVsZGFBTGlua1RvVGhlUGFzdDE5OTI='>The Legend of Zelda: A Link to the Past (1992)</a></em>: The monster fought in the Tower of Hera is a giant tarantula as opposed to the Moldorm fought in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheLegendOfZeldaALinkToThePast' title='/pmwiki/pmwiki.php/VideoGame/TheLegendOfZeldaALinkToThePast' data-format='W1tWaWRlb0dhbWUvVGhlTGVnZW5kT2ZaZWxkYUFMaW5rVG9UaGVQYXN0IHRoZSBnYW1lXV0='>the game</a></em>. However, when the monster's ghost appears in Ganon's Tower, Link identifies it as Moldorm. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/MyLittlePonyFriendshipIsMagicIDW' title='/pmwiki/pmwiki.php/ComicBook/MyLittlePonyFriendshipIsMagicIDW' data-format='Q29taWNCb29rL015TGl0dGxlUG9ueUZyaWVuZHNoaXBJc01hZ2ljSURX'>My Little Pony: Friendship Is Magic (IDW)</a></em>: The second issue of "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/MyLittlePonyFriendshipIsMagicIDWIssue1To4' title='/pmwiki/pmwiki.php/Recap/MyLittlePonyFriendshipIsMagicIDWIssue1To4' data-format='W1tSZWNhcC9NeUxpdHRsZVBvbnlGcmllbmRzaGlwSXNNYWdpY0lEV0lzc3VlMVRvNCBUaGUgUmV0dXJuIG9mIFF1ZWVuIENocnlzYWxpc11d'>The Return of Queen Chrysalis</a>" features a few. They wear hats. <span class="spoiler" title="you can set spoilers visible by default on your profile" > One of them doesn't have one, so it takes Applejack's.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Necromunda' title='/pmwiki/pmwiki.php/TabletopGame/Necromunda' data-format='VGFibGV0b3BHYW1lL3t7TmVjcm9tdW5kYX19'>Necromunda</a></em>: <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheRedeemerNecromunda' title='/pmwiki/pmwiki.php/ComicBook/TheRedeemerNecromunda' data-format='Q29taWNCb29rL1RoZVJlZGVlbWVyTmVjcm9tdW5kYQ=='>The Redeemer (Necromunda)</a></em> features a mutant giant spider whose eye can give its bearer <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PsychicPowers' title='/pmwiki/pmwiki.php/Main/PsychicPowers' data-format='UHN5Y2hpY1Bvd2Vycw=='>Psychic Powers</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/PaperinikNewAdventures' title='/pmwiki/pmwiki.php/ComicBook/PaperinikNewAdventures' data-format='Q29taWNCb29rL1BhcGVyaW5pa05ld0FkdmVudHVyZXM='>Paperinik New Adventures</a></em>: The Last Haga is a giant <em>space</em> spider. She is enormous (and can grow even bigger), is stated to be able to devour whole <em>planets</em> given enough time, reproduces <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExplosiveBreeder' title='/pmwiki/pmwiki.php/Main/ExplosiveBreeder' data-format='W1tFeHBsb3NpdmVCcmVlZGVyIGV4dHJlbWVseSBxdWlja2x5XV0='>extremely quickly</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrulySingleParent' title='/pmwiki/pmwiki.php/Main/TrulySingleParent' data-format='W1tUcnVseVNpbmdsZVBhcmVudCBhc2V4dWFsbHldXQ=='>asexually</a> (her offspring also qualify for this trope), and she is totally undetectable by radar or any other type of sensor. A small gang of space pirates worship the Haga as a deity, referring to her as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedBaron' title='/pmwiki/pmwiki.php/Main/RedBaron' data-format='W1tSZWRCYXJvbiAiSXJvbmhlYXJ0IiwgIk1vdGhlciIgYW5kICJEZXZvdXJlciJdXQ=='>"Ironheart", "Mother" and "Devourer"</a>. Furthermore, their wording imply that the giant Haga we see in action (which later merges with their spaceship upon returning) is the <em>larval form</em> of the Haga, implying that it could transform further. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SamuraiSquirrel' title='/pmwiki/pmwiki.php/ComicBook/SamuraiSquirrel' data-format='Q29taWNCb29rL1NhbXVyYWlTcXVpcnJlbA=='>Samurai Squirrel</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheProtagonist' title='/pmwiki/pmwiki.php/Main/TheProtagonist' data-format='W1tUaGVQcm90YWdvbmlzdCBOYXRvLXNhbl1d'>Nato-san</a> takes on several spiders bigger than him in their own lair to rescue the baby bird that their leader, known as Silverback, kidnapped to eat. </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>: Discussed. Barbara wonders if her dreamworld has these creatures, and learns that while it does, they are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' title='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' data-format='W1tEYXJrSXNOb3RFdmlsIG9uIGhlciBzaWRlXV0='>on her side</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CowardlyLion' title='/pmwiki/pmwiki.php/Main/CowardlyLion' data-format='W1tDb3dhcmRseUxpb24gdmVyeSB0aW1pZF1d'>very timid</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Sojourn' title='/pmwiki/pmwiki.php/ComicBook/Sojourn' data-format='Q29taWNCb29rL3t7U29qb3Vybn19'>Sojourn</a></em>: The insect-like Urnethi use giant spiders as mounts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SpiderMan' title='/pmwiki/pmwiki.php/ComicBook/SpiderMan' data-format='Q29taWNCb29rL1NwaWRlck1hbg=='>Spider-Man</a></em>: A few show up. <ul ><li> Spidey once builds one realistic enough to scare a thug trapped in a web into giving him information. </li><li> And there was a villain who was obsessed with killing Spider-Man and for some reason would only use giant spider robots called "Spider Slayers" for the job. One version of the Spider Slayer was a scorpion though, which makes a bit more sense, given that scorpions do commonly prey upon spiders. This was the original reasoning in giving Mac Gargan the power and abilities of a scorpion to serve as Spider-Man's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilCounterpart' title='/pmwiki/pmwiki.php/Main/EvilCounterpart' data-format='RXZpbENvdW50ZXJwYXJ0'>Evil Counterpart</a>. </li><li> To say nothing of Spider-Man transforming into the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HalfHumanHybrid' title='/pmwiki/pmwiki.php/Main/HalfHumanHybrid' data-format='SGFsZkh1bWFuSHlicmlk'>Half-Human Hybrid</a> Man-Spider on occasion. </li><li> The storyline <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SpiderIsland' title='/pmwiki/pmwiki.php/ComicBook/SpiderIsland' data-format='Q29taWNCb29rL1NwaWRlcklzbGFuZA=='>Spider-Island</a></em> is literally <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Pun' title='/pmwiki/pmwiki.php/Main/Pun' data-format='W1t7e1B1bn19IGNyYXdsaW5nXV0='>crawling</a> with them. </li><li> In the first team-up between the <em>Superior Spider-Man</em> and the <em>X-Men</em>, they tackle a giant spider, which in addition to having mutant powers, also has human eyes. After being stunned by Spidey, the creature <span class="spoiler" title="you can set spoilers visible by default on your profile" > turns into a normal-sized blond human woman. It was revealed to have been created by Spider-Man's enemy, the Jackal, using technology stolen from X-Men villain, Mr. Sinister</span>. </li><li> The Thousand was a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWormThatWalks' title='/pmwiki/pmwiki.php/Main/TheWormThatWalks' data-format='W1tUaGVXb3JtVGhhdFdhbGtzIGEgc3dhcm0gb2Ygc3BpZGVycyB0aGF0IGluaGFiaXQgYSBodW1hbiBib2R5XV0='>a swarm of spiders that inhabit a human body</a>. The main spider was the size of a human head. </li><li> The villain Queen <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VillainessesWantHeroes' title='/pmwiki/pmwiki.php/Main/VillainessesWantHeroes' data-format='W1tWaWxsYWluZXNzZXNXYW50SGVyb2VzIHdhbnRlZCBTcGlkZXItTWFuIHRvIGJlIGhlciBtYXRlXV0='>wanted Spider-Man to be her mate</a> and vowed he would love her whether he wanted to or not. After easily beating Spidey in their first fight she <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForcefulKiss' title='/pmwiki/pmwiki.php/Main/ForcefulKiss' data-format='W1tGb3JjZWZ1bEtpc3MgZm9yY2VkIGEga2lzcyBvbiBoaW1dXQ=='>forced a kiss on him</a> and over the next few issues, it was discovered her kiss was slowly mutating him into a giant spider mutant. He eventually turns into a giant spider and is completely under Queen's control, and she plans to use him as an egg sac to give birth to her offspring. <span class="spoiler" title="you can set spoilers visible by default on your profile" >It was a small miracle that Peter managed to survive the process. His giant spider form died unexpectedly and he got his original body back.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/MarvelsVoices' title='/pmwiki/pmwiki.php/ComicBook/MarvelsVoices' data-format='Q29taWNCb29rL01hcnZlbHNWb2ljZXM='>Marvel's Voices</a></em>: "Inspiration" is about a black widow spider exposed to gamma radiation, turning into a large, sentient, animal who becomes inspired to fight crime after seeing Spider-Man and Silk. The scientist studying her nicknamed her "Spider-Hulk". </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Supergirl' title='/pmwiki/pmwiki.php/ComicBook/Supergirl' data-format='Q29taWNCb29rL3t7U3VwZXJnaXJsfX0='>Supergirl</a></em> storyline <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheGirlWithTheXRayMind' title='/pmwiki/pmwiki.php/ComicBook/TheGirlWithTheXRayMind' data-format='Q29taWNCb29rL1RoZUdpcmxXaXRoVGhlWFJheU1pbmQ='>The Girl with the X-Ray Mind</a></em> appears a Reptilian Spider, a car-sized red arachnid which used to live in Krypton's Flame Forest. Its giant mandibles can easily uproot large trees. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Tintin' title='/pmwiki/pmwiki.php/Franchise/Tintin' data-format='RnJhbmNoaXNlL3t7VGludGlufX0='>Tintin</a></em> story <em><a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TintinTheShootingStar' title='/pmwiki/pmwiki.php/Recap/TintinTheShootingStar' data-format='W1tSZWNhcC9UaW50aW5UaGVTaG9vdGluZ1N0YXIgVGhlIFNob290aW5nIFN0YXJdXQ=='>The Shooting Star</a></em> (also present in the <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheAdventuresOfTintin1991' title='/pmwiki/pmwiki.php/WesternAnimation/TheAdventuresOfTintin1991' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL1RoZUFkdmVudHVyZXNPZlRpbnRpbjE5OTEgYW5pbWF0ZWQgc2VyaWVzXV0='>animated series</a>) has a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImportedAlienPhlebotinum' title='/pmwiki/pmwiki.php/Main/ImportedAlienPhlebotinum' data-format='W1tJbXBvcnRlZEFsaWVuUGhsZWJvdGludW0gbWV0ZW9yIHdpdGggc3RyYW5nZSBwcm9wZXJ0aWVzXV0='>meteor with strange properties</a> crash in the Atlantic ocean (without causing an extinction event), and it doesn't sink. After winning the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RaceAgainstTheClock' title='/pmwiki/pmwiki.php/Main/RaceAgainstTheClock' data-format='UmFjZUFnYWluc3RUaGVDbG9jaw=='>Race Against the Clock</a> to plant his team's flag first on said meteor, Tintin opens his cantine and a minuscule spider escapes from it. Fast-forward a minute or so later, the spider has grown giant due to the meteor's strange properties, and starts attacking Tintin, only to be crushed under a giant apple from a giant apple tree that grew from an apple Tintin had a bite in and threw away. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/TheTransformersMegaseries' title='/pmwiki/pmwiki.php/ComicBook/TheTransformersMegaseries' data-format='Q29taWNCb29rL1RoZVRyYW5zZm9ybWVyc01lZ2FzZXJpZXM='>The Transformers Megaseries</a></em>: Arachnosaurs are massive spider-like ambush predators native to an alien planet that Wheelie gets trapped on. They're big enough to pose a serious threat to most Cybertronians (though they're no match for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CombiningMecha' title='/pmwiki/pmwiki.php/Main/CombiningMecha' data-format='W1tDb21iaW5pbmdNZWNoYSBNb25zdHJ1Y3Rvcl1d'>Monstructor</a>). </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ECComics' title='/pmwiki/pmwiki.php/Creator/ECComics' data-format='Q3JlYXRvci9FQ0NvbWljcw=='>EC Comics</a>: A story in <em>The Vault of Horror</em> has some white-collar criminals in a small plane get caught in a giant web spun between two mountains, deep in the South American jungle. When the denizen of the web shows up, they're dinner. The Vault-Keeper gleefully informs us that a smaller spider will probably curl up and die at the mere mention of the name "Giant Mountain Crawler." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WonderWoman' title='/pmwiki/pmwiki.php/ComicBook/WonderWoman' data-format='Q29taWNCb29rL1dvbmRlcldvbWFu'>Wonder Woman</a></em> <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WonderWoman1942' title='/pmwiki/pmwiki.php/ComicBook/WonderWoman1942' data-format='W1tDb21pY0Jvb2svV29uZGVyV29tYW4xOTQyIFZvbCAxXV0='>Vol 1</a>: In the <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/WonderGirl' title='/pmwiki/pmwiki.php/ComicBook/WonderGirl' data-format='Q29taWNCb29rL1dvbmRlckdpcmw='>Wonder Girl</a> Impossible Tale in #116 Ronno tries to steal a necklace from the cave of a sea spider, and gets caught in its web as the truck-sized arachnid approaches to make a meal of him. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Fan Works&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/BesidesTheWillOfEvil' title='/pmwiki/pmwiki.php/Fanfic/BesidesTheWillOfEvil' data-format='RmFuZmljL0Jlc2lkZXNUaGVXaWxsT2ZFdmls'>Besides the Will of Evil</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSilmarillion' title='/pmwiki/pmwiki.php/Literature/TheSilmarillion' data-format='W1tMaXRlcmF0dXJlL1RoZVNpbG1hcmlsbGlvbiBVbmdvbGlhbnRzXV0='>Ungoliants</a> are enormous spider-like monsters created by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='W1tCaWdCYWQgUmVpemlnZXJdXQ=='>Reiziger</a> as muscle for his armies. They create an aura of shadow around themselves, and unlike real spiders, they have a poisonous stinger hidden beneath their bellies. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ChildOfTheStorm' title='/pmwiki/pmwiki.php/Fanfic/ChildOfTheStorm' data-format='RmFuZmljL0NoaWxkT2ZUaGVTdG9ybQ=='>Child of the Storm</a></em> mentions the Acromantulae of the Forbidden Forest and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BoisterousBruiser' title='/pmwiki/pmwiki.php/Main/BoisterousBruiser' data-format='W1tCb2lzdGVyb3VzQnJ1aXNlciBVaHRyZWRdXQ=='>Uhtred</a> immediately perks up. Harry immediately tells him that no, he can't go hunt them because it would upset Hagrid. While this may seem odd, Uhtred is a teenage Asgardian well on course to be bigger than Thor and as strong as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StoutStrength' title='/pmwiki/pmwiki.php/Main/StoutStrength' data-format='W1tTdG91dFN0cmVuZ3RoIFZvbHN0YWdnXV0='>Volstagg</a> and is, moreover, the protégé of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WarGod' title='/pmwiki/pmwiki.php/Main/WarGod' data-format='W1tXYXJHb2QgU2lmIGhlcnNlbGZdXQ=='>Sif herself</a>. In short, Harry is very right to worry for the spiders. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/ChildrenOfAnElderGod' title='/pmwiki/pmwiki.php/Fanfic/ChildrenOfAnElderGod' data-format='RmFuZmljL0NoaWxkcmVuT2ZBbkVsZGVyR29k'>Children of an Elder God</a></em>: The first enemy Shinji fights is a skyscraper-sized spider-shaped <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='RWxkcml0Y2hBYm9taW5hdGlvbg=='>Eldritch Abomination</a> spread its webs all over the city and spawned millions of smaller spiders danced around its legs and flooded the city's streets. <div class='indent'><em>It showed a creature that resembled a huge spider, hundreds of feet tall, lying on its side, its legs working the air feebly. It was surrounded by a charred cocoon of spider silk and the corpses of countless spiders. However, more were erupting up from the ground and forming from its blood, which was puddled around it. Furthermore, the charred marks on its exterior were fading, and ichor was no longer leaking from it.</em> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/CodexEquus' title='/pmwiki/pmwiki.php/Fanfic/CodexEquus' data-format='RmFuZmljL0NvZGV4RXF1dXM='>Codex Equus</a></em>: <ul ><li> Cuddle Spiders, based on <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/LucasTheSpider' title='/pmwiki/pmwiki.php/WebAnimation/LucasTheSpider' data-format='V2ViQW5pbWF0aW9uL0x1Y2FzVGhlU3BpZGVy'>Lucas the Spider</a></em>, are the size of a medium-sized dog. They're also adorable, friendly, and make great pets sustained by their owner's affection and love. They're the domesticated version of a now long-extinct species of love-sucking, wolf-sized spiders that were far less friendly. </li><li> More traditional ones live in the Giant Lands, where proportionally to giants they're the same size as normal ones are to ponies. When the get out of the Giant Lands, however, they're a much bigger problem. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/DividedRainbow' title='/pmwiki/pmwiki.php/Fanfic/DividedRainbow' data-format='RmFuZmljL0RpdmlkZWRSYWluYm93'>Divided Rainbow</a></em>: Lero runs into a giant ("as tall as a rhinoceros, and equally as wide") seven-legged spider (the eighth leg is just an infected-looking stump) in chapter 3, and names it Mr. 7. He very nearly gets killed by it until Rarity shows up to help. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/DoctorWhoovesTheSeries' title='/pmwiki/pmwiki.php/Fanfic/DoctorWhoovesTheSeries' data-format='RmFuZmljL0RvY3Rvcldob292ZXNUaGVTZXJpZXM='>Doctor Whooves – The Series</a></em>: <em>Along Came a Spider</em> has pony-hoof-sized ones as well as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilIsHammy' title='/pmwiki/pmwiki.php/Main/EvilIsHammy' data-format='W1tFdmlsSXNIYW1teSBBTkFTSSwgVEhFIFNQSURFUiBHT0RERVNTXV0='>ANASI, THE SPIDER GODDESS</a> (straight from <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS11E5PlanetOfTheSpiders' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS11E5PlanetOfTheSpiders' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMTFFNVBsYW5ldE9mVGhlU3BpZGVycyBNZXRlYmVsaXMgSUlJXV0='>Metebelis III</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/DungeonKeeperAmi' title='/pmwiki/pmwiki.php/Fanfic/DungeonKeeperAmi' data-format='RmFuZmljL0R1bmdlb25LZWVwZXJBbWk='>Dungeon Keeper Ami</a></em>: <ul ><li> There are monsterous giant spiders, mainly used by Keeper Arachne, as seen in <a class='urllink' href='https://forums.sufficientvelocity.com/threads/dungeon-keeper-ami-sailor-moon-dungeon-keeper-story-only-thread.30066/post-6355677'>"Captured!"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>: <div class='indent'> With a strange wrenching noise, a quartet of giant spiders dropped out of thin air, each one landing in a separate corner of the room. Even the smallest of the ugly, hairy monsters was as big as a sheep at least, not even counting the long legs covered in sharp bristles. </div></li><li> The Vermin Lord grants his Keepers the ability to enlarge vermin such as spiders to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttackOfThe50FootWhatever' title='/pmwiki/pmwiki.php/Main/AttackOfThe50FootWhatever' data-format='W1tBdHRhY2tPZlRoZTUwRm9vdFdoYXRldmVyIGJpZ2dlciB0aGFuIGJ1aWxkaW5nc11d'>bigger than buildings</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/EquestriaDivided' title='/pmwiki/pmwiki.php/Fanfic/EquestriaDivided' data-format='RmFuZmljL0VxdWVzdHJpYURpdmlkZWQ='>Equestria Divided</a></em>: <ul ><li> Wood spiders, enormous creatures resembling spiders shaped out of living wood, are among the monsters native to the Everfree. They sometimes have poison-spitting plants rooted in their backs, allowing them to pelt enemies with poisonous liquids at range before moving in to maul them. </li><li> One changeling unit, the weblings, resembles a monstrous spider with a changeling's head and can shoot tough <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProjectileWebbing' title='/pmwiki/pmwiki.php/Main/ProjectileWebbing' data-format='UHJvamVjdGlsZVdlYmJpbmc='>Projectile Webbing</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/HeartOfTheForest' title='/pmwiki/pmwiki.php/Fanfic/HeartOfTheForest' data-format='RmFuZmljL0hlYXJ0T2ZUaGVGb3Jlc3Q='>Heart of the Forest</a></em>: After their abandonment, the White Tail Woods became home to colonies of spiders the size of deer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Aliens' title='/pmwiki/pmwiki.php/Film/Aliens' data-format='RmlsbS97e0FsaWVuc319'>Aliens</a></em><span class='esc-seq' title='non-wikiword'>/</span><em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OnceUponATime2011' title='/pmwiki/pmwiki.php/Series/OnceUponATime2011' data-format='U2VyaWVzL09uY2VVcG9uQVRpbWUyMDEx'>Once Upon a Time (2011)</a></em> fanfic <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/MonstersAofie' title='/pmwiki/pmwiki.php/Fanfic/MonstersAofie' data-format='RmFuZmljL3t7TW9uc3RlcnN8QW9maWV9fQ=='>Monsters</a></em>: The Xenomorphs in this version are spider-like creatures and can grow to easily tower over humans. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheNightmareHouse' title='/pmwiki/pmwiki.php/Fanfic/TheNightmareHouse' data-format='RmFuZmljL1RoZU5pZ2h0bWFyZUhvdXNl'>The Nightmare House</a></em>: The spiders in Leni's nightmare are enlarged with "Super Spider Growy Stuff". </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/PersonalityConflicts' title='/pmwiki/pmwiki.php/Fanfic/PersonalityConflicts' data-format='RmFuZmljL1BlcnNvbmFsaXR5Q29uZmxpY3Rz'>Personality Conflicts</a></em>: One appears in <em>The Green-Eyed Monster</em>, in the Castle of Nyghtmayr. The castle defenses replicate the same emotion-evoking powers as the eight Minor Demons, and Fyar's powers summon up a giant spider for Tasha to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FaceYourFears' title='/pmwiki/pmwiki.php/Main/FaceYourFears' data-format='W1tGYWNlWW91ckZlYXJzIGNvbmZyb250XV0='>confront</a>. She's able to defeat it by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TalkingTheMonsterToDeath' title='/pmwiki/pmwiki.php/Main/TalkingTheMonsterToDeath' data-format='W1tUYWxraW5nVGhlTW9uc3RlclRvRGVhdGggbGlzdGluZyB0aHJlZSBiaW9sb2dpY2FsIHJlYXNvbnMgd2h5IHRoZSBjcmVhdHVyZSBiZWZvcmUgaGVyIGNhbiYjMDM5O3QgYWN0dWFsbHkgZXhpc3RdXQ=='>listing three biological reasons why the creature before her can't actually exist</a> (any permeable-membraned egg that size would dry out before it could hatch; <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SquareCubeLaw' title='/pmwiki/pmwiki.php/Main/SquareCubeLaw' data-format='U3F1YXJlQ3ViZUxhdw=='>Square-Cube Law</a> means "the cross-section of the legs only increase on a square curve" and would soon be too small to support it; and spiders and insects both "breathe through tracheal tubes that run from their 'skin' to their bloodstream. Those tubes can’t be longer than an inch or so, otherwise no air gets down them, and the spider suffocates"). Each example causes the spider to shrink until it's the size of a normal tarantula, allowing Tasha to step on it and crush it into nothing. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/PonyPOVSeries' title='/pmwiki/pmwiki.php/Fanfic/PonyPOVSeries' data-format='RmFuZmljL1BvbnlQT1ZTZXJpZXM='>Pony POV Series</a></em>: There's the Polyphemus Gargantula, more commonly known as Giant Cyclops Spider. Aahg from G1 is a member of this species, however the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterProgenitor' title='/pmwiki/pmwiki.php/Main/MonsterProgenitor' data-format='W1tNb25zdGVyUHJvZ2VuaXRvciBmaXJzdCBhbmQgbW9zdCBkZWFkbHldXQ=='>first and most deadly</a> of the entire species was Lahb, <span class="spoiler" title="you can set spoilers visible by default on your profile" >a creation of Hydia's ancestor, the First Witch Lilith</span>. Lahb was a forty-foot tall titan with legs as wide as tree trunks and fangs big enough to impale a centaur. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/PrehistoricEarth' title='/pmwiki/pmwiki.php/Fanfic/PrehistoricEarth' data-format='RmFuZmljL1ByZWhpc3RvcmljRWFydGg='>Prehistoric Earth</a></em>: The Mesothelae are amongst the prehistoric animals rescued, and the first one seen is explicitly referred to as a "giant spider". </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/PrehistoricParkReimagined' title='/pmwiki/pmwiki.php/Fanfic/PrehistoricParkReimagined' data-format='RmFuZmljL1ByZWhpc3RvcmljUGFya1JlaW1hZ2luZWQ='>Prehistoric Park Reimagined</a></em>: The newly discovered <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InUniverse' title='/pmwiki/pmwiki.php/Main/InUniverse' data-format='SW5Vbml2ZXJzZQ=='>In-Universe</a> <em>Megalorachne</em> prove to be reasonably massive spiders for the time period in which they naturally live in before their kind get rescued to be put on display at the titular park, with at least one of the females being explicitly confirmed to be at least the same size as one human character's head. Rather appropriately, they are explicitly based on the 'mesothelae' from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/WalkingWithMonsters' title='/pmwiki/pmwiki.php/Series/WalkingWithMonsters' data-format='U2VyaWVzL1dhbGtpbmdXaXRoTW9uc3RlcnM='>Walking with Monsters</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/RiseOfTheMinisukas' title='/pmwiki/pmwiki.php/Fanfic/RiseOfTheMinisukas' data-format='RmFuZmljL1Jpc2VPZlRoZU1pbmlzdWthcw=='>Rise of the Minisukas</a></em>: Matarael is a man-sized, multi-eyed spider-like abomination. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheSecretReturnOfAlexMack' title='/pmwiki/pmwiki.php/Fanfic/TheSecretReturnOfAlexMack' data-format='RmFuZmljL1RoZVNlY3JldFJldHVybk9mQWxleE1hY2s='>The Secret Return of Alex Mack</a></em> includes a crossover with <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Tarantula' title='/pmwiki/pmwiki.php/Film/Tarantula' data-format='RmlsbS97e1RhcmFudHVsYX19'>Tarantula!</a></em>, but unlike the original, after killing the 200-foot spider, a horde of car-sized babies appears; the SRI team has to invade their cave and deal with them. Alex gets nightmares afterwards for weeks. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/VariousVytalVentures' title='/pmwiki/pmwiki.php/Fanfic/VariousVytalVentures' data-format='RmFuZmljL1ZhcmlvdXNWeXRhbFZlbnR1cmVz'>Various Vytal Ventures</a></em>: "Bark and Bite" introduces a new form of Grimm, the <em>Aggromantulas</em>, which are big, fast, vicious, and carry a paralyzing venom in their fangs. Their Queen, however, is something else. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheVinylAndOctaviaSeries' title='/pmwiki/pmwiki.php/Fanfic/TheVinylAndOctaviaSeries' data-format='RmFuZmljL1RoZVZpbnlsQW5kT2N0YXZpYVNlcmllcw=='>The Vinyl and Octavia Series</a></em>: One captures Vinyl and Octavia in its web in <em>Vinyl and Octavia Machete Their Way Through the Jungle</em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/VowOfNudity' title='/pmwiki/pmwiki.php/Fanfic/VowOfNudity' data-format='RmFuZmljL1Zvd09mTnVkaXR5'>Vow of Nudity</a></em>: Haara and Walburt fight several (complete with flaming jaws) while infiltrating the Genasi volcano mines. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheWorldOfTheCreatures' title='/pmwiki/pmwiki.php/Fanfic/TheWorldOfTheCreatures' data-format='RmFuZmljL1RoZVdvcmxkT2ZUaGVDcmVhdHVyZXM='>The World of the Creatures</a></em>: Batman and the Eleventh Doctor are captured by a colony of giant spiders that talk. It's implied that these are either from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HarryPotter' title='/pmwiki/pmwiki.php/Literature/HarryPotter' data-format='TGl0ZXJhdHVyZS9IYXJyeVBvdHRlcg=='>Harry Potter</a></em> or <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHobbit' title='/pmwiki/pmwiki.php/Literature/TheHobbit' data-format='TGl0ZXJhdHVyZS9UaGVIb2JiaXQ='>The Hobbit</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/WitchQuest' title='/pmwiki/pmwiki.php/Roleplay/WitchQuest' data-format='Um9sZXBsYXkvV2l0Y2hRdWVzdA=='>Witch Quest</a></em>: Rochelle is a sane Witch whose normal form is of this. She even introduces herself this way to others at first ("<a class='twikilink' href='/pmwiki/pmwiki.php/Main/VerbalTic' title='/pmwiki/pmwiki.php/Main/VerbalTic' data-format='W1tWZXJiYWxUaWMgSHdlZSBhaHIgYSBnaWFobnQgc3BpZGFocl1d'>Hwee ahr a giahnt spidahr</a>"). She <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SubvertedTrope' title='/pmwiki/pmwiki.php/Main/SubvertedTrope' data-format='W1tTdWJ2ZXJ0ZWRUcm9wZSBzdWJ2ZXJ0c11d'>subverts</a> the usual portrayal of this trope insofar as she's actually trying to help <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicalGirl' title='/pmwiki/pmwiki.php/Main/MagicalGirl' data-format='e3tNYWdpY2FsIEdpcmx9fXM='>Magical Girls</a> get happy endings, although mistrust, misunderstandings, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InSeriesNickname' title='/pmwiki/pmwiki.php/Main/InSeriesNickname' data-format='W1tJblNlcmllc05pY2tuYW1lIE5hXV0='>Na</a><a class='twikilink' href='/pmwiki/pmwiki.php/Main/SociopathicHero' title='/pmwiki/pmwiki.php/Main/SociopathicHero' data-format='W1tTb2Npb3BhdGhpY0hlcm8gcGFdXQ=='>pa</a><a class='twikilink' href='/pmwiki/pmwiki.php/Main/KillItWithFire' title='/pmwiki/pmwiki.php/Main/KillItWithFire' data-format='W1tLaWxsSXRXaXRoRmlyZSBsbV1d'>lm</a> stand in the way (among others). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheWorldIsFilledWithMonsters' title='/pmwiki/pmwiki.php/Fanfic/TheWorldIsFilledWithMonsters' data-format='RmFuZmljL1RoZVdvcmxkSXNGaWxsZWRXaXRoTW9uc3RlcnM='>The World is Filled with Monsters</a></em>: The first monsters encountered in the story are a colony of enormous and very aggressive spiders, ranging from the size of a cat to the size of a house to the biggest of them all, Blightweaver, which is more than two stories tall and has legs as thick as tree trunks. The first sign the company gets of them is enormous webs stretching across most of a forest's canopy, with whole flocks of geese webbed up like flies. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Films &#8212; Animation&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Dreambuilders' title='/pmwiki/pmwiki.php/WesternAnimation/Dreambuilders' data-format='V2VzdGVybkFuaW1hdGlvbi97e0RyZWFtYnVpbGRlcnN9fQ=='>Dreambuilders</a></em>: Minna creates a giant mechanical one to scare Jenny during her nightmare. It later comes to life in the Dream Trash and attacks the two girls as they're trying to escape, until Minna shuts it down. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Coraline' title='/pmwiki/pmwiki.php/WesternAnimation/Coraline' data-format='V2VzdGVybkFuaW1hdGlvbi97e0NvcmFsaW5lfX0='>Coraline</a></em>: The Other Mother's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneWingedAngel' title='/pmwiki/pmwiki.php/Main/OneWingedAngel' data-format='W1tPbmVXaW5nZWRBbmdlbCB0cnVlIGZvcm1dXQ=='>true form</a> is a sort of spider <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NinjaPirateZombieRobot' title='/pmwiki/pmwiki.php/Main/NinjaPirateZombieRobot' data-format='W1tOaW5qYVBpcmF0ZVpvbWJpZVJvYm90IHpvbWJpZSBkb2xsIHRoaW5nIHdpdGggaGFuZHMgYW5kIGxlZ3MgbWFkZSBvdXQgb2YgbmVlZGxlc11d'>zombie doll thing with hands and legs made out of needles</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HellboyAnimated' title='/pmwiki/pmwiki.php/WesternAnimation/HellboyAnimated' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL0hlbGxib3lBbmltYXRlZCBIZWxsYm95OiBTd29yZCBvZiBTdG9ybXNdXQ=='>Hellboy: Sword of Storms</a></em> has a woman sitting in a forest clearing covered in fallen leaves playing a stringed instrument who looks perfectly normal...until her fingers start bleeding as she plays, spiders start to swarm around, Hellboy gets caught by three spiders the size of dogs, and the woman rises up out of the leaves to reveal an enormous spider abdomen and set of legs &#8212; then she starts <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreathWeapon' title='/pmwiki/pmwiki.php/Main/BreathWeapon' data-format='W1tCcmVhdGhXZWFwb24gdG8gYnJlYXRoZSBmaXJlXV0='>to breathe fire</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLegoMovie2TheSecondPart' title='/pmwiki/pmwiki.php/WesternAnimation/TheLegoMovie2TheSecondPart' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMZWdvTW92aWUyVGhlU2Vjb25kUGFydA=='>The LEGO Movie 2: The Second Part</a></em>: A real-life spider crawls over Emmet while he's stuck Undar of the Dryar. Of course it's tiny, but compared to a LEGO minifig it's huge, and freaks him out a bit. </li><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>: <ul ><li> Ahgg, the primary minion of the witches of the Volcano of Gloom, resembles a monstrous spider larger than a house, albeit one with a mammalian mouth and tusks and a single vertebrate eye. </li><li> At the start of "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/MyLittlePonyAndFriendsE12TheGhostOfParadiseEstate2' title='/pmwiki/pmwiki.php/Recap/MyLittlePonyAndFriendsE12TheGhostOfParadiseEstate2' data-format='W1tSZWNhcC9NeUxpdHRsZVBvbnlBbmRGcmllbmRzRTEyVGhlR2hvc3RPZlBhcmFkaXNlRXN0YXRlMiBUaGUgR2hvc3Qgb2YgUGFyYWRpc2UgRXN0YXRlLCBQYXJ0IDJdXQ=='>The Ghost of Paradise Estate, Part 2</a>", the ghost turns itself into (six-legged, vertebrate-faced) spider of giant size to scare the ponies. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/OggyAndTheCockroachesTheMovie' title='/pmwiki/pmwiki.php/WesternAnimation/OggyAndTheCockroachesTheMovie' data-format='V2VzdGVybkFuaW1hdGlvbi9PZ2d5QW5kVGhlQ29ja3JvYWNoZXNUaGVNb3ZpZQ=='>Oggy and the Cockroaches: The Movie</a></em>: One tries to make a meal out of Oggy Magnon, only to get knocked out by the cat's smelly feet without him even noticing. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSecretOfNIMH' title='/pmwiki/pmwiki.php/WesternAnimation/TheSecretOfNIMH' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTZWNyZXRPZk5JTUg='>The Secret of NIMH</a></em> had a fairly large spider that looked enormous to the mouse protagonist. It mostly existed to serve as a very memorable <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StabTheScorpion' title='/pmwiki/pmwiki.php/Main/StabTheScorpion' data-format='W1tTdGFiVGhlU2NvcnBpb24gd2F5IHRvIGVzdGFibGlzaF1d'>way to establish</a> the barely-controlled danger of the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JohnCarradine' title='/pmwiki/pmwiki.php/Creator/JohnCarradine' data-format='W1tDcmVhdG9yL0pvaG5DYXJyYWRpbmUgR3JlYXQgT3dsXV0='>Great Owl</a>; if Mrs. Brisby is threatened by a spider and the spider is nothing but a snack for the Owl... well, let's just say she's lucky to survive that scene. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Superman' title='/pmwiki/pmwiki.php/Franchise/Superman' data-format='RnJhbmNoaXNlL3t7U3VwZXJtYW59fQ=='>Superman</a> fights a giant mechanical spider at the beginning of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SupermanDoomsday' title='/pmwiki/pmwiki.php/WesternAnimation/SupermanDoomsday' data-format='V2VzdGVybkFuaW1hdGlvbi9TdXBlcm1hbkRvb21zZGF5'>Superman: Doomsday</a></em>, while <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/KevinSmith' title='/pmwiki/pmwiki.php/Creator/KevinSmith' data-format='Q3JlYXRvci9LZXZpblNtaXRo'>Kevin Smith</a>, in an animated cameo, looks on and says "Lame!". It's a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeThat' title='/pmwiki/pmwiki.php/Main/TakeThat' data-format='VGFrZVRoYXQ='>Take That!</a> against the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' title='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' data-format='RXhlY3V0aXZlTWVkZGxpbmc='>Executive Meddling</a> forced upon Smith's <em>Superman Lives</em> script &#8212; see <a class='twikilink' href='/pmwiki/pmwiki.php/GiantSpider/LiveActionFilms' title='/pmwiki/pmwiki.php/GiantSpider/LiveActionFilms' data-format='W1tHaWFudFNwaWRlci9MaXZlQWN0aW9uRmlsbXMgTGl2ZS1BY3Rpb24gRmlsbXNdXQ=='>Live-Action Films</a>. </li><li> Scroop, the main villain of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TreasurePlanet' title='/pmwiki/pmwiki.php/WesternAnimation/TreasurePlanet' data-format='V2VzdGVybkFuaW1hdGlvbi9UcmVhc3VyZVBsYW5ldA=='>Treasure Planet</a></em> resembles an evil, giant alien spider/scorpion hybrid. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PinocchioInOuterSpace' title='/pmwiki/pmwiki.php/WesternAnimation/PinocchioInOuterSpace' data-format='V2VzdGVybkFuaW1hdGlvbi9QaW5vY2NoaW9Jbk91dGVyU3BhY2U='>Pinocchio in Outer Space</a></em>. Among the creatures inhabiting the caves under the Martian city are spiders the size of a large building. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Gamebooks&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> A really popular choice of enemy in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FightingFantasy' title='/pmwiki/pmwiki.php/Literature/FightingFantasy' data-format='TGl0ZXJhdHVyZS9GaWdodGluZ0ZhbnRhc3k='>Fighting Fantasy</a></em> series, starting from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheWarlockOfFiretopMountain' title='/pmwiki/pmwiki.php/Literature/TheWarlockOfFiretopMountain' data-format='TGl0ZXJhdHVyZS9UaGVXYXJsb2NrT2ZGaXJldG9wTW91bnRhaW4='>The Warlock of Firetop Mountain</a></em>. Notable examples include the "Mizugumo Fens" in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SwordOfTheSamurai' title='/pmwiki/pmwiki.php/Literature/SwordOfTheSamurai' data-format='TGl0ZXJhdHVyZS9Td29yZE9mVGhlU2FtdXJhaQ=='>Sword of the Samurai</a></em>, where your hero can encounter and fight several giant spiders living in the marsh, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MidnightRogue' title='/pmwiki/pmwiki.php/Literature/MidnightRogue' data-format='TGl0ZXJhdHVyZS9NaWRuaWdodFJvZ3Vl'>Midnight Rogue</a></em> (a gigantic spider shows up in the final dungeon as a rather difficult fight), and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HowlOfTheWerewolf' title='/pmwiki/pmwiki.php/Literature/HowlOfTheWerewolf' data-format='TGl0ZXJhdHVyZS9Ib3dsT2ZUaGVXZXJld29sZg=='>Howl of the Werewolf</a></em>, where you can venture in a cavern infested by all manners of monstrous arachnids, including a literal spider-wolf horror and their queen, the vaguely humanoid Arachne. </li><li> Subverted in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SpaceAssassin' title='/pmwiki/pmwiki.php/Literature/SpaceAssassin' data-format='TGl0ZXJhdHVyZS9TcGFjZUFzc2Fzc2lu'>Space Assassin</a></em>, where aboard one of Cyrus' lab, you can uncover a giant spider who can talk, and communicate with you. Turns out this spider used to be a sentient life-form from another planet, one of the many victims abducted by Cyrus, an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilutionaryBiologist' title='/pmwiki/pmwiki.php/Main/EvilutionaryBiologist' data-format='RXZpbHV0aW9uYXJ5QmlvbG9naXN0'>Evilutionary Biologist</a>, and if you release him the spider will give you an important clue before leaving. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GrailQuest' title='/pmwiki/pmwiki.php/Literature/GrailQuest' data-format='TGl0ZXJhdHVyZS9HcmFpbFF1ZXN0'>GrailQuest</a></em> series, the hero's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TalkingWeapon' title='/pmwiki/pmwiki.php/Main/TalkingWeapon' data-format='W1tUYWxraW5nV2VhcG9uIFRhbGtpbmcgU3dvcmRdXQ=='>Talking Sword</a> Excalibur Junior is arachnophobic. This is problematic when fighting giant spiders, as the sword is either shaking in fear or plain refusing to be pulled from its scabbard. </li><li> In the French gamebook series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/LaSagaDuPretreJean' title='/pmwiki/pmwiki.php/Literature/LaSagaDuPretreJean' data-format='TGl0ZXJhdHVyZS9MYVNhZ2FEdVByZXRyZUplYW4='>La Saga du Prêtre Jean</a></em>, Giant Spiders are often encountered by the titular hero at least once per book, and sometimes will have fatal venom. The sole exceptions are Book 5, set in ancient India, and the last fanmade book set in Tibet. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Live-Action TV&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' title='/pmwiki/pmwiki.php/Series/BuffyTheVampireSlayer' data-format='U2VyaWVzL0J1ZmZ5VGhlVmFtcGlyZVNsYXllcg=='>Buffy the Vampire Slayer</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS7E5Selfless' title='/pmwiki/pmwiki.php/Recap/BuffyTheVampireSlayerS7E5Selfless' data-format='W1t7e1JlY2FwL0J1ZmZ5VGhlVmFtcGlyZVNsYXllclM3RTVTZWxmbGVzc319IFNlbGZsZXNzXV0='>Selfless</a>" starts out with one of these. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' title='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' data-format='TW9uc3Rlck9mVGhlV2Vlaw=='>Monster of the Week</a> in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Charmed1998' title='/pmwiki/pmwiki.php/Series/Charmed1998' data-format='U2VyaWVzL0NoYXJtZWQxOTk4'>Charmed (1998)</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CharmedS6E18SpinCity' title='/pmwiki/pmwiki.php/Recap/CharmedS6E18SpinCity' data-format='W1tSZWNhcC9DaGFybWVkUzZFMThTcGluQ2l0eSBTcGluIENpdHldXQ=='>Spin City</a>". </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em>: <ul ><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS11E5PlanetOfTheSpiders' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS11E5PlanetOfTheSpiders' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMTFFNVBsYW5ldE9mVGhlU3BpZGVycyBQbGFuZXQgb2YgdGhlIFNwaWRlcnNdXQ=='>Planet of the Spiders</a>" has the titular Giant Spiders of Metebelis 3 (which evolved from normal spiders). </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS14E6TheTalonsOfWengChiang' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS14E6TheTalonsOfWengChiang' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMTRFNlRoZVRhbG9uc09mV2VuZ0NoaWFuZyBUaGUgVGFsb25zIG9mIFdlbmcgQ2hpYW5nXV0='>The Talons of Weng Chiang</a>" has the Doctor and theater manager Jago find one the size of the Doctor's hand in the theater's cellar. The Doctor identifies it as a <a class='urllink' href='https://en.wikipedia.org/wiki/Linyphiidae'>money spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, a real, harmless and very common variety. They're also <em>tiny</em>, so he knows it's been affected by "genetic distortion" from the villain's experiments that also created giant rats. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWho2006CSTheRunawayBride' title='/pmwiki/pmwiki.php/Recap/DoctorWho2006CSTheRunawayBride' data-format='W1tSZWNhcC9Eb2N0b3JXaG8yMDA2Q1NUaGVSdW5hd2F5QnJpZGUgVGhlIFJ1bmF3YXkgQnJpZGVdXQ=='>The Runaway Bride</a>": The Racnoss, as a species, cross this trope with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HordeOfAlienLocusts' title='/pmwiki/pmwiki.php/Main/HordeOfAlienLocusts' data-format='SG9yZGVPZkFsaWVuTG9jdXN0cw=='>Horde of Alien Locusts</a>, although the Empress is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderPeople' title='/pmwiki/pmwiki.php/Main/SpiderPeople' data-format='W1tTcGlkZXJQZW9wbGUgcGFydGlhbGx5IGh1bWFub2lkIGluIGFwcGVhcmFuY2VdXQ=='>partially humanoid in appearance</a>. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS34E7KillTheMoon' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS34E7KillTheMoon' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMzRFN0tpbGxUaGVNb29uIEtpbGwgdGhlIE1vb25dXQ=='>Kill the Moon</a>": The Doctor and co. stumble upon giant <em>germs</em> shaped like spiders living on the Moon. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoS37E4ArachnidsInTheUK' title='/pmwiki/pmwiki.php/Recap/DoctorWhoS37E4ArachnidsInTheUK' data-format='W1tSZWNhcC9Eb2N0b3JXaG9TMzdFNEFyYWNobmlkc0luVGhlVUsgQXJhY2huaWRzIGluIHRoZSBVS11d'>Arachnids in the UK</a>": There's a mother spider the size of, in Graham's words, a <em>van</em>. <span class="spoiler" title="you can set spoilers visible by default on your profile" >It's actually a test subject from a university laboratory that grew that size after it was improperly disposed of by a waste company owned by a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CorruptCorporateExecutive' title='/pmwiki/pmwiki.php/Main/CorruptCorporateExecutive' data-format='Q29ycnVwdENvcnBvcmF0ZUV4ZWN1dGl2ZQ=='>Corrupt Corporate Executive</a>, which grew so large due to eating garbage in the landfill it was dumped in. And, unlike some other giant spiders on this show, it <em>is</em> affected by the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SquareCubeLaw' title='/pmwiki/pmwiki.php/Main/SquareCubeLaw' data-format='U3F1YXJlQ3ViZUxhdw=='>Square-Cube Law</a>, as when the Doctor finally confronts it, she realizes it's dying of suffocation as it's grown too big to breathe.</span> </li></ul></li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/GilligansIsland' title='/pmwiki/pmwiki.php/Series/GilligansIsland' data-format='U2VyaWVzL0dpbGxpZ2Fuc0lzbGFuZA=='>Gilligan's Island</a></em> episode "The Pigeon", the castaways run into a Black Morning Spider. It's six feet long, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedEyesTakeWarning' title='/pmwiki/pmwiki.php/Main/RedEyesTakeWarning' data-format='W1tSZWRFeWVzVGFrZVdhcm5pbmcgaGFzIHJlZCBleWVzXV0='>has red eyes</a>, and weighs 500 lbs. </li><li> Some seasons of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/KamenRider' title='/pmwiki/pmwiki.php/Franchise/KamenRider' data-format='RnJhbmNoaXNlL0thbWVuUmlkZXI='>Kamen Rider</a></em> feature a spider monster in the first episode, and more recent seasons like <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderBlade' title='/pmwiki/pmwiki.php/Series/KamenRiderBlade' data-format='U2VyaWVzL0thbWVuUmlkZXJCbGFkZQ=='>Kamen Rider Blade</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderKiva' title='/pmwiki/pmwiki.php/Series/KamenRiderKiva' data-format='U2VyaWVzL0thbWVuUmlkZXJLaXZh'>Kamen Rider Kiva</a></em> have a recurring spider monster. Admittedly these are just <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PeopleInRubberSuits' title='/pmwiki/pmwiki.php/Main/PeopleInRubberSuits' data-format='UGVvcGxlSW5SdWJiZXJTdWl0cw=='>People in Rubber Suits</a> with spider heads and maybe legs sticking out the back. However, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderRyuki' title='/pmwiki/pmwiki.php/Series/KamenRiderRyuki' data-format='U2VyaWVzL0thbWVuUmlkZXJSeXVraQ=='>Kamen Rider Ryuki</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderHibiki' title='/pmwiki/pmwiki.php/Series/KamenRiderHibiki' data-format='U2VyaWVzL0thbWVuUmlkZXJIaWJpa2k='>Kamen Rider Hibiki</a></em> went all the way, with proper giant spiders by way of CGI. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/KamenRiderZO' title='/pmwiki/pmwiki.php/Film/KamenRiderZO' data-format='RmlsbS9LYW1lblJpZGVyWk8='>Kamen Rider ZO</a></em> had one that was made with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Claymation' title='/pmwiki/pmwiki.php/Main/Claymation' data-format='e3tDbGF5bWF0aW9ufX0='>Claymation</a>, featuring a creepy face and unnatural movements that make it <em>so much</em> more scary than the better-animated versions. </li><li> The UK kids' game show <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Knightmare' title='/pmwiki/pmwiki.php/Series/Knightmare' data-format='U2VyaWVzL3t7S25pZ2h0bWFyZX19'>Knightmare</a></em> had Ariadne, a very slow, very large spider who could block the path and eat the dungeoneer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheLordOfTheRingsTheRingsOfPower' title='/pmwiki/pmwiki.php/Series/TheLordOfTheRingsTheRingsOfPower' data-format='U2VyaWVzL1RoZUxvcmRPZlRoZVJpbmdzVGhlUmluZ3NPZlBvd2Vy'>The Lord of the Rings: The Rings of Power</a></em>: In Season two, Isildur was kidnapped by Shelob and her offsprings and kept in their lair for conservation. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Merlin2008' title='/pmwiki/pmwiki.php/Series/Merlin2008' data-format='U2VyaWVzL01lcmxpbjIwMDg='>Merlin (2008)</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/MerlinS01E04ThePoisonedChalice' title='/pmwiki/pmwiki.php/Recap/MerlinS01E04ThePoisonedChalice' data-format='W1tSZWNhcC9NZXJsaW5TMDFFMDRUaGVQb2lzb25lZENoYWxpY2UgVGhlIFBvaXNvbmVkIENoYWxpY2VdXQ=='>The Poisoned Chalice</a>", Arthur is trapped in a cave with a bunch of giant spiders. They aren't as big as some of the beasties on this page, but they are bigger than his head &#8212; not counting the legs. Oh, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ZergRush' title='/pmwiki/pmwiki.php/Main/ZergRush' data-format='W1taZXJnUnVzaCB0aGVyZSYjMDM5O3MgaHVuZHJlZHMgb2YgdGhlbV1d'>there's hundreds of them</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MonsterWarriors' title='/pmwiki/pmwiki.php/Series/MonsterWarriors' data-format='U2VyaWVzL01vbnN0ZXJXYXJyaW9ycw=='>Monster Warriors</a></em>: The first monster Von Steinhauer unleashes upon capital City is a giant spider in "The Giant Spider Invasion". </li><li> Guest star Raquel Welch has a dance number with a giant spider in an episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMuppetShow' title='/pmwiki/pmwiki.php/Series/TheMuppetShow' data-format='U2VyaWVzL1RoZU11cHBldFNob3c='>The Muppet Show</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/PowerRangers' title='/pmwiki/pmwiki.php/Franchise/PowerRangers' data-format='RnJhbmNoaXNlL1Bvd2VyUmFuZ2Vycw=='>Power Rangers</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/SuperSentai' title='/pmwiki/pmwiki.php/Franchise/SuperSentai' data-format='RnJhbmNoaXNlL1N1cGVyU2VudGFp'>Super Sentai</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersMysticForce' title='/pmwiki/pmwiki.php/Series/PowerRangersMysticForce' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc015c3RpY0ZvcmNl'>Power Rangers Mystic Force</a></em> also has a CGI giant spider in one episode, complete with giant web. It wasn't even the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' title='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' data-format='TW9uc3Rlck9mVGhlV2Vlaw=='>Monster of the Week</a>, just a denizen of a dangerous forest. </li><li> Spidertron (Dora Tarantula in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KyoryuSentaiZyuranger' title='/pmwiki/pmwiki.php/Series/KyoryuSentaiZyuranger' data-format='U2VyaWVzL0t5b3J5dVNlbnRhaVp5dXJhbmdlcg=='>Ky&#333;ry&#363; Sentai Zyuranger</a></em>) from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MightyMorphinPowerRangers' title='/pmwiki/pmwiki.php/Series/MightyMorphinPowerRangers' data-format='U2VyaWVzL01pZ2h0eU1vcnBoaW5Qb3dlclJhbmdlcnM='>Mighty Morphin' Power Rangers</a></em>, on the other hand, <em>was</em> a monster of the week. Rita, being a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WitchWithACapitalB' title='/pmwiki/pmwiki.php/Main/WitchWithACapitalB' data-format='V2l0Y2hXaXRoQUNhcGl0YWxC'>Witch with a Capital "B"</a>, created it upon discovering Zack had a fear of spiders. Zack bored its guts out with the Dragonzord Fighting Mode's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThisIsADrill' title='/pmwiki/pmwiki.php/Main/ThisIsADrill' data-format='W1tUaGlzSXNBRHJpbGwgUG93ZXIgU3RhZmZdXQ=='>Power Staff</a>. </li><li> Arachnofiend from Season 3 of <em>Mighty Morphin' Power Rangers</em>, who was Tsuchigumo in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/NinjaSentaiKakuranger' title='/pmwiki/pmwiki.php/Series/NinjaSentaiKakuranger' data-format='U2VyaWVzL05pbmphU2VudGFpS2FrdXJhbmdlcg=='>Ninja Sentai Kakuranger</a></em>. Another Tsuchigumo appeared in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ShurikenSentaiNinninger' title='/pmwiki/pmwiki.php/Series/ShurikenSentaiNinninger' data-format='U2VyaWVzL1NodXJpa2VuU2VudGFpTmlubmluZ2Vy'>Shuriken Sentai Ninninger</a></em>, renamed Tangleweb for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersNinjaSteel' title='/pmwiki/pmwiki.php/Series/PowerRangersNinjaSteel' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc05pbmphU3RlZWw='>Power Rangers Ninja Steel</a></em>. </li><li> Gozunagumo from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SamuraiSentaiShinkenger' title='/pmwiki/pmwiki.php/Series/SamuraiSentaiShinkenger' data-format='U2VyaWVzL1NhbXVyYWlTZW50YWlTaGlua2VuZ2Vy'>Samurai Sentai Shinkenger</a></em> is based on the Ushi-Oni mentioned below. He was renamed Arachnitor for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersSamurai' title='/pmwiki/pmwiki.php/Series/PowerRangersSamurai' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc1NhbXVyYWk='>Power Rangers Samurai</a></em>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Primeval' title='/pmwiki/pmwiki.php/Series/Primeval' data-format='U2VyaWVzL3t7UHJpbWV2YWx9fQ=='>Primeval</a></em> had giant prehistoric spiders in its second episode. It's pointed out that, technically, they're not really spiders, but spider ancestors. They are not, however, the most threatening monster in the episode. <span class="spoiler" title="you can set spoilers visible by default on your profile" > A giant millipede is.</span> </li><li> An episode of <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/TheReallyWildShow' title='/pmwiki/pmwiki.php/Series/TheReallyWildShow' data-format='U2VyaWVzL1RoZVJlYWxseVdpbGRTaG93'>The Really Wild Show</a></em> had a spoof monster movie, in which the show's pet tarantula grew to the size of a building. This being an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EdutainmentShow' title='/pmwiki/pmwiki.php/Main/EdutainmentShow' data-format='RWR1dGFpbm1lbnRTaG93'>Edutainment Show</a>, of course, it was followed by an explanation of why you couldn't really get spiders that big. </li><li> When Phill Jupitus nominated "people who <em>aren't</em> scared of spiders" to go into <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Room1011994' title='/pmwiki/pmwiki.php/Series/Room1011994' data-format='U2VyaWVzL1Jvb20xMDExOTk0'>Room 101 (1994)</a></em>, the illustrative prop was a fake spider a foot in diameter which, rather than Paul producing it from behind the desk, was lowered from the ceiling while they were talking. Jupitus, who is <em>severely</em> arachnophobic, had a genuine moment of panic, before realising, and commenting "It's a big comedy one and all, what kind of twat am I? Big, googly-eyed, cartoon spider, I run a mile." </li><li> Within the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Sanctuary' title='/pmwiki/pmwiki.php/Series/Sanctuary' data-format='U2VyaWVzL3t7U2FuY3R1YXJ5fX0='>Sanctuary</a></em> story, Big Bertha is <span class="spoiler" title="you can set spoilers visible by default on your profile" > an earth-moving, psychically powered, possible divine</span> version of this. Yeah, it's pretty damn cool. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheSuiteLifeOfZackAndCody' title='/pmwiki/pmwiki.php/Series/TheSuiteLifeOfZackAndCody' data-format='U2VyaWVzL1RoZVN1aXRlTGlmZU9mWmFja0FuZENvZHk='>The Suite Life of Zack & Cody</a></em>: Implied at the end of "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheSuiteLifeOfZackAndCodyS3E4SuperTwins' title='/pmwiki/pmwiki.php/Recap/TheSuiteLifeOfZackAndCodyS3E4SuperTwins' data-format='W1tSZWNhcC9UaGVTdWl0ZUxpZmVPZlphY2tBbmRDb2R5UzNFNFN1cGVyVHdpbnMgU3VwZXIgVHdpbnNdXQ=='>Super Twins</a>" (the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperheroEpisode' title='/pmwiki/pmwiki.php/Main/SuperheroEpisode' data-format='e3tzdXBlcmhlcm98RXBpc29kZX19'>superhero</a> story part of <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DisneyChannel' title='/pmwiki/pmwiki.php/Creator/DisneyChannel' data-format='Q3JlYXRvci9EaXNuZXlDaGFubmVs'>Disney Channel</a>'s "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeCarefulWhatYouWishFor' title='/pmwiki/pmwiki.php/Main/BeCarefulWhatYouWishFor' data-format='W1tCZUNhcmVmdWxXaGF0WW91V2lzaEZvciBXaXNoIEdvbmUgQW1pc3NdXQ=='>Wish Gone Amiss</a>" weekend) after the two defeat the Meanager (Mr. Moseby's supervillain persona): <div class='indent'><strong>Carey:</strong> Aw, guys, I'm sorry, but the phone's been ringing all night. Apparently a lot of people need your help. <em>(whips out the list)</em> Let's see, there's a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BusFullOfInnocents' title='/pmwiki/pmwiki.php/Main/BusFullOfInnocents' data-format='W1tCdXNGdWxsT2ZJbm5vY2VudHMgYnVzIG9uIGEgYnJva2VuIHN1c3BlbnNpb24gYnJpZGdlXV0='>bus on a broken suspension bridge</a>, and... Ooh, I think I'd start with the giant spider that's climbing city hall.<br data-format="\\" /><em>(a crowd is heard screaming outside, and the twins and Carey peek out the window)</em><br data-format="\\" /><strong>Carey:</strong> Oh, he just ate the mayor!<br data-format="\\" /><em>(monster burping)</em> </div></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>", a spider ate the super food developed by Roger and Will's father in order to solve world hunger. It then killed the smaller but still giant <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MegaNeko' title='/pmwiki/pmwiki.php/Main/MegaNeko' data-format='W1tNZWdhTmVrbyBjYXRdXQ=='>cat</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CanisMajor' title='/pmwiki/pmwiki.php/Main/CanisMajor' data-format='W1tDYW5pc01ham9yIGRvZ11d'>dog</a> and possibly the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RodentsOfUnusualSize' title='/pmwiki/pmwiki.php/Main/RodentsOfUnusualSize' data-format='W1tSb2RlbnRzT2ZVbnVzdWFsU2l6ZSBnaWFudCByYXRzXV0='>giant rats</a>. When Roger and Will call the elevator in their father's factory, the giant spider grabs them with its pedipalps and kills them. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/UltraSeries' title='/pmwiki/pmwiki.php/Franchise/UltraSeries' data-format='RnJhbmNoaXNlL1VsdHJhU2VyaWVz'>Ultra Series</a> examples: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/UltraQ' title='/pmwiki/pmwiki.php/Series/UltraQ' data-format='U2VyaWVzL1VsdHJhUQ=='>Ultra Q</a></em> has a giant tarantula inhabiting an abandoned mansion, who is simply named... Giant Tarantula. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Ultraseven' title='/pmwiki/pmwiki.php/Series/Ultraseven' data-format='U2VyaWVzL3t7VWx0cmFzZXZlbn19'>Ultraseven</a></em>: One episode has the TDF getting stranded in a monster infested swamp, with Soga being pursued by an oversized arachnid creature called a Gumonga. The creature's name is a direct reference to the Godzilla foe, Kumonga. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/UltramanNexus' title='/pmwiki/pmwiki.php/Series/UltramanNexus' data-format='U2VyaWVzL1VsdHJhbWFuTmV4dXM='>Ultraman Nexus</a></em>: The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Kaiju' title='/pmwiki/pmwiki.php/Main/Kaiju' data-format='e3trYWlqdX19'>kaiju</a> Banpira is a giant bipedal spider with four arms. Like all the Space Beasts, Banpira likes <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ToServeMan' title='/pmwiki/pmwiki.php/Main/ToServeMan' data-format='VG9TZXJ2ZU1hbg=='>To Serve Man</a>, but it is also able to cloak its presence by creating <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OminousFog' title='/pmwiki/pmwiki.php/Main/OminousFog' data-format='T21pbm91c0ZvZw=='>Ominous Fog</a>. From there, it incapacitates prey with a sonic shriek before snatching targets with webbing from its mouth and then erasing survivors' memories with a flash of light from its eyes. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NothingIsScarier' title='/pmwiki/pmwiki.php/Main/NothingIsScarier' data-format='W1tOb3RoaW5nSXNTY2FyaWVyIFN3ZWV0IGRyZWFtc11d'>Sweet dreams</a>... </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/WalkingWithMonsters' title='/pmwiki/pmwiki.php/Series/WalkingWithMonsters' data-format='U2VyaWVzL1dhbGtpbmdXaXRoTW9uc3RlcnM='>Walking with Monsters</a></em>: "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/WalkingWithMonsters2ReptilesBeginnings' title='/pmwiki/pmwiki.php/Recap/WalkingWithMonsters2ReptilesBeginnings' data-format='W1tSZWNhcC9XYWxraW5nV2l0aE1vbnN0ZXJzMlJlcHRpbGVzQmVnaW5uaW5ncyBSZXB0aWxlJiMwMzk7cyBCZWdpbm5pbmdzXV0='>Reptile's Beginnings</a>": Giant melon-sized spiders called "<em>Mesothelae</em>" appear in the Carboniferous segment. They are larger than any genuine spiders of that (or any) time, and are only depicted as being so huge because a proto-scorpion had been mistaken for a spider. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/WhoWantsToBeASuperhero' title='/pmwiki/pmwiki.php/Series/WhoWantsToBeASuperhero' data-format='U2VyaWVzL1dob1dhbnRzVG9CZUFTdXBlcmhlcm8='>Who Wants to Be a Superhero?</a></em>: Episode 12 of the UK version features one terrorising various London landmarks and the superheroes' task was to mix a formula to shrink it. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheWildWildWest' title='/pmwiki/pmwiki.php/Series/TheWildWildWest' data-format='U2VyaWVzL1RoZVdpbGRXaWxkV2VzdA=='>The Wild Wild West</a></em>: "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheWildWildWestS2E3TheNightOfTheRaven' title='/pmwiki/pmwiki.php/Recap/TheWildWildWestS2E3TheNightOfTheRaven' data-format='W1tSZWNhcC9UaGVXaWxkV2lsZFdlc3RTMkUzVGhlTmlnaHRPZlRoZVJhdmVuIFRoZSBOaWdodCBvZiB0aGUgUmF2ZW5dXQ=='>The Night of the Raven</a>": James West and a Native American princess are menaced by a spider while shrunk. That's right, the series did a Giant Spider scene (more or less) 33 years before <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMovie' title='/pmwiki/pmwiki.php/Main/TheMovie' data-format='VGhlTW92aWU='>The Movie</a> (cited elsewhere). </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/FrankZappa' title='/pmwiki/pmwiki.php/Music/FrankZappa' data-format='TXVzaWMvRnJhbmtaYXBwYQ=='>Frank Zappa</a> was a huge fan of B-movies, especially monster movies, and thus giant spiders appear a lot in his work, including "Cheepnis" on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/RoxyAndElsewhere' title='/pmwiki/pmwiki.php/Music/RoxyAndElsewhere' data-format='TXVzaWMvUm94eUFuZEVsc2V3aGVyZQ=='>Roxy & Elsewhere</a></em> and "Spider Of Destiny" on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/SleepDirt' title='/pmwiki/pmwiki.php/Music/SleepDirt' data-format='TXVzaWMvU2xlZXBEaXJ0'>Sleep Dirt</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Mythology and Religion&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TsuchigumoAndJorogumo' title='/pmwiki/pmwiki.php/Main/TsuchigumoAndJorogumo' data-format='VHN1Y2hpZ3Vtb0FuZEpvcm9ndW1v'>Tsuchigumo and Jorogumo</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Youkai' title='/pmwiki/pmwiki.php/Main/Youkai' data-format='e3t5b3VrYWl9fQ=='>youkai</a> of Japanese mythology, both of which are also known for shapeshifting and illusions, along with deadly poisons and large webs which they used to catch their prey. Archetypal myths for both involve posing as a beautiful girl or young boy to attract and snare unwary travellers, or accosting and offering wishes or marriage to someone who is kind to spiders. The latter is actually fairly common, since <a class='urllink' href='http://en.wikipedia.org/wiki/Nephila_clavata'>jorogumo's natural form<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is considered lucky for its bright coloring. <ul ><li> The Ushi-Oni is sometimes described as a giant spider with crab-like claws and a bull's head. </li></ul></li><li> Natives of the Congo jungles and cryptozoologists tell tales of a species of monkey-sized trapdoor spiders known as <a class='urllink' href='http://mysteriousuniverse.org/2015/09/mysterious-giant-spiders-of-the-congo/'>J'ba Fofi<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> ("Giant Spider" in Bakongo). </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='W1tNeXRoL0NsYXNzaWNhbE15dGhvbG9neSBHcmVlayBNeXRob2xvZ3ldXQ=='>Greek Mythology</a> we have Arachne, a weaver of extraordinary talent who once challenged Athena with her work. Ironically, Arachne was turned into a spider by the angry goddess for her arrogance; <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DependingOnTheWriter' title='/pmwiki/pmwiki.php/Main/DependingOnTheWriter' data-format='W1tEZXBlbmRpbmdPblRoZVdyaXRlciBzb21lIG90aGVyIHZlcnNpb25zIGluc3RlYWQgaGF2ZSBpdCB0aGF0XV0='>some other versions instead have it that</a> Arachne saw that she couldn't compare to Athena and hanged herself (or was about to) and Athena turned her into a spider so that she could keep weaving, out of pity rather than as a punishment. A lot of art depicts Arachne as either human with spider features or a giant spider altogether, even if at least Ovid's original version suggests Arachne was transformed into a standard (not giant) spider. </li><li> Anansi, the West African <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TricksterGod' title='/pmwiki/pmwiki.php/Main/TricksterGod' data-format='VHJpY2tzdGVyR29k'>Trickster God</a> (later a part of Caribbean folklore due to the Slave Trade), was depicted either as a spider (his name means "spider"), a man, or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreadEggsBreadedEggs' title='/pmwiki/pmwiki.php/Main/BreadEggsBreadedEggs' data-format='W1tCcmVhZEVnZ3NCcmVhZGVkRWdncyBhIG1hbi1zaXplZCBzcGlkZXJdXQ=='>a man-sized spider</a>. </li><li> Areop-Enap, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreatorGod' title='/pmwiki/pmwiki.php/Main/CreatorGod' data-format='Q3JlYXRvckdvZA=='>Creator God</a> of Nauruan mythology, is a gigantic spider. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Pinball&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Pinball/Krull' title='/pmwiki/pmwiki.php/Pinball/Krull' data-format='UGluYmFsbC97e0tydWxsfX0='>Krull</a></em> has the Crystal Spider, who dwells on the upper playfield to trap players. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Podcasts&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> Holland, the "large brown spider"-turned-Dash Two monster from episode 5 of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/FindUsAlive' title='/pmwiki/pmwiki.php/Podcast/FindUsAlive' data-format='UG9kY2FzdC9GaW5kVXNBbGl2ZQ=='>Find Us Alive</a></em>. He's described as being about the size of a large dog. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/Jemjammer' title='/pmwiki/pmwiki.php/Podcast/Jemjammer' data-format='UG9kY2FzdC97e0plbWphbW1lcn19'>Jemjammer</a></em>, the first monsters the group encounter is a trio of giant spiders. This is just a taste of the neogi, giant <em>alien</em> spiders that can control minds and breed by having their young burst from their corpses. The party has to fight them after they attack Alana's ship. The fact that Jylliana (and to a lesser degree her player Annie) are arachnophobic doesn't help. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/TrialsAndTrebuchets' title='/pmwiki/pmwiki.php/Podcast/TrialsAndTrebuchets' data-format='UG9kY2FzdC9UcmlhbHNBbmRUcmVidWNoZXRz'>Trials & Trebuchets</a></em>, the party battle a Retriever, a giant mechanical spider, during the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TournamentArc' title='/pmwiki/pmwiki.php/Main/TournamentArc' data-format='W1tUb3VybmFtZW50QXJjIEF1dHVtbiYjMDM5O3MgRW5kIGR1ZWxzXV0='>Autumn's End duels</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Radio&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> In Fit the Eleventh of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/TheHitchhikersGuideToTheGalaxy1978' title='/pmwiki/pmwiki.php/Radio/TheHitchhikersGuideToTheGalaxy1978' data-format='UmFkaW8vVGhlSGl0Y2hoaWtlcnNHdWlkZVRvVGhlR2FsYXh5MTk3OA=='>The Hitchhiker's Guide to the Galaxy (1978)</a></em>, Zaphod and Ford enter a hanger full of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TechnoWreckage' title='/pmwiki/pmwiki.php/Main/TechnoWreckage' data-format='VGVjaG5vV3JlY2thZ2U='>Techno Wreckage</a> and huge cobwebs. A huge spider briefly lands next to them and says "'scuse me" in a <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TheWho' title='/pmwiki/pmwiki.php/Music/TheWho' data-format='W1tNdXNpYy9UaGVXaG8gIkJvcmlzIHRoZSBTcGlkZXIiXV0='>"Boris the Spider"</a> voice before scuttling off. </li><li> In the <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Radio/LightsOutEverybody' title='/pmwiki/pmwiki.php/Radio/LightsOutEverybody' data-format='UmFkaW8vTGlnaHRzT3V0RXZlcnlib2R5'>Lights Out Everybody</a></em> episode "The Spider", two small-time down-on-their-luck thugs scour the Amazon basin for exotic butterflies, looking to make enough money to get back to the States. Instead, they spot a dog-sized spider, which appears to be their ticket out. But there's a problem... </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Tabletop Games&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ThirteenthAge' title='/pmwiki/pmwiki.php/TabletopGame/ThirteenthAge' data-format='VGFibGV0b3BHYW1lL1RoaXJ0ZWVudGhBZ2U='>13th Age</a></em>: Phase spiders reportedly hail from some parallel dimension of giants where they are merely little pests. In the Dragon Empire, everyone is bite-sized to them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Arduin' title='/pmwiki/pmwiki.php/TabletopGame/Arduin' data-format='VGFibGV0b3BHYW1lL3t7QXJkdWlufX0='>Arduin</a></em>: <ul ><li> The Greater Demon Calyandagg the Lord of the Spiders is a spider the size of a Greyhound bus. He does devastating damage in close combat, including a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoisonIsCorrosive' title='/pmwiki/pmwiki.php/Main/PoisonIsCorrosive' data-format='W1tQb2lzb25Jc0NvcnJvc2l2ZSBhY2lkLWxpa2UgdmVub21dXQ=='>acid-like venom</a> that he can inject with his fangs and well as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperSpit' title='/pmwiki/pmwiki.php/Main/SuperSpit' data-format='U3VwZXJTcGl0'>Super Spit</a>. </li><li> The Snow Spider can grow nearly as large as a full-grown horse and their poison can cause permanent blindness. </li><li> Spiga are spiders with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedEyesTakeWarning' title='/pmwiki/pmwiki.php/Main/RedEyesTakeWarning' data-format='W1tSZWRFeWVzVGFrZVdhcm5pbmcgZ2xvd2luZyBydWJ5IHJlZCBleWVzXV0='>glowing ruby red eyes</a> that can grow as large as a school bus. Their forelegs can inflict 1-36 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> of damage per hit and their bite does 1-48 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> damage. </li><li> Star Spiders are about 10-12 feet wide and long. They have 5-24 13 feet long <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CombatTentacles' title='/pmwiki/pmwiki.php/Main/CombatTentacles' data-format='Q29tYmF0VGVudGFjbGVz'>Combat Tentacles</a> that each do 1-12 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> of damage on a hit and 4-16 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> of constriction damage thereafter. They can swallow human-sized targets whole, and opponents that are sucked or pulled into their mouths are destroyed by heat and radiation at a rate of 51-100 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> per combat round, which also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VampiricDraining' title='/pmwiki/pmwiki.php/Main/VampiricDraining' data-format='W1tWYW1waXJpY0RyYWluaW5nIGNvbnN1bWVzIHRoZSB2aWN0aW0mIzAzOTtzIHNvdWxdXQ=='>consumes the victim's soul</a>. They have a single <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedEyesTakeWarning' title='/pmwiki/pmwiki.php/Main/RedEyesTakeWarning' data-format='W1tSZWRFeWVzVGFrZVdhcm5pbmcgZ2xhcmluZyByZWQgZXllXV0='>glaring red eye</a> like the headlamp of a giant train. </li><li> Giant Tarantulas are black, hairy spiders 6-8 feet long with a leg span of up to 24 feet. Their venom inflicts nerve damage for up to 10 melee rounds and causes intense, debilitating pain. </li><li> Web Widows are giant black widow spiders (up to seven feet long) that can cast illusion spells. Their bite injects a venom that does 31-50 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> of damage and paralyzes the victim. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ArkhamHorrorTheCardGame' title='/pmwiki/pmwiki.php/TabletopGame/ArkhamHorrorTheCardGame' data-format='VGFibGV0b3BHYW1lL0Fya2hhbUhvcnJvclRoZUNhcmRHYW1l'>Arkham Horror: The Card Game</a></em>: The stronger minions of the spider-god Atlach-Nacha range from Leng spiders (dog-sized) to really huge ones. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/TabletopGame/BattlelordsOfTheTwentyThirdCentury' title='/pmwiki/pmwiki.php/TabletopGame/BattlelordsOfTheTwentyThirdCentury' data-format='VGFibGV0b3BHYW1lL0JhdHRsZWxvcmRzT2ZUaGVUd2VudHlUaGlyZENlbnR1cnk='>Battlelords Of The Twenty Third Century</a></em>: In the <em>Shadis</em> magazine #23 adventure "Bug Hunt", the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQfGxheWVyQ2hhcmFjdGVyfX1Dcw=='>PCs</a> have to fight the giant Spiders of the planet Driscoll VII. Adults are up to 2.5 meters tall and weigh up to 300 kg. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/BurningWheel' title='/pmwiki/pmwiki.php/TabletopGame/BurningWheel' data-format='VGFibGV0b3BHYW1lL0J1cm5pbmdXaGVlbA=='>Burning Wheel</a></em>: In the Monster Burner book, one of the playable monster races is the Great Spiders, which are spiders of human intelligence that range from the size of a medium-sized dog to that of a horse (depending on breed and life-path). Most are loners (like real spiders) and the ones that aren't are either pack hunters or Evil (although that is not a barrier to playing a characters in <em>Burning Wheel</em>, where campaigns as one of the horde of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilOverlord' title='/pmwiki/pmwiki.php/Main/EvilOverlord' data-format='RXZpbE92ZXJsb3Jk'>Evil Overlord</a> is a viable option.) </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/CallOfCthulhu' title='/pmwiki/pmwiki.php/TabletopGame/CallOfCthulhu' data-format='VGFibGV0b3BHYW1lL0NhbGxPZkN0aHVsaHU='>Call of Cthulhu</a></em>: In the <em>Dreamlands</em> supplement, Leng Spiders can grow to gigantic size and weigh hundreds of tons. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Chaosium' title='/pmwiki/pmwiki.php/Creator/Chaosium' data-format='Q3JlYXRvci97e0NoYW9zaXVtfX0='>Chaosium</a>'s supplement <em>All the Worlds' Monsters</em> Volume III: <ul ><li> Demon Spiders are the size of a large timber wolf and can cast webs that inflict fire damage and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VampiricDraining' title='/pmwiki/pmwiki.php/Main/VampiricDraining' data-format='VmFtcGlyaWNEcmFpbmluZw=='>Vampiric Draining</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LifeEnergy' title='/pmwiki/pmwiki.php/Main/LifeEnergy' data-format='TGlmZUVuZXJneQ=='>Life Energy</a>. Their ruler, the Demon Spider Lord Ishral is twice the size of a man. </li><li> The 11th level Basic Demon takes the form of a giant spider that lives in a web of darkness. </li><li> The Rainbow Demon is a huge spider (36-360 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a>) whose legs are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RainbowMotif' title='/pmwiki/pmwiki.php/Main/RainbowMotif' data-format='W1tSYWluYm93TW90aWYgY29sb3JlZCByZWQsIG9yYW5nZSwgeWVsbG93LCBncmVlbiwgYmx1ZSwgaW5kaWdvLCB2aW9sZXQsIGFuZCBjbGVhcl1d'>colored red, orange, yellow, green, blue, indigo, violet, and clear</a>. Each leg has a special power: four of them can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AttackReflector' title='/pmwiki/pmwiki.php/Main/AttackReflector' data-format='W1tBdHRhY2tSZWZsZWN0b3IgcmVmbGVjdCBtaXNzaWxlcywgQnJlYXRoIFdlYXBvbnMsIGNsZXJpY2FsIG1hZ2ljLCBhbmQgYWxsIG1hZ2ljXV0='>reflect missiles, Breath Weapons, clerical magic, and all magic</a>. </li><li> A variety of semi-normal giant spiders: Black Widow (10-foot leg spread), Fiddle (8-foot leg spread), Giant (4-5 feet tall), Red (giant size, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VampiricDraining' title='/pmwiki/pmwiki.php/Main/VampiricDraining' data-format='W1tWYW1waXJpY0RyYWluaW5nIGRyYWlucyBpdHMgdmljdGltJiMwMzk7cyBDb25zdGl0dXRpb25dXQ=='>drains its victim's Constitution</a> by hitting it with one of its claws), Trap Door (size of a Great Dane). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/CityOfSevenSeraphs' title='/pmwiki/pmwiki.php/TabletopGame/CityOfSevenSeraphs' data-format='VGFibGV0b3BHYW1lL0NpdHlPZlNldmVuU2VyYXBocw=='>City of 7 Seraphs</a></em>: The veryx are a species of human- to halfling-sized arachnids. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ClankADeckbuildingAdventure' title='/pmwiki/pmwiki.php/TabletopGame/ClankADeckbuildingAdventure' data-format='VGFibGV0b3BHYW1lL0NsYW5rQURlY2tidWlsZGluZ0FkdmVudHVyZQ=='>Clank! A Deck-Building Adventure</a></em> has a giant spider as the antagonist of the <em>Gold and Silk</em> expansion. It is the progenitor of the webs that ensnare treasures on one side of the board, and the guardian of abandoned Dwarven mines in the other. In any case, they serve as an undefeatable presence that stalk the players throughout their journey. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/TheDarkEye' title='/pmwiki/pmwiki.php/TabletopGame/TheDarkEye' data-format='VGFibGV0b3BHYW1lL1RoZURhcmtFeWU='>The Dark Eye</a></em>: Maraskan tarantulas, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Familiar' title='/pmwiki/pmwiki.php/Main/Familiar' data-format='e3tGYW1pbGlhcn19cw=='>Familiars</a> available to the Black Widow coven of witches, are poisonous spiders with a diameter of two meters or more. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Deadlands' title='/pmwiki/pmwiki.php/TabletopGame/Deadlands' data-format='VGFibGV0b3BHYW1lL3t7RGVhZGxhbmRzfX0='>Deadlands</a></em>: There are are fifty-foot giant spiders that hunt openly, and man-sized ones that hide under the ground and pull you into their burrows. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DragonQuest' title='/pmwiki/pmwiki.php/TabletopGame/DragonQuest' data-format='VGFibGV0b3BHYW1lL0RyYWdvblF1ZXN0'>Dragon Quest</a></em>: <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Magazine/Ares' title='/pmwiki/pmwiki.php/Magazine/Ares' data-format='TWFnYXppbmUve3tBcmVzfX0='>Ares</a></em> magazine #13 adventure "The Treasure of Socantri" has, as one of the new monsters included, a man-sized intelligent spider covered with long hair and capable of casting many spells of Earth Magic. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em>: <ul ><li> Spiders are sacred to the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilCounterpartRace' title='/pmwiki/pmwiki.php/Main/EvilCounterpartRace' data-format='W1tFdmlsQ291bnRlcnBhcnRSYWNlIGRyb3ddXQ=='>drow</a>'s goddess Lolth, so not only do the drow have a spider motif by association, they've bred several varieties of giant spider to use as mounts or attack animals. Drow who have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouHaveFailedMe' title='/pmwiki/pmwiki.php/Main/YouHaveFailedMe' data-format='W1tZb3VIYXZlRmFpbGVkTWUgZmFpbGVkXV0='>failed</a> their goddess in some way or another are sometimes transformed into <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderPeople' title='/pmwiki/pmwiki.php/Main/SpiderPeople' data-format='W1tTcGlkZXJQZW9wbGUgZHJpZGVyc11d'>driders</a> or masses of spider legs called chwidenchas, while Lolth's realm in the Abyss, the Demonweb Pits, is home to absolutely enormous spiders called Demonweb Terrors. </li><li> Other races of the Underdark, such as the duergar dwarves or the ettercaps &#8212; themselves spider-headed, web-weaving humanoids &#8212; similarly use giant spiders as mounts. </li><li> Giant spiders in the Classic <em>D&amp;D</em> game (Basic, Expert, etc.) were a bit more varied than in other versions of <em>D&amp;D</em>, and often had interesting abilities based on <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthInTelevision' title='/pmwiki/pmwiki.php/Main/TruthInTelevision' data-format='VHJ1dGhJblRlbGV2aXNpb24='>Truth in Television</a>, such as crab spiders blending into their surroundings, or folklore, like the "tarantella"'s poison causing a spastic "dance." </li><li> Bebiliths are quite literally demonic spiders, known for hunting other demons. The "normal" variant has a body the size of a plow horse and legs over four meters long, and they get bigger from there. </li><li> Blackspawn stalkers are one variety of Spawn of Tiamat, a web-weaving, acid-spitting combination of giant spider and black dragon. </li><li> Blade spiders are by and large normal giant spiders, except that their legs and pedipalps end in sharp metal blades. </li><li> Bristle spiders are huge (an in-game size category for creatures around the girth of a giant) spiders that live in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HungryJungle' title='/pmwiki/pmwiki.php/Main/HungryJungle' data-format='W1tIdW5ncnlKdW5nbGUgdGhpY2sganVuZ2xlc11d'>thick jungles</a>. They can spit <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PoisonIsCorrosive' title='/pmwiki/pmwiki.php/Main/PoisonIsCorrosive' data-format='W1tQb2lzb25Jc0NvcnJvc2l2ZSBhY2lkaWMgcG9pc29uXV0='>acidic poison</a> and shoot their needlelike bristles in untargeted barrages. </li><li> Grim puppeteers are jungle-dwelling giant spiders that, after they've drained their victims dry of fluids, string up their remains like marionettes with their silk, climb up a tree, and use their macabre puppets to lure passersby within striking range. </li><li> Harpoon spiders are arachnoid aberrations with disturbingly human eyes encircling a spiderlike head. They hunt by firing their adhesive-coated fangs at prey, reeling in their target via fleshly lines, injecting them with a paralytic venom, and then <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ImpaledWithExtremePrejudice' title='/pmwiki/pmwiki.php/Main/ImpaledWithExtremePrejudice' data-format='W1tJbXBhbGVkV2l0aEV4dHJlbWVQcmVqdWRpY2UgaW1wYWxpbmddXQ=='>impaling</a> their helpless victim upon the spines covering their body. They're also fully sapient and capable of speech and known for having morbid conversations with their food while it "ripens" on their spines. </li><li> Phase spiders are two-eyed, man-sized spiders capable of shifting between the Material and Ethereal Planes, hence the name. They observe and stalk prey from the Ethereal Plane undetected, then shift to the Material to attack seemingly from nowhere, and either hit-and-run or drag their food back with them to the Ethereal to feed. </li><li> Retrievers are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NinjaPirateZombieRobot' title='/pmwiki/pmwiki.php/Main/NinjaPirateZombieRobot' data-format='W1tOaW5qYVBpcmF0ZVpvbWJpZVJvYm90IGdpYW50IHJvYm90IGRlbW9uIHNwaWRlcnMgdGhhdCBjYW4gc2hvb3QgbGFzZXJzIGZyb20gdGhlaXIgZXllcy5dXQ=='>giant robot demon spiders that can shoot lasers from their eyes.</a> Demon lords use them to hunt down those who displease or offend them. </li><li> Tomb spiders are horse-sized arachnids suffused with negative energy and have a disturbing life cycle. They specifically lay their eggs in humanoid corpses, then wrap the body in silk to create a "web mummy," which is then animated by negative energy and serves its creator as a guardian. Once the eggs inside the undead husk hatch, the newborn tomb spiders feed on the corpse, then each other, until one emerges as a fully-grown adult in a few weeks. If the web mummy is destroyed before then, it releases a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderSwarm' title='/pmwiki/pmwiki.php/Main/SpiderSwarm' data-format='U3BpZGVyU3dhcm0='>Spider Swarm</a> of tiny tomb spiders. Oh, and tomb spider venom causes victims to be hurt by <em>cure wounds</em> spells and healed by <em>inflict wounds</em> spells, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReviveKillsZombie' title='/pmwiki/pmwiki.php/Main/ReviveKillsZombie' data-format='W1tSZXZpdmVLaWxsc1pvbWJpZSBhcyBpZiB0aGV5IHdlcmUgYW4gdW5kZWFkIGNyZWF0dXJlLl1d'>as if they were an undead creature.</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/CurseOfStrahd' title='/pmwiki/pmwiki.php/TabletopGame/CurseOfStrahd' data-format='VGFibGV0b3BHYW1lL0N1cnNlT2ZTdHJhaGQ='>Curse of Strahd</a></em>: An entire nest of giant spiders can be found in the ruins of Argynvostholt. They also are among many random encounters the player can have in their travels. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/ElfQuest' title='/pmwiki/pmwiki.php/ComicBook/ElfQuest' data-format='Q29taWNCb29rL0VsZlF1ZXN0'>ElfQuest</a></em>: In the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Chaosium' title='/pmwiki/pmwiki.php/Creator/Chaosium' data-format='Q3JlYXRvci97e0NoYW9zaXVtfX0='>Chaosium</a> RPG, adventure "Lord of the Spiders'', the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQfGxheWVyQ2hhcmFjdGVyfX1Dcw=='>PCs</a> must explore a forest filled with huge spiders. The spiders' venom puts the victim into suspended animation, after which <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHobbit' title='/pmwiki/pmwiki.php/Literature/TheHobbit' data-format='W1tMaXRlcmF0dXJlL1RoZUhvYmJpdCB0aGUgdmljdGltcyBhcmUgd2ViYmVkIHVwIGFuZCBodW5nIGZyb20gdHJlZXNdXQ=='>the victims are webbed up and hung from trees</a>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/TabletopGame/EncounterCritical' title='/pmwiki/pmwiki.php/TabletopGame/EncounterCritical' data-format='VGFibGV0b3BHYW1lL0VuY291bnRlckNyaXRpY2Fs'>Encounter Critical</a></em>: <ul ><li> The main rules have giant spiders as monsters. Each has from 3-60 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> and can do 1-20 <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HitPoints' title='/pmwiki/pmwiki.php/Main/HitPoints' data-format='SGl0UG9pbnRz'>Hit Points</a> of damage (plus poison) on a hit, which is more than most monsters. </li><li> Supplement <em>Asteroid 1618</em>. Inside the Vanishing Pyramid the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQfGxheWVyQ2hhcmFjdGVyfX1Dcw=='>PCs</a> can find eggsacs laid by a giant spider. If the eggsacs are broken open (from prodding or gunfire) 1-20 baby spiders will emerge and attack the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQfGxheWVyQ2hhcmFjdGVyfX1Dcw=='>PCs</a>. If <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQfGxheWVyQ2hhcmFjdGVyfX1Dcw=='>PCs</a> kill any of them the mother spider will go <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MamaBear' title='/pmwiki/pmwiki.php/Main/MamaBear' data-format='TWFtYUJlYXI='>Mama Bear</a> on them. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Exalted' title='/pmwiki/pmwiki.php/TabletopGame/Exalted' data-format='VGFibGV0b3BHYW1lL3t7RXhhbHRlZH19'>Exalted</a></em> includes these among the variety of creatures in Creation. Some are mundane animals that just happen to be huge; others are smaller but intelligent, malicious elementals called Wood Spiders. Then there are the pattern spiders, the mechanical gods that maintain the Loom of Fate. And then there are anhules, a category of demon. No, not race, <em>category.</em> As in, "there's at least one subspecies of them descended from each <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemonLordsAndArchdevils' title='/pmwiki/pmwiki.php/Main/DemonLordsAndArchdevils' data-format='W1tEZW1vbkxvcmRzQW5kQXJjaGRldmlscyBZb3ppXV0='>Yozi</a> because Yozi are jerks like that." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Fate' title='/pmwiki/pmwiki.php/VideoGame/Fate' data-format='VmlkZW9HYW1lL3t7RmF0ZX19'>Fate</a></em> has giant spiders as monsters. They're no longer present as you progress to deeper levels of the dungeon. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Godforsaken' title='/pmwiki/pmwiki.php/TabletopGame/Godforsaken' data-format='VGFibGV0b3BHYW1lL3t7R29kZm9yc2FrZW59fQ=='>Godforsaken</a></em>: If the Spider Collective wishes, it can take a few thousand (or more) spiders and have them form a huge spider-shaped mass that can act as a single enormous spider. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/GodsOfTheFall' title='/pmwiki/pmwiki.php/TabletopGame/GodsOfTheFall' data-format='VGFibGV0b3BHYW1lL0dvZHNPZlRoZUZhbGw='>Gods of the Fall</a></em>: <ul ><li> Isaleran's fungal fields are under constant threat by giant spiders, which apparently desire mushrooms more than life. </li><li> The Spider Wood is infested with spiders of all kinds, including giant spiders. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/GURPSSpaceAtlas' title='/pmwiki/pmwiki.php/TabletopGame/GURPSSpaceAtlas' data-format='VGFibGV0b3BHYW1lL0dVUlBTU3BhY2VBdGxhcw=='>GURPS Space Atlas</a> 4</em>: Winterjewel is an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SingleBiomePlanet' title='/pmwiki/pmwiki.php/Main/SingleBiomePlanet' data-format='W1tTaW5nbGVCaW9tZVBsYW5ldCBJY2UgUGxhbmV0XV0='>Ice Planet</a> whose dominant life form is a gigantic spider. It looks like a huge tarantula with white fur and weighs seventy pounds. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/TabletopGame/HeartOfTheSunkenLands' title='/pmwiki/pmwiki.php/TabletopGame/HeartOfTheSunkenLands' data-format='VGFibGV0b3BHYW1lL0hlYXJ0T2ZUaGVTdW5rZW5MYW5kcw=='>Heart Of The Sunken Lands</a></em>: Giant Spiders will always attack unless they're outnumbered. Their venom causes either paralysis for 1-6 days or a coma. While their prey is helpless they wrap it in webbing and carry it off to eat later. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/HollowEarthExpedition' title='/pmwiki/pmwiki.php/TabletopGame/HollowEarthExpedition' data-format='VGFibGV0b3BHYW1lL0hvbGxvd0VhcnRoRXhwZWRpdGlvbg=='>Hollow Earth Expedition</a></em>. One type of monster <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayerCharacter' title='/pmwiki/pmwiki.php/Main/PlayerCharacter' data-format='e3tQfGxheWVyQ2hhcmFjdGVyfX1Dcw=='>PCs</a> can encounter inside the Hollow Earth are giant meat-eating arachnids that are 10 feet long (not including the legs). They hunt like normal spiders, injecting a paralyzing poison with their bite and cocooning the prey to eat later. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/InNomine' title='/pmwiki/pmwiki.php/TabletopGame/InNomine' data-format='VGFibGV0b3BHYW1lL0luTm9taW5l'>In Nomine</a></em>: Arachnidae, a dreamscape created by the dreams of spiders, is inhabited mainly by the dreaming selves of the sleeping arachnids that sustain it &#8212; with the caveat that common spiders appear as large as a human, while more substantial species are quite a lot bigger. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Ironclaw' title='/pmwiki/pmwiki.php/TabletopGame/Ironclaw' data-format='VGFibGV0b3BHYW1lL3t7SXJvbmNsYXd9fQ=='>Ironclaw</a></em>: Two of the sample wild creatures in the Omnibus are the Damhánalla, a spider about the size of a human head, and the nastier Tarantella, which is even bigger. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/TabletopGame/ItCameFromTheLateLateShow' title='/pmwiki/pmwiki.php/TabletopGame/ItCameFromTheLateLateShow' data-format='VGFibGV0b3BHYW1lL0l0Q2FtZUZyb21UaGVMYXRlTGF0ZVNob3c='>It Came From The Late Late Show</a></em>: <ul ><li> Main rules: Giant Spiders are Monsters that are 15 feet long and act like normal wolf (hunting) spiders. They bite their prey and poison it, then drink its blood. </li><li> Supplement <em>It Came from the Late, Late Show II</em>, adventure "Bjorn on the Bayou, or Escape from Alkatrazz XII": Alkatrazz XII is a prison planet that is mostly covered with swamps and forest. One of the alien monsters that can be encountered there is a giant spider. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/LEGOGames' title='/pmwiki/pmwiki.php/TabletopGame/LEGOGames' data-format='VGFibGV0b3BHYW1lL0xFR09HYW1lcw=='>LEGO Games</a></em>: In <em>Heroica</em>'s Waldurk Forest board, large spiders are normal enemies. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/TabletopGame/LejendaryAdventures' title='/pmwiki/pmwiki.php/TabletopGame/LejendaryAdventures' data-format='VGFibGV0b3BHYW1lL0xlamVuZGFyeUFkdmVudHVyZXM='>Lejendary Adventures</a></em>: Jumping spiders are about twice as large as a human being and web spiders can be as much as 40 inches wide. They both inject a dangerous venom. </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 several spiders as creature cards, and they're usually able to block creatures with flying, representing flying creatures (from small birds and insects to full-sized griffins and small dragons) getting caught in their webs. <ul ><li> The first was actually called "<a class='urllink' href='https://scryfall.com/card/m19/183/giant-spider'>Giant Spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>", and holds the distinction of having been the only card to have been in every base set printed until it was left out of Magic 2013, although it came back in Magic 2014 and still holds the record for longest continuous run in the core sets. </li><li> A trend in card art depicts <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoodChainOfEvil' title='/pmwiki/pmwiki.php/Main/FoodChainOfEvil' data-format='W1tGb29kQ2hhaW5PZkV2aWwgc3BpZGVycyBpbiB0aGUgYWN0IG9mIHN1YmR1aW5nIHZlcnkgbGFyZ2UgZmx5aW5nIG1vbnN0ZXJzXV0='>spiders in the act of subduing very large flying monsters</a>. <a class='urllink' href='https://scryfall.com/card/ori/197/skysnare-spider'>Skynsare Spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is shown preying on a griffon; <a class='urllink' href='https://scryfall.com/card/rav/168/goliath-spider'>Goliath Spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is shown eating a drake. </li><li> <a class='urllink' href='https://scryfall.com/card/uds/116/plated-spider'>Plated Spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> has the amusing flavor text "Most spiders wait patiently for their prey to arrive. Most spiders aren't forty feet tall." </li><li> Planechase gave us <a class='urllink' href='https://scryfall.com/card/pca/87/dragonlair-spider'>Dragonlair Spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, which spawns insects. Spiders aren't insects, but then you read the flavour text. Those insects are not spawns of the spider; they're scavengers eating the bits of <em>dragons</em> that the spider discards. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FoodChainOfEvil' title='/pmwiki/pmwiki.php/Main/FoodChainOfEvil' data-format='W1tGb29kQ2hhaW5PZkV2aWwgVGhhdCB0aGluZyBlYXRzXV0='>That thing eats</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' data-format='W1tPdXJEcmFnb25zQXJlRGlmZmVyZW50IGRyYWdvbnNdXQ=='>dragons</a></em>. </li><li> The planes of Shadowmoor and Innistrad &#8212; both based on horror themes, fairytale horror in the first case and <a class='twikilink' href='/pmwiki/pmwiki.php/Film/HammerHorror' title='/pmwiki/pmwiki.php/Film/HammerHorror' data-format='RmlsbS9IYW1tZXJIb3Jyb3I='>Hammer Horror</a> in the second &#8212; are both home to a specific species of giant spiders the size of cottages known as <a class='urllink' href='https://magiccards.info/shm/en/117.html'>gloomwidows<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. <a class='urllink' href='https://magiccards.info/shm/en/121.html'>They start out as ground-based hunters<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> who kill their prey with their powerful venom, but become preferential web-spinners as they mature. Those from Shadowmoor cover whole cliffs with their webs, while those from Innistrad are often found in abandoned towns, with webs filling the air between spires and belltowers, although <a class='urllink' href='https://magiccards.info/emn/en/162.html'>others<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> lurk in graveyards instead. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Numenera' title='/pmwiki/pmwiki.php/TabletopGame/Numenera' data-format='VGFibGV0b3BHYW1lL3t7TnVtZW5lcmF9fQ=='>Numenera</a></em>: <ul ><li> Ghost crabs are a species of spiders that average about one meter across and can grow as large as a meter and a half. </li><li> Steel spiders are the size of a dinner platter, and spin thin webs made of metal. </li><li> The dearth spiders of Swarmstar are human-sized and live in large colonies, building webs hundreds of yards. </li><li> Noculters are spiderlike creatures with bodies nearly as large as humans that hunt the Storm Layer. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' title='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' data-format='VGFibGV0b3BHYW1lL3t7UGF0aGZpbmRlcn19'>Pathfinder</a></em>: <ul ><li> Shriezyx resemble monstrous spiders three feet in height. Shriezyx queens can reach a solid eight. </li><li> Second Edition introduces the Anadi, a playable race of man-sized wolf spiders who mostly live in the Mwangi Expanse. Fully aware that most people are rather afraid of Giant Spiders, nearly every Anadi that lives near humanoids has been taught magic to take a Human form at will. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/RocketAge' title='/pmwiki/pmwiki.php/TabletopGame/RocketAge' data-format='VGFibGV0b3BHYW1lL1JvY2tldEFnZQ=='>Rocket Age</a></em>: Some species of Venusian spiders have bodies up to a metre in diameter, with legs potentially even longer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Rolemaster' title='/pmwiki/pmwiki.php/TabletopGame/Rolemaster' data-format='VGFibGV0b3BHYW1lL3t7Um9sZW1hc3Rlcn19'>Rolemaster</a></em> <em>Shadow World</em> supplement <em>Jaiman: Land of Twilight</em>. The H'taan is a huge spider that lives in ancient ruins and other rocky, remote locations. They dig holes like a trap door spider and lie in ambush, paralyzing victims with their venom. They grow up to thirty feet or more across. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/RuneQuest' title='/pmwiki/pmwiki.php/TabletopGame/RuneQuest' data-format='VGFibGV0b3BHYW1lL1J1bmVRdWVzdA=='>RuneQuest</a></em>: <ul ><li> <em>Into the Troll Realms</em>, adventure "Skyfall Lake": Crab City has spiders that are as large as a mammoth. They have warty gray skin and drop pools of acid. </li><li> <em>Dorastor: Land of Doom</em>: Of the Spider Folk who live in the Spider Woods, the largest type are the Great Mother Spiders. They can reach a Size of 54, which means they weigh just less than 7,000 lb. </li><li> Supplement <em>Trollpak</em>, "Book of Uz" part 2: The trolls have domesticated several types of giant spiders. The largest ones weigh more than 6,000 lbs. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ShadowOfTheDemonLord' title='/pmwiki/pmwiki.php/TabletopGame/ShadowOfTheDemonLord' data-format='VGFibGV0b3BHYW1lL1NoYWRvd09mVGhlRGVtb25Mb3Jk'>Shadow of the Demon Lord</a></em>: The Spider Wood is a forest filled with various kinds of oversized spiders, including a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CannibalTribe' title='/pmwiki/pmwiki.php/Main/CannibalTribe' data-format='Q2FubmliYWxUcmliZQ=='>Cannibal Tribe</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiderPeople' title='/pmwiki/pmwiki.php/Main/SpiderPeople' data-format='U3BpZGVyUGVvcGxl'>Spider People</a>. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/TabletopGame/SorceryAndSuperSciencePostApocalypticRolePlaying' title='/pmwiki/pmwiki.php/TabletopGame/SorceryAndSuperSciencePostApocalypticRolePlaying' data-format='VGFibGV0b3BHYW1lL1NvcmNlcnlBbmRTdXBlclNjaWVuY2VQb3N0QXBvY2FseXB0aWNSb2xlUGxheWluZw=='>Sorcery And Super Science Post Apocalyptic Role Playing</a></em>: The Scritch are spider-like creatures that are about 2 feet across and can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperSpit' title='/pmwiki/pmwiki.php/Main/SuperSpit' data-format='W1tTdXBlclNwaXQgc3BpdCBwb2lzb25dXQ=='>spit poison</a>. There are unconfirmed rumors that they can grow as large as a small pony. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/TheStrange' title='/pmwiki/pmwiki.php/TabletopGame/TheStrange' data-format='VGFibGV0b3BHYW1lL1RoZVN0cmFuZ2U='>The Strange</a></em>: <ul ><li> The night spiders of Ardeyn measure two meters in diameter. </li><li> A monument spider's legs can stretch almost 152 meters from tip to tip. </li><li> Xyz'pln is like a spider, if a spider were large enough to span a miles-wide space. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/TailsOfEquestria' title='/pmwiki/pmwiki.php/TabletopGame/TailsOfEquestria' data-format='VGFibGV0b3BHYW1lL1RhaWxzT2ZFcXVlc3RyaWE='>Tails of Equestria</a></em>: Giant spiders are included in the bestiary. They live deep underground by preference, and detest both fire and bright light. They often live in large nests or colonies led by a larger queen. In <em>The Festival of Lights</em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >they are the main antagonists due to the spider-queen Insidira deciding that she's tired of ruling only over caverns and planning to take over the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UndergroundCity' title='/pmwiki/pmwiki.php/Main/UndergroundCity' data-format='VW5kZXJncm91bmRDaXR5'>Underground City</a> of Umberfoal and then move on to the surface world</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Warhammer' title='/pmwiki/pmwiki.php/Franchise/Warhammer' data-format='RnJhbmNoaXNlL3t7V2FyaGFtbWVyfX0='>Warhammer</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Necromunda' title='/pmwiki/pmwiki.php/TabletopGame/Necromunda' data-format='VGFibGV0b3BHYW1lL3t7TmVjcm9tdW5kYX19'>Necromunda</a></em>: <ul ><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HiveCity' title='/pmwiki/pmwiki.php/Main/HiveCity' data-format='e3tIaXZlIENpdHx5fX1pZXM='>Hive Cities</a> of Necromunda are infamous for their giant spiders that can range in size from several feet across to larger than a man. Species include the long-legged wolf spiders, the stealthy orb spiders<span class="notelabel" onclick="togglenote('note0a052');"><sup>note&nbsp;</sup></span><span id="note0a052" class="inlinefolder" isnote="true" onclick="togglenote('note0a052');" style="cursor:pointer;font-size:smaller;display:none;">both of which had rules for use in 1st Edition Arbitrated Campaigns</span> and the amphibious sump spiders that have precious gems for eyes. </li><li> In the 3rd Edition of the game, the technologically proficient House Van Saar are known to capture, breed, and cybernetically enhanced Necromundan giant spiders for various purposes. In-game, Van Saar gangs can purchase these cyberarchnids as pets from the Campaign Trading Post. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' data-format='VGFibGV0b3BHYW1lL1dhcmhhbW1lcjQwMDAw'>Warhammer 40,000</a></em>: Canoptek Spyders are floating robot spiders responsible for overseeing and repairing <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RobotWar' title='/pmwiki/pmwiki.php/Main/RobotWar' data-format='W1tSb2JvdFdhciBOZWNyb25dXQ=='>Necron</a> Tomb Complexes while their masters sleep in stasis. Even the smallest of Canoptek Spyders are larger than a human, and there have even been a few encounters with such constructs, known as Tomb Stalkers, that equal or exceed the size of the Imperium's largest <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumongousMecha' title='/pmwiki/pmwiki.php/Main/HumongousMecha' data-format='SHVtb25nb3VzTWVjaGE='>Humongous Mecha</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer' data-format='W1tUYWJsZXRvcEdhbWUve3tXYXJoYW1tZXJ9fSBXYXJoYW1tZXIgRmFudGFzeV1d'>Warhammer Fantasy</a></em> and its sequel <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WarhammerAgeOfSigmar' title='/pmwiki/pmwiki.php/TabletopGame/WarhammerAgeOfSigmar' data-format='VGFibGV0b3BHYW1lL1dhcmhhbW1lckFnZU9mU2lnbWFy'>Warhammer: Age of Sigmar</a></em>, Forest Goblins and Spiderfang Grots (respectively) ride giant spiders into battle, with the rank-and-file riding spiders about twice their size while their bosses ride spiders twice as big as those of their followers. The largest spiders fielded by these tribes are the arachnarok spiders, which are so massive that they can be fitted with howdahs bearing catapults or primitive shrines. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheWorldOfDarkness' title='/pmwiki/pmwiki.php/Franchise/TheWorldOfDarkness' data-format='RnJhbmNoaXNlL1RoZVdvcmxkT2ZEYXJrbmVzcw=='>The World of Darkness</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlQXBvY2FseXBzZQ=='>Werewolf: The Apocalypse</a></em> includes a race of blood-sucking werespiders called Ananasi. One of their forms is indeed a spider one-and-a-half times their human weight, and about the size of a Volkswagen Beetle. Their other forms are human (with a few spider internal organs), spider-human hybrid monster, and an entire swarm of normal-sized spiders linked by a hive-mind. In that form, they can survive the death of any number of spiders, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FromASingleCell' title='/pmwiki/pmwiki.php/Main/FromASingleCell' data-format='W1tGcm9tQVNpbmdsZUNlbGwgYXMgbG9uZyBhcyBvbmUgaXMgbGVmdF1d'>as long as one is left</a> &#8212; though losing a lot will change their appearance and personality. Regular Ananasi are sinister and emotionless, but the Kumo of East Asia are sadistic, insane, and evil. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheForsaken' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheForsaken' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlRm9yc2FrZW4='>Werewolf: The Forsaken</a></em> features giant spiders known as Azlu, which are bizarre spirit hybrids. They start off small and looking mostly like natural spiders, and feed themselves on regular spiders and other Azlu. When they get big enough they start targeting humans and either <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BodyHorror' title='/pmwiki/pmwiki.php/Main/BodyHorror' data-format='W1tCb2R5SG9ycm9yIGVhdCB0aGVpciBicmFpbnMgYW5kIHJpZGUgYXJvdW5kIGluIHRoZWlyIGhlYWRzLCBvciAod2hlbiBiaWdnZXIpIHN1Y2sgdGhlIGJvZHkgZW1wdHkgYW5kIHdlYXIgdGhlIHNraW5dXQ=='>eat their brains and ride around in their heads, or (when bigger) suck the body empty and wear the skin</a>. When they get big enough, they often resemble a hideous combination of human and spider parts and will be covered in poisonous spines and fangs. They eat humans, spirits, and the occasional werewolf. When they get big enough, they stop being able to pass as human, but often gain the ability to lay eggs, either eating the young or letting them grow into a family to bring it more prey. On top of all that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FromASingleCell' title='/pmwiki/pmwiki.php/Main/FromASingleCell' data-format='W1tGcm9tQVNpbmdsZUNlbGwgaWYgdGhleSBhcmUga2lsbGVkIHRoZXkgc3BsaXQgaW50byBkb3plbnMgb2YgdGhlaXIgb3JpZ2luYWwgZm9ybSwgd2hpY2ggYWxsIGhhdmUgdG8gYmUga2lsbGVkIHRvIHByZXZlbnQgdGhlbSBmcm9tIGdyb3dpbmcgaW50byBuZXcgQXpsdV1d'>if they are killed they split into dozens of their original form, which all have to be killed to prevent them from growing into new Azlu</a>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder14');">&nbsp;&nbsp;&nbsp;&nbsp;Theme Parks&nbsp;</div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Ride/DungeonOfTerror' title='/pmwiki/pmwiki.php/Ride/DungeonOfTerror' data-format='UmlkZS9EdW5nZW9uT2ZUZXJyb3I='>Dungeon of Terror</a></em> haunted house from <a class='twikilink' href='/pmwiki/pmwiki.php/Ride/UniversalStudios' title='/pmwiki/pmwiki.php/Ride/UniversalStudios' data-format='UmlkZS9Vbml2ZXJzYWxTdHVkaW9z'>Universal Studios</a>' <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/HalloweenHorrorNights' title='/pmwiki/pmwiki.php/Theatre/HalloweenHorrorNights' data-format='VGhlYXRyZS9IYWxsb3dlZW5Ib3Jyb3JOaWdodHM='>Halloween Horror Nights</a></em> had a six-foot spider dangling down at the guests. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');">&nbsp;&nbsp;&nbsp;&nbsp;Toys&nbsp;</div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Bionicle' title='/pmwiki/pmwiki.php/Toys/Bionicle' data-format='VG95cy97e0Jpb25pY2xlfX0='>BIONICLE</a></em>: The Visorak horde, made up of car-sized spiders. There are also the elite Visorak, the humongous Kahgarak spiders, several stories high. Also, a variety of giant spider-like Rahi qualify as well, like the Chute Lurker, the Sea Spider, and Vezon's steed Fenrakk. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Bionicle2015' title='/pmwiki/pmwiki.php/Toys/Bionicle2015' data-format='VG95cy9CaW9uaWNsZTIwMTU='>BIONICLE (2015)</a></em> had the Skull Spiders. They are about the size of a Toa's head, but their leader, the Lord of the Skull Spiders, is the size of a small house (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/YourSizeMayVary' title='/pmwiki/pmwiki.php/Main/YourSizeMayVary' data-format='W1tZb3VyU2l6ZU1heVZhcnkgdGhvdWdoIGhpcyB0b3kgaXMgYWJvdXQgdGhlIHNpemUgb2YgYSBUb2EgZmlndXJlIGFuZCBpcyBkZWZpbml0ZWx5IHdheSBzaG9ydGVyXV0='>though his toy is about the size of a Toa figure and is definitely way shorter</a>). Some of the Skull Spiders have scorpion-like tails and like the Visorak, they are four-legged. The Lord has six legs. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder16');">&nbsp;&nbsp;&nbsp;&nbsp;Web Animation&nbsp;</div><div id="folder16" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/Snarled' title='/pmwiki/pmwiki.php/WebAnimation/Snarled' data-format='V2ViQW5pbWF0aW9uL3t7U25hcmxlZH19'>Snarled</a></em>: The pumpkins in "Pumpkin Panic" secretly hide such a gigantic creature within their shells. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder17');">&nbsp;&nbsp;&nbsp;&nbsp;Webcomics&nbsp;</div><div id="folder17" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/AbeAndKroenen' title='/pmwiki/pmwiki.php/Webcomic/AbeAndKroenen' data-format='V2ViY29taWMvQWJlQW5kS3JvZW5lbg=='>Abe &amp; Kroenen</a></em>: Rasputin tries to capture a giant spider for his own use. It's later found out that its name is Starbuck and belongs to Davy Jones. </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 exploring <span class="spoiler" title="you can set spoilers visible by default on your profile" >the caves on the Dark Star</span>, the Everyman is ambushed by a giant wolf spider as large as he is. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/DaddyLongLegs' title='/pmwiki/pmwiki.php/Webcomic/DaddyLongLegs' data-format='V2ViY29taWMvRGFkZHlMb25nTGVncw=='>Daddy-Long-Legs</a></em>: Mr. Scapegrace stands more than twice as tall as a human. However, while he is a cellar spider, he <em>stands</em> that tall because he is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeastMan' title='/pmwiki/pmwiki.php/Main/BeastMan' data-format='QmVhc3RNYW4='>Beast Man</a> and standing on his fourth pair of legs, having hands on the others. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' title='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' data-format='V2ViY29taWMvRWxHb29uaXNoU2hpdmU='>El Goonish Shive</a></em>: Elliot initially <a class='urllink' href='http://www.egscomics.com/?date=2008-07-28'>mistakes the Bloodgrem for one of these<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> after seeing its <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExtraEyes' title='/pmwiki/pmwiki.php/Main/ExtraEyes' data-format='W1tFeHRyYUV5ZXMgbWFueSBzcGlkZXItbGlrZSBleWVzXV0='>many spider-like eyes</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/GirlGenius' title='/pmwiki/pmwiki.php/Webcomic/GirlGenius' data-format='V2ViY29taWMvR2lybEdlbml1cw=='>Girl Genius</a></em>: <ul ><li> The Geisterdamen ride ghost spiders, pale spiders several meters tall and with very long, slender legs. This is actually one of the <em>least</em> creepy things about the Geisterdamen. </li><li> There's <a class='urllink' href='http://www.girlgeniusonline.com/comic.php?date=20090729'>a different one in Castle Heterodyne<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, which while not being much bigger than a real-life tarantula is still able to completely envelop an adult human in webs in a few seconds. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/HighSchoolLessons' title='/pmwiki/pmwiki.php/Webcomic/HighSchoolLessons' data-format='V2ViY29taWMvSGlnaFNjaG9vbExlc3NvbnM='>High School Lessons</a></em>: A couple of students tried to genetically engineer one. Thanks to reality ensuing, none of the spiders actually survived. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Homestuck' title='/pmwiki/pmwiki.php/Webcomic/Homestuck' data-format='V2ViY29taWMve3tIb21lc3R1Y2t9fQ=='>Homestuck</a></em>: Trolls are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RaisedByWolves' title='/pmwiki/pmwiki.php/Main/RaisedByWolves' data-format='W1tSYWlzZWRCeVdvbHZlcyByYWlzZWQgYnkgYWxpZW4gbW9uc3RlcnNdXQ=='>raised by alien monsters</a> called lusii naturae; Vriska's is a spider the size of a house. She is also responsible for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/HorrorHunger' title='/pmwiki/pmwiki.php/Main/HorrorHunger' data-format='W1tIb3Jyb3JIdW5nZXIgZmVlZGluZyBpdF1d'>feeding it</a>.</em> It's outright stated that she <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EatsBabies' title='/pmwiki/pmwiki.php/Main/EatsBabies' data-format='RWF0c0JhYmllcw=='>Eats Babies</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/NatureOfNaturesArt' title='/pmwiki/pmwiki.php/Webcomic/NatureOfNaturesArt' data-format='V2ViY29taWMvTmF0dXJlT2ZOYXR1cmVzQXJ0'>Nature of Nature's Art</a></em>: Since it's about spiders, <em>Lycos]</em> usually averts this trope; pretty much all of the spiders who appear are their actual sizes. Then the trope gets inverted with <em>Patu digua</em> (one of the world's smallest spiders), and then played straight with... none other than <em>Theraphosa blondi</em> (the above-mentioned Goliath Birdeater Tarantula), who <em>dwarfs</em> the titular spider. <a class='urllink' href='http://www.nofna.com/?T=1-1-15-174'>Three guesses why this page scared the crap out of some readers<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/SquidRow' title='/pmwiki/pmwiki.php/Webcomic/SquidRow' data-format='V2ViY29taWMvU3F1aWRSb3c='>Squid Row</a></em>: <a class='urllink' href='http://squidrowcomics.com/?p=364'>What your imagination will do to you.<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/TalesOfTheQuestor' title='/pmwiki/pmwiki.php/Webcomic/TalesOfTheQuestor' data-format='V2ViY29taWMvVGFsZXNPZlRoZVF1ZXN0b3I='>Tales of the Questor</a></em>: Quentyn reveals that his marvelous silken cloak is woven from the silk of <a class='urllink' href='https://web.archive.org/web/20070515024817/http://www.rhjunior.com/totq/00416.html'>biomancy enhanced spiders the size of tomatoes.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (canonically, they are literally too large to walk on their own, and have to be hand-fed by their handlers.) Sam is not enthused. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/WastedTalent' title='/pmwiki/pmwiki.php/Webcomic/WastedTalent' data-format='V2ViY29taWMvV2FzdGVkVGFsZW50'>Wasted Talent</a></em> <a class='urllink' href='http://www.wastedtalent.ca/comic/how-start-panic-bus'>plays with this.<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/Xkcd' title='/pmwiki/pmwiki.php/Webcomic/Xkcd' data-format='V2ViY29taWMve3tYa2NkfX0='>xkcd</a></em>: In strip #1530 "Keyboard Mash", a giant spider ties up a human, and then tries to impersonate that human online. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder18');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder18" class="folder" isfolder="true" style="display:block;"> <ul ><li> The osteopods in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/AlienBiospheres' title='/pmwiki/pmwiki.php/WebVideo/AlienBiospheres' data-format='V2ViVmlkZW8vQWxpZW5CaW9zcGhlcmVz'>Alien Biospheres</a></em> are genetically distinct from true spiders due to evolving on a different planet, but their eight legs, six eyes, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonstrousMandibles' title='/pmwiki/pmwiki.php/Main/MonstrousMandibles' data-format='W1tNb25zdHJvdXNNYW5kaWJsZXMgbWFuZGlibGVzXV0='>mandibles</a>, pedipalps, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Cephalothorax' title='/pmwiki/pmwiki.php/Main/Cephalothorax' data-format='e3tjZXBoYWxvdGhvcmF4fX0='>cephalothorax</a> cause them to look the part. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=Yx1tBjwhXx8'>"Giant Spider Invasion"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. A guy finds a pretty big spider in his backyard, so he sprays insecticide all over his house and on the spider... <span class="spoiler" title="you can set spoilers visible by default on your profile" > only it turns out he picked up insecti<em>steroids</em> instead. Then the all-grown-up spider invades his house and kills him.</span> </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=pAoDgCF-feg'>This<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> particularly famous <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/Jerma985' title='/pmwiki/pmwiki.php/WebVideo/Jerma985' data-format='V2ViVmlkZW8vSmVybWE5ODU='>Jerma985</a> clip. Complete with beatboxing! </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebOriginal/KriegsMaiden' title='/pmwiki/pmwiki.php/WebOriginal/KriegsMaiden' data-format='V2ViT3JpZ2luYWwvS3JpZWdzTWFpZGVu'>Kriegs Maiden</a></em> novel universe, there's a series of spider-type Kriegsmaiden. The most infamous is the Widow, which doesn't look humanoid at all, and can have a leg span longer than the average car! </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DownplayedTrope' title='/pmwiki/pmwiki.php/Main/DownplayedTrope' data-format='e3tEb3ducGxheWVkfFRyb3BlfX0='>Downplayed</a> but still present with the titular character of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/LucasTheSpider' title='/pmwiki/pmwiki.php/WebAnimation/LucasTheSpider' data-format='V2ViQW5pbWF0aW9uL0x1Y2FzVGhlU3BpZGVy'>Lucas the Spider</a></em>. He is far larger than any real species of jumping spider, which tend to be a few millimeters in size, where as Lucas seems to be around 3 inches long. </li><li> Oddly toyed with in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Mortasheen' title='/pmwiki/pmwiki.php/Website/Mortasheen' data-format='V2Vic2l0ZS97e01vcnRhc2hlZW59fQ=='>Mortasheen</a></em>. You'd think the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HalfHumanHybrid' title='/pmwiki/pmwiki.php/Main/HalfHumanHybrid' data-format='W1tIYWxmSHVtYW5IeWJyaWQgaHVtYW4taW5zZWN0IGh5YnJpZF1d'>human-insect hybrid</a> Arthropoid class of creatures would have one, but in actuality, the spider-based creatures they have there aren't all that big and tend to look more like humans with weirdly spidery proportions (the biggest one looks more ape-like than anything else). There is a monster that fits this trope, though oddly enough it's actually <a class='urllink' href='http://www.bogleech.com/mortasheen/gorgoblepas.htm'>a weird cow thing designed to produce meat<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MotherOfLearning' title='/pmwiki/pmwiki.php/Literature/MotherOfLearning' data-format='TGl0ZXJhdHVyZS9Nb3RoZXJPZkxlYXJuaW5n'>Mother of Learning</a></em>, the aranea are a somewhat <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DownplayedTrope' title='/pmwiki/pmwiki.php/Main/DownplayedTrope' data-format='e3tkb3ducGxheWVkfFRyb3BlfX0='>downplayed</a> example &#8212; Zorian's narration describes them as being the size of his chest. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpidersAreScary' title='/pmwiki/pmwiki.php/Main/SpidersAreScary' data-format='W1tTcGlkZXJzQXJlU2NhcnkgVGhleSYjMDM5O3JlIHN0aWxsIHByZXR0eSBzY2FyeSwgdGhvdWdoXV0='>They're still pretty scary, though</a>, not in the least because <span class="spoiler" title="you can set spoilers visible by default on your profile" >they are a species of mind-mages</span>. </li><li> One of the various terrors beset on <a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/TribeTwelve' title='/pmwiki/pmwiki.php/WebVideo/TribeTwelve' data-format='W1tXZWJWaWRlby9UcmliZVR3ZWx2ZSBOb2FoIE1heHdlbGxdXQ=='>Noah Maxwell</a> at the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchLocation' title='/pmwiki/pmwiki.php/Main/EldritchLocation' data-format='W1tFbGRyaXRjaExvY2F0aW9uIFZpY3RvciBQYXJrIEJvYXJkd2Fsa11d'>Victor Park Boardwalk</a> is this, as well as one of the various forms of <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheSlenderManMythos' title='/pmwiki/pmwiki.php/Franchise/TheSlenderManMythos' data-format='W1tGcmFuY2hpc2UvVGhlU2xlbmRlck1hbk15dGhvcyB0aGUgQWRtaW5pc3RyYXRvcl1d'>the Administrator</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/SCPFoundation' title='/pmwiki/pmwiki.php/Website/SCPFoundation' data-format='V2Vic2l0ZS9TQ1BGb3VuZGF0aW9u'>SCP Foundation</a></em>: <ul ><li> <a class='urllink' href='http://www.scp-wiki.net/scp-278'>SCP-278 ("A Large Mechanical Spider")<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. SCP-278 is a giant robotic spider. When it escaped confinement, it was covered up as a new performance artpiece (see "La Princesse" in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a> section). </li><li> <a class='urllink' href='http://scp-wiki.net/scp-940'>SCP-940 ("Araneae Marionettes")<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. SCP-940 is a spider-like creature with a leg span up to 7 meters across. </li><li> <a class='urllink' href='http://www.scp-wiki.net/scp-2507'>SCP-2507 ("A Web Of Cliques")<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. SCP-2507 are spider-like creatures with an average weight of 45 kilograms (~100 pounds) and average height of 3 meters (~10 feet). </li><li> <a class='urllink' href='http://www.scp-wiki.net/scp-2922'>SCP-2922 ("Notes From the Under")<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. SCP-PC-005, "The Impenetrable" is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityWarper' title='/pmwiki/pmwiki.php/Main/RealityWarper' data-format='UmVhbGl0eVdhcnBlcg=='>Reality Warper</a> that lives in the afterlife known as Corbenic. It resembles a gigantic spider. </li></ul></li><li> This appears to be the true form of the creepy Victorian throwback villain Spider in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WorldDominationInRetrospect' title='/pmwiki/pmwiki.php/Literature/WorldDominationInRetrospect' data-format='TGl0ZXJhdHVyZS9Xb3JsZERvbWluYXRpb25JblJldHJvc3BlY3Q='>World Domination in Retrospect</a></em>, as revealed when the fight goes against him. </li><li> Invoked in <a class='urllink' href='https://youtu.be/YoB8t0B4jx4'>this video<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, in which a German Shepherd is dressed in a spider costume to prank unwary passersby. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NothingIsScarier' title='/pmwiki/pmwiki.php/Main/NothingIsScarier' data-format='W1tOb3RoaW5nSXNTY2FyaWVyIEZyb20gd2hhdCBsaXR0bGUgd2UgY2FuIHNlZSBvZiB0aGVtXV0='>From what little we can see of them</a>, the Woodcrawlers from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/GeminiHomeEntertainment' title='/pmwiki/pmwiki.php/WebVideo/GeminiHomeEntertainment' data-format='V2ViVmlkZW8vR2VtaW5pSG9tZUVudGVydGFpbm1lbnQ='>Gemini Home Entertainment</a></em> appear to be shaped similarly to spiders. They have four front legs that seem to be arachnid in shape, and they're large enough to fill up most of a doorway. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder19');">&nbsp;&nbsp;&nbsp;&nbsp;Real Life&nbsp;</div><div id="folder19" class="folder" isfolder="true" style="display:block;"> <ul ><li> Mostly averted in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a>: spiders as a whole are tiny creatures, with most of them being smaller than your fingernail. </li><li> The biggest spider known is the South American goliath birdeater tarantula, growing to roughly 9-10" (22-25 cm) in size, this creature's relatively harmless (to humans) venom is made up for by its increased aggression compared to most tarantulae and tendency to fling clouds of irritating spines into the eyes of larger enemies. While they usually only eat the externally digested liquid remains of insects, reptiles, and amphibians they paralyze with their venom, they do occasionally manage to catch a bird (and no, they do not build giant webs to catch them with). To quote Cracked <a class='urllink' href='http://www.cracked.com/article_16054_6-endangered-species-that-arent-endangered-enough.html'>"It's frequently described as 'larger than a dinner plate,' presumably because spider-scientists don't want to freak people out with the significantly more relevant 'big enough to fit over your face.'"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> Australia is infamous for its thick concentration of <a class='urllink' href='http://en.wikipedia.org/wiki/Huntsman_spider'>huntsman spiders<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, which can grow to be the size of one's face. According to native Aussies, the first time you see one you scream and run away, the second you try to get rid of it, the third you just ignore it. They are venomous, but their bite is effectively harmless to any healthy human, and they keep other bugs out of the house. (The spiders, not the Australians.) </li><li> Everybody meet the new kid in town! The <em>Heteropoda maxima</em>, also called the <a class='urllink' href='http://en.wikipedia.org/wiki/Giant_huntsman_spider'>Giant Huntsman Spider<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is another 30 cm (12 inch) beast from Laos. It isn't as bulky as Goliath, but it definitely holds as much Nightmare Fuel for those scared of lanky, skinny spiders. It is also, as the name implies, the largest species of all Huntsman spiders. </li><li> <a class='urllink' href='http://en.wikipedia.org/wiki/La_Princesse'>La Princesse<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, the fifty-foot spider marionette. She appeared on the side of a tower, was taken to a dock, and started roaming Liverpool and spraying people with water. She "seemed to be leading the entire population of the city on a merry dance, like some kind of arachnid Pied Piper." </li><li> <a class='urllink' href='http://www.flickr.com/photos/mdnjustin/4507060920/'>Maman<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, the giant pregnant spider which now menaces Ontario. </li><li> It was once believed that a fossil arthropod from the Carboniferous, called <em><a class='urllink' href='http://en.wikipedia.org/wiki/Megarachne'>Megarachne<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em>, was one of these. However, more recent evidence shows that the extinct creature <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScienceMarchesOn' title='/pmwiki/pmwiki.php/Main/ScienceMarchesOn' data-format='W1tTY2llbmNlTWFyY2hlc09uIHdhc24mIzAzOTt0IGEgc3BpZGVyIGF0IGFsbF1d'>wasn't a spider at all</a> but in fact part of an extinct group of animals known as sea scorpions. So yes, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FalseReassurance' title='/pmwiki/pmwiki.php/Main/FalseReassurance' data-format='W1tGYWxzZVJlYXNzdXJhbmNlIG5vdCBHaWFudCBTcGlkZXJzXV0='>not Giant Spiders</a>, just <em>Giant Scorpions</em>. The largest sea scorpion, <em>Jaekelopterus</em>, reached a length of over eight feet (2.5 meters), <em>four times</em> as long as <em>Megarachne</em>. But it didn't <em>look</em> like a spider, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SarcasmMode' title='/pmwiki/pmwiki.php/Main/SarcasmMode' data-format='W1tTYXJjYXNtTW9kZSBzbyB0aGF0JiMwMzk7cyBhbGwgcmlnaHQgdGhlbi5dXQ=='>so that's all right then.</a> <ul ><li> As a matter of fact, the largest known prehistoric spiders (the Jurassic <em>Mongolarachne</em> and the Permian <em>Arthrolycosa</em>) were actually <em>smaller</em> than the largest spiders of today, with neither exceeding 5 inches in leg span. </li></ul></li><li> Although they are not true spiders (though they are distantly related), some species of <a class='urllink' href='http://en.wikipedia.org/wiki/Sea_spider'>pycnogonids (also known as sea spiders)<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> can reach 2 feet across. The largest ones tend to be found in cold, deep water so you're unlikely to encounter those kinds. </li><li> Also, there is the <a class='urllink' href='https://en.wikipedia.org/wiki/Japanese_spider_crab'>Japanese spider crab<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. It's a kind of crab reaching 3.8 m from claw to claw and looking like a giant spider. </li><li> A persistent <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UrbanLegends' title='/pmwiki/pmwiki.php/Main/UrbanLegends' data-format='e3t1cmJhbiBsZWdlbmR8c319'>urban legend</a> holds that giant spiders were found in the summer of 2001, living near Windsor Castle. They were discovered by British Telecom workers in an underground maintenance tunnel. Entomologists initially reported that they were venomous, aggressive and possibly a type thought to have been extinct for centuries. On later examination they proved to be <em><a class='urllink' href='http://upload.wikimedia.org/wikipedia/commons/5/5b/Meta_menardi.jpg'>Meta menardi<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small></em> cave spiders, which are notoriously <em>non</em>aggressive. The colony was rehomed to a nearby forest. </li><li> Another persistent urban legend is that of the so-called Iraqi <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreepyCamelSpider' title='/pmwiki/pmwiki.php/Main/CreepyCamelSpider' data-format='W1tDcmVlcHlDYW1lbFNwaWRlciBDYW1lbCBTcGlkZXJdXQ=='>Camel Spider</a>. Supposedly, these creatures grow up to one foot in length, can run up to twenty-five miles an hour, make a screaming noise when they run, can jump two feet in the air, have a venom powerful enough to melt flesh, and attack and kill camels to lay their eggs in their stomachs. This has come with many claims about them attacking humans. In reality, Camel Spiders are not spiders at all but are part of a separate group of arachnids called Solifugae. They never grow beyond six inches in length, have a top speed of ten miles an hour, can't jump, and don't even produce venom. The idea that they attack camels and humans comes from their name; "Solifugae" means "flee from the sun", which is exactly what they're doing. Dead camels and humans provide shadows for them to use to get out of bright desert sunlight. And aside from all that, they're not even exclusive to the Middle East, also being native to the American Southwest. </li></ul></div> <hr data-format='&#8212;&#8212;' /> <div class='indent'><em>SHE JUST WANTS TO GIVE YOU A HUG!</em> </div><hr data-format='&#8212;&#8212;' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div>&nbsp;</div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="of0whd" data-video-descrip="The boss of Harried Honey Hive is a large black spider invading the area." data-video-title="The Arachnid" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/of0whd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/of0whd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/of0whd.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/of0whd.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="VideoGame/SuperMario64LastImpact" 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/of0whd.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/of0whd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/of0whd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/of0whd.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">The Arachnid</h2> <p class="_pmvv-vidbox-descTxt"> The boss of Harried Honey Hive is a large black spider invading the area. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="0b6ewc" data-video-descrip="Upon arriving at Spider Canyon, West and Gordon are introduced to Loveless's ultimate creation." data-video-title="Loveless's 80 ft. Tarantula" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0b6ewc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0b6ewc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0b6ewc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0b6ewc.jpg" data-video-trope="Main/SpiderTank" data-video-tropename="Spider Tank" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/WildWildWest,Main/AttackOfThe50FootWhatever,Main/GiantSpider,Main/HumongousMecha,Main/InstantlyProvenWrong,Main/MechanicalInsects,Main/Steampunk,Main/TemptingFate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0b6ewc.jpg"> <p><span class="bold">Loveless's 80 f...</span></p> </a> <a href="#video-link" data-video-id="9t6gu1" data-video-descrip="&amp;quot;A Rakna-Kadaki is usually seen covered in sticky webbing. Clinging to its abdomen are its offspring, known as Rachnoid, which it controls using the flammable gas that builds up there. Rachnoid spit fire, capture prey, and support the Rakna-Kadaki's massive body. As their numbers dwindle, the beast will hatch more, at which point it is extremely dangerous.&amp;quot;" data-video-title="Rakna-Kadaki" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9t6gu1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9t6gu1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9t6gu1.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/rakna_kadaki_thumbnail.png" data-video-trope="Main/TsuchigumoAndJorogumo" data-video-tropename="Tsuchigumo and Jorogumo" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/MonsterHunterRise,Main/GiantSpider" 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/rakna_kadaki_thumbnail.png"> <p><span class="bold">Rakna-Kadaki</span></p> </a> <a href="#video-link" data-video-id="sf41wr" data-video-descrip="The boss of the Faron Temple is none other than Gohma, a giant spider that is spreading rifts throughout the Faron region. Of course, it can be taken down the same way as the rest of its kin throughout the series: hit it in the eye. Repeatedly." data-video-title="Gohma" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/sf41wr_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/sf41wr.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/sf41wr.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5808_9.jpeg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/BigCreepyCrawlies,Main/GoForTheEye,VideoGame/TheLegendOfZeldaEchoesOfWisdom" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5808_9.jpeg"> <p><span class="bold">Gohma</span></p> </a> <a href="#video-link" data-video-id="mfhixy" data-video-descrip="That's a lot of EYES, Patrick..." data-video-title="Evil Forest Monster " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mfhixy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mfhixy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mfhixy.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfhixy.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Animation/TheAdventuresOfPandaWarrior,Main/AllWebbedUp,Main/Fartillery" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfhixy.jpg"> <p><span class="bold">Evil Forest Mon...</span></p> </a> <a href="#video-link" data-video-id="m5veif" data-video-descrip="&amp;quot;Need a hand? Why, you just wait. We'll help you out; we have eight.&amp;quot;" data-video-title="Jungle Spiders" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/m5veif_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/m5veif.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/m5veif.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m5veif.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/Jumanji,Main/SpidersAreScary" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m5veif.jpg"> <p><span class="bold">Jungle Spiders</span></p> </a> <a href="#video-link" data-video-id="d6c4u4" data-video-descrip="Two giant spider sisters want to eat matching bugs." data-video-title="The Spider Sisters" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d6c4u4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d6c4u4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d6c4u4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d6c4u4.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/TheClueFinders3rdGradeAdventuresTheMysteryOfMathra,Main/AlphabetSoupCans" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d6c4u4.jpg"> <p><span class="bold">The Spider Sisters</span></p> </a> <a href="#video-link" data-video-id="mewcq1" data-video-descrip="Charles, whenever he shows up while the player is in the locomotive. Charles will pursue the player along the tracks while tearing at the engine, while the player shoots back at him with one of their train-mounted turret weapons. If Charles doesn&amp;acirc;€™t cause enough damage to the train to drag the player out and eat them, the monster will retreat into the forest to recover after enough of his health is shaved off." data-video-title="Choo-Choo Charles" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mewcq1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mewcq1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mewcq1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mewcq1.jpg" data-video-trope="Main/AdvancingBossOfDoom" data-video-tropename="Advancing Boss of Doom" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CowardlyBoss,Main/FluffyTheTerrible,Main/GiantSpider,Main/MechanicalAbomination,Main/RedAndBlackAndEvilAllOver,Main/RedIsViolent,VideoGame/ChooChooCharles" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mewcq1.jpg"> <p><span class="bold">Choo-Choo Charles</span></p> </a> <a href="#video-link" data-video-id="yuwdvj" data-video-descrip="Mace and the Ewoks are attacked by a Rearing spider in the Gorax's lair." data-video-title="Rearing Spider" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/yuwdvj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/yuwdvj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/yuwdvj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/yuwdvj.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/StarWarsEwokAdventures" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/yuwdvj.jpg"> <p><span class="bold">Rearing Spider</span></p> </a> <a href="#video-link" data-video-id="qvpd4e" data-video-descrip="The Scuttlebugs are giant spider-like beings with plunger feet that assault Mario when he gets close to their web. With the power of a well-placed star, Mario defeats them and saves the Toads from the web." data-video-title="Temple of Shrooms Scuttlebugs" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qvpd4e_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qvpd4e.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qvpd4e.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvpd4e.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/PaperMarioTheOrigamiKing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvpd4e.jpg"> <p><span class="bold">Temple of Shroo...</span></p> </a> <a href="#video-link" data-video-id="qt59l6" data-video-descrip="Mr. Bump is gonna need more than a broom to chase that away." data-video-title="Miss Helpful's Basement" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qt59l6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qt59l6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qt59l6.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qt59l6.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/TheMrMenShow" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qt59l6.jpg"> <p><span class="bold">Miss Helpful's ...</span></p> </a> <a href="#video-link" data-video-id="t3zqj7" data-video-descrip="Harry and Ron encounter the giant spider Aragog in the Forbidden Forest." data-video-title="Aragog" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/t3zqj7_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/t3zqj7.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/t3zqj7.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/aragog.png" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/HarryPotterAndTheChamberOfSecrets2002" 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/aragog.png"> <p><span class="bold">Aragog</span></p> </a> <a href="#video-link" data-video-id="mflnwh" data-video-descrip="A monstrous two-headed spider which serves as the Keeper of the Writhing Ruin. Apparently Duke Tseldora's pet and more than likely the progenitor of the swarms of parasite spiders which overran and destroyed Brightstone Cove. But what could the Duke have wanted with such an abomination, and what madness could have possessed him to allow the destruction of his own domain?" data-video-title="The Duke's Dear Freja" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mflnwh_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mflnwh.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mflnwh.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mflnwh.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/DarkSoulsII" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mflnwh.jpg"> <p><span class="bold">The Duke's Dear...</span></p> </a> <a href="#video-link" data-video-id="nayoqt" data-video-descrip="A mysterious Demon spider that casts fire magic and is strong against it, but is weak towards other kinds of magic. It is the possible source of Spiderstone found within the Tunnel." data-video-title="Armour Spider" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nayoqt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nayoqt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nayoqt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nayoqt.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/DemonsSouls" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nayoqt.jpg"> <p><span class="bold">Armour Spider</span></p> </a> <a href="#video-link" data-video-id="2pwa9l" data-video-descrip="Fought in &amp;quot;The Crypt Creeper,&amp;quot; It will shoot cobwebs at Jack and even charge. Its weak spot is the pumpkin shape on its abdomen. If successfully attacked there it will go underground and launch Baby Spiders at Jack. It will get smaller for every Baby Spider defeated. " data-video-title="Crypt Creeper Spider" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2pwa9l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2pwa9l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2pwa9l.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2pwa9l.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/TheNightmareBeforeChristmasOogiesRevenge" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2pwa9l.jpg"> <p><span class="bold">Crypt Creeper S...</span></p> </a> <a href="#video-link" data-video-id="m6dnkm" data-video-descrip="Queen Bella is a giant spider Nightmaren, dressed like a British queen. Fought above a lava-filled hole on grate platforms. Seemingly likes to spin silk balls for no reason." data-video-title="Queen Bella" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/m6dnkm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/m6dnkm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/m6dnkm.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m6dnkm.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/NiGHTSJourneyOfDreams" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m6dnkm.jpg"> <p><span class="bold">Queen Bella</span></p> </a> <a href="#video-link" data-video-id="zwzbzr" data-video-descrip="Phantasmaraneae, Twister of Flame is a giant spider demon that dwells in the deepest pits of Inferno." data-video-title="Phantasmaraneae" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zwzbzr_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zwzbzr.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zwzbzr.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zwzbzr.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/Bayonetta2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zwzbzr.jpg"> <p><span class="bold">Phantasmaraneae</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>Giant Spiders</span>, <span>Giant Arachnid</span>, <span>Giant Enemy Spider</span> </h3> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BigCreepyCrawlies">Big Creepy-Crawlies</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TropesOfTheJungle">Tropes of the Jungle</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ScaryScorpions">Scary Scorpions</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/EvilTaintedThePlace">Evil Tainted the Place</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/TolkiensLegendarium">QuoteSource/Tolkien's Legendarium</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/NakedOnRevival">Naked on Revival</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantFood">Giant Food</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/GiantSquid">Giant Squid</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantSpaceFleaFromNowhere">Giant Space Flea from Nowhere</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IndexOfFictionalCreatures">Index of Fictional Creatures</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Golem">Golem</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantFlyer">Giant Flyer</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BiggerIsBetter">Bigger Is Better</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GiantSquid">Giant Squid</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantEnemyCrab">Giant Enemy Crab</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ScaryAnimalsIndex">Scary Animals Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GiantSquid">Giant Squid</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/FuzzballSpider">Fuzzball Spider</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ArachnidTropes">Arachnid Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurManticoresAreSpinier">Our Manticores Are Spinier</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantFlyer">Giant Flyer</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DireBeast">Dire Beast</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GiantSquid">Giant Squid</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantScrapRobot">Giant Scrap Robot</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes">Speculative Fiction Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GiantWoman">Giant Woman</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantPoofySleeves">Giant Poofy Sleeves</a> </li> <li> <a href="/pmwiki/pmwiki.php/TruthInTelevision/GToI">TruthInTelevision/G to I</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GiftGivingGaffe">Gift-Giving Gaffe</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantEnemyCrab">Giant Enemy Crab</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BigCreepyCrawlies">Big Creepy-Crawlies</a> </li> <li> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GiantEyeOfDoom">Giant Eye of Doom</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/HorrorTropes">Horror Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GiantSquid">Giant Squid</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Film/EightLeggedFreaks">Eight Legged Freaks</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/LiveActionFilmsAToL">ImageSource/Live-Action Films (A to L)</a> </li> <li> <a href="/pmwiki/pmwiki.php/Film/Election">Election</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-of0whd" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/of0whd.jpg" data-video-title="The Arachnid" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/of0whd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/of0whd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/of0whd.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">The Arachnid</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> The boss of Harried Honey Hive is a large black spider invading the area. </p> <div class="rating-row" data-video-id="of0whd" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">&starf;</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">&starf;</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">&starf;</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">&starf;</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">&starf;</label> </div> <div id="star-rating-total"> 4.75 (4 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / GiantSpider</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="of0whd" data-vimeo-id="" data-video-descrip="The boss of Harried Honey Hive is a large black spider invading the area." data-video-title="The Arachnid" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/of0whd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/of0whd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/of0whd.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/of0whd.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="VideoGame/SuperMario64LastImpact" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/of0whd.jpg"> <p><span class="bold">The Arachnid</span></p> </a> <a href="#video-link" data-video-id="0b6ewc" data-vimeo-id="" data-video-descrip="Upon arriving at Spider Canyon, West and Gordon are introduced to Loveless's ultimate creation." data-video-title="Loveless's 80 ft. Tarantula" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0b6ewc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0b6ewc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0b6ewc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0b6ewc.jpg" data-video-trope="Main/SpiderTank" data-video-tropename="Spider Tank" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.88" data-video-rating-count="16" data-video-media-sources="Film/WildWildWest,Main/AttackOfThe50FootWhatever,Main/GiantSpider,Main/HumongousMecha,Main/InstantlyProvenWrong,Main/MechanicalInsects,Main/Steampunk,Main/TemptingFate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0b6ewc.jpg"> <p><span class="bold">Loveless's 80 f...</span></p> </a> <a href="#video-link" data-video-id="9t6gu1" data-vimeo-id="" data-video-descrip="&amp;quot;A Rakna-Kadaki is usually seen covered in sticky webbing. Clinging to its abdomen are its offspring, known as Rachnoid, which it controls using the flammable gas that builds up there. Rachnoid spit fire, capture prey, and support the Rakna-Kadaki's massive body. As their numbers dwindle, the beast will hatch more, at which point it is extremely dangerous.&amp;quot;" data-video-title="Rakna-Kadaki" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9t6gu1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9t6gu1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9t6gu1.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/rakna_kadaki_thumbnail.png" data-video-trope="Main/TsuchigumoAndJorogumo" data-video-tropename="Tsuchigumo and Jorogumo" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="VideoGame/MonsterHunterRise,Main/GiantSpider" 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/rakna_kadaki_thumbnail.png"> <p><span class="bold">Rakna-Kadaki</span></p> </a> <a href="#video-link" data-video-id="sf41wr" data-vimeo-id="" data-video-descrip="The boss of the Faron Temple is none other than Gohma, a giant spider that is spreading rifts throughout the Faron region. Of course, it can be taken down the same way as the rest of its kin throughout the series: hit it in the eye. Repeatedly." data-video-title="Gohma" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/sf41wr_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/sf41wr.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/sf41wr.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5808_9.jpeg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/BigCreepyCrawlies,Main/GoForTheEye,VideoGame/TheLegendOfZeldaEchoesOfWisdom" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_5808_9.jpeg"> <p><span class="bold">Gohma</span></p> </a> <a href="#video-link" data-video-id="mfhixy" data-vimeo-id="" data-video-descrip="That's a lot of EYES, Patrick..." data-video-title="Evil Forest Monster " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mfhixy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mfhixy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mfhixy.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfhixy.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.50" data-video-rating-count="2" data-video-media-sources="Animation/TheAdventuresOfPandaWarrior,Main/AllWebbedUp,Main/Fartillery" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mfhixy.jpg"> <p><span class="bold">Evil Forest Mon...</span></p> </a> <a href="#video-link" data-video-id="m5veif" data-vimeo-id="" data-video-descrip="&amp;quot;Need a hand? Why, you just wait. We'll help you out; we have eight.&amp;quot;" data-video-title="Jungle Spiders" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/m5veif_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/m5veif.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/m5veif.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m5veif.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Film/Jumanji,Main/SpidersAreScary" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m5veif.jpg"> <p><span class="bold">Jungle Spiders</span></p> </a> <a href="#video-link" data-video-id="d6c4u4" data-vimeo-id="" data-video-descrip="Two giant spider sisters want to eat matching bugs." data-video-title="The Spider Sisters" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d6c4u4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d6c4u4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d6c4u4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d6c4u4.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="VideoGame/TheClueFinders3rdGradeAdventuresTheMysteryOfMathra,Main/AlphabetSoupCans" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d6c4u4.jpg"> <p><span class="bold">The Spider Sisters</span></p> </a> <a href="#video-link" data-video-id="mewcq1" data-vimeo-id="" data-video-descrip="Charles, whenever he shows up while the player is in the locomotive. Charles will pursue the player along the tracks while tearing at the engine, while the player shoots back at him with one of their train-mounted turret weapons. If Charles doesn&amp;acirc;€™t cause enough damage to the train to drag the player out and eat them, the monster will retreat into the forest to recover after enough of his health is shaved off." data-video-title="Choo-Choo Charles" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mewcq1_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mewcq1.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mewcq1.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mewcq1.jpg" data-video-trope="Main/AdvancingBossOfDoom" data-video-tropename="Advancing Boss of Doom" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="14" data-video-media-sources="Main/CowardlyBoss,Main/FluffyTheTerrible,Main/GiantSpider,Main/MechanicalAbomination,Main/RedAndBlackAndEvilAllOver,Main/RedIsViolent,VideoGame/ChooChooCharles" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mewcq1.jpg"> <p><span class="bold">Choo-Choo Charles</span></p> </a> <a href="#video-link" data-video-id="yuwdvj" data-vimeo-id="" data-video-descrip="Mace and the Ewoks are attacked by a Rearing spider in the Gorax's lair." data-video-title="Rearing Spider" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/yuwdvj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/yuwdvj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/yuwdvj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/yuwdvj.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/StarWarsEwokAdventures" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/yuwdvj.jpg"> <p><span class="bold">Rearing Spider</span></p> </a> <a href="#video-link" data-video-id="qvpd4e" data-vimeo-id="" data-video-descrip="The Scuttlebugs are giant spider-like beings with plunger feet that assault Mario when he gets close to their web. With the power of a well-placed star, Mario defeats them and saves the Toads from the web." data-video-title="Temple of Shrooms Scuttlebugs" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qvpd4e_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qvpd4e.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qvpd4e.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvpd4e.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="VideoGame/PaperMarioTheOrigamiKing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvpd4e.jpg"> <p><span class="bold">Temple of Shroo...</span></p> </a> <a href="#video-link" data-video-id="qt59l6" data-vimeo-id="" data-video-descrip="Mr. Bump is gonna need more than a broom to chase that away." data-video-title="Miss Helpful's Basement" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qt59l6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qt59l6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qt59l6.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qt59l6.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="WesternAnimation/TheMrMenShow" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qt59l6.jpg"> <p><span class="bold">Miss Helpful's ...</span></p> </a> <a href="#video-link" data-video-id="t3zqj7" data-vimeo-id="" data-video-descrip="Harry and Ron encounter the giant spider Aragog in the Forbidden Forest." data-video-title="Aragog" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/t3zqj7_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/t3zqj7.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/t3zqj7.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/aragog.png" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.79" data-video-rating-count="19" data-video-media-sources="Film/HarryPotterAndTheChamberOfSecrets2002" 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/aragog.png"> <p><span class="bold">Aragog</span></p> </a> <a href="#video-link" data-video-id="mflnwh" data-vimeo-id="" data-video-descrip="A monstrous two-headed spider which serves as the Keeper of the Writhing Ruin. Apparently Duke Tseldora's pet and more than likely the progenitor of the swarms of parasite spiders which overran and destroyed Brightstone Cove. But what could the Duke have wanted with such an abomination, and what madness could have possessed him to allow the destruction of his own domain?" data-video-title="The Duke's Dear Freja" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mflnwh_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mflnwh.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mflnwh.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mflnwh.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="VideoGame/DarkSoulsII" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mflnwh.jpg"> <p><span class="bold">The Duke's Dear...</span></p> </a> <a href="#video-link" data-video-id="nayoqt" data-vimeo-id="" data-video-descrip="A mysterious Demon spider that casts fire magic and is strong against it, but is weak towards other kinds of magic. It is the possible source of Spiderstone found within the Tunnel." data-video-title="Armour Spider" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nayoqt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nayoqt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nayoqt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nayoqt.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="VideoGame/DemonsSouls" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nayoqt.jpg"> <p><span class="bold">Armour Spider</span></p> </a> <a href="#video-link" data-video-id="2pwa9l" data-vimeo-id="467005622" data-video-descrip="Fought in &amp;quot;The Crypt Creeper,&amp;quot; It will shoot cobwebs at Jack and even charge. Its weak spot is the pumpkin shape on its abdomen. If successfully attacked there it will go underground and launch Baby Spiders at Jack. It will get smaller for every Baby Spider defeated. " data-video-title="Crypt Creeper Spider" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2pwa9l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2pwa9l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2pwa9l.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2pwa9l.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="VideoGame/TheNightmareBeforeChristmasOogiesRevenge" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2pwa9l.jpg"> <p><span class="bold">Crypt Creeper S...</span></p> </a> <a href="#video-link" data-video-id="m6dnkm" data-vimeo-id="390970040" data-video-descrip="Queen Bella is a giant spider Nightmaren, dressed like a British queen. Fought above a lava-filled hole on grate platforms. Seemingly likes to spin silk balls for no reason." data-video-title="Queen Bella" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/m6dnkm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/m6dnkm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/m6dnkm.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m6dnkm.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="VideoGame/NiGHTSJourneyOfDreams" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/m6dnkm.jpg"> <p><span class="bold">Queen Bella</span></p> </a> <a href="#video-link" data-video-id="zwzbzr" data-vimeo-id="345147466" data-video-descrip="Phantasmaraneae, Twister of Flame is a giant spider demon that dwells in the deepest pits of Inferno." data-video-title="Phantasmaraneae" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zwzbzr_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zwzbzr.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zwzbzr.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zwzbzr.jpg" data-video-trope="Main/GiantSpider" data-video-tropename="Giant Spider" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="VideoGame/Bayonetta2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zwzbzr.jpg"> <p><span class="bold">Phantasmaraneae</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&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

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