CINXE.COM
Abusive Parents - 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>Abusive Parents - TV Tropes</title> <meta name="description" content="The Abusive Parents trope as used in popular culture. Parents are supposed to be the protectors of children, but these parents are either so damaged …" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/AbusiveParents" /> <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="Abusive Parents - TV Tropes" /> <meta name="twitter:description" content="The Abusive Parents trope as used in popular culture. Parents are supposed to be the protectors of children, but these parents are either so damaged …" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/pmabuse.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Abusive Parents - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/AbusiveParents" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/pmabuse.png" /> <meta property="og:description" content="Parents are supposed to be the protectors of children, but these parents are either so damaged themselves that they can't do the job, greedy or villainous to the point that they never had any interest in doing the job properly, or would rather …" /> <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="" /> <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/ManiacTongue" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Roleplay/Towergirls" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, oauth_finalize, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (oauth_finalize ? '&oauth_finalize=' + encodeURIComponent(oauth_finalize) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]:not(#signup-form-toggles a)'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTargetId = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); const isExclusive = targetWithToggleTarget.getAttribute('data-click-toggle-exclusive') === 'true'; if (isExclusive) { // Exclusive mode: toggle target and clear siblings const toggleTarget = document.getElementById(toggleTargetId); if (toggleTarget) { // Remove the toggle class from all siblings const siblings = Array.from(toggleTarget.parentNode.children); for (let sibling of siblings) { if (sibling !== toggleTarget) { sibling.classList.remove(toggleClass); } } // Add the toggle class to the target element toggleTarget.classList.add(toggleClass); } } else { // Non-exclusive mode: toggle targets normally if (toggleTargetId.indexOf(',') > -1) { const targets = toggleTargetId.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTargetId).forEach(el => { el.classList.toggle(toggleClass); }); } } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/AbusiveParents?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/AbusiveParents"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.AbusiveParents" 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.AbusiveParents" 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/AbusiveParents?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="AbusiveParents"/> <input type="hidden" id="article_id" value="11151" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/AbusiveParents</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"> Abusive Parents </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": "Abusive Parents", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/AbusiveParents" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Abusive Parents", "headline": "Abusive Parents", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/AbusiveParents", "image": "https://static.tvtropes.org/pmwiki/pub/images/pmabuse.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-03-09T00:00:00-08:00", "dateModified": "2025-02-09T21:26:30-08:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveParents" 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/AbusiveParents" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/AbusiveParents" 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/AbusiveParents" class="subpage-link " title="The ImageLinks page"> <span class="wrapper">ImageLinks</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/PlayingWith/AbusiveParents" class="subpage-link " title="The PlayingWith page"> <span class="wrapper">PlayingWith</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/AbusiveParents" 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/AbusiveParents?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/AbusiveParents?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/AbusiveParents?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/AbusiveParents?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/AbusiveParents?action=edit">DerivativeWork…</option> <option value="/pmwiki/pmwiki.php/FanWorks/AbusiveParents?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/AbusiveParents?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/AbusiveParents?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/AbusiveParents?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/AbusiveParents?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/AbusiveParents?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/AbusiveParents?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageSource/AbusiveParents?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/AbusiveParents?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/AbusiveParents?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/AbusiveParents?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/QuoteSource/AbusiveParents?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/AbusiveParents?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/AbusiveParents?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/AbusiveParents?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/AbusiveParents?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/AbusiveParents?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/AbusiveParents?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/AbusiveParents?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/AbusiveParents?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!-- Trope was declared Administrivia/NoRealLifeExamplesPlease via crowner by the Real Life Maintenance thread.--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=16842654770.22706000--> <!-- Old image moved to Western Animation subpage.--> <!-- Previous thread: https://tvtropes.org/pmwiki/posts.php?discussion=1306217395092398900--> <!-- Please do not change or remove without starting a new thread.--> <!--
--> <div class="quoteright" style="width:350px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' title='/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy' data-format='W1tXZXN0ZXJuQW5pbWF0aW9uL0ZhbWlseUd1eSBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvcG1hYnVzZS5wbmddXQ=='><div class="lazy_load_img_box" style="padding-top:90%"><img src='https://static.tvtropes.org/pmwiki/pub/images/pmabuse.png' class='embeddedimage' border='0' alt='Abusive Parents (trope)' width=350 height=315></div></a></div> <div class="acaptionright" style="width:350px;" >Telling her to shut up is actually one of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SarcasmMode' title='/pmwiki/pmwiki.php/Main/SarcasmMode' data-format='W1tTYXJjYXNtTW9kZSBuaWNlc3RdXQ=='>nicest</a> things Peter has done to Meg.</div> <!--
--> <!-- Caption selected per above thread. Please don't change or remove without approval from here:--> <!-- https://tvtropes.org/pmwiki/posts.php?discussion=1404492079030138900--> <!--
--> <!-- Page quote selected per discussion: https://tvtropes.org/pmwiki/posts.php?discussion=1327331003042025100&page=282#7032--> <!-- Please do not change or remove without consulting the thread.--> <!--
--> </p><p><div class='indent'><em>"If my son talked like that, I'd beat him to within an inch of his life, I'd whip him senseless with my belt, and hold his head in the toilet till he was begging for mercy! I still don't see why the judge cut off my visitation rights."</em> <div class='indent'>— <strong>Sosumi</strong>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/UltimateMuscle' title='/pmwiki/pmwiki.php/Anime/UltimateMuscle' data-format='QW5pbWUvVWx0aW1hdGVNdXNjbGU='>Ultimate Muscle</a></em> </div></div></p><p>Parents are supposed to be the protectors of children, but these parents are either so damaged themselves that they can't do the job, greedy or villainous to the point that they never had any interest in doing the job properly, or would rather use the child as a means to an end. Sometimes, they're just <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Sadist' title='/pmwiki/pmwiki.php/Main/Sadist' data-format='e3tzYWRpc3R9fWlj'>sadistic</a> assholes. </p><p>This includes parents who are emotionally, verbally, physically, or mentally abusive, or who neglectfully allow their children to be abused by others if they don't abuse the child themselves; <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentalIncest' title='/pmwiki/pmwiki.php/Main/ParentalIncest' data-format='W1tQYXJlbnRhbEluY2VzdCBzZXh1YWwgYWJ1c2VdXQ=='>sexual abuse</a> in particular is typically treated as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RapeIsASpecialKindOfEvil' title='/pmwiki/pmwiki.php/Main/RapeIsASpecialKindOfEvil' data-format='W1tSYXBlSXNBU3BlY2lhbEtpbmRPZkV2aWwgYSBzcGVjaWFsIGtpbmQgb2YgZXZpbF1d'>a special kind of evil</a>. Sometimes, the abuse at the hands of their parents becomes a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FreudianExcuse' title='/pmwiki/pmwiki.php/Main/FreudianExcuse' data-format='RnJldWRpYW5FeGN1c2U='>Freudian Excuse</a> for a villain. Other times, the character manages to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DefiedTrope' title='/pmwiki/pmwiki.php/Main/DefiedTrope' data-format='W1tEZWZpZWRUcm9wZSBub3QgZ3JvdyB1cCBicm9rZW4sIGJpdHRlciwgYW5kIGhhdGVmdWxdXQ=='>not grow up broken, bitter, and hateful</a>, and instead <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CharacterDevelopment' title='/pmwiki/pmwiki.php/Main/CharacterDevelopment' data-format='W1tDaGFyYWN0ZXJEZXZlbG9wbWVudCBhIGRpZmZlcmVudCBhbmQgYmV0dGVyIHBlcnNvbl1d'>a different and better person</a> than the upbringing would incline one to think; they may even pass down their newfound betterment <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakingTheCycleOfBadParenting' title='/pmwiki/pmwiki.php/Main/BreakingTheCycleOfBadParenting' data-format='W1tCcmVha2luZ1RoZUN5Y2xlT2ZCYWRQYXJlbnRpbmcgdG8gdGhlaXIgb3duIGNoaWxkcmVuXV0='>to their own children</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TroublingUnchildlikeBehavior' title='/pmwiki/pmwiki.php/Main/TroublingUnchildlikeBehavior' data-format='VHJvdWJsaW5nVW5jaGlsZGxpa2VCZWhhdmlvcg=='>Troubling Unchildlike Behavior</a> is often a tell-tale sign that things are not right at home. </p><p>Abusive Parents are commonplace in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FairyTale' title='/pmwiki/pmwiki.php/Main/FairyTale' data-format='e3tmYWlyeSB0YWxlfX1z'>fairy tales</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='TXl0aC9DbGFzc2ljYWxNeXRob2xvZ3k='>Classical Mythology</a> which makes this trope <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanFeudalism' title='/pmwiki/pmwiki.php/Main/OlderThanFeudalism' data-format='T2xkZXJUaGFuRmV1ZGFsaXNt'>Older Than Feudalism</a>. Note that <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TheBrothersGrimm' title='/pmwiki/pmwiki.php/Creator/TheBrothersGrimm' data-format='Q3JlYXRvci9UaGVCcm90aGVyc0dyaW1t'>The Brothers Grimm</a>, when they collected European fairy tales, were uncomfortable with the idea of Abusive Parents and so frequently changed the Abusive Parents in the traditional stories into abusive <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WickedStepmother' title='/pmwiki/pmwiki.php/Main/WickedStepmother' data-format='W1tXaWNrZWRTdGVwbW90aGVyIHN0ZXAtcGFyZW50c11d'>step-parents</a>. </p><p>Sometimes, a parent will go as far as to kill the child in question, in which case this is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffingTheOffspring' title='/pmwiki/pmwiki.php/Main/OffingTheOffspring' data-format='T2ZmaW5nVGhlT2Zmc3ByaW5n'>Offing the Offspring</a>. In other cases, the parent's abuse occasionally drives the offspring to <em>snap</em>, commit <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Revenge' title='/pmwiki/pmwiki.php/Main/Revenge' data-format='e3tSZXZlbmdlfX0='>Revenge</a> and finally kill <em>them</em>, thus becoming a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfMadeOrphan' title='/pmwiki/pmwiki.php/Main/SelfMadeOrphan' data-format='U2VsZk1hZGVPcnBoYW4='>Self-Made Orphan</a>. Although other times, the parents end up as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KarmaHoudini' title='/pmwiki/pmwiki.php/Main/KarmaHoudini' data-format='S2FybWFIb3VkaW5p'>Karma Houdini</a>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CallingTheOldManOut' title='/pmwiki/pmwiki.php/Main/CallingTheOldManOut' data-format='Q2FsbGluZ1RoZU9sZE1hbk91dA=='>Calling the Old Man Out</a> occurs when a fed-up child retaliates with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheReasonYouSuckSpeech' title='/pmwiki/pmwiki.php/Main/TheReasonYouSuckSpeech' data-format='VGhlUmVhc29uWW91U3Vja1NwZWVjaA=='>"The Reason You Suck" Speech</a>. If the child <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AdoptingTheAbused' title='/pmwiki/pmwiki.php/Main/AdoptingTheAbused' data-format='W1tBZG9wdGluZ1RoZUFidXNlZCBnZXRzIG91dCBvZiB0aGUgYnJva2VuIGZhbWlseSBhbmQgZm9ybXMgaGVhbHRoeSBmcmllbmRzaGlwc11d'>gets out of the broken family and forms healthy friendships</a>, but reacts badly when their abusive parents show up again, well, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FriendsAreChosenFamilyArent' title='/pmwiki/pmwiki.php/Main/FriendsAreChosenFamilyArent' data-format='RnJpZW5kc0FyZUNob3NlbkZhbWlseUFyZW50'>Friends Are Chosen, Family Aren't</a>. Their new friends/family will likely be horrified/infuriated to learn what the parents did, as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildAbuseIsASpecialKindOfEvil' title='/pmwiki/pmwiki.php/Main/ChildAbuseIsASpecialKindOfEvil' data-format='W1tDaGlsZEFidXNlSXNBU3BlY2lhbEtpbmRPZkV2aWwgc3VjaCBhY3Rpb25zIGFyZSBldmlsXV0='>such actions are evil</a>. </p><p>Bear in mind that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SlidingScaleOfParentShamingInFiction' title='/pmwiki/pmwiki.php/Main/SlidingScaleOfParentShamingInFiction' data-format='W1tTbGlkaW5nU2NhbGVPZlBhcmVudFNoYW1pbmdJbkZpY3Rpb24gbm90IGV2ZXJ5b25lIGFncmVlcyBvbiB0aGUgbGluZSBiZXR3ZWVuIGFjdHVhbCBhYnVzZSBhbmQgbWVyZWx5IGhlYXZ5LWhhbmRlZCBwYXJlbnRpbmddXQ=='>not everyone agrees on the line between actual abuse and merely heavy-handed parenting</a> (or even <em>normal</em> parenting). Is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MovingTheGoalposts' title='/pmwiki/pmwiki.php/Main/MovingTheGoalposts' data-format='TW92aW5nVGhlR29hbHBvc3Rz'>Moving the Goalposts</a> merely inspiring the child to achieve more, or the most insidious form of abuse to instill mistrust and paranoia in the children? Some include <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DontMakeMeTakeMyBeltOff' title='/pmwiki/pmwiki.php/Main/DontMakeMeTakeMyBeltOff' data-format='W1tEb250TWFrZU1lVGFrZU15QmVsdE9mZiBzcGFua2luZ11d'>spanking</a> as abuse; others think it's appropriate given certain guidelines. Some believe it's okay to make a kid go without a meal (they won't starve that easily); others disagree. Making a kid miss a friend's birthday sleepover — is that <em>emotional</em> abuse? Raising a kid without exposure to TV? Telling your daughter she's getting fat? A little name-calling? There's a line here somewhere, but not everyone agrees on where it is. </p><p>If a parent has just dumped the child, for whatever reason, that's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentalAbandonment' title='/pmwiki/pmwiki.php/Main/ParentalAbandonment' data-format='UGFyZW50YWxBYmFuZG9ubWVudA=='>Parental Abandonment</a>; if they aren't paying attention, that's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentalNeglect' title='/pmwiki/pmwiki.php/Main/ParentalNeglect' data-format='UGFyZW50YWxOZWdsZWN0'>Parental Neglect</a>. If the parents refuse to discipline their kids, they are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PushoverParents' title='/pmwiki/pmwiki.php/Main/PushoverParents' data-format='UHVzaG92ZXJQYXJlbnRz'>Pushover Parents</a>. Contrast <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MamaBear' title='/pmwiki/pmwiki.php/Main/MamaBear' data-format='TWFtYUJlYXI='>Mama Bear</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PapaWolf' title='/pmwiki/pmwiki.php/Main/PapaWolf' data-format='UGFwYVdvbGY='>Papa Wolf</a> (where <em>others</em> abuse the children and the parents abuse the abusers), the more extreme variant of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KnightTemplarParent' title='/pmwiki/pmwiki.php/Main/KnightTemplarParent' data-format='S25pZ2h0VGVtcGxhclBhcmVudA=='>Knight Templar Parent</a> (where the abusive parent is violently overprotective) and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbusiveOffspring' title='/pmwiki/pmwiki.php/Main/AbusiveOffspring' data-format='QWJ1c2l2ZU9mZnNwcmluZw=='>Abusive Offspring</a> (where the children are abusive to their parents). <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbusivePrecursors' title='/pmwiki/pmwiki.php/Main/AbusivePrecursors' data-format='QWJ1c2l2ZVByZWN1cnNvcnM='>Abusive Precursors</a> can be considered this, on a metaphorical level. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackComedy' title='/pmwiki/pmwiki.php/Main/BlackComedy' data-format='QmxhY2tDb21lZHk='>Black Comedy</a> is often connected in the comedic aspect of it, and a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigScrewedUpFamily' title='/pmwiki/pmwiki.php/Main/BigScrewedUpFamily' data-format='QmlnU2NyZXdlZFVwRmFtaWx5'>Big, Screwed-Up Family</a> may be involved if it is adult comedy. In keeping with the above note, some may call the show on it and say <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DudeNotFunny' title='/pmwiki/pmwiki.php/Main/DudeNotFunny' data-format='RHVkZU5vdEZ1bm55'>Dude, Not Funny!</a>. Abusive-type parents are mostly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NotoriousParent' title='/pmwiki/pmwiki.php/Main/NotoriousParent' data-format='W1tOb3RvcmlvdXNQYXJlbnQgd2FudGVkIGNyaW1pbmFscyBiZWluZyBjaGFzZWQgYnkgdGhlIGxhd11d'>wanted criminals being chased by the law</a>. </p><p>While they do not have to be the child's actual, technical parents to be part of this trope, they must be closely related and live together, like a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WickedStepmother' title='/pmwiki/pmwiki.php/Main/WickedStepmother' data-format='V2lja2VkU3RlcG1vdGhlcg=='>Wicked Stepmother</a> or an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilUncle' title='/pmwiki/pmwiki.php/Main/EvilUncle' data-format='RXZpbFVuY2xl'>Evil Uncle</a> taking care of the Parentally Deprived. After all, it's <em>much</em> more disgusting that somebody related to the child could bring themselves to hurt them, rather than a mere foster family. </p><p>As in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a>, this trope can make a child <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HatesTheirParent' title='/pmwiki/pmwiki.php/Main/HatesTheirParent' data-format='W1tIYXRlc1RoZWlyUGFyZW50IEhhdGUgVGhlaXIgUGFyZW50XV0='>Hate Their Parent</a>. </p><p>The psychological damage of abusive parenting can lead to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConditionedToBeWeak' title='/pmwiki/pmwiki.php/Main/ConditionedToBeWeak' data-format='Q29uZGl0aW9uZWRUb0JlV2Vhaw=='>Conditioned to Be Weak</a>, where the abused child is too scared of their abuser to retaliate so they just follow orders to avoid their wrath. </p><p>Subtropes include: <!—index—> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArchnemesisDad' title='/pmwiki/pmwiki.php/Main/ArchnemesisDad' data-format='QXJjaG5lbWVzaXNEYWQ='>Archnemesis Dad</a>: An evil father. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BreakingTheCycleOfBadParenting' title='/pmwiki/pmwiki.php/Main/BreakingTheCycleOfBadParenting' data-format='QnJlYWtpbmdUaGVDeWNsZU9mQmFkUGFyZW50aW5n'>Breaking the Cycle of Bad Parenting</a>: The abused child in question grows up and starts their own family, vowing not to make the same mistakes their parents did with them and will try to treat their own children better. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChildAbuseIsASpecialKindOfEvil' title='/pmwiki/pmwiki.php/Main/ChildAbuseIsASpecialKindOfEvil' data-format='Q2hpbGRBYnVzZUlzQVNwZWNpYWxLaW5kT2ZFdmls'>Child Abuse Is a Special Kind of Evil</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DelusionsOfParentalLove' title='/pmwiki/pmwiki.php/Main/DelusionsOfParentalLove' data-format='RGVsdXNpb25zT2ZQYXJlbnRhbExvdmU='>Delusions of Parental Love</a>: The abused child insists that their parents are good people despite their mistreatment. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilMatriarch' title='/pmwiki/pmwiki.php/Main/EvilMatriarch' data-format='RXZpbE1hdHJpYXJjaA=='>Evil Matriarch</a>: An evil mother. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GruesomeGrandparent' title='/pmwiki/pmwiki.php/Main/GruesomeGrandparent' data-format='R3J1ZXNvbWVHcmFuZHBhcmVudA=='>Gruesome Grandparent</a>: A grandparent is abusive. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HilariouslyAbusiveChildhood' title='/pmwiki/pmwiki.php/Main/HilariouslyAbusiveChildhood' data-format='SGlsYXJpb3VzbHlBYnVzaXZlQ2hpbGRob29k'>Hilariously Abusive Childhood</a>: When this is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExaggeratedTrope' title='/pmwiki/pmwiki.php/Main/ExaggeratedTrope' data-format='W1tFeGFnZ2VyYXRlZFRyb3BlIGNyYW5rZWQgdXAgdG8gYWJzdXJkIGxldmVsc11d'>cranked up to absurd levels</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs' data-format='UGxheWVkRm9yTGF1Z2hz'>Played for Laughs</a>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LovingParentCruelParent' title='/pmwiki/pmwiki.php/Main/LovingParentCruelParent' data-format='TG92aW5nUGFyZW50Q3J1ZWxQYXJlbnQ='>Loving Parent, Cruel Parent</a>: One parent is abusive and the other isn't. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffingTheOffspring' title='/pmwiki/pmwiki.php/Main/OffingTheOffspring' data-format='T2ZmaW5nVGhlT2Zmc3ByaW5n'>Offing the Offspring</a>: A parent <em>kills</em> their child. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentalIncest' title='/pmwiki/pmwiki.php/Main/ParentalIncest' data-format='UGFyZW50YWxJbmNlc3Q='>Parental Incest</a>: A sexually abusive parent. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParentalNeglect' title='/pmwiki/pmwiki.php/Main/ParentalNeglect' data-format='UGFyZW50YWxOZWdsZWN0'>Parental Neglect</a>: Cruel apathy to your children. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PimpingTheOffspring' title='/pmwiki/pmwiki.php/Main/PimpingTheOffspring' data-format='UGltcGluZ1RoZU9mZnNwcmluZw=='>Pimping the Offspring</a>: A parent prostitutes their own (usually underage) child for profit. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UselessBystanderParent' title='/pmwiki/pmwiki.php/Main/UselessBystanderParent' data-format='VXNlbGVzc0J5c3RhbmRlclBhcmVudA=='>Useless Bystander Parent</a>: The parent allows someone else to abuse their kid. </li></ul><!—/index—> </p><p>The polar opposite, of course, is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GoodParents' title='/pmwiki/pmwiki.php/Main/GoodParents' data-format='R29vZFBhcmVudHM='>Good Parents</a>. Also not to be confused with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TeasingParent' title='/pmwiki/pmwiki.php/Main/TeasingParent' data-format='VGVhc2luZ1BhcmVudA=='>Teasing Parent</a>, who plays harmless jokes on their kids without intending to hurt them. </p><p>Unfortunately, Abusive Parents are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthInTelevision' title='/pmwiki/pmwiki.php/Main/TruthInTelevision' data-format='VHJ1dGhJblRlbGV2aXNpb24='>Truth in Television</a> and a very sensitive topic for many, so <a class='twikilink' href='/pmwiki/pmwiki.php/Administrivia/NoRealLifeExamplesPlease' title='/pmwiki/pmwiki.php/Administrivia/NoRealLifeExamplesPlease' data-format='QWRtaW5pc3RyaXZpYS9Ob1JlYWxMaWZlRXhhbXBsZXNQbGVhc2U='>No Real Life Examples, Please!</a> It is sufficient to say <a class='urllink' href='https://en.wikipedia.org/wiki/Child_abuse'>they do exist<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and that they are also too common. </p><p><strong>Note:</strong> Please do not use this trope for complaining about parents you don't like. <hr data-format='——' /> <h2>Example subpages:</h2> </p><p><!—index—> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/AnimeAndManga' title='/pmwiki/pmwiki.php/AbusiveParents/AnimeAndManga' data-format='QWJ1c2l2ZVBhcmVudHMvQW5pbWVBbmRNYW5nYQ=='>Anime & Manga</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/ComicBooks' title='/pmwiki/pmwiki.php/AbusiveParents/ComicBooks' data-format='QWJ1c2l2ZVBhcmVudHMvQ29taWNCb29rcw=='>Comic Books</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/FanWorks' title='/pmwiki/pmwiki.php/AbusiveParents/FanWorks' data-format='QWJ1c2l2ZVBhcmVudHMvRmFuV29ya3M='>Fan Works</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/AnimatedFilms' title='/pmwiki/pmwiki.php/AbusiveParents/AnimatedFilms' data-format='W1tBYnVzaXZlUGFyZW50cy9BbmltYXRlZEZpbG1zIEZpbG1zIOKAlCBBbmltYXRpb25dXQ=='>Films — Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/LiveActionFilms' title='/pmwiki/pmwiki.php/AbusiveParents/LiveActionFilms' data-format='W1tBYnVzaXZlUGFyZW50cy9MaXZlQWN0aW9uRmlsbXMgRmlsbXMg4oCUIExpdmUtQWN0aW9uXV0='>Films — Live-Action</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/Literature' title='/pmwiki/pmwiki.php/AbusiveParents/Literature' data-format='QWJ1c2l2ZVBhcmVudHMve3tMaXRlcmF0dXJlfX0='>Literature</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/LiveActionTV' title='/pmwiki/pmwiki.php/AbusiveParents/LiveActionTV' data-format='QWJ1c2l2ZVBhcmVudHMvTGl2ZUFjdGlvblRW'>Live-Action TV</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/Music' title='/pmwiki/pmwiki.php/AbusiveParents/Music' data-format='QWJ1c2l2ZVBhcmVudHMve3tNdXNpY319'>Music</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/Theatre' title='/pmwiki/pmwiki.php/AbusiveParents/Theatre' data-format='QWJ1c2l2ZVBhcmVudHMve3tUaGVhdHJlfX0='>Theatre</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/VideoGames' title='/pmwiki/pmwiki.php/AbusiveParents/VideoGames' data-format='QWJ1c2l2ZVBhcmVudHMvVmlkZW9HYW1lcw=='>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/VisualNovels' title='/pmwiki/pmwiki.php/AbusiveParents/VisualNovels' data-format='QWJ1c2l2ZVBhcmVudHMvVmlzdWFsTm92ZWxz'>Visual Novels</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/WebAnimation' title='/pmwiki/pmwiki.php/AbusiveParents/WebAnimation' data-format='QWJ1c2l2ZVBhcmVudHMvV2ViQW5pbWF0aW9u'>Web Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/Webcomics' title='/pmwiki/pmwiki.php/AbusiveParents/Webcomics' data-format='QWJ1c2l2ZVBhcmVudHMve3tXZWJjb21pY3N9fQ=='>Webcomics</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/WebVideos' title='/pmwiki/pmwiki.php/AbusiveParents/WebVideos' data-format='QWJ1c2l2ZVBhcmVudHMvV2ViVmlkZW9z'>Web Videos</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/AbusiveParents/WesternAnimation' title='/pmwiki/pmwiki.php/AbusiveParents/WesternAnimation' data-format='QWJ1c2l2ZVBhcmVudHMvV2VzdGVybkFuaW1hdGlvbg=='>Western Animation</a> </li></ul><!—/index—> </p><p><h2>Other examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();"> open/close all folders </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');"> Advertising </div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> There's a series of Jell-o pudding commercials that feature parents punishing their children for stealing it for themselves in ways that can only be described as this. One of them has a mother telling her daughter a story which is a not-so-disguised threat that she'll take her daughter's favorite things (a bike, her teddy bear) and throw them away until the girl gives her the empty containers. Another is told in nursery-rhyme style, featuring a little girl who is sent to work at a coal mine for stealing a pudding. The latter is ambiguous enough so one doesn't know if the child is merely being threatened or if she's already been sent away. There was another ad where two parents scare their children lifeless over the pudding, giving a campfire-story threat involving the "Chocobeast." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Advertising/Skittles' title='/pmwiki/pmwiki.php/Advertising/Skittles' data-format='QWR2ZXJ0aXNpbmcve3tTa2l0dGxlc319'>Skittles</a></em>: The mother in "Harvest the Rainbow" refuses to call a doctor for her son, who has a skittles tree growing out of his stomach, because he's her orchard. Similarly, she considers his dream of going to college silly. From the state her son is in, he's not had a bath or change of clothes in a long time and may not be let into the house anymore. As a bonus, the mother is played by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BethGrant' title='/pmwiki/pmwiki.php/Creator/BethGrant' data-format='Q3JlYXRvci9CZXRoR3JhbnQ='>Beth Grant</a>, who often gets cast as an abusive monster. </li><li> All of NSPCC's ads. Especially 1999’s “Don’t Look”, which features a baby being murdered offscreen. </li><li> An Australian charity ran a campaign trying to challenge public perception that victims of child abuse should somehow forget or "get over" the trauma as adults. It ran a PSA with a father giving a speech at his daughter's wedding about how he sexually abused her as a child, and everyone (including the bride and groom) laughing along. A radio campaign took a similar format with an athlete giving an acceptance speech thanking his abusive father for making him learn to run fast, and a woman happily reminiscing at her elderly mother's birthday party about how the mother neglected and emotionally abused her daughter. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=OpReQprVjag'>Another NSPCC PSA<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> showed a father abusing an animated version of his son, complete with a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WildTake' title='/pmwiki/pmwiki.php/Main/WildTake' data-format='V2lsZFRha2U='>Wild Take</a> or two and over-the-top reactions and pratfalls... until the end, when he throws the boy down the stairs. The real kicker is the message at the end: Real children don't bounce back. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');"> Fairy Tales </div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheFoolOfTheWorldAndTheFlyingShip' title='/pmwiki/pmwiki.php/Literature/TheFoolOfTheWorldAndTheFlyingShip' data-format='TGl0ZXJhdHVyZS9UaGVGb29sT2ZUaGVXb3JsZEFuZFRoZUZseWluZ1NoaXA='>The Fool of the World and the Flying Ship</a>": The fool's parents are verbally abusive to the fool, not being supportive of him when he wanted to go out and build a flying ship. They also only gave him scraps of food for his journey instead of the lovely meal they gave to his two brothers. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Morozko' title='/pmwiki/pmwiki.php/Literature/Morozko' data-format='TGl0ZXJhdHVyZS97e01vcm96a299fQ=='>Morozko</a>": The old woman constantly berates her stepdaughter, to the point that the poor child cries every night, and in the beginning of the tale the old woman attempts to get her killed. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MaidMaleen' title='/pmwiki/pmwiki.php/Literature/MaidMaleen' data-format='TGl0ZXJhdHVyZS9NYWlkTWFsZWVu'>Maid Maleen</a>": The titular princess refuses to go through with an arranged marriage, so her father tries to "break her spirit" by locking her away in a tower for seven years. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HansTheHedgehog' title='/pmwiki/pmwiki.php/Literature/HansTheHedgehog' data-format='TGl0ZXJhdHVyZS9IYW5zVGhlSGVkZ2Vob2c='>Hans the Hedgehog</a>": Hans' father regrets having wished for his half-urchin son to be born and literally wishes him dead. He is all too happy when Hans leaves home on his own initiative, and he does not even care when Hans returns with a big herd of pigs to feed the village with. He only starts caring when Hans returns again, now fully human and married to a princess. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MotherHolle' title='/pmwiki/pmwiki.php/Literature/MotherHolle' data-format='TGl0ZXJhdHVyZS9Nb3RoZXJIb2xsZQ=='>Mother Holle</a>": The main character's stepmother forces her to work until her hands are bleeding. In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/Erstwhile' title='/pmwiki/pmwiki.php/Webcomic/Erstwhile' data-format='V2ViY29taWMve3tFcnN0d2hpbGV9fQ=='>Erstwhile</a></em> version, it is seen that the woman dotes on her biological daughter as long as she obeys orders and does not talk back. </li><li> "<a class='twikilink' href='/pmwiki/pmwiki.php/Literature/PrinceIvanTheWitchBabyAndTheLittleSisterOfTheSun' title='/pmwiki/pmwiki.php/Literature/PrinceIvanTheWitchBabyAndTheLittleSisterOfTheSun' data-format='TGl0ZXJhdHVyZS9QcmluY2VJdmFuVGhlV2l0Y2hCYWJ5QW5kVGhlTGl0dGxlU2lzdGVyT2ZUaGVTdW4='>Prince Ivan, the Witch Baby, and the Little Sister of the Sun</a>": In Arthur Ransome's version, Prince Ivan's parents cared little for his mute son, whose "dumbness" they were constantly moaning about, so it should not come as a surprise that Ivan "spent all his time in the stables, listening to the tales of an old groom". </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');"> Jokes </div><div id="folder2" class="folder" isfolder="true" style="display:block;"> Real child abuse isn't funny, period. However there is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlackHumor' title='/pmwiki/pmwiki.php/Main/BlackHumor' data-format='QmxhY2tIdW1vcg=='>Black Humor</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ComedicSociopathy' title='/pmwiki/pmwiki.php/Main/ComedicSociopathy' data-format='Q29tZWRpY1NvY2lvcGF0aHk='>Comedic Sociopathy</a>. With that being said: <ul ><li> There's a whole line of short "Mommy Mommy" jokes that are popular: <div class='indent'>"Mommy-mommy, why do I keep walking in circles?"<br data-format="\\" />"Shut up dear, or I'll nail your other foot to the floor."<br data-format="\\" /><br data-format="\\" />"Mommy-mommy, why is Daddy running back and forth across the field?"<br data-format="\\" />"Shut up and reload, dear."<br data-format="\\" /><br data-format="\\" />"Mommy-mommy, why can't Daddy have a proper burial?<br data-format="\\" />"Shut up and keep flushing, dear."<br data-format="\\" /><br data-format="\\" />"Mommy-mommy, Grandma has a huge mole on her leg!"<br data-format="\\" />"Shut up and eat around it, dear." </div></p><p></li><li> A mother is making jam in the kitchen, and her legless son plays in the other room. He calls for her to bring him some jam, and she answers that he can easily walk to the kitchen. "But I have no legs..." "No legs, no jam!" <ul ><li> This joke is also told in the "No arms, no cartoons" variety. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');"> Myths & Religion </div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/ClassicalMythology' title='/pmwiki/pmwiki.php/Myth/ClassicalMythology' data-format='TXl0aC9DbGFzc2ljYWxNeXRob2xvZ3k='>Classical Mythology</a> is full of child abuse. <ul ><li> Ouranos and Cronos both made a practice of imprisoning their children at birth: Ouranos threw them in Tartarus, while Cronos <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SwallowedWhole' title='/pmwiki/pmwiki.php/Main/SwallowedWhole' data-format='W1tTd2FsbG93ZWRXaG9sZSBzd2FsbG93ZWQgdGhlbSB3aG9sZV1d'>swallowed them whole</a>. </li><li> Greek mortals abuse their children just as often in myth. For example, Echetus stabbed out his daughter's eyes, chained her in a cellar, and made her grind bronze chunks to dust. Acrisius locked his daughter Danae in solitary confinement to prevent her from having children, and then threw her in a box and dumped her in the sea when she got pregnant from Zeus. Mythical women suffer various physical punishments and sometimes death for getting pregnant out of wedlock, even when they were raped. Beating kids barely even gets mentioned in Classical Greece, except when someone like comedian <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Aristophanes' title='/pmwiki/pmwiki.php/Creator/Aristophanes' data-format='Q3JlYXRvci97e0FyaXN0b3BoYW5lc319'>Aristophanes</a> mocks moral relativists by depicting them as opposed to beating them. </li><li> When Hephaestus was born, his mother Hera tossed him off a cliff because she <em>thought he was too ugly.</em> (He survived.) </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IronWoobie' title='/pmwiki/pmwiki.php/Main/IronWoobie' data-format='W1tJcm9uV29vYmllIEt1bGxlcnZvXV0='>Kullervo</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheKalevala' title='/pmwiki/pmwiki.php/Literature/TheKalevala' data-format='TGl0ZXJhdHVyZS9UaGVLYWxldmFsYQ=='>The Kalevala</a></em> is abused so badly he becomes an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OmnicidalManiac' title='/pmwiki/pmwiki.php/Main/OmnicidalManiac' data-format='T21uaWNpZGFsTWFuaWFj'>Omnicidal Maniac</a> and kills himself. At the end of the canto, Väinämöinen especially warns of abusing children, stating that "a boy abused will never have the mind of a man". </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');"> Podcasts & Radio </div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/CompelledDual' title='/pmwiki/pmwiki.php/Podcast/CompelledDual' data-format='UG9kY2FzdC9Db21wZWxsZWREdWFs'>Compelled Dual</a></em>: Leoril and Phirora's father, Morlin, regularly used enchantment magic on Leoril before he left, and deadnames him behind closed doors. He also <span class="spoiler" title="you can set spoilers visible by default on your profile" > casts Dominate Person on Phirora</span> in episode 17. It's little wonder that Leoril's ultimate goal is to see the man dead. </li><li> 3 of the 4 main dads in season 1 of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/DungeonsAndDaddies' title='/pmwiki/pmwiki.php/Podcast/DungeonsAndDaddies' data-format='UG9kY2FzdC9EdW5nZW9uc0FuZERhZGRpZXM='>Dungeons & Daddies</a></em> had very bad relationships with their fathers that contained varying levels of abuse. <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NamedAfterSomebodyFamous' title='/pmwiki/pmwiki.php/Main/NamedAfterSomebodyFamous' data-format='W1tOYW1lZEFmdGVyU29tZWJvZHlGYW1vdXMgR2xlbm4gQ2xvc2UmIzAzOTtzXV0='>Glenn Close's</a> dad Bill, while the least objectively evil of the Omega Daddies, still really sucks. He was neglectful throughout Glenn's childhood and did very little to prevent Glenn from being cosmically written out of Nick's life and sent to maximum security prison. While he does help a bit in the final battle and try to make half-hearted amends with his son, Glenn still wishes he could've killed him. </li><li> Barry (or Bear Ri'Oak) is emotionally abusive to both his wife Autumn and son Henry. He never cared for Henry beyond his magic, is extremely emotionally distant, and forcibly kept Autumn and Henry away from each other for years. </li><li> Ron Stampler's dad Willy was the worst of the three villain dads. He was neglectful, emotionally and physically abusive, and altogether just a terrible person. The emotional gut-punch of an episode that is Episode 61: <em>Death of a Salesman</em>, goes into the details of Ron's childhood growing up with Willy as a dad. When Ron was very young, Willy would leave him with his incredibly ill mother who wasn't physically well enough to take care of him, forcing him to fend for himself and often leaving him in physical danger. He nearly let Ron drown as a child as a way to "toughen him up" and likely would have killed his dog Rogue (the only real friend that Ron had) if Ron and his mom hadn't snuck away to bring him to a no-kill shelter (it's also heavily implied that he was abusive towards Ron's mom as well, and outright stated that she only stayed with him because she knew that she couldn't care for Ron on her own because of her debilitating illness). <span class="spoiler" title="you can set spoilers visible by default on your profile" > The abuse culminates in Willy attempting to murder a teenage Ron, holding his head underwater after Ron accidentally hurt his ear with a fishing lure. Ron is able to escape his father's grasp, which unintentionally leads to Willy slipping and hitting his head on a rock before falling into the water himself. Ron silently watches his dad, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MurderByInaction' title='/pmwiki/pmwiki.php/Main/MurderByInaction' data-format='W1tNdXJkZXJCeUluYWN0aW9uIGNvbnRlbXBsYXRpbmcgd2hldGhlciBoZSBzaG91bGQganVzdCBsZXQgdGhpcyBhYnVzaXZlIG1vbnN0ZXIgZGllLl1d'>contemplating whether he should just let this abusive monster die.</a> By the time he swims out to try and save him, it's too late.</span> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/EdeValley' title='/pmwiki/pmwiki.php/Podcast/EdeValley' data-format='UG9kY2FzdC9FZGVWYWxsZXk='>Ede Valley</a></em>: Tommy's father is verbally and physically abusive, exploding at him for playing with Tarot cards, burning him with cigarettes, and <span class="spoiler" title="you can set spoilers visible by default on your profile" >nearly choking him to death with a belt.</span> </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/InStrangeWoods' title='/pmwiki/pmwiki.php/Podcast/InStrangeWoods' data-format='UG9kY2FzdC9JblN0cmFuZ2VXb29kcw=='>In Strange Woods</a></em>, Howl's father was emotionally and physically abusive to him, and he grew up in a house without love. </li><li> Main character Julian in podcast <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/TheOrbitingHumanCircusOfTheAir' title='/pmwiki/pmwiki.php/Podcast/TheOrbitingHumanCircusOfTheAir' data-format='UG9kY2FzdC9UaGVPcmJpdGluZ0h1bWFuQ2lyY3VzT2ZUaGVBaXI='>The Orbiting Human Circus (of the Air)</a></em> was beaten by his stepfather, and one time was hit so hard on the side of the head it's possible he got brain damage. <!--* ''Podcast/RandomAssault'': Mitch Rozetar was raised by Roman Catholics. Enough said.--> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');"> Professional Wrestling </div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> Before awareness campaigns of the 1980s, a child "physical abuse"-type promo <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HilariouslyAbusiveChildhood' title='/pmwiki/pmwiki.php/Main/HilariouslyAbusiveChildhood' data-format='W1tIaWxhcmlvdXNseUFidXNpdmVDaGlsZGhvb2Qgd2FzIG9mdGVuIHBsYXllZCBmb3IgbGF1Z2hzXV0='>was often played for laughs</a>. More common with regional promotions that had their own syndicated TV programs, a heel wrestler or tag team would seriously and in a normal but concerned tone of voice deliver a promo recounting a supposed meeting with a sad-eyed boy or girl, who is crying because (s)he can no longer take his/her father's physical abuse, the wrestler then asking the child if he'd go live with his/her mother to which the boy claims she beats him/her also, then asking who he'd like to live with, to which the kid says, "I wanna go live with (whatever face wrestler/tag team said heels are currently feuding)... because he/they don't beat nobody!" ...with the heel wrestler's demeanor suddenly turning from somber to mocking as he delivers the punch line. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/VinceMcMahon' title='/pmwiki/pmwiki.php/Wrestling/VinceMcMahon' data-format='W1tXcmVzdGxpbmcvVmluY2VNY01haG9uIFZpbmNlIDxzcGFuIGNsYXNzPSdlc2Mtc2VxJyB0aXRsZT0nbm9uLXdpa2l3b3JkJz5NY01haG9uPC9zcGFuPl1d'>Vince <span class='esc-seq' title='non-wikiword'>McMahon</span></a> often acted this way toward his son <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/ShaneMcMahon' title='/pmwiki/pmwiki.php/Wrestling/ShaneMcMahon' data-format='V3Jlc3RsaW5nL1NoYW5lTWNNYWhvbg=='>Shane McMahon</a>, daughter <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/StephanieMcMahon' title='/pmwiki/pmwiki.php/Wrestling/StephanieMcMahon' data-format='W1tXcmVzdGxpbmcvU3RlcGhhbmllTWNNYWhvbiBTdGVwaGFuaWUgPHNwYW4gY2xhc3M9J2VzYy1zZXEnIHRpdGxlPSdub24td2lraXdvcmQnPk1jTWFob248L3NwYW4+XV0='>Stephanie <span class='esc-seq' title='non-wikiword'>McMahon</span></a>, and his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Kayfabe' title='/pmwiki/pmwiki.php/Main/Kayfabe' data-format='W1t7e0theWZhYmV9fSBvdXQtb2Ytd2VkbG9jayAic29uIl1d'>out-of-wedlock "son"</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Hornswoggle' title='/pmwiki/pmwiki.php/Wrestling/Hornswoggle' data-format='V3Jlc3RsaW5nL3t7SG9ybnN3b2dnbGV9fQ=='>Hornswoggle</a> in angles. <ul ><li> When Shane returned to RAW on February 22, 2016, people at the stadium heard something <a class='urllink' href='https://youtu.be/gLir-eIPOfs'>that was censored from the TV broadcast.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <div class='indent'><strong>Vincent</strong>: <em>(Into the mic)</em> Good, because I have one last opportunity- <em>(further away, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IsThisThingStillOn' title='/pmwiki/pmwiki.php/Main/IsThisThingStillOn' data-format='W1tJc1RoaXNUaGluZ1N0aWxsT24gYnV0IHN0aWxsIGF1ZGlibGUgdmlhIG1pY11d'>but still audible via mic</a>)</em> to give you a fucking beating. </div></li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Raven' title='/pmwiki/pmwiki.php/Wrestling/Raven' data-format='V3Jlc3RsaW5nL3t7UmF2ZW59fQ=='>Raven</a> claimed that both of his parents beat the crap out of him. <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/CMPunk' title='/pmwiki/pmwiki.php/Wrestling/CMPunk' data-format='V3Jlc3RsaW5nL0NNUHVuaw=='>CM Punk</a> also said he had issues with his dad, and that he was going to beat Raven because he saw his father in Raven. Some cycle there, huh? </li><li> Toward the end of 2005, <em>Raw</em> wrestler <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/TheWorldsGreatestTagTeam' title='/pmwiki/pmwiki.php/Wrestling/TheWorldsGreatestTagTeam' data-format='W1tXcmVzdGxpbmcvVGhlV29ybGRzR3JlYXRlc3RUYWdUZWFtIFNoZWx0b24gQmVuamFtaW5dXQ=='>Shelton Benjamin</a> began losing most of his matches. It wasn't long before his overbearing "Momma" (actually actress Thea <span class='esc-seq' title='non-wikiword'>Vidale</span> in "granny" glasses and a muumuu) showed up on television to reprimand him, threatening to beat him (just as she supposedly did when he was a boy) if he didn't start winning matches. Benjamin began cheating to win or allowing Momma Benjamin to cheat for him, thus turning heel. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/CheerleaderMelissa' title='/pmwiki/pmwiki.php/Wrestling/CheerleaderMelissa' data-format='V3Jlc3RsaW5nL0NoZWVybGVhZGVyTWVsaXNzYQ=='>Cheerleader Melissa</a> would joke about how her rival, "Sweet" Saraya, would treat her kids and declared she was going to beat <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/Paige' title='/pmwiki/pmwiki.php/Wrestling/Paige' data-format='W1tXcmVzdGxpbmcve3tQYWlnZX19IEJyaXRhbmkgS2lnaHRdXQ=='>Britani Kight</a> in her mother's steed when they met in <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/SHIMMER' title='/pmwiki/pmwiki.php/Wrestling/SHIMMER' data-format='V3Jlc3RsaW5nL3t7U0hJTU1FUn19'>SHIMMER</a>. </li><li> During his early hype vignettes, <a class='twikilink' href='/pmwiki/pmwiki.php/Wrestling/BrayWyatt' title='/pmwiki/pmwiki.php/Wrestling/BrayWyatt' data-format='V3Jlc3RsaW5nL0JyYXlXeWF0dA=='>Bray Wyatt</a> said his daddy was a mean man who made him work on his shrimping boat instead of going to school. Bray <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KillItWithFire' title='/pmwiki/pmwiki.php/Main/KillItWithFire' data-format='W1tLaWxsSXRXaXRoRmlyZSBzZXQgZmlyZV1d'>set fire</a> to his dad's boat - and implied that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfMadeOrphan' title='/pmwiki/pmwiki.php/Main/SelfMadeOrphan' data-format='W1tTZWxmTWFkZU9ycGhhbiBoaXMgZGFkIGRpZWQgaW4gdGhhdCBmaXJlXV0='>his dad died in that fire</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');"> Roleplays </div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/DawnOfANewAgeOldportBlues' title='/pmwiki/pmwiki.php/Roleplay/DawnOfANewAgeOldportBlues' data-format='Um9sZXBsYXkvRGF3bk9mQU5ld0FnZU9sZHBvcnRCbHVlcw=='>Dawn of a New Age: Oldport Blues</a></em>: <ul ><li> Mrs. Miller forced all her expectations onto Jacob, which eventually developed into her emotionally abusing him if he didn't match up to her standards. His <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScheduleFanatic' title='/pmwiki/pmwiki.php/Main/ScheduleFanatic' data-format='W1tTY2hlZHVsZUZhbmF0aWMgb2JzZXNzaW9uIHdpdGggcm91dGluZV1d'>obsession with routine</a> is his way of coping with it. </li><li> Benedict's father micromanages his life, expecting him to get the best possible grades so that he can inherit the family legacy. Even worse, he's blatantly homophobic, going so far as to hurl slurs at his son. As a result, Benedict has become haughty and stand-offish in order to conceal his issues of self-worth. </li><li> Daigo's father and stepmother physically abused him, outed him as bisexual, and frequently mocked his Japanese heritage. This only stopped when his stepmother passed away, and his father grew too frail to hurt him anymore- which, in turn, led to Daigo <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BestServedCold' title='/pmwiki/pmwiki.php/Main/BestServedCold' data-format='W1tCZXN0U2VydmVkQ29sZCBleGFjdGluZyBoaXMgcmV2ZW5nZV1d'>exacting his revenge</a> against the old man. </li><li> Emmanuel's lack of self-esteem and self-control are a result of his mother, who verbally abuses him about being overweight. Even after he gained a super metabolism and slimmed down, she still tore into him when she found him eating cookies. </li></ul></li><li> Fairly common as a backstory for characters in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/SurvivalOfTheFittest' title='/pmwiki/pmwiki.php/Roleplay/SurvivalOfTheFittest' data-format='Um9sZXBsYXkvU3Vydml2YWxPZlRoZUZpdHRlc3Q='>Survival of the Fittest</a></em>, in that there are at least several examples per version. It was particularly common in v1 and v2, and while it isn't as common in later versions they still pop up. V2's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkActionGirl' title='/pmwiki/pmwiki.php/Main/DarkActionGirl' data-format='W1tEYXJrQWN0aW9uR2lybCBNYXJpYXZlbCBWYXJlbGxhXV0='>Mariavel Varella</a> is one such example, having been abused physically (and in a retconned thread, sexually) by her father, who also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffingTheOffspring' title='/pmwiki/pmwiki.php/Main/OffingTheOffspring' data-format='W1tPZmZpbmdUaGVPZmZzcHJpbmcga2lsbGVkIGhlciBicm90aGVyXV0='>killed her brother</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Roleplay/TouhouAGlimmerOfAnOutsideWorld' title='/pmwiki/pmwiki.php/Roleplay/TouhouAGlimmerOfAnOutsideWorld' data-format='Um9sZXBsYXkvVG91aG91QUdsaW1tZXJPZkFuT3V0c2lkZVdvcmxk'>Touhou: a Glimmer of an Outside World</a></em>, Marisa's father. Amongst other things, he threw her out — despite Marisa's being sixteen or seventeen at the most — and hit her when she tried to get back in. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');"> Tabletop Games </div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ArsMagica' title='/pmwiki/pmwiki.php/TabletopGame/ArsMagica' data-format='VGFibGV0b3BHYW1lL0Fyc01hZ2ljYQ=='>Ars Magica</a></em> has it come up both in a blood-relation manner and a mentor-student manner. The Gift causes people to feel a great sense of discomfort around magi, and those children born with the Gift frequently find themselves on the wrong end of their parents's irritation. As for master-student, the Code that magi follow allows all sorts of nastiness done to apprentices, up to and including <em>murder</em>. Even passing the Apprentice's Gauntlet and becoming a full-fledged magus might not be enough to escape this; the Flaw "Tormenting Master" indicates that once per year, your parens clears two weeks out of their schedule and spends them trying to break your life to pieces. (Because House Tytalus is built around interpersonal conflict, most Tytalus magi might as well put this Flaw on their character sheet before they even start spending points.) </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');"> Websites </div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> The "extreme neglect" part of this trope is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs' data-format='UGxheWVkRm9yTGF1Z2hz'>Played for Laughs</a> in this <em><a class='urllink' href='http://www.mymodernmet.com/profiles/blogs/dave-engledow-worlds-best-father'>World's Best Father<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> photo series by photographer Dave Engledow. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Website/DragonCave' title='/pmwiki/pmwiki.php/Website/DragonCave' data-format='V2Vic2l0ZS9EcmFnb25DYXZl'>Dragon Cave</a></em>: Neglected dragons are the result of an egg not getting any views until close to its time of death. They are extremely rare however, and ironically they are very sought after because of their rarity (the process usually results in killing the egg instead). </li></ul></div> <hr data-format='——-' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div> </div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="uvrhep" data-video-descrip="Mothpaw and Hawkpaw evidently had a terrible mother." data-video-title="Parenting by Sasha" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/uvrhep_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/uvrhep.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/uvrhep.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/uvrhep.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="WebAnimation/Moonkitti" 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/uvrhep.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/uvrhep_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/uvrhep.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/uvrhep.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">Parenting by Sasha</h2> <p class="_pmvv-vidbox-descTxt"> Mothpaw and Hawkpaw evidently had a terrible mother. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="l19d4b" data-video-descrip="Already angry at his son for dating a Puerto Rican girl, Chris' father becomes even more shocked to learn that Daniela also happens to be transgender - which, in his mind, not only makes her a &quot;man&quot;, but makes his son a &quot;faggot&quot; too." data-video-title="Daniela" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l19d4b_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l19d4b.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l19d4b.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1000018237_7.png" data-video-trope="Main/ItIsDehumanizing" data-video-tropename=""It" Is Dehumanizing" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/TransEqualsGay,Recap/ColdCaseS2E3Daniela,Series/ColdCase" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1000018237_7.png"> <p><span class="bold">Daniela</span></p> </a> <a href="#video-link" data-video-id="eeipjc" data-video-descrip="Tony finally has enough of Livia disparaging Janice's failed relationships and calls her out for the monstrously abusive parent that she was. Instead, Livia plays victim, justifying her actions and accusing Tony of being cruel. Frustrated, Tony leaves, only to trip and fall, much to Livia's amusement." data-video-title="Babies are like animals..." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/eeipjc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/eeipjc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/eeipjc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/eeipjc.jpg" data-video-trope="Main/MotiveRant" data-video-tropename="Motive Rant" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/EvilLaugh,Main/EvilMatriarch,Main/FreudianExcuse,Main/NeverMyFault,Main/PlayingTheVictimCard,Main/ScrewThisImOutOfHere,Recap/TheSopranosS2E12TheKnightInWhiteSatinArmor,Series/TheSopranos,Main/CallingTheOldManOut" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/eeipjc.jpg"> <p><span class="bold">Babies are like...</span></p> </a> <a href="#video-link" data-video-id="zfaw74" data-video-descrip="Nicole's mother is a perfectionist and a bigger Control Freak. Her father is quite apathetic toward her and readily expresses his anger issues in front of her." data-video-title="Nicole's Parents" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zfaw74_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zfaw74.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zfaw74.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zfaw74.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ComicallyMissingThePoint,Main/ControlFreak,Main/EducationMama,Main/FreezeFrameBonus,Main/HairTriggerTemper,Main/SecondPlaceIsForLosers,Recap/TheAmazingWorldOfGumballS5E5TheChoices,WesternAnimation/TheAmazingWorldOfGumball" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zfaw74.jpg"> <p><span class="bold">Nicole's Parents</span></p> </a> <a href="#video-link" data-video-id="25raew" data-video-descrip="The cold open features the Griffins watching the Eight is Enough reunion show whiich contains a scene where Tom slaps one of his daughters eight times after she made a snarky remark about how he thinks he can fix every problem by making a sandwich. He's calmed down by being told, &quot;Eight is enough!&quot; and they all laugh it off. The Griffins (minus Stewie) are appalled." data-video-title="Eight is Enough Reunion" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/25raew_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/25raew.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/25raew.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/25raew.jpg" data-video-trope="Main/ComedicSociopathy" data-video-tropename="Comedic Sociopathy" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Recap/FamilyGuyS1E7BrianPortraitOfADog,WesternAnimation/FamilyGuy,Main/TheTeaser" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/25raew.jpg"> <p><span class="bold">Eight is Enough...</span></p> </a> <a href="#video-link" data-video-id="dao1n4" data-video-descrip="When reliving a particularly ugly memory from his childhood, Bobby finally finds the courage to confront his past and stand up to his father." data-video-title="Bobby's Worst Memory" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dao1n4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dao1n4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dao1n4.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_20241018_135444_6.jpg" data-video-trope="Main/CallingTheOldManOut" data-video-tropename="Calling the Old Man Out" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/BattleInTheCenterOfTheMind,Main/DomesticAbuse,Main/ShutUpHannibal,Recap/SupernaturalS07E10DeathsDoor,Series/Supernatural" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_20241018_135444_6.jpg"> <p><span class="bold">Bobby's Worst M...</span></p> </a> <a href="#video-link" data-video-id="hnu8qe" data-video-descrip="Heihachi Mishima showcases his stellar parenting skills towards his son, Kazuya, by repeatedly insulting him, beating him to a pulp, and finally tossing him off a cliff, thus kickstarting the boy's descent into villainy." data-video-title="Heihachi and Kazuya" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hnu8qe_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hnu8qe.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hnu8qe.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_4660_6.jpeg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ArchnemesisDad,Main/KickTheDog,Main/MoralEventHorizon,Main/StartOfDarkness,Main/YouKilledMyFather,VideoGame/Tekken7" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_4660_6.jpeg"> <p><span class="bold">Heihachi and Ka...</span></p> </a> <a href="#video-link" data-video-id="j9uv8p" data-video-descrip="Homelander, jealous of Billy Butcher's connection with Ryan, lashes out at his son and attempts to emotionally manipulate him, all while failing to understand Ryan's feelings due to his self-centered mindset." data-video-title="Homelander and Ryan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j9uv8p_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j9uv8p.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j9uv8p.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j9uv8p.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/GreenEyedMonster,Main/ItsAllAboutMe,Main/LackOfEmpathy,Main/PlayingTheFamilyCard,Main/PsychopathicManchild,Recap/TheBoysS04E03WellKeepTheRedFlagFlyingHere,Series/TheBoys2019" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j9uv8p.jpg"> <p><span class="bold">Homelander and ...</span></p> </a> <a href="#video-link" data-video-id="9z1ufh" data-video-descrip="Kyoya's father doesn't seem to like what his son is doing in the Host Club." data-video-title="Kyoya Gets Slapped" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9z1ufh_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9z1ufh.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9z1ufh.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_09_04_155220.png" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/YouWouldntHitAGuyWithGlasses,Manga/OuranHighSchoolHostClub,Main/ComicallyMissingThePoint" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_09_04_155220.png"> <p><span class="bold">Kyoya Gets Slapped</span></p> </a> <a href="#video-link" data-video-id="b2gbax" data-video-descrip="When their parents marry each other, Iyo and her Senpai (whom she has a crush on) become step-siblings. But that doesn't stop them from loving each other." data-video-title="DoncaSis " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/b2gbax_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/b2gbax.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/b2gbax.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_27_175820.png" data-video-trope="Main/FlirtyStepsiblings" data-video-tropename="Flirty Stepsiblings" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/IrisOut,Manga/PopTeamEpic" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_27_175820.png"> <p><span class="bold">DoncaSis </span></p> </a> <a href="#video-link" data-video-id="cqkzop" data-video-descrip="Nagisa's mother wants to control how her son should live out his future. " data-video-title="Nagisa's Mom" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cqkzop_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cqkzop.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cqkzop.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_18_233133.png" data-video-trope="Main/MyBelovedSmother" data-video-tropename="My Beloved Smother" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/WantedASonInstead,Manga/AssassinationClassroom" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_18_233133.png"> <p><span class="bold">Nagisa's Mom</span></p> </a> <a href="#video-link" data-video-id="qvb5hd" data-video-descrip="For daring to defy his orders, Odin murders Thor, his own son, with no remorse." data-video-title="Odin (God Of War)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qvb5hd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qvb5hd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qvb5hd.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvb5hd.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/GodOfWarRagnarok,Main/AbusiveParents,Main/OffingTheOffspring,Main/NoBodyLeftBehind,Main/BigNo,Main/NeverMyFault" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvb5hd.jpg"> <p><span class="bold">Odin (God Of War)</span></p> </a> <a href="#video-link" data-video-id="3gj6iy" data-video-descrip="Homer is cut in half and has to be fused to David's lower half to live, but, considering the fact that he deliberately abandoned Bart in the woods and lied to the rest of the family that Bart went to culinary school." data-video-title="B.I.: Bartificial Intelligence" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3gj6iy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3gj6iy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3gj6iy.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3gj6iy.jpg" data-video-trope="Main/AssholeVictim" data-video-tropename="Asshole Victim" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AllJustADream,Main/HalfTheManHeUsedToBe,Main/HumanShield,Main/KilledMidSentence,Main/LaserGuidedKarma,Main/OhCrap,Main/PoweredArmor,Main/SawBladesOfDeath,Main/ThreatBackfire,Recap/TheSimpsonsS17E4TreehouseOfHorrorXVI,WesternAnimation/TheSimpsons,WesternAnimation/TreehouseOfHorror,Main/AbusiveParents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3gj6iy.jpg"> <p><span class="bold">B.I.: Bartifici...</span></p> </a> <a href="#video-link" data-video-id="izcfvg" data-video-descrip="Maria makes a fuss on a train, much to her mother's fury." data-video-title="Umineko train scene" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/izcfvg_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/izcfvg.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/izcfvg.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/izcfvg.jpg" data-video-trope="Main/KiddieKid" data-video-tropename="Kiddie Kid" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/BitchSlap,Main/BrattyHalfPint,Main/InnocentlyInsensitive,VisualNovel/UminekoWhenTheyCry" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/izcfvg.jpg"> <p><span class="bold">Umineko train s...</span></p> </a> <a href="#video-link" data-video-id="tdre7e" data-video-descrip="Rinny gives her daughter, Nappy, a brutal beating. And that's not as bad as what happens next..." data-video-title="Pretty Blood" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/tdre7e_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/tdre7e.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/tdre7e.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tdre7e.jpg" data-video-trope="Main/NoHoldsBarredBeatdown" data-video-tropename="No-Holds-Barred Beatdown" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/BreakTheCutie,WebAnimation/PrettyBlood" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tdre7e.jpg"> <p><span class="bold">Pretty Blood</span></p> </a> <a href="#video-link" data-video-id="kz9qfz" data-video-descrip="After years of suffering his father's abuse and seeing him abuse the servants, Grey disowns his father and leaves his home forever." data-video-title="Grey Leaves His Home" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/kz9qfz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/kz9qfz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/kz9qfz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kz9qfz.jpg" data-video-trope="Main/DisownedParent" data-video-tropename="Disowned Parent" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/TheScarletSails,Main/AbusiveParents,Main/MeanBoss,Main/ThreatBackfire" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kz9qfz.jpg"> <p><span class="bold">Grey Leaves His...</span></p> </a> <a href="#video-link" data-video-id="w6dvr9" data-video-descrip="Rosa destroys the beloved lion plushie that she had given to her own daughter." data-video-title="Sakutaro's death" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/w6dvr9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/w6dvr9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/w6dvr9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/w6dvr9.jpg" data-video-trope="Main/CrushTheKeepsake" data-video-tropename="Crush the Keepsake" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/OffWithHisHead,VisualNovel/UminekoWhenTheyCry" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/w6dvr9.jpg"> <p><span class="bold">Sakutaro's death</span></p> </a> <a href="#video-link" data-video-id="dpyw32" data-video-descrip="Rosa smashes one of her daughter's beloved rabbit toys against a wall. (But that's far from the worst thing that she'll break today...)" data-video-title="Umineko" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dpyw32_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dpyw32.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dpyw32.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dpyw32.jpg" data-video-trope="Main/CrushTheKeepsake" data-video-tropename="Crush the Keepsake" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/TantrumThrowing,VisualNovel/UminekoWhenTheyCry" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dpyw32.jpg"> <p><span class="bold">Umineko</span></p> </a> <a href="#video-link" data-video-id="zccqx4" data-video-descrip="Heffer's biological father is, to say the least, not a very pleasant person." data-video-title="Heffer's real dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zccqx4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zccqx4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zccqx4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zccqx4.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/Jerkass,WesternAnimation/RockosModernLife,Main/UnpleasantParentReveal" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zccqx4.jpg"> <p><span class="bold">Heffer's real dad</span></p> </a> <a href="#video-link" data-video-id="g5uty4" data-video-descrip="Of all the fathers we've seen on HB so far, Crimson is a strong contender for the worst, being physically and verbally abusive towards him throughout his life and straight out killing his wife because of disagreements on how to raise him. He continues this behaviour in the present, demanding Moxxie marry his ex Chaz in order to financially benefit from it and threatening to kill her if he doesn't go through with it." data-video-title="Crimson" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/g5uty4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/g5uty4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/g5uty4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g5uty4.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/CementShoes,Main/ChildrenForcedToKill,Main/MamaBear,Main/MissingMom,Main/MommasBoy,Main/TroubledBackstoryFlashback,Recap/HelluvaBossS2E3ExesAndOohs,WebAnimation/HelluvaBoss" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g5uty4.jpg"> <p><span class="bold">Crimson</span></p> </a> <a href="#video-link" data-video-id="jn5cf9" data-video-descrip="All of Duel and North Academies stand up for Chazz when his brothers bully him, shouting them off the stage." data-video-title="The Princeton Brothers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/jn5cf9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/jn5cf9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/jn5cf9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jn5cf9.jpg" data-video-trope="Main/ShamedByAMob" data-video-tropename="Shamed by a Mob" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/YuGiOhGX,Main/AbusiveParents,Recap/YuGiOhGXS1E26TheSchoolDuel2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jn5cf9.jpg"> <p><span class="bold">The Princeton B...</span></p> </a> <a href="#video-link" data-video-id="sv9w1g" data-video-descrip="The episode Fairytale takes place during Bandit's childhood in the 80s. During which we're treated to the different culture and standards of the time, which seem bizarre to his children." data-video-title="It was the 80s" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/sv9w1g_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/sv9w1g.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/sv9w1g.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sv9w1g.jpg" data-video-trope="Main/The80s" data-video-tropename="The '80s" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/DeliberateValuesDissonance,Recap/BlueyFairytale,WesternAnimation/Bluey" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sv9w1g.jpg"> <p><span class="bold">It was the 80s</span></p> </a> <a href="#video-link" data-video-id="f4uoq6" data-video-descrip="Kevin has a mean father who forces him to be tough, and when he's later arrested, Kevin promises to be tough and devote his life to justice. He would later save a koala bear and raise her before setting her free to teach it tough love, but she gets run over by a car, devastating Kevin. These events would make Kevin become Koala Man." data-video-title="Koala Man Begins" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f4uoq6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f4uoq6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f4uoq6.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/km_s1e05_koala_man_begins.png" data-video-trope="Main/SuperheroOrigin" data-video-tropename="Superhero Origin" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/HighKoalatyCuteness,Main/LookBothWays,Main/SkywardScream,Recap/KoalaManS1E05OdeToAKoalaBear,WesternAnimation/KoalaMan" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/km_s1e05_koala_man_begins.png"> <p><span class="bold">Koala Man Begins</span></p> </a> <a href="#video-link" data-video-id="2yr97w" data-video-descrip="Jeff's father does a sarcastic bit where he acts like Jeff's awards were stolen and hears he never had any, in order to call him a worthless loser." data-video-title="Jeff's Dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2yr97w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2yr97w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2yr97w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yr97w.jpg" data-video-trope="Main/Jerkass" data-video-tropename="Jerkass" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/AmericanDadS3E19JointCustody,WesternAnimation/AmericanDad,Main/AbusiveParents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yr97w.jpg"> <p><span class="bold">Jeff's Dad</span></p> </a> <a href="#video-link" data-video-id="8cnfv8" data-video-descrip="Is it any wonder that Sheen is as messed up as he is today?" data-video-title="The Bedfellows" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/8cnfv8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/8cnfv8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/8cnfv8.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/8cnfv8.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/FemaleFelineMaleMutt,Main/FlippingTheTable,Webcomic/TheBedfellows,Main/UsedToBeASweetKid" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/8cnfv8.jpg"> <p><span class="bold">The Bedfellows</span></p> </a> <a href="#video-link" data-video-id="jmuudj" data-video-descrip="Ragyo experiments on her own children when they were babies and when one of them seemingly dies she throws it into the trash and leaves it there. This action causes Satsuki and Ragyo's husband to go against her." data-video-title="Ragyo Kiryuin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/jmuudj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/jmuudj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/jmuudj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jmuudj.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/KillLaKill,Main/AbusiveParents,Main/MoralEventHorizon,Main/OffingTheOffspring,Main/WouldHurtAChild" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jmuudj.jpg"> <p><span class="bold">Ragyo Kiryuin</span></p> </a> <a href="#video-link" data-video-id="ywbph5" data-video-descrip="The Sacred One's (her named revealed to be Melissa) parents were this Up to Eleven. She tried to please them by cleaning and cooking for them, only for them to yell at her. They ruin the dinner she made them to count their stolen loot and call her selfish when she is understandably upset by this. When she decides to move away, they express shock that she had packed a running away suitcase, only to get defensive when she points out that they were the ones who packed it for her. This certainly explains everything from her Obsessively Normal standards towards families and Ax-Crazy disposition." data-video-title="Melissa's "Pieces of Trash"" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ywbph5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ywbph5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ywbph5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ywbph5.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/NormalBritishSeriesE3APlaceForGood,WebVideo/BrandonRogers" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ywbph5.jpg"> <p><span class="bold">Melissa's "Piec...</span></p> </a> <a href="#video-link" data-video-id="9kj3qf" data-video-descrip="Luna may be an Ax-Crazy Dark Action Girl, but it isn't without reason.&lt;br&gt;In the climax, she reveals to her hostages Tom DuBois and Robert Freeman (who's also her latest boyfriend) her backstory of how she ran away from home as a young girl, due to having an Abusive Dad who slapped her mother around for petty reasons like undercooking his fried chicken. She then dated a series of men who were also physically, emotionally, and/or verbally abusive to her. Her first boyfriend, a mob boss from Hong Kong named Kenny Wu, even slapped her for the same reason that her dad hit her mom (serving chicken that was too cold)." data-video-title="Luna's life sucked" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9kj3qf_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9kj3qf.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9kj3qf.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kj3qf.jpg" data-video-trope="Main/DomesticAbuse" data-video-tropename="Domestic Abuse" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Main/BlackComedy,Main/CrossesTheLineTwice,Main/FreudianExcuse,WesternAnimation/TheBoondocks" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kj3qf.jpg"> <p><span class="bold">Luna's life sucked</span></p> </a> <a href="#video-link" data-video-id="brf8kv" data-video-descrip="Iroh narrates how Zuko got his scar from his father Ozai when Zuko spoke against sacrificing soldiers and refusing to fight his father." data-video-title="Ozai" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/brf8kv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/brf8kv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/brf8kv.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brf8kv.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Recap/AvatarTheLastAirbenderTheStorm,WesternAnimation/AvatarTheLastAirbender,Main/AbuseDiscretionShot,Main/DisproportionateRetribution,Main/EstablishingCharacterMoment,Main/GoryDiscretionShot,Main/ICantLookGesture,Main/NoGoodDeedGoesUnpunished,Main/OhCrap,Main/WouldHurtAChild" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brf8kv.jpg"> <p><span class="bold">Ozai</span></p> </a> <a href="#video-link" data-video-id="gvl8cx" data-video-descrip="After helping defend King's Landing, Tyrion asks his father Tywin for the right to Casterly Rock, their family's ancestral home. Tywin does not take this well." data-video-title="Tywin Lannister" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/gvl8cx_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/gvl8cx.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/gvl8cx.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gvl8cx.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Series/GameOfThrones" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gvl8cx.jpg"> <p><span class="bold">Tywin Lannister</span></p> </a> <a href="#video-link" data-video-id="djv2d5" data-video-descrip="Frank tells the story of how cruel his father was to him." data-video-title=""Big Bill" Murphy" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/djv2d5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/djv2d5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/djv2d5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/djv2d5.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/FIsForFamilyS4E1FatherConfessor,WesternAnimation/FIsForFamily" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/djv2d5.jpg"> <p><span class="bold">"Big Bill" Murphy</span></p> </a> <a href="#video-link" data-video-id="rmam90" data-video-descrip="Harry is abused and exploited while his cousin Dudley is pampered." data-video-title="Life at Privet Drive" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rmam90_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rmam90.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rmam90.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rmam90.jpg" data-video-trope="Main/TheUnFavourite" data-video-tropename="The Un-Favourite" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParents,Film/HarryPotterAndThePhilosophersStone2001" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rmam90.jpg"> <p><span class="bold">Life at Privet ...</span></p> </a> <a href="#video-link" data-video-id="wlk38j" data-video-descrip="Frank, his father-in-law, and his friends argue over who had the worst father." data-video-title="Bad Dad Contest" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/wlk38j_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/wlk38j.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/wlk38j.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wlk38j.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/FIsForFamily" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wlk38j.jpg"> <p><span class="bold">Bad Dad Contest</span></p> </a> <a href="#video-link" data-video-id="u8b6rj" data-video-descrip="He doesn't want people to know Eric/Bobby is his son, and joins the bullies tormenting him." data-video-title="Coach Best" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/u8b6rj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/u8b6rj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/u8b6rj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u8b6rj.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/BrandonRogers" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u8b6rj.jpg"> <p><span class="bold">Coach Best</span></p> </a> <a href="#video-link" data-video-id="nvm2kv" data-video-descrip="At a low point and spending the night in jail, Cassie Bowden is forced to reckon with her past. She comes to see that the happy, shiny memories she has of life with her father Hank and brother Davey are largely a lie. Her father was an abusive alcoholic jerk who regularly insulted and belittled his own son, and abused her in his own way by turning her into his &quot;drinking buddy&quot; and getting her to collude in his treatment of Davey." data-video-title="Why Did That Change?" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nvm2kv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nvm2kv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nvm2kv.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/why_did_that_change_1.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Series/TheFlightAttendant,Main/FakeMemories" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/why_did_that_change_1.jpg"> <p><span class="bold">Why Did That Ch...</span></p> </a> <a href="#video-link" data-video-id="ql8bui" data-video-descrip="The neglectful and emotional abuse variety, what with Helga Pataki living with an alcoholic mother and workaholic father that neglect her and prefer to praise her older sister Olga." data-video-title="Helga Pataki's Abusive Parents" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ql8bui_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ql8bui.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ql8bui.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ql8bui.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/HeyArnold" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ql8bui.jpg"> <p><span class="bold">Helga Pataki's ...</span></p> </a> <a href="#video-link" data-video-id="7m6m2t" data-video-descrip="The reason Pacifica is the Alpha Bitch we know today is because her parents raised her that way; they force her to live up to the family name the way they want her to do despite her protests, to the point where Preston has to ring a bell to get her to obey them." data-video-title="Pacifica's struggle" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7m6m2t_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7m6m2t.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7m6m2t.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7m6m2t.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/GravityFalls,Recap/GravityFallsS2E10NorthwestMansionMystery" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7m6m2t.jpg"> <p><span class="bold">Pacifica's stru...</span></p> </a> <a href="#video-link" data-video-id="fzztm5" data-video-descrip="Amity's parents forced her to end her friendship with Willow and live up to their name." data-video-title="Amity's Past" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fzztm5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fzztm5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fzztm5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fzztm5.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/TheOwlHouseS1E15UnderstandingWillow,WesternAnimation/TheOwlHouse,Main/ArrangedFriendship" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fzztm5.jpg"> <p><span class="bold">Amity's Past</span></p> </a> <a href="#video-link" data-video-id="zzyi1l" data-video-descrip="Danny stands up to his bully and reduces him to a puddle." data-video-title="Melting Bully" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zzyi1l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zzyi1l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zzyi1l.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zzyi1l.jpg" data-video-trope="Main/ImMelting" data-video-tropename="I'm Melting!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/DannyGonzalez,Main/AbusiveParents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zzyi1l.jpg"> <p><span class="bold">Melting Bully</span></p> </a> <a href="#video-link" data-video-id="bfl36d" data-video-descrip="To Achmed Junior, although AJ isn't above making cracks and practical jokes at his expense." data-video-title="Achmed the Dead Terrorist" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/bfl36d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/bfl36d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/bfl36d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bfl36d.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/JeffDunham" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bfl36d.jpg"> <p><span class="bold">Achmed the Dead...</span></p> </a> <a href="#video-link" data-video-id="fbzbjb" data-video-descrip="Naturally, the Devil himself is a shitty parent; seeing his daughter Jezebel as a political piece in his war against Heaven and threatening her for not agreeing to it. " data-video-title="Satan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fbzbjb_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fbzbjb.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fbzbjb.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fbzbjb.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/SaintsRowGatOutOfHell" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fbzbjb.jpg"> <p><span class="bold">Satan</span></p> </a> <a href="#video-link" data-video-id="7hv78j" data-video-descrip="Maki's mother divorced his father not long ago because he's an abusive asshole, stealing their hard earned money and beating Maki over the slightest provocation. Unfortunately, due to how divorce laws work in Japan, he's still able to track them down and continue to raise hell for them. Sadly, he's not even the only bad parent in this show." data-video-title="Maki's Dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7hv78j_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7hv78j.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7hv78j.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7hv78j.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/StarsAlign" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7hv78j.jpg"> <p><span class="bold">Maki's Dad</span></p> </a> <a href="#video-link" data-video-id="nr0knp" data-video-descrip="Even as an adoptive father to Quasimodo, Frollo is highly abusive of his adopted ward and makes Quasimodo emotionally dependent on him. Shown in the grape scene of the Hunchback of Notre Dame, where he explodes on Quasimodo for letting Esmeralda escape Notre Dame and that all of Paris is burning because of him, despite the fact that Frollo is the one actually torching the city." data-video-title="Grape Scene" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nr0knp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nr0knp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nr0knp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nr0knp.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/TheHunchbackOfNotreDameDisney,Main/NeverMyFault" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nr0knp.jpg"> <p><span class="bold">Grape Scene</span></p> </a> <a href="#video-link" data-video-id="hgp2t8" data-video-descrip="Throughout his life, Beatrice was emotionally &amp; psychologically abusive towards Bojack, blaming him for supposedly ruining her life." data-video-title="Beatrice Horseman" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hgp2t8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hgp2t8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hgp2t8.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hgp2t8.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/BojackHorsemanS2E09TheShot,WesternAnimation/BojackHorseman" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hgp2t8.jpg"> <p><span class="bold">Beatrice Horseman</span></p> </a> <a href="#video-link" data-video-id="ou41ep" data-video-descrip="Where did Christina get wire hangers anyway?" data-video-title="No Wire Hangers Ever" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ou41ep_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ou41ep.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ou41ep.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ou41ep.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Literature/MommieDearest" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ou41ep.jpg"> <p><span class="bold">No Wire Hangers...</span></p> </a> <a href="#video-link" data-video-id="vy2n7m" data-video-descrip="Butterscotch Horseman displays the full extent of his emotional abuse/manipulations towards BoJack while driving him home. " data-video-title="Bojack's Father Monologue" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vy2n7m_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vy2n7m.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vy2n7m.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vy2n7m.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/BojackHorseman" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vy2n7m.jpg"> <p><span class="bold">Bojack's Father...</span></p> </a> <a href="#video-link" data-video-id="44f0ut" data-video-descrip="Diamond Tiara has an emotionally abusive mother, Spoiled Rich, who berates her for losing the election and is revealed to have raised her to be the bully she is today." data-video-title="Spoiled Rich" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/44f0ut_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/44f0ut.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/44f0ut.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/44f0ut.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/RichBitch,WesternAnimation/MyLittlePonyFriendshipIsMagic,Recap/MyLittlePonyFriendshipIsMagicS5E19CrusadersOfTheLostMark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/44f0ut.jpg"> <p><span class="bold">Spoiled Rich</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>Abusive Parent</span>, <span>Abusive Dad</span>, <span>Abusive Mom</span>, <span>Parental Abuse</span> </h3> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SadismIndex">Sadism Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GruesomeGrandparent">Gruesome Grandparent</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/WhenItAllBegan">When It All Began</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BackstoryIndex">Backstory Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AmbiguouslyAbsentParent">Ambiguously Absent Parent</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbsurdlyPowerfulSchoolJurisdiction">Absurdly Powerful School Jurisdiction</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes">Crime and Punishment Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AccidentalKidnapping">Accidental Kidnapping</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbandonedPlayground">Abandoned Playground</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/SubvertedInnocence">Subverted Innocence</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AdorableAbomination">Adorable Abomination</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbsoluteXenophobe">Absolute Xenophobe</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/AngryBlackManStereotype">"Angry Black Man" Stereotype</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/VomitIndiscretionShot">Vomit Indiscretion Shot</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/KoreanDrama">Korean Drama</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AffectionateGestureToTheHead">Affectionate Gesture to the Head</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbsenteeClubMember">Absentee Club Member</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice">Characters as Device</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AcademicAlphaBitch">Academic Alpha Bitch</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesZeroToD">WeAreNotAlone/Tropes 0 to D</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ACappella">A cappella</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LoserArchetype">Loser Archetype</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TearJerker">Tear Jerker</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AccidentalChildKillerBackstory">Accidental Child-Killer Backstory</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ChildAbuseTropes">Child Abuse Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PimpingTheOffspring">Pimping the Offspring</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ZeroPercentApprovalRating">0% Approval Rating</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/NoSympathyForThisIndex">No Sympathy For This Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AliensAreBastards">Aliens Are Bastards</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MoralEventHorizon">Moral Event Horizon</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PimpingTheOffspring">Pimping the Offspring</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/TheBully">The Bully</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AlphaBitch">Alpha Bitch</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Anime/UltimateMuscle">Ultimate Muscle</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/AnimeAndManga">QuoteSource/Anime & Manga</a> </li> <li> <a href="/pmwiki/pmwiki.php/Manga/UndeadUnluck">Undead Unluck</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/FamilyGuy">Family Guy</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/FamilyGuy">ImageSource/Family Guy</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AdjectiveAnimalAlehouse">Adjective Animal Alehouse</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheWoobie">The Woobie</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexHasHadAHardLife">This Index Has Had a Hard Life</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AffairBlameTheBastard">Affair? Blame the Bastard</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ParentalIssues">Parental Issues</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PimpingTheOffspring">Pimping the Offspring</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbductionIsLove">Abduction Is Love</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FairyTaleTropes">Fairy Tale Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AllTrollsAreDifferent">All Trolls Are Different</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/YouHateWhatYouAre">You Hate What You Are</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CharacterFlawIndex">Character Flaw Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AcquaintedWithEmergencyServices">Acquainted with Emergency Services</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CynicismTropes">Cynicism Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveWorkplace">Abusive Workplace</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbsentMindedProfessor">Absent-Minded Professor</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThisIndexIsAJoke">This Index Is a Joke</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AccentDepundent">Accent Depundent</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbsoluteXenophobe">Absolute Xenophobe</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Villains">Villains</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AbusivePrecursors">Abusive Precursors</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AbuseTropes">Abuse Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveAlienParents">Abusive Alien Parents</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/AbusiveOffspring">Abusive Offspring</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DysfunctionalFamilyIndex">Dysfunctional Family Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PimpingTheOffspring">Pimping the Offspring</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime & Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-uvrhep" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/uvrhep.jpg" data-video-title="Parenting by Sasha" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/uvrhep_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/uvrhep.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/uvrhep.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">Parenting by Sasha</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Mothpaw and Hawkpaw evidently had a terrible mother. </p> <div class="rating-row" data-video-id="uvrhep" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">★</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">★</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">★</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">★</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">★</label> </div> <div id="star-rating-total"> 5 (9 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / AbusiveParents</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="uvrhep" data-vimeo-id="" data-video-descrip="Mothpaw and Hawkpaw evidently had a terrible mother." data-video-title="Parenting by Sasha" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/uvrhep_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/uvrhep.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/uvrhep.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/uvrhep.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="WebAnimation/Moonkitti" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/uvrhep.jpg"> <p><span class="bold">Parenting by Sasha</span></p> </a> <a href="#video-link" data-video-id="l19d4b" data-vimeo-id="" data-video-descrip="Already angry at his son for dating a Puerto Rican girl, Chris' father becomes even more shocked to learn that Daniela also happens to be transgender - which, in his mind, not only makes her a &quot;man&quot;, but makes his son a &quot;faggot&quot; too." data-video-title="Daniela" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/l19d4b_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/l19d4b.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/l19d4b.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1000018237_7.png" data-video-trope="Main/ItIsDehumanizing" data-video-tropename=""It" Is Dehumanizing" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Main/AbusiveParents,Main/TransEqualsGay,Recap/ColdCaseS2E3Daniela,Series/ColdCase" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/1000018237_7.png"> <p><span class="bold">Daniela</span></p> </a> <a href="#video-link" data-video-id="eeipjc" data-vimeo-id="" data-video-descrip="Tony finally has enough of Livia disparaging Janice's failed relationships and calls her out for the monstrously abusive parent that she was. Instead, Livia plays victim, justifying her actions and accusing Tony of being cruel. Frustrated, Tony leaves, only to trip and fall, much to Livia's amusement." data-video-title="Babies are like animals..." data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/eeipjc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/eeipjc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/eeipjc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/eeipjc.jpg" data-video-trope="Main/MotiveRant" data-video-tropename="Motive Rant" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Main/AbusiveParents,Main/EvilLaugh,Main/EvilMatriarch,Main/FreudianExcuse,Main/NeverMyFault,Main/PlayingTheVictimCard,Main/ScrewThisImOutOfHere,Recap/TheSopranosS2E12TheKnightInWhiteSatinArmor,Series/TheSopranos,Main/CallingTheOldManOut" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/eeipjc.jpg"> <p><span class="bold">Babies are like...</span></p> </a> <a href="#video-link" data-video-id="zfaw74" data-vimeo-id="" data-video-descrip="Nicole's mother is a perfectionist and a bigger Control Freak. Her father is quite apathetic toward her and readily expresses his anger issues in front of her." data-video-title="Nicole's Parents" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zfaw74_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zfaw74.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zfaw74.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zfaw74.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.94" data-video-rating-count="18" data-video-media-sources="Main/ComicallyMissingThePoint,Main/ControlFreak,Main/EducationMama,Main/FreezeFrameBonus,Main/HairTriggerTemper,Main/SecondPlaceIsForLosers,Recap/TheAmazingWorldOfGumballS5E5TheChoices,WesternAnimation/TheAmazingWorldOfGumball" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zfaw74.jpg"> <p><span class="bold">Nicole's Parents</span></p> </a> <a href="#video-link" data-video-id="25raew" data-vimeo-id="" data-video-descrip="The cold open features the Griffins watching the Eight is Enough reunion show whiich contains a scene where Tom slaps one of his daughters eight times after she made a snarky remark about how he thinks he can fix every problem by making a sandwich. He's calmed down by being told, &quot;Eight is enough!&quot; and they all laugh it off. The Griffins (minus Stewie) are appalled." data-video-title="Eight is Enough Reunion" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/25raew_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/25raew.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/25raew.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/25raew.jpg" data-video-trope="Main/ComedicSociopathy" data-video-tropename="Comedic Sociopathy" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.67" data-video-rating-count="9" data-video-media-sources="Main/AbusiveParents,Recap/FamilyGuyS1E7BrianPortraitOfADog,WesternAnimation/FamilyGuy,Main/TheTeaser" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/25raew.jpg"> <p><span class="bold">Eight is Enough...</span></p> </a> <a href="#video-link" data-video-id="dao1n4" data-vimeo-id="" data-video-descrip="When reliving a particularly ugly memory from his childhood, Bobby finally finds the courage to confront his past and stand up to his father." data-video-title="Bobby's Worst Memory" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dao1n4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dao1n4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dao1n4.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_20241018_135444_6.jpg" data-video-trope="Main/CallingTheOldManOut" data-video-tropename="Calling the Old Man Out" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="Main/AbusiveParents,Main/BattleInTheCenterOfTheMind,Main/DomesticAbuse,Main/ShutUpHannibal,Recap/SupernaturalS07E10DeathsDoor,Series/Supernatural" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_20241018_135444_6.jpg"> <p><span class="bold">Bobby's Worst M...</span></p> </a> <a href="#video-link" data-video-id="hnu8qe" data-vimeo-id="" data-video-descrip="Heihachi Mishima showcases his stellar parenting skills towards his son, Kazuya, by repeatedly insulting him, beating him to a pulp, and finally tossing him off a cliff, thus kickstarting the boy's descent into villainy." data-video-title="Heihachi and Kazuya" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hnu8qe_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hnu8qe.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hnu8qe.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_4660_6.jpeg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="Main/ArchnemesisDad,Main/KickTheDog,Main/MoralEventHorizon,Main/StartOfDarkness,Main/YouKilledMyFather,VideoGame/Tekken7" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/img_4660_6.jpeg"> <p><span class="bold">Heihachi and Ka...</span></p> </a> <a href="#video-link" data-video-id="j9uv8p" data-vimeo-id="" data-video-descrip="Homelander, jealous of Billy Butcher's connection with Ryan, lashes out at his son and attempts to emotionally manipulate him, all while failing to understand Ryan's feelings due to his self-centered mindset." data-video-title="Homelander and Ryan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/j9uv8p_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/j9uv8p.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/j9uv8p.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j9uv8p.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="Main/GreenEyedMonster,Main/ItsAllAboutMe,Main/LackOfEmpathy,Main/PlayingTheFamilyCard,Main/PsychopathicManchild,Recap/TheBoysS04E03WellKeepTheRedFlagFlyingHere,Series/TheBoys2019" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/j9uv8p.jpg"> <p><span class="bold">Homelander and ...</span></p> </a> <a href="#video-link" data-video-id="9z1ufh" data-vimeo-id="" data-video-descrip="Kyoya's father doesn't seem to like what his son is doing in the Host Club." data-video-title="Kyoya Gets Slapped" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9z1ufh_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9z1ufh.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9z1ufh.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_09_04_155220.png" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/YouWouldntHitAGuyWithGlasses,Manga/OuranHighSchoolHostClub,Main/ComicallyMissingThePoint" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_09_04_155220.png"> <p><span class="bold">Kyoya Gets Slapped</span></p> </a> <a href="#video-link" data-video-id="b2gbax" data-vimeo-id="" data-video-descrip="When their parents marry each other, Iyo and her Senpai (whom she has a crush on) become step-siblings. But that doesn't stop them from loving each other." data-video-title="DoncaSis " data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/b2gbax_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/b2gbax.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/b2gbax.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_27_175820.png" data-video-trope="Main/FlirtyStepsiblings" data-video-tropename="Flirty Stepsiblings" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/AbusiveParents,Main/IrisOut,Manga/PopTeamEpic" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_27_175820.png"> <p><span class="bold">DoncaSis </span></p> </a> <a href="#video-link" data-video-id="cqkzop" data-vimeo-id="" data-video-descrip="Nagisa's mother wants to control how her son should live out his future. " data-video-title="Nagisa's Mom" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cqkzop_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cqkzop.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cqkzop.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_18_233133.png" data-video-trope="Main/MyBelovedSmother" data-video-tropename="My Beloved Smother" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="Main/AbusiveParents,Main/WantedASonInstead,Manga/AssassinationClassroom" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/screenshot_2024_07_18_233133.png"> <p><span class="bold">Nagisa's Mom</span></p> </a> <a href="#video-link" data-video-id="qvb5hd" data-vimeo-id="" data-video-descrip="For daring to defy his orders, Odin murders Thor, his own son, with no remorse." data-video-title="Odin (God Of War)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qvb5hd_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qvb5hd.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qvb5hd.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvb5hd.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.96" data-video-rating-count="25" data-video-media-sources="VideoGame/GodOfWarRagnarok,Main/AbusiveParents,Main/OffingTheOffspring,Main/NoBodyLeftBehind,Main/BigNo,Main/NeverMyFault" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qvb5hd.jpg"> <p><span class="bold">Odin (God Of War)</span></p> </a> <a href="#video-link" data-video-id="3gj6iy" data-vimeo-id="" data-video-descrip="Homer is cut in half and has to be fused to David's lower half to live, but, considering the fact that he deliberately abandoned Bart in the woods and lied to the rest of the family that Bart went to culinary school." data-video-title="B.I.: Bartificial Intelligence" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3gj6iy_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3gj6iy.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3gj6iy.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3gj6iy.jpg" data-video-trope="Main/AssholeVictim" data-video-tropename="Asshole Victim" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.90" data-video-rating-count="21" data-video-media-sources="Main/AllJustADream,Main/HalfTheManHeUsedToBe,Main/HumanShield,Main/KilledMidSentence,Main/LaserGuidedKarma,Main/OhCrap,Main/PoweredArmor,Main/SawBladesOfDeath,Main/ThreatBackfire,Recap/TheSimpsonsS17E4TreehouseOfHorrorXVI,WesternAnimation/TheSimpsons,WesternAnimation/TreehouseOfHorror,Main/AbusiveParents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3gj6iy.jpg"> <p><span class="bold">B.I.: Bartifici...</span></p> </a> <a href="#video-link" data-video-id="izcfvg" data-vimeo-id="" data-video-descrip="Maria makes a fuss on a train, much to her mother's fury." data-video-title="Umineko train scene" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/izcfvg_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/izcfvg.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/izcfvg.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/izcfvg.jpg" data-video-trope="Main/KiddieKid" data-video-tropename="Kiddie Kid" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="Main/AbusiveParents,Main/BitchSlap,Main/BrattyHalfPint,Main/InnocentlyInsensitive,VisualNovel/UminekoWhenTheyCry" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/izcfvg.jpg"> <p><span class="bold">Umineko train s...</span></p> </a> <a href="#video-link" data-video-id="tdre7e" data-vimeo-id="" data-video-descrip="Rinny gives her daughter, Nappy, a brutal beating. And that's not as bad as what happens next..." data-video-title="Pretty Blood" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/tdre7e_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/tdre7e.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/tdre7e.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tdre7e.jpg" data-video-trope="Main/NoHoldsBarredBeatdown" data-video-tropename="No-Holds-Barred Beatdown" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="Main/AbusiveParents,Main/BreakTheCutie,WebAnimation/PrettyBlood" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/tdre7e.jpg"> <p><span class="bold">Pretty Blood</span></p> </a> <a href="#video-link" data-video-id="kz9qfz" data-vimeo-id="" data-video-descrip="After years of suffering his father's abuse and seeing him abuse the servants, Grey disowns his father and leaves his home forever." data-video-title="Grey Leaves His Home" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/kz9qfz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/kz9qfz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/kz9qfz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kz9qfz.jpg" data-video-trope="Main/DisownedParent" data-video-tropename="Disowned Parent" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Film/TheScarletSails,Main/AbusiveParents,Main/MeanBoss,Main/ThreatBackfire" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/kz9qfz.jpg"> <p><span class="bold">Grey Leaves His...</span></p> </a> <a href="#video-link" data-video-id="w6dvr9" data-vimeo-id="" data-video-descrip="Rosa destroys the beloved lion plushie that she had given to her own daughter." data-video-title="Sakutaro's death" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/w6dvr9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/w6dvr9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/w6dvr9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/w6dvr9.jpg" data-video-trope="Main/CrushTheKeepsake" data-video-tropename="Crush the Keepsake" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="Main/AbusiveParents,Main/OffWithHisHead,VisualNovel/UminekoWhenTheyCry" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/w6dvr9.jpg"> <p><span class="bold">Sakutaro's death</span></p> </a> <a href="#video-link" data-video-id="dpyw32" data-vimeo-id="" data-video-descrip="Rosa smashes one of her daughter's beloved rabbit toys against a wall. (But that's far from the worst thing that she'll break today...)" data-video-title="Umineko" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dpyw32_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dpyw32.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dpyw32.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dpyw32.jpg" data-video-trope="Main/CrushTheKeepsake" data-video-tropename="Crush the Keepsake" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="Main/AbusiveParents,Main/TantrumThrowing,VisualNovel/UminekoWhenTheyCry" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dpyw32.jpg"> <p><span class="bold">Umineko</span></p> </a> <a href="#video-link" data-video-id="zccqx4" data-vimeo-id="" data-video-descrip="Heffer's biological father is, to say the least, not a very pleasant person." data-video-title="Heffer's real dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zccqx4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zccqx4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zccqx4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zccqx4.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.96" data-video-rating-count="24" data-video-media-sources="Main/Jerkass,WesternAnimation/RockosModernLife,Main/UnpleasantParentReveal" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zccqx4.jpg"> <p><span class="bold">Heffer's real dad</span></p> </a> <a href="#video-link" data-video-id="g5uty4" data-vimeo-id="" data-video-descrip="Of all the fathers we've seen on HB so far, Crimson is a strong contender for the worst, being physically and verbally abusive towards him throughout his life and straight out killing his wife because of disagreements on how to raise him. He continues this behaviour in the present, demanding Moxxie marry his ex Chaz in order to financially benefit from it and threatening to kill her if he doesn't go through with it." data-video-title="Crimson" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/g5uty4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/g5uty4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/g5uty4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g5uty4.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="37" data-video-media-sources="Main/CementShoes,Main/ChildrenForcedToKill,Main/MamaBear,Main/MissingMom,Main/MommasBoy,Main/TroubledBackstoryFlashback,Recap/HelluvaBossS2E3ExesAndOohs,WebAnimation/HelluvaBoss" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/g5uty4.jpg"> <p><span class="bold">Crimson</span></p> </a> <a href="#video-link" data-video-id="jn5cf9" data-vimeo-id="" data-video-descrip="All of Duel and North Academies stand up for Chazz when his brothers bully him, shouting them off the stage." data-video-title="The Princeton Brothers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/jn5cf9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/jn5cf9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/jn5cf9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jn5cf9.jpg" data-video-trope="Main/ShamedByAMob" data-video-tropename="Shamed by a Mob" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="12" data-video-media-sources="Anime/YuGiOhGX,Main/AbusiveParents,Recap/YuGiOhGXS1E26TheSchoolDuel2" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jn5cf9.jpg"> <p><span class="bold">The Princeton B...</span></p> </a> <a href="#video-link" data-video-id="sv9w1g" data-vimeo-id="" data-video-descrip="The episode Fairytale takes place during Bandit's childhood in the 80s. During which we're treated to the different culture and standards of the time, which seem bizarre to his children." data-video-title="It was the 80s" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/sv9w1g_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/sv9w1g.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/sv9w1g.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sv9w1g.jpg" data-video-trope="Main/The80s" data-video-tropename="The '80s" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.95" data-video-rating-count="39" data-video-media-sources="Main/AbusiveParents,Main/DeliberateValuesDissonance,Recap/BlueyFairytale,WesternAnimation/Bluey" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/sv9w1g.jpg"> <p><span class="bold">It was the 80s</span></p> </a> <a href="#video-link" data-video-id="f4uoq6" data-vimeo-id="" data-video-descrip="Kevin has a mean father who forces him to be tough, and when he's later arrested, Kevin promises to be tough and devote his life to justice. He would later save a koala bear and raise her before setting her free to teach it tough love, but she gets run over by a car, devastating Kevin. These events would make Kevin become Koala Man." data-video-title="Koala Man Begins" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/f4uoq6_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/f4uoq6.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/f4uoq6.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/km_s1e05_koala_man_begins.png" data-video-trope="Main/SuperheroOrigin" data-video-tropename="Superhero Origin" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/AbusiveParents,Main/HighKoalatyCuteness,Main/LookBothWays,Main/SkywardScream,Recap/KoalaManS1E05OdeToAKoalaBear,WesternAnimation/KoalaMan" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/km_s1e05_koala_man_begins.png"> <p><span class="bold">Koala Man Begins</span></p> </a> <a href="#video-link" data-video-id="2yr97w" data-vimeo-id="" data-video-descrip="Jeff's father does a sarcastic bit where he acts like Jeff's awards were stolen and hears he never had any, in order to call him a worthless loser." data-video-title="Jeff's Dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2yr97w_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2yr97w.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2yr97w.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yr97w.jpg" data-video-trope="Main/Jerkass" data-video-tropename="Jerkass" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="12" data-video-media-sources="Recap/AmericanDadS3E19JointCustody,WesternAnimation/AmericanDad,Main/AbusiveParents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yr97w.jpg"> <p><span class="bold">Jeff's Dad</span></p> </a> <a href="#video-link" data-video-id="8cnfv8" data-vimeo-id="" data-video-descrip="Is it any wonder that Sheen is as messed up as he is today?" data-video-title="The Bedfellows" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/8cnfv8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/8cnfv8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/8cnfv8.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/8cnfv8.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="14" data-video-media-sources="Main/FemaleFelineMaleMutt,Main/FlippingTheTable,Webcomic/TheBedfellows,Main/UsedToBeASweetKid" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/8cnfv8.jpg"> <p><span class="bold">The Bedfellows</span></p> </a> <a href="#video-link" data-video-id="jmuudj" data-vimeo-id="" data-video-descrip="Ragyo experiments on her own children when they were babies and when one of them seemingly dies she throws it into the trash and leaves it there. This action causes Satsuki and Ragyo's husband to go against her." data-video-title="Ragyo Kiryuin" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/jmuudj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/jmuudj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/jmuudj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jmuudj.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.98" data-video-rating-count="52" data-video-media-sources="Anime/KillLaKill,Main/AbusiveParents,Main/MoralEventHorizon,Main/OffingTheOffspring,Main/WouldHurtAChild" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jmuudj.jpg"> <p><span class="bold">Ragyo Kiryuin</span></p> </a> <a href="#video-link" data-video-id="ywbph5" data-vimeo-id="" data-video-descrip="The Sacred One's (her named revealed to be Melissa) parents were this Up to Eleven. She tried to please them by cleaning and cooking for them, only for them to yell at her. They ruin the dinner she made them to count their stolen loot and call her selfish when she is understandably upset by this. When she decides to move away, they express shock that she had packed a running away suitcase, only to get defensive when she points out that they were the ones who packed it for her. This certainly explains everything from her Obsessively Normal standards towards families and Ax-Crazy disposition." data-video-title="Melissa's "Pieces of Trash"" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ywbph5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ywbph5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ywbph5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ywbph5.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="Recap/NormalBritishSeriesE3APlaceForGood,WebVideo/BrandonRogers" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ywbph5.jpg"> <p><span class="bold">Melissa's "Piec...</span></p> </a> <a href="#video-link" data-video-id="9kj3qf" data-vimeo-id="" data-video-descrip="Luna may be an Ax-Crazy Dark Action Girl, but it isn't without reason.&lt;br&gt;In the climax, she reveals to her hostages Tom DuBois and Robert Freeman (who's also her latest boyfriend) her backstory of how she ran away from home as a young girl, due to having an Abusive Dad who slapped her mother around for petty reasons like undercooking his fried chicken. She then dated a series of men who were also physically, emotionally, and/or verbally abusive to her. Her first boyfriend, a mob boss from Hong Kong named Kenny Wu, even slapped her for the same reason that her dad hit her mom (serving chicken that was too cold)." data-video-title="Luna's life sucked" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9kj3qf_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9kj3qf.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9kj3qf.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kj3qf.jpg" data-video-trope="Main/DomesticAbuse" data-video-tropename="Domestic Abuse" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="34" data-video-media-sources="Main/AbusiveParents,Main/BlackComedy,Main/CrossesTheLineTwice,Main/FreudianExcuse,WesternAnimation/TheBoondocks" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kj3qf.jpg"> <p><span class="bold">Luna's life sucked</span></p> </a> <a href="#video-link" data-video-id="brf8kv" data-vimeo-id="" data-video-descrip="Iroh narrates how Zuko got his scar from his father Ozai when Zuko spoke against sacrificing soldiers and refusing to fight his father." data-video-title="Ozai" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/brf8kv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/brf8kv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/brf8kv.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brf8kv.jpg" data-video-trope="Main/CompleteMonster" data-video-tropename="Complete Monster" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.98" data-video-rating-count="53" data-video-media-sources="Main/AbusiveParents,Recap/AvatarTheLastAirbenderTheStorm,WesternAnimation/AvatarTheLastAirbender,Main/AbuseDiscretionShot,Main/DisproportionateRetribution,Main/EstablishingCharacterMoment,Main/GoryDiscretionShot,Main/ICantLookGesture,Main/NoGoodDeedGoesUnpunished,Main/OhCrap,Main/WouldHurtAChild" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/brf8kv.jpg"> <p><span class="bold">Ozai</span></p> </a> <a href="#video-link" data-video-id="gvl8cx" data-vimeo-id="" data-video-descrip="After helping defend King's Landing, Tyrion asks his father Tywin for the right to Casterly Rock, their family's ancestral home. Tywin does not take this well." data-video-title="Tywin Lannister" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/gvl8cx_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/gvl8cx.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/gvl8cx.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gvl8cx.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="17" data-video-media-sources="Series/GameOfThrones" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/gvl8cx.jpg"> <p><span class="bold">Tywin Lannister</span></p> </a> <a href="#video-link" data-video-id="djv2d5" data-vimeo-id="" data-video-descrip="Frank tells the story of how cruel his father was to him." data-video-title=""Big Bill" Murphy" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/djv2d5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/djv2d5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/djv2d5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/djv2d5.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.88" data-video-rating-count="8" data-video-media-sources="Recap/FIsForFamilyS4E1FatherConfessor,WesternAnimation/FIsForFamily" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/djv2d5.jpg"> <p><span class="bold">"Big Bill" Murphy</span></p> </a> <a href="#video-link" data-video-id="rmam90" data-vimeo-id="" data-video-descrip="Harry is abused and exploited while his cousin Dudley is pampered." data-video-title="Life at Privet Drive" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rmam90_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rmam90.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rmam90.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rmam90.jpg" data-video-trope="Main/TheUnFavourite" data-video-tropename="The Un-Favourite" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.92" data-video-rating-count="13" data-video-media-sources="Main/AbusiveParents,Film/HarryPotterAndThePhilosophersStone2001" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rmam90.jpg"> <p><span class="bold">Life at Privet ...</span></p> </a> <a href="#video-link" data-video-id="wlk38j" data-vimeo-id="" data-video-descrip="Frank, his father-in-law, and his friends argue over who had the worst father." data-video-title="Bad Dad Contest" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/wlk38j_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/wlk38j.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/wlk38j.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wlk38j.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="11" data-video-media-sources="WesternAnimation/FIsForFamily" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/wlk38j.jpg"> <p><span class="bold">Bad Dad Contest</span></p> </a> <a href="#video-link" data-video-id="u8b6rj" data-vimeo-id="" data-video-descrip="He doesn't want people to know Eric/Bobby is his son, and joins the bullies tormenting him." data-video-title="Coach Best" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/u8b6rj_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/u8b6rj.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/u8b6rj.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u8b6rj.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="4" data-video-media-sources="WebVideo/BrandonRogers" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/u8b6rj.jpg"> <p><span class="bold">Coach Best</span></p> </a> <a href="#video-link" data-video-id="nvm2kv" data-vimeo-id="" data-video-descrip="At a low point and spending the night in jail, Cassie Bowden is forced to reckon with her past. She comes to see that the happy, shiny memories she has of life with her father Hank and brother Davey are largely a lie. Her father was an abusive alcoholic jerk who regularly insulted and belittled his own son, and abused her in his own way by turning her into his &quot;drinking buddy&quot; and getting her to collude in his treatment of Davey." data-video-title="Why Did That Change?" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nvm2kv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nvm2kv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nvm2kv.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/why_did_that_change_1.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="Series/TheFlightAttendant,Main/FakeMemories" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/why_did_that_change_1.jpg"> <p><span class="bold">Why Did That Ch...</span></p> </a> <a href="#video-link" data-video-id="ql8bui" data-vimeo-id="479110102" data-video-descrip="The neglectful and emotional abuse variety, what with Helga Pataki living with an alcoholic mother and workaholic father that neglect her and prefer to praise her older sister Olga." data-video-title="Helga Pataki's Abusive Parents" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ql8bui_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ql8bui.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ql8bui.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ql8bui.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="24" data-video-media-sources="WesternAnimation/HeyArnold" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ql8bui.jpg"> <p><span class="bold">Helga Pataki's ...</span></p> </a> <a href="#video-link" data-video-id="7m6m2t" data-vimeo-id="447234748" data-video-descrip="The reason Pacifica is the Alpha Bitch we know today is because her parents raised her that way; they force her to live up to the family name the way they want her to do despite her protests, to the point where Preston has to ring a bell to get her to obey them." data-video-title="Pacifica's struggle" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7m6m2t_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7m6m2t.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7m6m2t.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7m6m2t.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.97" data-video-rating-count="29" data-video-media-sources="WesternAnimation/GravityFalls,Recap/GravityFallsS2E10NorthwestMansionMystery" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7m6m2t.jpg"> <p><span class="bold">Pacifica's stru...</span></p> </a> <a href="#video-link" data-video-id="fzztm5" data-vimeo-id="445081237" data-video-descrip="Amity's parents forced her to end her friendship with Willow and live up to their name." data-video-title="Amity's Past" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fzztm5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fzztm5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fzztm5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fzztm5.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.67" data-video-rating-count="39" data-video-media-sources="Recap/TheOwlHouseS1E15UnderstandingWillow,WesternAnimation/TheOwlHouse,Main/ArrangedFriendship" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fzztm5.jpg"> <p><span class="bold">Amity's Past</span></p> </a> <a href="#video-link" data-video-id="zzyi1l" data-vimeo-id="441223749" data-video-descrip="Danny stands up to his bully and reduces him to a puddle." data-video-title="Melting Bully" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zzyi1l_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zzyi1l.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zzyi1l.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zzyi1l.jpg" data-video-trope="Main/ImMelting" data-video-tropename="I'm Melting!" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="18" data-video-media-sources="WebVideo/DannyGonzalez,Main/AbusiveParents" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zzyi1l.jpg"> <p><span class="bold">Melting Bully</span></p> </a> <a href="#video-link" data-video-id="bfl36d" data-vimeo-id="439134406" data-video-descrip="To Achmed Junior, although AJ isn't above making cracks and practical jokes at his expense." data-video-title="Achmed the Dead Terrorist" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/bfl36d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/bfl36d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/bfl36d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bfl36d.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="3.75" data-video-rating-count="4" data-video-media-sources="Creator/JeffDunham" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bfl36d.jpg"> <p><span class="bold">Achmed the Dead...</span></p> </a> <a href="#video-link" data-video-id="fbzbjb" data-vimeo-id="424662230" data-video-descrip="Naturally, the Devil himself is a shitty parent; seeing his daughter Jezebel as a political piece in his war against Heaven and threatening her for not agreeing to it. " data-video-title="Satan" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fbzbjb_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fbzbjb.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fbzbjb.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fbzbjb.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.92" data-video-rating-count="12" data-video-media-sources="VideoGame/SaintsRowGatOutOfHell" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/fbzbjb.jpg"> <p><span class="bold">Satan</span></p> </a> <a href="#video-link" data-video-id="7hv78j" data-vimeo-id="424805247" data-video-descrip="Maki's mother divorced his father not long ago because he's an abusive asshole, stealing their hard earned money and beating Maki over the slightest provocation. Unfortunately, due to how divorce laws work in Japan, he's still able to track them down and continue to raise hell for them. Sadly, he's not even the only bad parent in this show." data-video-title="Maki's Dad" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7hv78j_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7hv78j.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7hv78j.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7hv78j.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.88" data-video-rating-count="17" data-video-media-sources="Anime/StarsAlign" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7hv78j.jpg"> <p><span class="bold">Maki's Dad</span></p> </a> <a href="#video-link" data-video-id="nr0knp" data-vimeo-id="421751692" data-video-descrip="Even as an adoptive father to Quasimodo, Frollo is highly abusive of his adopted ward and makes Quasimodo emotionally dependent on him. Shown in the grape scene of the Hunchback of Notre Dame, where he explodes on Quasimodo for letting Esmeralda escape Notre Dame and that all of Paris is burning because of him, despite the fact that Frollo is the one actually torching the city." data-video-title="Grape Scene" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/nr0knp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/nr0knp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/nr0knp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nr0knp.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.86" data-video-rating-count="22" data-video-media-sources="WesternAnimation/TheHunchbackOfNotreDameDisney,Main/NeverMyFault" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/nr0knp.jpg"> <p><span class="bold">Grape Scene</span></p> </a> <a href="#video-link" data-video-id="hgp2t8" data-vimeo-id="407731145" data-video-descrip="Throughout his life, Beatrice was emotionally &amp; psychologically abusive towards Bojack, blaming him for supposedly ruining her life." data-video-title="Beatrice Horseman" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hgp2t8_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hgp2t8.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hgp2t8.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hgp2t8.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="20" data-video-media-sources="Recap/BojackHorsemanS2E09TheShot,WesternAnimation/BojackHorseman" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hgp2t8.jpg"> <p><span class="bold">Beatrice Horseman</span></p> </a> <a href="#video-link" data-video-id="ou41ep" data-vimeo-id="399668247" data-video-descrip="Where did Christina get wire hangers anyway?" data-video-title="No Wire Hangers Ever" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ou41ep_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ou41ep.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ou41ep.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ou41ep.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="Literature/MommieDearest" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ou41ep.jpg"> <p><span class="bold">No Wire Hangers...</span></p> </a> <a href="#video-link" data-video-id="vy2n7m" data-vimeo-id="385627162" data-video-descrip="Butterscotch Horseman displays the full extent of his emotional abuse/manipulations towards BoJack while driving him home. " data-video-title="Bojack's Father Monologue" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vy2n7m_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vy2n7m.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vy2n7m.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vy2n7m.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.80" data-video-rating-count="20" data-video-media-sources="WesternAnimation/BojackHorseman" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vy2n7m.jpg"> <p><span class="bold">Bojack's Father...</span></p> </a> <a href="#video-link" data-video-id="44f0ut" data-vimeo-id="356765621" data-video-descrip="Diamond Tiara has an emotionally abusive mother, Spoiled Rich, who berates her for losing the election and is revealed to have raised her to be the bully she is today." data-video-title="Spoiled Rich" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/44f0ut_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/44f0ut.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/44f0ut.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/44f0ut.jpg" data-video-trope="Main/AbusiveParents" data-video-tropename="Abusive Parents" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.15" data-video-rating-count="20" data-video-media-sources="Main/RichBitch,WesternAnimation/MyLittlePonyFriendshipIsMagic,Recap/MyLittlePonyFriendshipIsMagicS5E19CrusadersOfTheLostMark" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/44f0ut.jpg"> <p><span class="bold">Spoiled Rich</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&c2=38282685&cv=3.6.0&cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>