CINXE.COM

Burn the Witch! - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "a1fdc3097a55e179219cd1bf535ab41b48dc60da", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; // Check to see if this page is isolated, if so, run BCLighthouseTag.disableGoogleAdManager(); if(window.site_htl_settings.adx == "no"){ console.log("disabling google"); BCLighthouseTag.cmd.push(() => { BCLighthouseTag.disableGoogleAdManager(); }); } </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Burn the Witch! - TV Tropes</title> <meta name="description" content="The Burn the Witch! trope as used in popular culture. When a community with a superstitious mindset suspects someone in their midst of magical or otherwise &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/BurnTheWitch" /> <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="Burn the Witch! - TV Tropes" /> <meta name="twitter:description" content="The Burn the Witch! trope as used in popular culture. When a community with a superstitious mindset suspects someone in their midst of magical or otherwise &hellip;" /> <meta name="twitter:image:src" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/witch_burning_at_stake.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="Burn the Witch! - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/BurnTheWitch" /> <meta property="og:image" content="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/witch_burning_at_stake.jpg" /> <meta property="og:description" content="When a community with a superstitious mindset suspects someone in their midst of magical or otherwise unusual powers, especially if unexplained stuff such as kids disappearing has been happening, their response will usually be to root the person &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/HimeCut" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/ComicBook/SpacePunisher" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, oauth_finalize, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (oauth_finalize ? '&oauth_finalize=' + encodeURIComponent(oauth_finalize) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]:not(#signup-form-toggles a)'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTargetId = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); const isExclusive = targetWithToggleTarget.getAttribute('data-click-toggle-exclusive') === 'true'; if (isExclusive) { // Exclusive mode: toggle target and clear siblings const toggleTarget = document.getElementById(toggleTargetId); if (toggleTarget) { // Remove the toggle class from all siblings const siblings = Array.from(toggleTarget.parentNode.children); for (let sibling of siblings) { if (sibling !== toggleTarget) { sibling.classList.remove(toggleClass); } } // Add the toggle class to the target element toggleTarget.classList.add(toggleClass); } } else { // Non-exclusive mode: toggle targets normally if (toggleTargetId.indexOf(',') > -1) { const targets = toggleTargetId.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTargetId).forEach(el => { el.classList.toggle(toggleClass); }); } } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/BurnTheWitch?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/BurnTheWitch"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.BurnTheWitch" 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.BurnTheWitch" 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/BurnTheWitch?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="BurnTheWitch"/> <input type="hidden" id="article_id" value="10474" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/BurnTheWitch</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"> Burn the Witch! </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": "Burn the Witch!", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/BurnTheWitch" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Burn the Witch!", "headline": "Burn the Witch!", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/BurnTheWitch", "image": "https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/witch_burning_at_stake.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-02-13T00:00:00-08:00", "dateModified": "2025-01-25T09:50:54-08:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/BurnTheWitch" 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/BurnTheWitch" 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/Manga/BurnTheWitch" class="subpage-link " title="The Manga page"> <span class="wrapper"><span class="spi manga"></span>Manga</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/BurnTheWitch" 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/ImageLinks/BurnTheWitch" class="subpage-link " title="The ImageLinks page"> <span class="wrapper">ImageLinks</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/PlayingWith/BurnTheWitch" class="subpage-link " title="The PlayingWith page"> <span class="wrapper">PlayingWith</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/BurnTheWitch" 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/BurnTheWitch?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/BurnTheWitch?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/BurnTheWitch?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/BurnTheWitch?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/BurnTheWitch?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/BurnTheWitch?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/BurnTheWitch?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/BurnTheWitch?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/BurnTheWitch?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/BurnTheWitch?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/BurnTheWitch?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/BurnTheWitch?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageSource/BurnTheWitch?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/BurnTheWitch?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/BurnTheWitch?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/BurnTheWitch?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/BurnTheWitch?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/BurnTheWitch?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/BurnTheWitch?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/BurnTheWitch?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/BurnTheWitch?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/BurnTheWitch?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/BurnTheWitch?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/BurnTheWitch?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/BurnTheWitch?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--&#010;--> <!--&#010;--> <!-- This list of examples has been alphabetized. Take care to put your example in its proper place in accordance with Administrivia/HowToAlphabetizeThings!--> <!--&#010;--> <!--&#010;--> <!-- Image kept on page with upgrade per Image Pickin thread: https://tvtropes.org/pmwiki/posts.php?discussion=17358836100.91062400&amp;--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=1331174600085037400--> <!-- Please do not change or remove without starting a new thread.--> <!--&#010;--> <div class="quoteright" style="width:350px;" ><div class="lazy_load_img_box" style="padding-top:100%"><img src='https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/witch_burning_at_stake.jpg' class='embeddedimage' border='0' alt='Burn the Witch! (trope)' width=1200 height=1200></div></div> <div class="acaptionright" style="width:350px;" ><em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/AliciaKeys' title='/pmwiki/pmwiki.php/Music/AliciaKeys' data-format='W1tNdXNpYy9BbGljaWFLZXlzIOKZqyBTaGUmIzAzOTtzIGp1c3QgYSBnaXJsIGFuZCBzaGUmIzAzOTtzIG9uIGZpcmUuLi4g4pmrXV0='>♫ She's just a girl and she's on fire... ♫</a></em></div> </p><p><div class='indent'><em><strong><span class="asscaps" >"Thou shalt not suffer a witch to live."</span></strong></em> <div class='indent'>&#8212; <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BookOfExodus' title='/pmwiki/pmwiki.php/Literature/BookOfExodus' data-format='W1tMaXRlcmF0dXJlL0Jvb2tPZkV4b2R1cyBFeG9kdXMgMjI6MThdXQ=='>Exodus 22:18</a></strong>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBible' title='/pmwiki/pmwiki.php/Literature/TheBible' data-format='TGl0ZXJhdHVyZS9UaGVCaWJsZQ=='>The Bible</a></em> (KJV) </div></div></p><p>When a community with a superstitious mindset suspects someone in their midst of magical or otherwise unusual powers, especially if unexplained stuff such as kids disappearing has been happening, their response will usually be to root the person out to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheScapegoat' title='/pmwiki/pmwiki.php/Main/TheScapegoat' data-format='W1tUaGVTY2FwZWdvYXQgdGFrZSB0aGUgYmxhbWVdXQ=='>take the blame</a> and some burning at the stake. </p><p>It's usually a woman or girl in these situations: Sprenger and Kramer, the authors of the infamous <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MalleusMaleficarum' title='/pmwiki/pmwiki.php/Literature/MalleusMaleficarum' data-format='TGl0ZXJhdHVyZS9NYWxsZXVzTWFsZWZpY2FydW0='>Malleus Maleficarum</a></em>, explicitly stated that "...this heresy is not of villains, but of villainesses, and thus it is noted so." </p><p>This trope is often the climax of a classical <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WitchHunt' title='/pmwiki/pmwiki.php/Main/WitchHunt' data-format='V2l0Y2hIdW50'>Witch Hunt</a> in media, with plenty of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TorchesAndPitchforks' title='/pmwiki/pmwiki.php/Main/TorchesAndPitchforks' data-format='VG9yY2hlc0FuZFBpdGNoZm9ya3M='>Torches and Pitchforks</a> to go around. These are not historically accurate, for the most part, being depicted in places and times when there were no witch-hunts, or misrepresenting ones that did occur. In particular, one of the most famous episodes of witch-hunting, the <a class='urllink' href='http://en.wikipedia.org/wiki/Salem_witch_trials'>Salem Witch Trials<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, featured <em>no</em> burnings at all. The convicted were hanged — and indeed, those who "confessed" were held to answer more questions and freed when the hunt was stopped. In reality, in England and in English colonies like Massachusetts, burning at the stake was reserved for woman commoner traitors<span class="notelabel" onclick="togglenote('note0i9gn');"><sup>note&nbsp;</sup></span><span id="note0i9gn" class="inlinefolder" isnote="true" onclick="togglenote('note0i9gn');" style="cursor:pointer;font-size:smaller;display:none;">Noble traitors of both sexes were <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffWithHisHead' title='/pmwiki/pmwiki.php/Main/OffWithHisHead' data-format='W1tPZmZXaXRoSGlzSGVhZCBiZWhlYWRlZF1d'>beheaded</a>; commoner male traitors were <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RasputinianDeath' title='/pmwiki/pmwiki.php/Main/RasputinianDeath' data-format='W1tSYXNwdXRpbmlhbkRlYXRoIGhhbmdlZF1d'>hanged</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CruelAndUnusualDeath' title='/pmwiki/pmwiki.php/Main/CruelAndUnusualDeath' data-format='W1tDcnVlbEFuZFVudXN1YWxEZWF0aCBkcmF3bl1d'>drawn</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThereIsNoKillLikeOverkill' title='/pmwiki/pmwiki.php/Main/ThereIsNoKillLikeOverkill' data-format='W1tUaGVyZUlzTm9LaWxsTGlrZU92ZXJraWxsIGFuZCBxdWFydGVyZWRdXQ=='>and quartered</a></span>, women who killed their husbands (even in self-defense; this was seen as <a class='urllink' href='http://en.wikipedia.org/wiki/Petty_treason'>a form of treason<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, hence the use of the same punishment) and for heretics. That said, there was some overlap, as heretics were often accused of witchcraft - and other way around - witchcraft was often<span class="notelabel" onclick="togglenote('note1m6h9');"><sup>note&nbsp;</sup></span><span id="note1m6h9" class="inlinefolder" isnote="true" onclick="togglenote('note1m6h9');" style="cursor:pointer;font-size:smaller;display:none;">That is, by the 15/16th Century, almost everywhere outside England and its colonies, where witchcraft and heresy remained separate offences.</span> considered a form of heresy. </p><p>The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrialByOrdeal' title='/pmwiki/pmwiki.php/Main/TrialByOrdeal' data-format='W1tUcmlhbEJ5T3JkZWFsICJzd2ltbWluZyIgb2Ygd2l0Y2hlc11d'>"swimming" of witches</a>, one of the most famous methods of interrogating a suspected witch, had the virtue of being both pointless and redundant. Popular belief makes it out as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MortonsFork' title='/pmwiki/pmwiki.php/Main/MortonsFork' data-format='TW9ydG9uc0Zvcms='>Morton's Fork</a>, saying that if the woman floated, that proved she was a witch, and they'd pull her out and kill her. If the woman sank, that proved she wasn't a witch... but she'd drown and still be dead. In actuality, the woman would be tied to a rope: if she did float, they would pull her out, and the fact would be regarded as incriminating (of course sometimes they wouldn't do this quickly enough, and she'd still drown. "Floating" could also be achieved by trickery with the ropes). If she sank, they would pull her out and clear her of charges. The ducking stool is an unrelated, non-lethal device of punishment where a woman was dunked in cold water for being a public nuisance of some sort. </p><p>Also see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeretic' title='/pmwiki/pmwiki.php/Main/TheHeretic' data-format='VGhlSGVyZXRpYw=='>The Heretic</a>, who is also a victim of this form of justice, but with a difference: the Witch is sentenced to incineration for deadly supernatural activity, while The Heretic is similarly sentenced to incineration for religious <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThoughtCrime' title='/pmwiki/pmwiki.php/Main/ThoughtCrime' data-format='VGhvdWdodENyaW1l'>Thought Crime</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWitchHunter' title='/pmwiki/pmwiki.php/Main/TheWitchHunter' data-format='VGhlV2l0Y2hIdW50ZXI='>The Witch Hunter</a> is a related trope, although a Witch Hunter is someone who hunts witches professionally, while this trope tends to refer to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TorchesAndPitchforks' title='/pmwiki/pmwiki.php/Main/TorchesAndPitchforks' data-format='W1tUb3JjaGVzQW5kUGl0Y2hmb3JrcyBhbiBhbmdyeSBtb2JdXQ=='>an angry mob</a>. See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KillItWithFire' title='/pmwiki/pmwiki.php/Main/KillItWithFire' data-format='S2lsbEl0V2l0aEZpcmU='>Kill It with Fire</a> and related tropes for the logic (such as it is) for this. Often associated with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FanaticalFire' title='/pmwiki/pmwiki.php/Main/FanaticalFire' data-format='RmFuYXRpY2FsRmlyZQ=='>Fanatical Fire</a>. For witches who are not literally hot but metaphorically so see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HotWitch' title='/pmwiki/pmwiki.php/Main/HotWitch' data-format='SG90V2l0Y2g='>Hot Witch</a>. </p><p>For the band, see <a class='twikilink' href='/pmwiki/pmwiki.php/Music/BurningWitches' title='/pmwiki/pmwiki.php/Music/BurningWitches' data-format='TXVzaWMvQnVybmluZ1dpdGNoZXM='>Burning Witches</a>. For the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TiteKubo' title='/pmwiki/pmwiki.php/Creator/TiteKubo' data-format='Q3JlYXRvci9UaXRlS3Vibw=='>Tite Kubo</a> manga, you'll want to head <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/BurnTheWitch' title='/pmwiki/pmwiki.php/Manga/BurnTheWitch' data-format='W1tNYW5nYS9CdXJuVGhlV2l0Y2ggaGVyZV1d'>here</a>. </p><p><h2>As this is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathTropes' title='/pmwiki/pmwiki.php/Main/DeathTropes' data-format='e3tEZWF0aCBUcm9wZXxzfX0='>Death Trope</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Administrivia/SpoilersOff' title='/pmwiki/pmwiki.php/Administrivia/SpoilersOff' data-format='W1tBZG1pbmlzdHJpdmlhL1Nwb2lsZXJzT2ZmIHVubWFya2VkIHNwb2lsZXJzIGFib3VuZF1d'>unmarked spoilers abound</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Administrivia/YouHaveBeenWarned' title='/pmwiki/pmwiki.php/Administrivia/YouHaveBeenWarned' data-format='W1tBZG1pbmlzdHJpdmlhL1lvdUhhdmVCZWVuV2FybmVkIEJld2FyZV1d'>Beware</a>.</h2> <hr data-format='&#8212;&#8212;' /> <h2>Examples:</h2> <!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/AnimeAndManga' title='/pmwiki/pmwiki.php/BurnTheWitch/AnimeAndManga' data-format='QnVyblRoZVdpdGNoL0FuaW1lQW5kTWFuZ2E='>Anime & Manga</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/ComicBooks' title='/pmwiki/pmwiki.php/BurnTheWitch/ComicBooks' data-format='QnVyblRoZVdpdGNoL0NvbWljQm9va3M='>Comic Books</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/FanWorks' title='/pmwiki/pmwiki.php/BurnTheWitch/FanWorks' data-format='QnVyblRoZVdpdGNoL0Zhbldvcmtz'>Fan Works</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/LiveActionFilms' title='/pmwiki/pmwiki.php/BurnTheWitch/LiveActionFilms' data-format='W1tCdXJuVGhlV2l0Y2gvTGl2ZUFjdGlvbkZpbG1zIEZpbG1zIOKAlCBMaXZlLUFjdGlvbl1d'>Films — Live-Action</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/Literature' title='/pmwiki/pmwiki.php/BurnTheWitch/Literature' data-format='QnVyblRoZVdpdGNoL3t7TGl0ZXJhdHVyZX19'>Literature</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/LiveActionTV' title='/pmwiki/pmwiki.php/BurnTheWitch/LiveActionTV' data-format='QnVyblRoZVdpdGNoL0xpdmVBY3Rpb25UVg=='>Live-Action TV</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/TabletopGames' title='/pmwiki/pmwiki.php/BurnTheWitch/TabletopGames' data-format='QnVyblRoZVdpdGNoL1RhYmxldG9wR2FtZXM='>Tabletop Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/VideoGames' title='/pmwiki/pmwiki.php/BurnTheWitch/VideoGames' data-format='QnVyblRoZVdpdGNoL1ZpZGVvR2FtZXM='>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/BurnTheWitch/WesternAnimation' title='/pmwiki/pmwiki.php/BurnTheWitch/WesternAnimation' data-format='QnVyblRoZVdpdGNoL1dlc3Rlcm5BbmltYXRpb24='>Western Animation</a> </li></ul><!&#8212;/index&#8212;> </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;Advertising&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> In one <a class='twikilink' href='/pmwiki/pmwiki.php/Advertising/Progressive' title='/pmwiki/pmwiki.php/Advertising/Progressive' data-format='QWR2ZXJ0aXNpbmcve3tQcm9ncmVzc2l2ZX19'>Progressive</a> ad, one of Flo's ancestors is about to be burned at the stake when she's accused of witchcraft trying to sell the Name Your Price tool. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Fairy Tales&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WickedStepmother' title='/pmwiki/pmwiki.php/Main/WickedStepmother' data-format='V2lja2VkU3RlcG1vdGhlcg=='>Wicked Stepmother</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WickedWitch' title='/pmwiki/pmwiki.php/Main/WickedWitch' data-format='V2lja2VkV2l0Y2g='>Wicked Witch</a> from "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BrotherAndSister' title='/pmwiki/pmwiki.php/Literature/BrotherAndSister' data-format='TGl0ZXJhdHVyZS9Ccm90aGVyQW5kU2lzdGVy'>Brother and Sister</a>" gets subjected to this at the end, after her <span class="spoiler" title="you can set spoilers visible by default on your profile" >murder of the titular Sister <em>and</em> her replacement of her with her own daughter</span> are revealed. </li><li> In "<a class='urllink' href='http://www.surlalunefairytales.com/authors/grimms/3ourladyschild.html'>Our Lady's Child<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> / "Mary's Child", the titular Child is a Queen who once lived in Heaven but was kicked out of it for disobeying an order from the Virgin Mary <em>and</em>, whenever the Virgin tried to confront her, refusing to admit her responsibility. The worst punishment is having her three babies taken away by the Virgin for <em>yet again</em> not wanting to admit her sin; she's mistaken for a witch/ogress who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffingTheOffspring' title='/pmwiki/pmwiki.php/Main/OffingTheOffspring' data-format='W1tPZmZpbmdUaGVPZmZzcHJpbmcga2lsbGVkIGFuZCBhdGUgaGVyIGtpZHNdXQ=='>killed and ate her kids</a> and about to be burned at the stake as such, despite her husband the King's desperate attempts to save her, but at the last moment she repents and mentally admits her wrongdoings. The Virgin forgives the girl and pulls a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigDamnHeroes' title='/pmwiki/pmwiki.php/Main/BigDamnHeroes' data-format='QmlnRGFtbkhlcm9lcw=='>Big Damn Heroes</a> by summoning a magical rain to extinguish the pyre, then brings the children back and makes sure that the exonerated girl and her family will be happy forever. </li><li> In <a class='urllink' href='https://en.wikipedia.org/wiki/Penta_of_the_Chopped-off_Hands'>"Penta of the Chopped-off Hands"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, the jealous fishwife Nuccia causes lots of trouble to the titular Penta, a once <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FallenPrincess' title='/pmwiki/pmwiki.php/Main/FallenPrincess' data-format='RmFsbGVuUHJpbmNlc3M='>Fallen Princess</a> who had already gone through terrible ordeals (including the loss of her hands) but had managed to start rebuilding her life and marry a local King. She goes as far as writing a false letter from the King that condemned Penta to be burned at the stake, but the King's counselors believe that the King's out of his mind and they send her (and her son) to another realm instead. When the whole deception is revealed, Nuccia is the one burned instead. </li><li> There are several similar fairy tales (<a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GrimmBrothers' title='/pmwiki/pmwiki.php/Creator/GrimmBrothers' data-format='Q3JlYXRvci9HcmltbUJyb3RoZXJz'>Grimm Brothers</a>' "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheSixSwans' title='/pmwiki/pmwiki.php/Literature/TheSixSwans' data-format='TGl0ZXJhdHVyZS9UaGVTaXhTd2Fucw=='>The Six Swans</a>" and "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheTwelveBrothers' title='/pmwiki/pmwiki.php/Literature/TheTwelveBrothers' data-format='TGl0ZXJhdHVyZS9UaGVUd2VsdmVCcm90aGVycw=='>The Twelve Brothers</a>", <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/HansChristianAndersen' title='/pmwiki/pmwiki.php/Creator/HansChristianAndersen' data-format='Q3JlYXRvci9IYW5zQ2hyaXN0aWFuQW5kZXJzZW4='>Hans Christian Andersen</a>'s <a class='urllink' href='https://en.wikipedia.org/wiki/The_Wild_Swans'>"The Wild Swans"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AsbjornsenAndMoe' title='/pmwiki/pmwiki.php/Creator/AsbjornsenAndMoe' data-format='W1tDcmVhdG9yL0FzYmpvcm5zZW5BbmRNb2UgUGV0ZXIgQ2hyaXN0ZW4gQXNiasO4cm5zZW4gYW5kIErDuHJnZW4gTW9lJiMwMzk7c11d'>Peter Christen Asbjørnsen and Jørgen Moe's</a> <a class='urllink' href='https://en.wikipedia.org/wiki/The_Twelve_Wild_Ducks'>The Twelve Wild Ducks<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>" where a princess who's trying to break a spell over her brothers is under one or another circumstances accused of witchcraft (Andersen) or infanticide (Grimms, Asbjørnsen and Moe) and is almost burned at the stake, but her brothers save her and she manages to undo the curses over them. In "The Six Swans", the girl's false accuser <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KarmicDeath' title='/pmwiki/pmwiki.php/Main/KarmicDeath' data-format='W1tLYXJtaWNEZWF0aCBnZXRzIGJ1cm5lZCBhcyBwdW5pc2htZW50XV0='>gets burned as punishment</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Films — Animation&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/BelladonnaOfSadness' title='/pmwiki/pmwiki.php/Anime/BelladonnaOfSadness' data-format='QW5pbWUvQmVsbGFkb25uYU9mU2FkbmVzcw=='>Belladonna of Sadness</a></em>, <span class="spoiler" title="you can set spoilers visible by default on your profile" >this is what happens to the protagonist, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GirlNextDoor' title='/pmwiki/pmwiki.php/Main/GirlNextDoor' data-format='R2lybE5leHREb29y'>Girl Next Door</a>-turned-<a class='twikilink' href='/pmwiki/pmwiki.php/Main/HotWitch' title='/pmwiki/pmwiki.php/Main/HotWitch' data-format='SG90V2l0Y2g='>Hot Witch</a> Jeanne. Her husband Jean tries to rescue her, but he ends up turned into a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanPincushion' title='/pmwiki/pmwiki.php/Main/HumanPincushion' data-format='SHVtYW5QaW5jdXNoaW9u'>Human Pincushion</a></span>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Frozen2013' title='/pmwiki/pmwiki.php/WesternAnimation/Frozen2013' data-format='V2VzdGVybkFuaW1hdGlvbi9Gcm96ZW4yMDEz'>Frozen (2013)</a></em>, this is what Elsa and her parents' biggest fear as to what would happen to her should she lose control of her powers as detailed under the troll's vision. Out of fear of this happening, they close the gates and lock Elsa away in her room to hide away her powers and keep it a secret from everyone including her sister. Unfortunately it led her to a miserable life for 13 years which led to her inevitably reveal her powers in front of the whole crown during her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RageBreakingPoint' title='/pmwiki/pmwiki.php/Main/RageBreakingPoint' data-format='UmFnZUJyZWFraW5nUG9pbnQ='>Rage Breaking Point</a> and upon realizing what she had done, she flees the kingdom and accidentally plunge the kingdom under an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EndlessWinter' title='/pmwiki/pmwiki.php/Main/EndlessWinter' data-format='RW5kbGVzc1dpbnRlcg=='>Endless Winter</a>, resulting in the citizens fearing their new queen, believing that she had intentionally abandoned her own kingdom to famine and starvation. Indeed it seems that they fear and detested her so much that after Anna gets frozen solid as a result of being accidentally struck by Elsa, their response to this is to appoint a foreign prince as their new ruler of the kingdom and immediately complied with his orders to sentence the former queen to death without even bothering to double-check on the legitimacy of his claim and upon seeing Hans about to execute their supposed wicked queen, they seem to have a look joy once the snowstorm has ended due of Elsa being informed of her sister's death because of her actions. </li><li> In the Disney movie, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheHunchbackOfNotreDameDisney' title='/pmwiki/pmwiki.php/WesternAnimation/TheHunchbackOfNotreDameDisney' data-format='V2VzdGVybkFuaW1hdGlvbi97e1RoZSBIdW5jaGJhY2sgb2YgTm90cmUgRGFtZXxEaXNuZXl9fQ=='>The Hunchback of Notre Dame</a></em>, Esmeralda almost suffers this fate at the hands of Frollo after she refuses to submit to him. (She is not accused of being a witch in <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHunchbackOfNotreDame' title='/pmwiki/pmwiki.php/Literature/TheHunchbackOfNotreDame' data-format='W1tMaXRlcmF0dXJlL1RoZUh1bmNoYmFja09mTm90cmVEYW1lIHRoZSBvcmlnaW5hbCBib29rXV0='>the original book</a>).<span class="notelabel" onclick="togglenote('note2j9kb');"><sup>note&nbsp;</sup></span><span id="note2j9kb" class="inlinefolder" isnote="true" onclick="togglenote('note2j9kb');" style="cursor:pointer;font-size:smaller;display:none;"> Well, if you want to get picky, she <em>was</em> accused by a young woman of being a witch, but she was <em>charged</em> with (and hanged for) being a murderer. <span class="spoiler" title="you can set spoilers visible by default on your profile" >She is, of course, neither.</span></span> Interestingly, the crowd seems to rather be on <em>her</em> side and say so, no doubt at least partly due to Frollo's lengthy sack of his own city in order to find her. </li><li> Averted in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ParaNorman' title='/pmwiki/pmwiki.php/WesternAnimation/ParaNorman' data-format='V2VzdGVybkFuaW1hdGlvbi9QYXJhTm9ybWFu'>ParaNorman</a></em>, where <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='W1tCaWdCYWQgdGhlIHdpdGNoXV0='>the witch</a> was executed by hanging. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Then played straight later, when an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TorchesAndPitchforks' title='/pmwiki/pmwiki.php/Main/TorchesAndPitchforks' data-format='W1tUb3JjaGVzQW5kUGl0Y2hmb3JrcyBhbmdyeSBtb2JdXQ=='>angry mob</a> decides to kill <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ISeeDeadPeople' title='/pmwiki/pmwiki.php/Main/ISeeDeadPeople' data-format='W1tJU2VlRGVhZFBlb3BsZSBOb3JtYW5dXQ=='>Norman</a> like this, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComicallyMissingThePoint' title='/pmwiki/pmwiki.php/Main/ComicallyMissingThePoint' data-format='W1tDb21pY2FsbHlNaXNzaW5nVGhlUG9pbnQgYXMgaGFuZ2luZyBpcyB0b28gdW5jaXZpbGl6ZWRdXQ=='>as hanging is too uncivilized</a>.</span> </li><li> The Chief of the Indians in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PeterPan1953' title='/pmwiki/pmwiki.php/WesternAnimation/PeterPan1953' data-format='V2VzdGVybkFuaW1hdGlvbi97e1BldGVyIFBhbnwxOTUzfX0='>Peter Pan</a></em> threatens to do this to John, Michael and the Lost Boys if his daughter Tiger Lily, who he believes they kidnapped, is not returned by sunset. <div class='indent'><strong>The Chief:</strong> Heap big lie. If Tiger Lily not back by sunset...<strong>burn 'em at stake.</strong> </div></li><li> Lampshaded in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Rango' title='/pmwiki/pmwiki.php/WesternAnimation/Rango' data-format='V2VzdGVybkFuaW1hdGlvbi97e1JhbmdvfX0='>Rango</a></em> when the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CargoCult' title='/pmwiki/pmwiki.php/Main/CargoCult' data-format='Q2FyZ29DdWx0'>Cargo Cult</a> water pipe fails to produce water &#8212; the first reaction of one of the townsfolk is to point to Rango and shout "Burn the witch!" </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ScoobyDooAndTheWitchsGhost' title='/pmwiki/pmwiki.php/WesternAnimation/ScoobyDooAndTheWitchsGhost' data-format='V2VzdGVybkFuaW1hdGlvbi9TY29vYnlEb29BbmRUaGVXaXRjaHNHaG9zdA=='>Scooby-Doo! and the Witch's Ghost</a></em>, they believe the title character was a mistaken <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NewerThanTheyThink' title='/pmwiki/pmwiki.php/Main/NewerThanTheyThink' data-format='W1tOZXdlclRoYW5UaGV5VGhpbmsgV2ljY2FdXQ=='>Wicca</a> practitioner. She was actually a witch. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Manhwa&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manhwa/TheTarotCafe' title='/pmwiki/pmwiki.php/Manhwa/TheTarotCafe' data-format='TWFuaHdhL1RoZVRhcm90Q2FmZQ=='>The Tarot Cafe</a></em>, Pamela's mother (a midwife) was accused of witchcraft after the baby she was delivering and the child's mother both died. She confessed to witchcraft just so that she could plead for her daughter's safety and was burned at the stake. Pamela was later accused of witchcraft because she could see the future and because she rejected a creepy old priest's advances on her. Because she'd been exposed to the blood of a dragon, she was immortal and survived. A later story has her kidnapped by a group of religious fanatics who use her tarot cards as proof that she's a witch and try to kill her. Seeing as she's immortal, they don't succeed. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> In some versions of the ballad "Young Hunting" (<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ChildBallads' title='/pmwiki/pmwiki.php/Literature/ChildBallads' data-format='W1tMaXRlcmF0dXJlL0NoaWxkQmFsbGFkcyBDaGlsZCA0N11d'>Child 47</a>; a.k.a. Earl Richard/ Love Henry) the lady gets punished this way for killing her lover. Certain versions also include her trying to pin the murder on her maid, who gets acquitted because she won't burn no matter what the king's men try. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/CreatureFeature' title='/pmwiki/pmwiki.php/Music/CreatureFeature' data-format='TXVzaWMvQ3JlYXR1cmVGZWF0dXJl'>Creature Feature</a> mentions this and many other tortures in their song "Here There Be Witches". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/CultureClub' title='/pmwiki/pmwiki.php/Music/CultureClub' data-format='TXVzaWMvQ3VsdHVyZUNsdWI='>Culture Club</a>'s "The War Song" has the line "Like a Philistine, we're burning witches too." </li><li> "Am I Evil?" by Diamond Head (and covered by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Metallica' title='/pmwiki/pmwiki.php/Music/Metallica' data-format='TXVzaWMve3tNZXRhbGxpY2F9fQ=='>Metallica</a>), in which the singer's mother is burned as a witch, setting him on a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoaringRampageOfRevenge' title='/pmwiki/pmwiki.php/Main/RoaringRampageOfRevenge' data-format='Um9hcmluZ1JhbXBhZ2VPZlJldmVuZ2U='>Roaring Rampage of Revenge</a> that ultimately <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeWhoFightsMonsters' title='/pmwiki/pmwiki.php/Main/HeWhoFightsMonsters' data-format='W1tIZVdob0ZpZ2h0c01vbnN0ZXJzIGNvbnN1bWVzIGhpbV1d'>consumes him</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Dragonland' title='/pmwiki/pmwiki.php/Music/Dragonland' data-format='TXVzaWMve3tEcmFnb25sYW5kfX0='>Dragonland</a>'s "Fire and Brimstone" has a female elf <span class="spoiler" title="you can set spoilers visible by default on your profile" > actually the elven Queen</span> being about to be burned at the stake, considered a witch, and saved by the protagonist. </li><li> "Burn Witch Burn" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/EgoLikeness' title='/pmwiki/pmwiki.php/Music/EgoLikeness' data-format='TXVzaWMvRWdvTGlrZW5lc3M='>Ego Likeness</a>. </li><li> "The Curse of Jacques" from <a class='twikilink' href='/pmwiki/pmwiki.php/Music/GraveDiggerBand' title='/pmwiki/pmwiki.php/Music/GraveDiggerBand' data-format='TXVzaWMve3tHcmF2ZSBEaWdnZXJ8QmFuZH19'>Grave Digger</a>'s <em>Knights of the Cross</em>, which is about Last Grandmaster of Knights Templar Jacques de Molay, who was burned at the stake during the order's downfall. </li><li> "Burning Times" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/IcedEarth' title='/pmwiki/pmwiki.php/Music/IcedEarth' data-format='TXVzaWMvSWNlZEVhcnRo'>Iced Earth</a> refers to the witch hunts. </li><li> The Swedish song "I Lågornas Sken" (In the Fires Light) by Nordman is about a young girl judged to burn at the stake. </li><li> "Burn" from <a class='twikilink' href='/pmwiki/pmwiki.php/Music/KingDiamond' title='/pmwiki/pmwiki.php/Music/KingDiamond' data-format='TXVzaWMvS2luZ0RpYW1vbmQ='>King Diamond</a>'s solo album <em>The Eye</em> depicts a burning of alleged witch. The eponymous pendant from the title is later found from her ashes. </li><li> "Words of the Witch" by <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Music/Lonewolf' title='/pmwiki/pmwiki.php/Music/Lonewolf' data-format='TXVzaWMve3tMb25ld29sZn19'>Lonewolf</a> is a scathing condemnation of the Salem witch trials. </li><li> "Burn the Witch" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/QueensOfTheStoneAge' title='/pmwiki/pmwiki.php/Music/QueensOfTheStoneAge' data-format='TXVzaWMvUXVlZW5zT2ZUaGVTdG9uZUFnZQ=='>Queens of the Stone Age</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Radiohead' title='/pmwiki/pmwiki.php/Music/Radiohead' data-format='TXVzaWMve3tSYWRpb2hlYWR9fQ=='>Radiohead</a>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Music/AMoonShapedPool' title='/pmwiki/pmwiki.php/Music/AMoonShapedPool' data-format='W1tNdXNpYy9BTW9vblNoYXBlZFBvb2wgIkJ1cm4gdGhlIFdpdGNoIl1d'>"Burn the Witch"</a> features imagery themed around this as a metaphor for paranoia and distrust in modern society. The song had actually been in the works for well over a decade before its eventual release in 2016, and out-of-context lyrics from it were subtly tossed around in promotional material during the 2000's. </li><li> "The Curse", intro track to <a class='twikilink' href='/pmwiki/pmwiki.php/Music/RunningWild' title='/pmwiki/pmwiki.php/Music/RunningWild' data-format='TXVzaWMvUnVubmluZ1dpbGQ='>Running Wild</a>'s <em>Black Hand Inn</em> opens with a trial where a man is condemned to be a heretic and is subsequently burned at the stake. <!--* "Deathaura" by Music/SonataArctica. The BittersweetEnding helps to soften the emotional blow, however. Zero Context Example--> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TaylorSwift' title='/pmwiki/pmwiki.php/Music/TaylorSwift' data-format='TXVzaWMvVGF5bG9yU3dpZnQ='>Taylor Swift</a>'s "I Did Something Bad" from her 2017 album <em>reputation</em> has the following lines: "They're burning all the witches even if you aren't one/They got their pitchforks and proof/Their receipts and reasons" </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Venom' title='/pmwiki/pmwiki.php/Music/Venom' data-format='TXVzaWMve3tWZW5vbX19'>Venom</a>'s "Don't Burn the Witch" from <em>Black Metal</em>. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Vocaloid' title='/pmwiki/pmwiki.php/Music/Vocaloid' data-format='TXVzaWMve3tWb2NhbG9pZH19'>Vocaloid</a> song "Witch", sung by Megurine Luka and a few other Vocaloids, has this happening to Luka's character. <span class="spoiler" title="you can set spoilers visible by default on your profile" >She escapes, in probably <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GainaxEnding' title='/pmwiki/pmwiki.php/Main/GainaxEnding' data-format='W1tHYWluYXhFbmRpbmcgdGhlIG1vc3QgY29uZnVzaW5nIHdheSBldmVyXV0='>the most confusing way ever</a></span>. <ul ><li> In "Flames of Yellow Phosphorus," Rin's character is burned at the stake for killing her father. Subverted because they're not accusing her of witchcraft, they're doing it because she <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Irony' title='/pmwiki/pmwiki.php/Main/Irony' data-format='W1t7e0lyb255fX0gY29tbWl0dGVkIGFyc29uXV0='>committed arson</a>. </li></ul></li><li> "Burning The Witches", the title track from the debut album by Warlock, released in 1984. </li><li> Witchfinder General, "Burning a Sinner". Also, "Witchfinder General". </li><li> Both subverted and played straight with two songs off the <a class='twikilink' href='/pmwiki/pmwiki.php/Music/RobZombie' title='/pmwiki/pmwiki.php/Music/RobZombie' data-format='TXVzaWMvUm9iWm9tYmll'>Rob Zombie</a> album 'Educated Horses'. 'American Witch' subverts the trope with the line "We all hang high - 20 innocents" (referencing the twenty victims of the Salem Witch Trials), while 'Lords of Salem' plays it straight and subverts it with the line "Burn me and hang me". </li><li> "Witches Burn" by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/ThePrettyReckless' title='/pmwiki/pmwiki.php/Music/ThePrettyReckless' data-format='TXVzaWMvVGhlUHJldHR5UmVja2xlc3M='>The Pretty Reckless</a> is about a woman who's finished with the misogynistic Puritan society she lives in and is fine with being being burned as a witch for murdering the men who've wronged her. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Mythology and Religion&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> The passage of <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BookOfExodus' title='/pmwiki/pmwiki.php/Literature/BookOfExodus' data-format='W1tMaXRlcmF0dXJlL0Jvb2tPZkV4b2R1cyBFeG9kdXNdXQ=='>Exodus</a> 22:18 from <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBible' title='/pmwiki/pmwiki.php/Literature/TheBible' data-format='TGl0ZXJhdHVyZS9UaGVCaWJsZQ=='>The Bible</a> (and its quite popular King James variant mentioned as the page quote) was used to justify many a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WitchHunt' title='/pmwiki/pmwiki.php/Main/WitchHunt' data-format='V2l0Y2hIdW50'>Witch Hunt</a> back in the bad old days. It should be noted, however, that the meaning of "witch" or "sorceress" back then primarily referred to someone who used bad and injurious magic, rather than all magic. And some scholars have argued that the passage really referred to poisoners rather than magic users. </li><li> The legendary origin of the <em><a class='urllink' href='https://en.wikipedia.org/wiki/Erythrina_crista-galli'>ceibo<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> tree and flowers is tied to this trope. It says that as the Spanish <em>conquistadores</em> explored the lands of what's now <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Argentina' title='/pmwiki/pmwiki.php/UsefulNotes/Argentina' data-format='VXNlZnVsTm90ZXMve3tBcmdlbnRpbmF9fQ=='>Argentina</a>, the Guarani tribe opposed them fiercely; one of their biggest enemies was Anahí, an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActionGirl' title='/pmwiki/pmwiki.php/Main/ActionGirl' data-format='QWN0aW9uR2lybA=='>Action Girl</a> who used to be an ugly but kind <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendToAllLivingThings' title='/pmwiki/pmwiki.php/Main/FriendToAllLivingThings' data-format='RnJpZW5kVG9BbGxMaXZpbmdUaGluZ3M='>Friend to All Living Things</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MysteriousWaif' title='/pmwiki/pmwiki.php/Main/MysteriousWaif' data-format='TXlzdGVyaW91c1dhaWY='>Mysterious Waif</a>, but <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TookALevelInBadass' title='/pmwiki/pmwiki.php/Main/TookALevelInBadass' data-format='VG9va0FMZXZlbEluQmFkYXNz'>Took a Level in Badass</a> to defend her people. When the Spanish finally captured poor Anahí, they burned her at the stake; according to different versions either <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DefiantToTheEnd' title='/pmwiki/pmwiki.php/Main/DefiantToTheEnd' data-format='W1tEZWZpYW50VG9UaGVFbmQgc2hlIHNhbmcgYSBsYXN0IHNvbmcgYXMgc2hlIGJ1cm5lZCB0byBkZWF0aF1d'>she sang a last song as she burned to death</a> and her charred corpse became a <em>ceibo</em> tree in the morning, or the flames refused to touch Anahí and she slowly turned into into a <em>ceibo</em> in front of the conquerors. </li><li> Defied in <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/NorseMythology' title='/pmwiki/pmwiki.php/Myth/NorseMythology' data-format='TXl0aC9Ob3JzZU15dGhvbG9neQ=='>Norse Mythology</a>, when the gods try to kill an evil witch named Gullveig by burning her. Three times they tried... </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Radio&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' title='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' data-format='UmFkaW8vSm9obkZpbm5lbW9yZXNTb3V2ZW5pclByb2dyYW1tZQ=='>John Finnemore's Souvenir Programme</a>:</em> Referenced with a vengeful ghost of a woman killed centuries ago. In her time a man was looking for witches. When he quite predictably couldn't find any, he updated the definition of "witch" to any sufficiently unattractive woman who owned a cat. When he couldn't even manage <em>that</em>, he started holding beauty contests. The prize for losers was a cat... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThatMitchellAndWebbLook' title='/pmwiki/pmwiki.php/Series/ThatMitchellAndWebbLook' data-format='W1tTZXJpZXMvVGhhdE1pdGNoZWxsQW5kV2ViYkxvb2sgVGhhdCBNaXRjaGVsbCBhbmQgV2ViYiBTb3VuZF1d'>That Mitchell and Webb Sound</a></em>: Open-Mic Night at the Little Inn just outside Castle Dracula goes very wrong when the winner is a Roma woman. The superstitious villagers take it poorly and try to burn her. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Theatre&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/CrossRoad' title='/pmwiki/pmwiki.php/Theatre/CrossRoad' data-format='VGhlYXRyZS9Dcm9zc1JvYWQ='>Cross Road</a></em> &#8212; violinist Niccolo Paganini gets this treatment because of his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DealWithTheDevil' title='/pmwiki/pmwiki.php/Main/DealWithTheDevil' data-format='RGVhbFdpdGhUaGVEZXZpbA=='>Deal with the Devil</a>. No one tries to kill him, but as in real life, he was banished from his hometown of Genoa for it. Only, in this musical, it's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoMereWindmill' title='/pmwiki/pmwiki.php/Main/NoMereWindmill' data-format='Tm9NZXJlV2luZG1pbGw='>No Mere Windmill</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/TheCrucible' title='/pmwiki/pmwiki.php/Theatre/TheCrucible' data-format='VGhlYXRyZS9UaGVDcnVjaWJsZQ=='>The Crucible</a></em>, a play which has as its running theme the Salem witch trials, and was written, very tellingly, during the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RedScare' title='/pmwiki/pmwiki.php/Main/RedScare' data-format='W1tSZWRTY2FyZSBjb21tdW5pc3Qgd2l0Y2gtaHVudHNdXQ=='>communist witch-hunts</a> in America, is actually an aversion &#8212; they don't burn the witches, instead hanging them, as was actually done in the trials. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/FiniansRainbow' title='/pmwiki/pmwiki.php/Theatre/FiniansRainbow' data-format='VGhlYXRyZS9GaW5pYW5zUmFpbmJvdw=='>Finian's Rainbow</a></em>, Sharon is charged with using witchcraft to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ColorMeBlack' title='/pmwiki/pmwiki.php/Main/ColorMeBlack' data-format='W1tDb2xvck1lQmxhY2sgdHVybiBhIHdoaXRlIG1hbiBibGFja11d'>turn a white man black</a>, and her lover Woody of aiding and abetting her, in accordance with a 17th-century state law against witchcraft. ("Don't you think it's a little obsolete by now?" Woody says.) The pair are saved from the flames by the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JustInTime' title='/pmwiki/pmwiki.php/Main/JustInTime' data-format='SnVzdEluVGltZQ=='>Just in Time</a> reversal of her wish. </li><li> The opera <em>Königskinder</em> has a witch who is burned by a rampaging <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowderKegCrowd' title='/pmwiki/pmwiki.php/Main/PowderKegCrowd' data-format='UG93ZGVyS2VnQ3Jvd2Q='>Powder Keg Crowd</a> sometime in between the second and third acts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/TheLadysNotForBurning' title='/pmwiki/pmwiki.php/Theatre/TheLadysNotForBurning' data-format='VGhlYXRyZS9UaGVMYWR5c05vdEZvckJ1cm5pbmc='>The Lady's Not for Burning</a></em> by Christopher Fry. The evidence against her is laughable, but the town's officials can see she's well-to-do, and if they convict her, they can confiscate her property. But there's that pesky ex-soldier who insists he <em>murdered</em> the man she supposedly bewitched.... <div class='indent'><em>"Though we administer persuasion with great patience, she admits nothing. And the man won't stop admitting. It really makes one lose all faith in human nature."</em> </div></li><li> Part of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Backstory' title='/pmwiki/pmwiki.php/Main/Backstory' data-format='e3tCYWNrc3Rvcnl9fQ=='>Backstory</a> in <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GilbertAndSullivan' title='/pmwiki/pmwiki.php/Creator/GilbertAndSullivan' data-format='Q3JlYXRvci9HaWxiZXJ0QW5kU3VsbGl2YW4='>Gilbert and Sullivan</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Ruddigore' title='/pmwiki/pmwiki.php/Theatre/Ruddigore' data-format='VGhlYXRyZS97e1J1ZGRpZ29yZX19'>Ruddigore</a></em>; the ancestor of the Baronets of Ruddigore was cursed by a witch he was burning. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/IlTrovatore' title='/pmwiki/pmwiki.php/Theatre/IlTrovatore' data-format='VGhlYXRyZS9JbFRyb3ZhdG9yZQ=='>Il trovatore</a></em> by Verdi, anyone? Everything began with a witch burning, and the daughter of one of the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Romani' title='/pmwiki/pmwiki.php/UsefulNotes/Romani' data-format='VXNlZnVsTm90ZXMve3tSb21hbml9fQ=='>Romani</a> victims taking revenge for it... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/WhichWitchTheMusical' title='/pmwiki/pmwiki.php/Theatre/WhichWitchTheMusical' data-format='VGhlYXRyZS9XaGljaFdpdGNoVGhlTXVzaWNhbA=='>Which Witch The Musical</a></em>: The second act is all about Maria being convicted as a witch and sentenced to be burned on the stake. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Wicked' title='/pmwiki/pmwiki.php/Theatre/Wicked' data-format='VGhlYXRyZS97e1dpY2tlZH19'>Wicked</a></em>'s "March of the Witch Hunters" is pretty self-explanatory. The citizens of Oz hunt for Elphaba, egged on by Madame Morrible. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Visual Novels&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> Invoked in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/DanganronpaTriggerHappyHavoc' title='/pmwiki/pmwiki.php/VisualNovel/DanganronpaTriggerHappyHavoc' data-format='VmlzdWFsTm92ZWwvRGFuZ2Fucm9ucGFUcmlnZ2VySGFwcHlIYXZvYw=='>Danganronpa: Trigger Happy Havoc</a></em>. When Celestia "Celes" Ludenberg is proved to be the one who first manipulated Hifumi into killing Kiyotaka and then killed him, she is sentenced to execution via being burned at the stake. This is actually the <em>perfect</em> way to die in Celes's opinion, as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='V29yZE9mR29k'>Word of God</a> said that she wanted a very romanticized and dramatic death like those in the novels, so she is rather gleeful (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/StepfordSmiler' title='/pmwiki/pmwiki.php/Main/StepfordSmiler' data-format='W1tTdGVwZm9yZFNtaWxlciBhdCBsZWFzdCBwdWJsaWNhbGx5XV0='>at least publically</a>) as the pyre is lit under her feet and she waits for the fire to consume her, hands steepled and looking up dramatically... But since her executioner is <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Main/Troll' title='/pmwiki/pmwiki.php/Main/Troll' data-format='W1t7e1Ryb2xsfX0gTW9ub2t1bWFdXQ=='>Monokuma</a></strong> after all, he then subverts the trope via summoning a huge firefighter truck at the very last moment <em>and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeathByAmbulance' title='/pmwiki/pmwiki.php/Main/DeathByAmbulance' data-format='W1tEZWF0aEJ5QW1idWxhbmNlIHJhbW1pbmcgaXQgaW50byBDZWxlcyYjMDM5O3MgcHlyZSwga2lsbGluZyBoZXJdXQ=='>ramming it into Celes's pyre, killing her</a></em>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/TheHayseedKnight' title='/pmwiki/pmwiki.php/VisualNovel/TheHayseedKnight' data-format='VmlzdWFsTm92ZWwvVGhlSGF5c2VlZEtuaWdodA=='>The Hayseed Knight</a></em>, anyone caught using magic is subject to this treatment, since magic messes with the flow of the Hatza, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLifestream' title='/pmwiki/pmwiki.php/Main/TheLifestream' data-format='W1tUaGVMaWZlc3RyZWFtIHRoZSByaXZlciBvbmUmIzAzOTtzIHNvdWwgdHJhdmVscyB0aHJvdWdob3V0IHRoZSBjeWNsZSBvZiByZWluY2FybmF0aW9uXV0='>the river one's soul travels throughout the cycle of reincarnation</a>. The Merchant, the story's most prominent magic user, is far too powerful to actually die from it, but that doesn't stop the populace from hauling him up onto a pyre about once a week anyway. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/TheHouseInFataMorgana' title='/pmwiki/pmwiki.php/VisualNovel/TheHouseInFataMorgana' data-format='VmlzdWFsTm92ZWwvVGhlSG91c2VJbkZhdGFNb3JnYW5h'>The House in Fata Morgana</a></em>: <ul ><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >Michel</span> impaled to death and then crucified for three days and finally burnt at the stake as he was accused of being a devil's child due to <span class="spoiler" title="you can set spoilers visible by default on your profile" >being intersex and thus believed to be cursed</span>. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >The White-Haired Girl</span> is killed as a result of this in the <span class="spoiler" title="you can set spoilers visible by default on your profile" >second</span> door. </li></ul></li><li> This turns out to have been the fate of the vengeful spirit in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/TheLetter' title='/pmwiki/pmwiki.php/VisualNovel/TheLetter' data-format='VmlzdWFsTm92ZWwvVGhlTGV0dGVy'>The Letter</a></em>. She was accused of having used witchcraft, including using it to kill Lady Charlotte's husband, and was sentenced to be burned at the stake, a fate that she took to silently. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Webcomics&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> Mye and Hex were drowned as witches proving their innocence in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/CharbyTheVampirate' title='/pmwiki/pmwiki.php/Webcomic/CharbyTheVampirate' data-format='V2ViY29taWMvQ2hhcmJ5VGhlVmFtcGlyYXRl'>Charby the Vampirate</a></em> before being resurrected as zombie slaves by an actual magic user. </li><li> In <em>The Cummoner</em>, Vilga is condemned just for admitting to being a witch. She manages to escape <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DistractedByTheSexy' title='/pmwiki/pmwiki.php/Main/DistractedByTheSexy' data-format='W1tEaXN0cmFjdGVkQnlUaGVTZXh5IGluIGhlciBvd24gZmFzaGlvbl1d'>in her own fashion</a>. <!--do not recreate work page due to P5 violations--> </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> It is stated that minor Sparks in rural areas were often treated as witches and burned. Considering the fact that a Sparky "witch" could probably make those herbal concoctions work, and that Sparkyness usually equals at least periodic insanity, they were probably on the money as often as not. </li><li> Also subverted. Early in the story, the protagonist is told that girls with the Spark are especially vulnerable, and tend to just... disappear. Readers later find out that, rather than being killed as witches, most of them were probably kidnapped by Sturmhalten soldiers, so that Prince Aaronev, a Spark himself, could use them for his experiment to bring back the Other. Including his own daughter. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Hooky' title='/pmwiki/pmwiki.php/Webcomic/Hooky' data-format='V2ViY29taWMve3tIb29reX19'>Hooky</a></em> this is a risk for witches, despite being illegal. <ul ><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" > Dani</span> was narrowly rescued from a pyre after being mistaken for a child-killing witch. </li><li> Angela Wytte was also a near-victim (saved only by intervention of the king), but was pushed over the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DespairEventHorizon' title='/pmwiki/pmwiki.php/Main/DespairEventHorizon' data-format='RGVzcGFpckV2ZW50SG9yaXpvbg=='>Despair Event Horizon</a> by the experience. </li><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" > Dorian</span> is burned as a witch. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Or so everyone, including his twin Dani, thinks. In reality, Damian magically makes a wick-clone of his younger brother, and Dorian escapes.</span> </li></ul></li><li> Celina, a witch in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Imp' title='/pmwiki/pmwiki.php/Webcomic/Imp' data-format='V2ViY29taWMve3tJbXB9fQ=='>Imp</a></em> has her house burned down after a priest visits her home town and convinces them she's a devil worshiper. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/KnightsOfBuenaVista' title='/pmwiki/pmwiki.php/Webcomic/KnightsOfBuenaVista' data-format='V2ViY29taWMvS25pZ2h0c09mQnVlbmFWaXN0YQ=='>Knights of Buena Vista</a></em>, Weselton's role in <em>Frozen</em> has been upgraded, from bigot against sorcerers, to apparent witch hunter. <ul ><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >This is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SubvertedTrope' title='/pmwiki/pmwiki.php/Main/SubvertedTrope' data-format='U3VidmVydGVkVHJvcGU='>Subverted Trope</a>. He doesn't hunt magic users to stop evil. He does it because he's a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerCopying' title='/pmwiki/pmwiki.php/Main/PowerCopying' data-format='W1tQb3dlckNvcHlpbmcgTWFnZSBSZWF2ZXJdXQ=='>Mage Reaver</a>, and this provides a cover for his actions.</span> </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/LatchkeyKingdom' title='/pmwiki/pmwiki.php/Webcomic/LatchkeyKingdom' data-format='V2ViY29taWMvTGF0Y2hrZXlLaW5nZG9t'>Latchkey Kingdom</a></em>, the citizens of Hilla blame the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CourtMage' title='/pmwiki/pmwiki.php/Main/CourtMage' data-format='W1tDb3VydE1hZ2UgQ2FzdGxlIFdpdGNoXV0='>Castle Witch</a> (currently Svana) and start grabbing torches and kindling every time there's a crisis. "Lenne gets a Hat" reveals that to become a licensed witch in Hilla, you need to be able to accept your death gracefully or else be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunOrDie' title='/pmwiki/pmwiki.php/Main/RunOrDie' data-format='W1tSdW5PckRpZSB2ZXJ5IGZhc3RdXQ=='>very fast</a>. </li><li> The snowmen in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Nixvir' title='/pmwiki/pmwiki.php/Webcomic/Nixvir' data-format='V2ViY29taWMve3tOaXh2aXJ9fQ=='>Nixvir</a></em> have a very nasty habit of doing this to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeretic' title='/pmwiki/pmwiki.php/Main/TheHeretic' data-format='W1tUaGVIZXJldGljIGhlcmV0aWNzXV0='>heretics</a>. Justified, in that fire is the only thing that can permanently kill a snowman. However, as the case of Apollodoros <a class='urllink' href='https://static.tvtropes.org/pmwiki/pub/images/ragnar_chapter_ii_page_551_3.png'>shows<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small>, it's not a pretty sight. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/NoRestForTheWicked' title='/pmwiki/pmwiki.php/Webcomic/NoRestForTheWicked' data-format='V2ViY29taWMvTm9SZXN0Rm9yVGhlV2lja2Vk'>No Rest for the Wicked</a></em>, the villagers <a class='urllink' href='http://www.forthewicked.net/archive/03-05.html'>blame Clare<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for their disappearing children and intend to burn her. <ul ><li> On the other hand, Perrault <a class='urllink' href='http://www.forthewicked.net/archive/03-63.html'>reminds<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> November of this after they found <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LosingYourHead' title='/pmwiki/pmwiki.php/Main/LosingYourHead' data-format='W1tMb3NpbmdZb3VySGVhZCBjdXR0aW5nIHRoZSB3aXRjaCYjMDM5O3MgaGVhZCBvZmYgZGlkbiYjMDM5O3Qgd29ya11d'>cutting the witch's head off didn't work</a>. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/OurLittleAdventure' title='/pmwiki/pmwiki.php/Webcomic/OurLittleAdventure' data-format='V2ViY29taWMvT3VyTGl0dGxlQWR2ZW50dXJl'>Our Little Adventure</a></em>, <a class='urllink' href='http://danielscreations.com/ola/comics/ep0097.html'>Angelo's Kids do this to their opponents.<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/ScandinaviaAndTheWorld' title='/pmwiki/pmwiki.php/Webcomic/ScandinaviaAndTheWorld' data-format='V2ViY29taWMvU2NhbmRpbmF2aWFBbmRUaGVXb3JsZA=='>Scandinavia and the World</a></em>: <ul ><li> A variation occurs in <a class='urllink' href='http://humon.deviantart.com/gallery/#/d2avbmz'>this<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> comic in which Denmark and Norway sit Sister Finland ("the witch") on a burning maypole as part of a midsummer celebration. </li><li> <a class='urllink' href='https://satwcomic.com/what-comes-around-goes-around'>Another comic<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, illustrating the early Church's stance on witchcraft, had King Europe accuse Queen Europe of being a witch, only for the Pope to burn <em>him</em> for heresy. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SomethingPositive' title='/pmwiki/pmwiki.php/Webcomic/SomethingPositive' data-format='V2ViY29taWMvU29tZXRoaW5nUG9zaXRpdmU='>Something*Positive</a></em>, a young woman <a class='urllink' href='https://somethingpositive.net/comic/trolling-for-goths-pt-3/'>boasts of having been burned to death in Salem<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> in another life for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnachronismStew' title='/pmwiki/pmwiki.php/Main/AnachronismStew' data-format='W1tBbmFjaHJvbmlzbVN0ZXcgYmVpbmcgYSBXaWNjYW5dXQ=='>being a Wiccan</a>, but that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeroicSacrifice' title='/pmwiki/pmwiki.php/Main/HeroicSacrifice' data-format='W1tIZXJvaWNTYWNyaWZpY2Ugc2hlIGRpZWQgcHJhaXNpbmcgV2ljY2EgYW5kIHRoZSBHb2RkZXNzXV0='>she died praising Wicca and the Goddess</a>. Davan, of course, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeadpanSnarker' title='/pmwiki/pmwiki.php/Main/DeadpanSnarker' data-format='W1tEZWFkcGFuU25hcmtlciB0ZWFycyBoZXIgc3RvcnkgYXBhcnRdXQ=='>tears her story apart</a>. In three panels. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/WelcomeToChastity' title='/pmwiki/pmwiki.php/Webcomic/WelcomeToChastity' data-format='V2ViY29taWMvV2VsY29tZVRvQ2hhc3RpdHk='>Welcome to Chastity</a></em> the town Chastity used to be the site of many witch burnings. Turns out one of the women burned was an actual witch. She revived herself and got some payback on the town inhabitants. </li><li> In the world of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Witchy' title='/pmwiki/pmwiki.php/Webcomic/Witchy' data-format='V2ViY29taWMve3tXaXRjaHl9fQ=='>Witchy</a></em>, everyone has some degree of magic power, but society burns witches who possess too much power. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <!--* [[https://www.youtube.com/watch?v=nbYlvTyc28I&amp;feature=relmfu This]] from ''WebVideo/FiveSecondFilms''. Weblinks are not examples--> <ul ><li> Being burned as a witch is <a class='twikilink' href='/pmwiki/pmwiki.php/Film/MaryPoppins' title='/pmwiki/pmwiki.php/Film/MaryPoppins' data-format='RmlsbS9NYXJ5UG9wcGlucw=='>Mary Poppins</a>'s nightmare according to a <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/Cracked' title='/pmwiki/pmwiki.php/Website/Cracked' data-format='V2Vic2l0ZS97e0NyYWNrZWR9fQ=='>Cracked</a></em> Photoplasty: <a class='urllink' href='http://www.cracked.com/photoplasty_334_24-nightmares-famous-fictional-characters_p24/#8'>24 Nightmares of Famous Fictional Characters<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/WebAnimation/IfDisneyCartoonsWereHistoricallyAccurate' title='/pmwiki/pmwiki.php/WebAnimation/IfDisneyCartoonsWereHistoricallyAccurate' data-format='V2ViQW5pbWF0aW9uL0lmRGlzbmV5Q2FydG9vbnNXZXJlSGlzdG9yaWNhbGx5QWNjdXJhdGU='>If Disney Cartoons Were Historically Accurate</a></em>: A suspected witch is shown being burned at the stake while the singing princess blames her for a recent outbreak of the plague. </li><li> The hunting and burning of witches is the one of the main themes of the online roleplaying game <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheInquisitionLegacy' title='/pmwiki/pmwiki.php/VideoGame/TheInquisitionLegacy' data-format='VmlkZW9HYW1lL1RoZUlucXVpc2l0aW9uTGVnYWN5'>The Inquisition Legacy</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheRisingOfTheShieldHero' title='/pmwiki/pmwiki.php/Literature/TheRisingOfTheShieldHero' data-format='TGl0ZXJhdHVyZS9UaGVSaXNpbmdPZlRoZVNoaWVsZEhlcm8='>The Rising of the Shield Hero</a></em> has a literal example where Malty's second execution in the original webnovel is by being burned at the stake, and she had been given a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulRename' title='/pmwiki/pmwiki.php/Main/MeaningfulRename' data-format='TWVhbmluZ2Z1bFJlbmFtZQ=='>Meaningful Rename</a> to "Witch" by that point. </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>: <a class='urllink' href='https://scp-wiki.wikidot.com/scp-6097'>SCP-6097<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is described as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HumanoidAbomination' title='/pmwiki/pmwiki.php/Main/HumanoidAbomination' data-format='SHVtYW5vaWRBYm9taW5hdGlvbg=='>Humanoid Abomination</a> physically similar to an elderly woman, which possesses a long, rodent-like tail, with a third eyeball at its tip. After being caught abducting several infants from their homes in the fictional settlement of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SalemIsWitchCountry' title='/pmwiki/pmwiki.php/Main/SalemIsWitchCountry' data-format='W1tTYWxlbUlzV2l0Y2hDb3VudHJ5IEJyb3duc2Jvcm91Z2gsIE1hc3NhY2h1c2V0dHNdXQ=='>Brownsborough, Massachusetts</a>, she is executed by the townspeople, who first try burning her, which ultimately fails, so they resort to decapitating her instead, with dire results. </li><li> On the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/NightmareProject' title='/pmwiki/pmwiki.php/Website/NightmareProject' data-format='V2Vic2l0ZS9OaWdodG1hcmVQcm9qZWN0'>Nightmare Project</a></em>, one dreamer has a nightmare where his wife is raped and then burned by an angry mob lead by a witch-like crone. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/YuGiOhTheAbridgedSeries' title='/pmwiki/pmwiki.php/WebVideo/YuGiOhTheAbridgedSeries' data-format='V2ViVmlkZW8vWXVHaU9oVGhlQWJyaWRnZWRTZXJpZXM='>Yu-Gi-Oh! The Abridged Series</a></em>, said word-for-word multiple times by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CloudCuckoolander' title='/pmwiki/pmwiki.php/Main/CloudCuckoolander' data-format='W1tDbG91ZEN1Y2tvb2xhbmRlciBUcmlzdGFuXV0='>Tristan</a>, who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='W1tSdW5uaW5nR2FnIHJlbWFpbnMgY29udmluY2VkXV0='>remains convinced</a> that Duke Devlin is a witch. <div class='indent'><strong>Tristan:</strong> He must be a witch! <a class='twikilink' href='/pmwiki/pmwiki.php/Film/MontyPythonAndTheHolyGrail' title='/pmwiki/pmwiki.php/Film/MontyPythonAndTheHolyGrail' data-format='W1tGaWxtL01vbnR5UHl0aG9uQW5kVGhlSG9seUdyYWlsIEhlIHR1cm5lZCBtZSBpbnRvIGEgbmV3dF1d'>He turned me into a newt</a>! <em>(<a class='twikilink' href='/pmwiki/pmwiki.php/Main/Beat' title='/pmwiki/pmwiki.php/Main/Beat' data-format='e3tiZWF0fX0='>Beat</a>)</em> I got better. </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Real Life&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> Translation: <ul ><li> Interestingly, the passage quoted at the top of this page, from the King James Version, is actually a rather iffy translation. The term "witch" is a more recent invention of the English language, and of course no particular method of execution was prescribed. The word used in the original language roughly translates to "sorceress" with "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/MindRape' title='/pmwiki/pmwiki.php/Main/MindRape' data-format='W1tNaW5kUmFwZSBvbmUgd2hvIHR3aXN0cyB0aGUgbWluZHMgb2Ygb3RoZXJzXV0='>one who twists the minds of others</a> for personal gain" connotations. Though rulers described as serving God often stamped out <em>all</em> practitioners; this is why Saul had trouble finding one when he decided to actually consult one. </li><li> Another translation renders the word as <em>prostitute</em>. Sacred prostitutes often served the god(desse)s of the nations opposing Israel. They were seen as trying to tempt God's people away from him. Some may have practiced sacred rites. </li><li> It's also possible that the original word was <em>poisoner</em>, as there was overlap between the Greek and Latin words for "poisoner" and "witch"; King James was <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWitchHunter' title='/pmwiki/pmwiki.php/Main/TheWitchHunter' data-format='W1tUaGVXaXRjaEh1bnRlciByYXRoZXIgb2JzZXNzZWQgd2l0aCB3aXRjaGNyYWZ0XV0='>rather obsessed with witchcraft</a>, which may have influenced the translation. </li></ul></li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/AncientGreece' title='/pmwiki/pmwiki.php/UsefulNotes/AncientGreece' data-format='VXNlZnVsTm90ZXMvQW5jaWVudEdyZWVjZQ=='>Ancient Greece</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AncientRome' title='/pmwiki/pmwiki.php/Main/AncientRome' data-format='QW5jaWVudFJvbWU='>Ancient Rome</a>, there were things that <em>could</em> be considered witch-hunts<span class="notelabel" onclick="togglenote('note3l2ew');"><sup>note&nbsp;</sup></span><span id="note3l2ew" class="inlinefolder" isnote="true" onclick="togglenote('note3l2ew');" style="cursor:pointer;font-size:smaller;display:none;">Keep in mind that our modern conception of what a "witch" is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NewerThanTheyThink' title='/pmwiki/pmwiki.php/Main/NewerThanTheyThink' data-format='W1tOZXdlclRoYW5UaGV5VGhpbmsgYWN0dWFsbHkgZGV2ZWxvcGVkIGFyb3VuZCB0aGUgUmVmb3JtYXRpb24gZXJhXV0='>actually developed around the Reformation era</a></span>, but their word for "witch" could also be translated as "poisoner" (see, the above section on the KJV). In fact, it's possible they were interchangeable concepts back then. <ul ><li> Perhaps the first victim of witch-hunting in history we know the name of was an ancient Greek woman named <a class='urllink' href='https://en.wikipedia.org/wiki/Theoris_of_Lemnos'>Theoris of Lemnos<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (4th. century B.C.E./B.C.). She was executed with her children. </li><li> Livy (<a class='urllink' href='https://www.perseus.tufts.edu/hopper/text?doc=Perseus%3Atext%3A1999.02.0155%3Abook%3D8%3Achapter%3D18'>Ad Urbe Condita Libri VIII, xviii<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>) records an instance of 170 women being burned for poisoning (witchcraft?), who were blamed for causing mass illness. Livy records that this is the scale of this persecution was never before seen in Rome at that point. </li><li> In 81 B.C.E./B.C., the Roman legislator Sulla passed the <em>Lex Cornelia de sicariis et veneficiis</em>, which prohibited occult practices along with posession of harmful poisons. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/JoanOfArc' title='/pmwiki/pmwiki.php/UsefulNotes/JoanOfArc' data-format='VXNlZnVsTm90ZXMvSm9hbk9mQXJj'>Joan of Arc</a>, who led the French army during <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheHundredYearsWar' title='/pmwiki/pmwiki.php/UsefulNotes/TheHundredYearsWar' data-format='VXNlZnVsTm90ZXMvVGhlSHVuZHJlZFllYXJzV2Fy'>The Hundred Years War</a>, was eventually captured by the Burgundians. She was put on trial for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHeretic' title='/pmwiki/pmwiki.php/Main/TheHeretic' data-format='W1tUaGVIZXJldGljIGhlcmVzeV1d'>heresy</a> in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KangarooCourt' title='/pmwiki/pmwiki.php/Main/KangarooCourt' data-format='S2FuZ2Fyb29Db3VydA=='>Kangaroo Court</a>, was found guilty, and burned at the stake. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a>, the methods for dealing with suspected witches varied greatly between areas and eras: <ul ><li> During <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHighMiddleAges' title='/pmwiki/pmwiki.php/Main/TheHighMiddleAges' data-format='W1tUaGVIaWdoTWlkZGxlQWdlcyB0aGUgTWlkZGxlIEFnZXMgcHJvcGVyXV0='>the Middle Ages proper</a> witchcraft wasn't a major crime &#8212; 'cunning folk' were practitioners of low-level magic that were generally not persecuted legally, unless they were accused of cheating their customers out of the supposed effects of the magic sold. Lethal magic was treated essentially as a subsection of poisoning, and punished accordingly with death, though not by burning, while lesser offenses could only lead to a fine or corporal punishment. Only with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheLateMiddleAges' title='/pmwiki/pmwiki.php/Main/TheLateMiddleAges' data-format='VGhlTGF0ZU1pZGRsZUFnZXM='>The Late Middle Ages</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheCavalierYears' title='/pmwiki/pmwiki.php/Main/TheCavalierYears' data-format='VGhlQ2F2YWxpZXJZZWFycw=='>The Cavalier Years</a>, especially with the publication of the infamous <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MalleusMaleficarum' title='/pmwiki/pmwiki.php/Literature/MalleusMaleficarum' data-format='W1tMaXRlcmF0dXJlL01hbGxldXNNYWxlZmljYXJ1bSBNYWxsZXVzXV0='>Malleus</a> <a class='urllink' href='http://en.wikipedia.org/wiki/Malleus_Maleficarum'>Maleficarum<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> did the mass witch hunts begin. Prior to this, the Church's position was largely that witches were not even real - or rather, that magic was not real, simply illusions of the Devil<span class="notelabel" onclick="togglenote('note4b8rc');"><sup>note&nbsp;</sup></span><span id="note4b8rc" class="inlinefolder" isnote="true" onclick="togglenote('note4b8rc');" style="cursor:pointer;font-size:smaller;display:none;">In fact, belief in witches was condemned as Pagan and worthy of capital punishment at the Council of Paderborn (785 C.E./A.D.)</span>. The <em>Malleus</em> itself was banned when it came out as the heretical ravings of a lunatic, but unfortunately enthusiastic amateurs got a hold of it anyway, causing a boom among both Catholic and Protestant laymen. </li><li> After the Reformation witch-hunts gained rapid popularity on both sides of the fence, as religious paranoia rose to ridiculous degrees. Most of the witch-trials were performed by secular courts or minor clergy with little idea how to perform any actual investigation, though in Protestant countries even higher levels of clergy sometimes got themselves involved. <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/UsefulNotes/MartinLuther' title='/pmwiki/pmwiki.php/UsefulNotes/MartinLuther' data-format='VXNlZnVsTm90ZXMvTWFydGluTHV0aGVy'>Martin Luther</a> was recorded saying something to the effect of: "I would gladly burn them myself." </li><li> In England and America, witches were usually simply hanged, and sometimes burned <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/RasputinianDeath' title='/pmwiki/pmwiki.php/Main/RasputinianDeath' data-format='W1tSYXNwdXRpbmlhbkRlYXRoIHBvc3QgbW9ydGVtXV0='>post mortem</a></em> to prevent them from coming <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheUndead' title='/pmwiki/pmwiki.php/Main/TheUndead' data-format='W1tUaGVVbmRlYWQgYmFjayBhcyB1bmRlYWRdXQ=='>back as undead</a>. However, in continental Europe, burning alive was a very popular method of execution for witches and heretics alike &#8212; the distinction between the two was often narrow, to say the least. Not until Henry IV's statute "De Heretico Comburendo" was burning authorized in England as a punishment for heresy, and this sentence was rarely passed. Interestingly enough, getting convicted of witchcraft didn't mean an automatic death sentence. In England and Wales, the vast majority of those accused of witchcraft were pardoned. Apparently people liked a good trial, but couldn't be bothered to actually carry out the sentence. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheSpanishInquisition' title='/pmwiki/pmwiki.php/UsefulNotes/TheSpanishInquisition' data-format='VXNlZnVsTm90ZXMvVGhlU3BhbmlzaElucXVpc2l0aW9u'>The Spanish Inquisition</a> actually refused to do this after the late-16th century, and even before then they were rather lax on witchcraft, very rarely ending in true executions. The Grand Inquisitor himself pronounced the tales of mass "sabbats" unlikely and unsupported by any evidence (it was considered much more credible that testimonies of people hosting Satanic meetings in the woods were probably just lustful sinners celebrating regular orgies, sometimes with the help of rudimentary <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HookersAndBlow' title='/pmwiki/pmwiki.php/Main/HookersAndBlow' data-format='W1tIb29rZXJzQW5kQmxvdyBwYXJ0eSBkcnVnc11d'>party drugs</a>), and stated that any person claiming to be a witch was either a liar or clinically insane. Even if declared witches, most accused actually survived with only "minor" torture and fairly small official punishment; execution itself was so rare that it caused its few cases, such as the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/ZugarramurdiWitchTrials' title='/pmwiki/pmwiki.php/UsefulNotes/ZugarramurdiWitchTrials' data-format='VXNlZnVsTm90ZXMvWnVnYXJyYW11cmRpV2l0Y2hUcmlhbHM='>Zugarramurdi Witch Trials</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StreisandEffect' title='/pmwiki/pmwiki.php/Main/StreisandEffect' data-format='W1tTdHJlaXNhbmRFZmZlY3QgdG8gYmUgc3BlY3RhY3VsYXJseSBwdWJsaWNpemVkXV0='>to be spectacularly publicized</a>, which probably contributed to the legend that the Inquisition was having its hands full on the witch-killing topic. The Inquisition was more concerned about Jews and Moors, in particular the remnant population of Muslims in Spain: Castile-Leon had only conquered Granada in 1492, so the region and its Muslim people were something of an ongoing problem for the Christian rulers until the last of them were ethnically cleansed in the early 17th century. That said, this probably didn't stop non-Royal and non-Church town authorities (i.e. about 2/3 of all towns) or angry mobs from holding witch trials and hanging 'witches', despite the Inquisition's efforts to impede it. </li></ul></li><li> In Iceland, from 1625-1683, 21 people were executed by burning after being accused of witchcraft (which could include just keeping magical talismans in their homes). All but one of these people were male, as men were believed to be the only people capable of being witches in Icelandic society. There's an interesting, albeit somewhat cheesy, museum dedicated to Icelandic witchcraft in the 17th century in the town of Hólmavík, in the West Fjords. </li><li> A common misconception, even in Massachusetts, is that the victims of the Salem Witch Trials of 1692 were burned, when in fact, most were hanged, with the exception of Giles Corey, who was pressed to death (i.e., had a large board the size of a door laid on top of him and then rocks were piled onto the board, till he suffocated. He got special treatment because he refused to enter a plea and was found in contempt of court. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DefiantToTheEnd' title='/pmwiki/pmwiki.php/Main/DefiantToTheEnd' data-format='W1tEZWZpYW50VG9UaGVFbmQgSGUganVzdCB0b2xkIHRoZW0gdG8gYWRkIG1vcmUgd2VpZ2h0XV0='>He just told them to add more weight</a>). He was actually trying to spare his family the loss of his property, which would happen on a conviction of witchcraft (as was inevitable). Under common law, no trial could be held if the accused would not enter a plea. "Pressing" under heavy stones was the method used to force this out of one that refused to. Giles died, but he did so legally innocent and his family inherited his land. </li><li> <a class='urllink' href='http://en.wikipedia.org/wiki/Urbain_Grandier'>Urbain Grandier<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, a French Catholic priest in Loudun who was accused of a diabolical pact and causing a whole convent of nuns to become possessed. His case is notable in having inspired a book by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AldousHuxley' title='/pmwiki/pmwiki.php/Creator/AldousHuxley' data-format='Q3JlYXRvci9BbGRvdXNIdXhsZXk='>Aldous Huxley</a> (<em>The Devils of Loudun</em>), a film by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/KenRussell' title='/pmwiki/pmwiki.php/Creator/KenRussell' data-format='Q3JlYXRvci9LZW5SdXNzZWxs'>Ken Russell</a> (<em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheDevils' title='/pmwiki/pmwiki.php/Film/TheDevils' data-format='RmlsbS9UaGVEZXZpbHM='>The Devils</a></em>), and an opera by Krzysztof Penderecki (<em>Die Teufel von Loudun</em>). </li><li> In Sweden, about 300 "witches" were burned between 1668 and 1676. Most of them admitted to having committed witchcraft, and were rewarded by being decapitated before the burning. The only one to be burned alive was Malin Matsdotter, to whom this was punishment for refusing to admit anything. Before she was burned alive, she noticed that one of her daughters (the one that had accused her) stood in the crowd and told her and everyone present that her daughter now belonged to the devil. She (reportedly) did not scream when she was burned. It was probably due to a sack of gunpowder being placed around her neck out of mercy.<br data-format="\\" /><br data-format="\\" />The Swedish trials ended with the church, who had been against the trials from the beginning but forced to prosecute them due to the sheer number of accusations, declaring that all witches had forever been exorcised from Sweden. They then proceeded to publically torture and burn <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HoistByHisOwnPetard' title='/pmwiki/pmwiki.php/Main/HoistByHisOwnPetard' data-format='W1tIb2lzdEJ5SGlzT3duUGV0YXJkIHNvbWUgb2YgdGhlIGFjY3VzZXJzXV0='>some of the accusers</a> (most of which where in their teens!) saying that they were the last remaining witches. </li><li> In Germany, the trial of the <a class='urllink' href='http://en.wikipedia.org/wiki/Pappenheimer_family'>Pappenheimer family<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, considered to be <em>the worst witch trial</em> in German history. Don't read the article if you have a weak stomach. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The parents and the eldest sons were to be executed together with two other men. The bodies of the men were torn six times each with irons, Anna's breasts were cut off and rubbed in the faces of her adult sons, the skeletons of the men were broken on the wheel, the father was subjected to impalement on a pike, and finally, they were burned at the stake. </span> </li><li> The Würzburg witch-trials. Over the course of six years, <em>nine hundred people</em> were burnt as witches in Germany, including many children, some as young as <em>four</em>. </li><li> One of the first recorded convictions of witchcraft in Europe occurred in Ireland in 1324 and involved <a class='urllink' href='http://en.wikipedia.org/wiki/Alice_Kyteler'>Alice Kyteler<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, a wealthy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WidowWitch' title='/pmwiki/pmwiki.php/Main/WidowWitch' data-format='W1tXaWRvd1dpdGNoIGZvdXItdGltZSB3aWRvd11d'>four-time widow</a> accused by the local bishop and gossips of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackWidow' title='/pmwiki/pmwiki.php/Main/BlackWidow' data-format='W1tCbGFja1dpZG93IHBvaXNvbmluZyBoZXIgZm9ybWVyIGh1c2JhbmRzXV0='>poisoning her former husbands</a> for their estates, sacrificing animals to demons, heresy, sorcery and having sex with an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccubiAndIncubi' title='/pmwiki/pmwiki.php/Main/SuccubiAndIncubi' data-format='W1tTdWNjdWJpQW5kSW5jdWJpIGluY3VidXNdXQ=='>incubus</a>. In reality, she was probably only guilty of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheScrooge' title='/pmwiki/pmwiki.php/Main/TheScrooge' data-format='W1tUaGVTY3Jvb2dlIG1vbmV5bGVuZGluZ11d'>moneylending</a>, which piss-poor Middle Ages folk would have deeply resented. Something of an aversion, in that it was Kyteler's servant, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackBauerInterrogationTechnique' title='/pmwiki/pmwiki.php/Main/JackBauerInterrogationTechnique' data-format='W1tKYWNrQmF1ZXJJbnRlcnJvZ2F0aW9uVGVjaG5pcXVlIEphY2sgQmF1ZXImIzAzOTtkXV0='>Jack Bauer'd</a> into giving a possibly false confession, who was burned at the stake, while Kyteler herself fled to the continent and promptly disappeared from history. Her former house, in which authorities allegedly found such items as "body parts of an unbaptized infant; evil powders; communion wafers imprinted with satanic images; the fingernails and toenails of corpses boiled in the skull of a robber; candles made of human fat", is now a popular local pub. </li><li> An utterly bizarre example occurred with the death of the two last <a class='urllink' href='http://en.wikipedia.org/wiki/Great_auk'>Great Auks<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>; apparently the last two individuals were killed because their capture occurred at the same time a storm came, leading the sailors to think the birds were witches. </li><li> In Denmark, a holiday based around the history of burning witches (St John's Eve) has been a tradition. Of course, no real person is used, but a scarecrow-like-doll that looks like a stereotypical witch is burned instead. It's also more like a bonfire with a doll stuck in it. </li><li> A similar folk tradition exists in the Czech Republic, on the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Walpurgisnacht' title='/pmwiki/pmwiki.php/UsefulNotes/Walpurgisnacht' data-format='W1tVc2VmdWxOb3Rlcy97e1dhbHB1cmdpc25hY2h0fX0gV2FscHVyZ2lzIE5pZ2h0XV0='>Walpurgis Night</a> (30th of April). </li><li> <a class='urllink' href='http://www.rawstory.com/rs/2013/04/05/amnesty-calls-for-action-after-new-guinea-witch-burnings/'>2013 goings-on in Papua New Guinea<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li></ul></div> </p><p><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="zw5ta0" data-video-descrip="Blaming Brigitte Fitzgerald for Fort Bailey being under siege by a pack of Werewolves, Reverend Gilbert decides to have her burned at the stake. He has Brigitte tied up and a bonfire prepared, but the others tell him to stop." data-video-title="Brigitte's near-burning." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zw5ta0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zw5ta0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zw5ta0.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zw5ta0.jpg" data-video-trope="Main/BurnTheWitch" data-video-tropename="Burn the Witch!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Film/GingerSnapsBackTheBeginning" 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/zw5ta0.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zw5ta0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zw5ta0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zw5ta0.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">Brigitte's near-burning.</h2> <p class="_pmvv-vidbox-descTxt"> Blaming Brigitte Fitzgerald for Fort Bailey being under siege by a pack of Werewolves, Reverend Gilbert decides to have her burned at the stake. He has Brigitte tied up and a bonfire prepared, but the others tell him to stop. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="l2898q" data-video-descrip="Now that Ione's outed as a witch, she narrates a shortish story regarding someone (implied) she knows who was burned because she's a wicked witch. Ashaf taunted her if she has things to hide." data-video-title="Prejudice" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l2898q_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l2898q.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l2898q.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l2898q.jpg" data-video-trope="Main/BurnTheWitch" data-video-tropename="Burn the Witch!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Manga/TheWitchAndTheBeast" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l2898q.jpg"> <p><span class="bold">Prejudice</span></p> </a> <a href="#video-link" data-video-id="udz5o3" data-video-descrip="The Inquisitor's Awakening Attack binds her opponent to a stake, which she then sets to flame." data-video-title="The Inqusitor's Blazing Hell" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/udz5o3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/udz5o3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/udz5o3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/udz5o3.jpg" data-video-trope="Main/BurnTheWitch" data-video-tropename="Burn the Witch!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/DNFDuel" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/udz5o3.jpg"> <p><span class="bold">The Inqusitor's...</span></p> </a> <a href="#video-link" data-video-id="mp73vw" data-video-descrip="Martha attempts to burn Millie &amp;amp; Blitzo to death, after a failed assassination, but the two turn out to be immune to fire." data-video-title="Imps are immune to fire" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mp73vw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mp73vw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mp73vw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mp73vw.jpg" data-video-trope="Main/NoSell" data-video-tropename="No-Sell" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/HelluvaBossS1E1MurderFamily,WebAnimation/HelluvaBoss,Main/BurnTheWitch,Main/GasolineDousing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mp73vw.jpg"> <p><span class="bold">Imps are immune...</span></p> </a> </div> </div> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BountyHunter">Bounty Hunter</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes">Crime and Punishment Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BurnerPhones">Burner Phones</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BrutalHonesty">Brutal Honesty</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheOnlyRighteousIndexOfFanatics">The Only Righteous Index of Fanatics!</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BuryYourGays">Bury Your Gays</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BurnTheUndead">Burn the Undead</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexIsOnFire">This Index Is on Fire</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CampfireCharacterExploration">Campfire Character Exploration</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheBurlesqueOfVenus">The Burlesque of Venus</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/Paintings">ImageSource/Paintings</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BurningTheShips">Burning the Ships</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BuriedInAPileOfCorpses">Buried in a Pile of Corpses</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DeathTropes">Death Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BurpOfFinality">Burp of Finality</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BreedingCult">Breeding Cult</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ReligionTropes">Religion Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheCardinalVirtues">The Cardinal Virtues</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BrawnHilda">Brawn Hilda</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/Europe">UsefulNotes/Europe</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BusyBeaver">Busy Beaver</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BookCasePassage">Book Case Passage</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IndexOfGothicHorrorTropes">Index of Gothic Horror Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChessWithDeath">Chess with Death</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BoomHeadshot">Boom, Headshot!</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/RealityIsUnrealistic">Reality Is Unrealistic</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SalemIsWitchCountry">Salem Is Witch Country</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BoulderBludgeon">Boulder Bludgeon</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PublicExecution">Public Execution</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DeadGuyOnDisplay">Dead Guy on Display</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/BlueCollarWarlock">Blue-Collar Warlock</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/WitchesAndWizards">Witches and Wizards</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CatsAreMagic">Cats Are Magic</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AllWitchesHaveCats">All Witches Have Cats</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurWitchesAreDifferent">Our Witches Are Different</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GoodWitchVersusBadWitch">Good Witch Versus Bad Witch</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AmphibianAssault">Amphibian Assault</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/TheBible">QuoteSource/The Bible</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DeathWail">Death Wail</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-zw5ta0" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zw5ta0.jpg" data-video-title="Brigitte's near-burning." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zw5ta0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zw5ta0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zw5ta0.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">Brigitte's near-burning.</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Blaming Brigitte Fitzgerald for Fort Bailey being under siege by a pack of Werewolves, Reverend Gilbert decides to have her burned at the stake. He has Brigitte tied up and a bonfire prepared, but the others tell him to stop. </p> <div class="rating-row" data-video-id="zw5ta0" > <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 / BurnTheWitch</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="zw5ta0" data-vimeo-id="" data-video-descrip="Blaming Brigitte Fitzgerald for Fort Bailey being under siege by a pack of Werewolves, Reverend Gilbert decides to have her burned at the stake. He has Brigitte tied up and a bonfire prepared, but the others tell him to stop." data-video-title="Brigitte's near-burning." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zw5ta0_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zw5ta0.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zw5ta0.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zw5ta0.jpg" data-video-trope="Main/BurnTheWitch" data-video-tropename="Burn the Witch!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Film/GingerSnapsBackTheBeginning" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zw5ta0.jpg"> <p><span class="bold">Brigitte's near...</span></p> </a> <a href="#video-link" data-video-id="l2898q" data-vimeo-id="" data-video-descrip="Now that Ione's outed as a witch, she narrates a shortish story regarding someone (implied) she knows who was burned because she's a wicked witch. Ashaf taunted her if she has things to hide." data-video-title="Prejudice" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l2898q_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l2898q.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l2898q.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l2898q.jpg" data-video-trope="Main/BurnTheWitch" data-video-tropename="Burn the Witch!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Manga/TheWitchAndTheBeast" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/l2898q.jpg"> <p><span class="bold">Prejudice</span></p> </a> <a href="#video-link" data-video-id="udz5o3" data-vimeo-id="" data-video-descrip="The Inquisitor's Awakening Attack binds her opponent to a stake, which she then sets to flame." data-video-title="The Inqusitor's Blazing Hell" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/udz5o3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/udz5o3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/udz5o3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/udz5o3.jpg" data-video-trope="Main/BurnTheWitch" data-video-tropename="Burn the Witch!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="VideoGame/DNFDuel" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/udz5o3.jpg"> <p><span class="bold">The Inqusitor's...</span></p> </a> <a href="#video-link" data-video-id="mp73vw" data-vimeo-id="474343322" data-video-descrip="Martha attempts to burn Millie &amp;amp; Blitzo to death, after a failed assassination, but the two turn out to be immune to fire." data-video-title="Imps are immune to fire" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/mp73vw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/mp73vw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/mp73vw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mp73vw.jpg" data-video-trope="Main/NoSell" data-video-tropename="No-Sell" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.98" data-video-rating-count="57" data-video-media-sources="Recap/HelluvaBossS1E1MurderFamily,WebAnimation/HelluvaBoss,Main/BurnTheWitch,Main/GasolineDousing" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mp73vw.jpg"> <p><span class="bold">Imps are immune...</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=a1fdc3097a55e179219cd1bf535ab41b48dc60da'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

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