CINXE.COM
Our Genies Are Different - TV Tropes
<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "2ee58fb49f74484952c2d172f55c446e74ca485c", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Our Genies Are Different - TV Tropes</title> <meta name="description" content="The Our Genies Are Different trope as used in popular culture. In Middle Eastern folklore and Islam, genies (jinn, Arabic for "hidden") were the first beings …" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent" /> <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="Our Genies Are Different - TV Tropes" /> <meta name="twitter:description" content="The Our Genies Are Different trope as used in popular culture. In Middle Eastern folklore and Islam, genies (jinn, Arabic for "hidden") were the first beings …" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/genie_collage_2_7.jpg" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Our Genies Are Different - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/genie_collage_2_7.jpg" /> <meta property="og:description" content="In Middle Eastern folklore and Islam, genies (jinn, Arabic for "hidden") were the first beings with free will, created out of "smokeless fire" by God before he created the First Man out of clay. They are (usually) invisible beings that are …" /> <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=2ee58fb49f74484952c2d172f55c446e74ca485c" /> <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/AscendedFridgeHorror" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/WebVideo/GeographyNow" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, fb_token, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).forEach(el => { el.classList.toggle(toggleClass); }); } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/OurGeniesAreDifferent"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.OurGeniesAreDifferent" 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.OurGeniesAreDifferent" 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/OurGeniesAreDifferent?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="OurGeniesAreDifferent"/> <input type="hidden" id="article_id" value="22419" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent</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"> Our Genies Are Different </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": "Our Genies Are Different", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Our Genies Are Different", "headline": "Our Genies Are Different", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/OurGeniesAreDifferent", "image": "https://static.tvtropes.org/pmwiki/pub/images/genie_collage_2_7.jpg", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-12-14T00:00:00-08:00", "dateModified": "2024-11-23T22:25:13-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/OurGeniesAreDifferent" 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/OurGeniesAreDifferent" 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/OurGeniesAreDifferent" 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/VideoExamples/OurGeniesAreDifferent" 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/OurGeniesAreDifferent?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/OurGeniesAreDifferent?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/OurGeniesAreDifferent?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/OurGeniesAreDifferent?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/OurGeniesAreDifferent?action=edit">DerivativeWork…</option> <option value="/pmwiki/pmwiki.php/FanWorks/OurGeniesAreDifferent?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/OurGeniesAreDifferent?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/OurGeniesAreDifferent?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/OurGeniesAreDifferent?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/OurGeniesAreDifferent?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/OurGeniesAreDifferent?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/OurGeniesAreDifferent?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/OurGeniesAreDifferent?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/OurGeniesAreDifferent?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/OurGeniesAreDifferent?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/OurGeniesAreDifferent?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/OurGeniesAreDifferent?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/OurGeniesAreDifferent?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/OurGeniesAreDifferent?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/OurGeniesAreDifferent?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/OurGeniesAreDifferent?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/OurGeniesAreDifferent?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/OurGeniesAreDifferent?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/OurGeniesAreDifferent?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/OurGeniesAreDifferent?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/OurGeniesAreDifferent?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/OurGeniesAreDifferent?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--
--> <!--
--> <!-- This page has been alphabetized. Please add new examples in the correct order. Thanks!--> <!--
--> <!--
--> <!-- Image selected per Image Pickin' thread: https://tvtropes.org/pmwiki/posts.php?discussion=1565402745079211800--> <!-- Please do not replace or remove without starting a new thread.--> <!--
--> </p><p><div class="quoteright" style="width:350px;" ><div class="lazy_load_img_box" style="padding-top:83.43%"><img src='https://static.tvtropes.org/pmwiki/pub/images/genie_collage_2_7.jpg' class='embeddedimage' border='0' alt='Our Genies Are Different (trope)' width=350 height=292></div></div> <div class="acaptionright" style="width:350px;" >Your wish is their command... Sometimes.<span class="notelabel" onclick="togglenote('note0lftk');"><sup>note </sup></span><span id="note0lftk" class="inlinefolder" isnote="true" onclick="togglenote('note0lftk');" style="cursor:pointer;font-size:smaller;display:none;">Clockwise from top left: The Genie from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' title='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FsYWRkaW58MTk5MkRpc25leX19'>Aladdin</a></em>, a Djnn from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>, Jeannie from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' title='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' data-format='U2VyaWVzL0lEcmVhbU9mSmVhbm5pZQ=='>I Dream of Jeannie</a></em>, and a malicious Djnn from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheWitcher' title='/pmwiki/pmwiki.php/Franchise/TheWitcher' data-format='RnJhbmNoaXNlL1RoZVdpdGNoZXI='>The Witcher</a></em>.</span></div> <!--
--> <!-- Caption selected per above IP thread. Please do not replace or remove without discussion in the Caption Repair thread:--> <!-- https://tvtropes.org/pmwiki/posts.php?discussion=1404492079030138900--> <!--
--> </p><p><div class='indent'><em>"I beg you, my son," she said, "by the milk with which I suckled you, throw away the lamp and the ring! They can only cause us a great deal of terror, and I couldn't bear to look at that jinnee a second time. Moreover, it is unlawful to have relations with them."</em> <div class='indent'>— <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Aladdin' title='/pmwiki/pmwiki.php/Literature/Aladdin' data-format='TGl0ZXJhdHVyZS97e0FsYWRkaW59fQ=='>Aladdin</a>'s mother</strong>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em> </div></div></p><p>In <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TheMiddleEast' title='/pmwiki/pmwiki.php/UsefulNotes/TheMiddleEast' data-format='W1tVc2VmdWxOb3Rlcy9UaGVNaWRkbGVFYXN0IE1pZGRsZSBFYXN0ZXJuXV0='>Middle Eastern</a> folklore and <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Islam' title='/pmwiki/pmwiki.php/UsefulNotes/Islam' data-format='VXNlZnVsTm90ZXMve3tJc2xhbX19'>Islam</a>, genies (<em>jinn</em>, Arabic for "hidden") were the first beings with free will, created out of "smokeless fire" by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/God' title='/pmwiki/pmwiki.php/Main/God' data-format='e3tHb2R9fQ=='>God</a> before he created the First Man out of clay. They are (usually) invisible beings that are actually <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WhatMeasureIsANonHuman' title='/pmwiki/pmwiki.php/Main/WhatMeasureIsANonHuman' data-format='W1tXaGF0TWVhc3VyZUlzQU5vbkh1bWFuIG1vcmUgbGlrZSBodW1hbnMgdGhhbiB3ZSByZWFsaXplXV0='>more like humans than we realize</a> — they are born, grow up, marry, have children and eventually die. They are said to be made of "smokeless fire", perhaps something along the lines of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnergyBeings' title='/pmwiki/pmwiki.php/Main/EnergyBeings' data-format='RW5lcmd5QmVpbmdz'>Energy Beings</a>. They are also extremely long-lived and highly skilled in magic. However, they can be killed by mundane means, if the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em> is any indication. (At least a couple of genies there being done in by a rock to the head.) They were sometimes trapped in bottles. They might grant you a wish if you free them, or they might have been bound to something like a ring or a lamp and forced to obey the orders of anyone who summoned them. Genies are creatures of free will; they can be good or evil and may even be religious (there are Muslim genies, Christian genies, Jewish genies, etc...), and when there are enough of them around, they can form a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WainscotSociety' title='/pmwiki/pmwiki.php/Main/WainscotSociety' data-format='V2FpbnNjb3RTb2NpZXR5'>Wainscot Society</a>, sometimes living invisibly alongside humans. There are even various types of djinn, not unlike how <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFairFolk' title='/pmwiki/pmwiki.php/Main/TheFairFolk' data-format='VGhlRmFpckZvbGs='>The Fair Folk</a> comprises many different creatures. Belief in genies is still common in the Middle East today. </p><p>In Islamic theology, God told the Djinn that they should bow to man's superiority, but their leader, Iblis, refused to do so; thus, a good chunk of them ended up imprisoned by Suleiman and other holy men in lamps and such and forced to grant wishes. Genies in Islam can also possess humans for a variety of reasons — they might have a crush on the human, or they might just be a jerkwad. During exorcisms, the genie is given the option to convert to Islam, leave the body of the human or die. Iblis, by the way, never repented, and in fact swore that he would corrupt mankind... in other words, he's their version of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Satan' title='/pmwiki/pmwiki.php/Main/Satan' data-format='e3tTYXRhbn19'>Satan</a> (and in fact is sometimes called Shayṭān or Shaitan).<span class="notelabel" onclick="togglenote('note15h6m');"><sup>note </sup></span><span id="note15h6m" class="inlinefolder" isnote="true" onclick="togglenote('note15h6m');" style="cursor:pointer;font-size:smaller;display:none;">On a related note, linguists have proposed that that the word <em>Iblis</em> is etymologically derived from the Ancient Greek word <em>Diabolos</em>. That is, the Devil.</span> </p><p>In popular Western media, genies are immortal beings almost invariably <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='W1tHZW5pZUluQUJvdHRsZSB0cmFwcGVkIGluc2lkZSBhIGxhbXAgb3IgYSBib3R0bGVdXQ=='>trapped inside a lamp or a bottle</a>, often <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuperSmoke' title='/pmwiki/pmwiki.php/Main/SuperSmoke' data-format='W1tTdXBlclNtb2tlIG1hdGVyaWFsaXppbmcgdGhyb3VnaCBhIHB1ZmYgb2Ygc21va2VdXQ=='>materializing through a puff of smoke</a>. (Originally, at least part of those items only acted as a means to summon the genie and didn't actually contain it). They must grant you <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThreeWishes' title='/pmwiki/pmwiki.php/Main/ThreeWishes' data-format='VGhyZWVXaXNoZXM='>Three Wishes</a> ("And ix-nay on the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WishingForMoreWishes' title='/pmwiki/pmwiki.php/Main/WishingForMoreWishes' data-format='V2lzaGluZ0Zvck1vcmVXaXNoZXM='>Wishing for More Wishes</a>!"), which they may or may not screw up horribly. (In the <em>Arabian Nights</em>, this number ranged from one to infinity). Their precise spelling varies, but "djinn", "jinn" and "genie" are the most common; generally, depictions based more closely on the original folklore are called djinni or jinni, while the more modern three-wishes kind are more likely to be called genies. </p><p>Also, Genies are extremely likely to be an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AmazingTechnicolorPopulation' title='/pmwiki/pmwiki.php/Main/AmazingTechnicolorPopulation' data-format='QW1hemluZ1RlY2huaWNvbG9yUG9wdWxhdGlvbg=='>Amazing Technicolor Population</a> and to have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FogFeet' title='/pmwiki/pmwiki.php/Main/FogFeet' data-format='Rm9nRmVldA=='>Fog Feet</a>. Female genies in modern media typically wear <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BedlahBabe' title='/pmwiki/pmwiki.php/Main/BedlahBabe' data-format='QmVkbGFoQmFiZQ=='>Bedlah Babe</a> outfits. </p><p>A few specific types of genies also tend to crop up. The most common are <strong>efreet</strong> (also spelled ifrit, afrit, and afreet). In Arabic folklore, these are generally understood as a particularly dangerous and chthonic, but not necessarily inherently evil, type of spirits; they usually have some link to "regular" jinni, and may be seen as a specific kind of the broader group, but this is somewhat vague and not always constant. In modern fiction, efreet/ifrits are usually a specific type of genie, and are often depicted as closely linked to fire; they are usually either evil or simply more powerful and less predictable than other or true genies. </p><p>The correct Arabic grammar is "one <em>djinni</em>", "two <em>djinn</em>" (also spelled <em>jinn(i)</em>). The English word "genie", used to translate "djinni", derives from the Roman "genius", which is the spirit inherent to any person or object, such as in the term <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GeniusLoci' title='/pmwiki/pmwiki.php/Main/GeniusLoci' data-format='e3tnZW5pdXMgbG9jaX19'>genius loci</a>. The same concept in Hebrew is called a shed ("one <em>shed</em>", "two <em>shedim</em>") and shida in Aramaic. </p><p>See also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='R2VuaWVJbkFCb3R0bGU='>Genie in a Bottle</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='QmVuZXZvbGVudEdlbmll'>Benevolent Genie</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='SmFja2Fzc0dlbmll'>Jackass Genie</a>. Not to mention <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurGhoulsAreCreepier' title='/pmwiki/pmwiki.php/Main/OurGhoulsAreCreepier' data-format='T3VyR2hvdWxzQXJlQ3JlZXBpZXI='>Our Ghouls Are Creepier</a>; ghouls have their origins as a class of djinn, although modern Western works rarely depict them as such. And there's always a chance that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGenieKnowsJackNicholson' title='/pmwiki/pmwiki.php/Main/TheGenieKnowsJackNicholson' data-format='VGhlR2VuaWVLbm93c0phY2tOaWNob2xzb24='>The Genie Knows Jack Nicholson</a>. </p><p><hr data-format='——' /> <h2>Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();"> open/close all folders </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');"> Animation </div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the English dub of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Animation/NanaMoon' title='/pmwiki/pmwiki.php/Animation/NanaMoon' data-format='QW5pbWF0aW9uL05hbmFNb29u'>Nana Moon</a></em>, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Lunarians' title='/pmwiki/pmwiki.php/Main/Lunarians' data-format='e3tsdW5hcmlhbnN9fQ=='>lunarians</a> are referred to as "moon genies" despite having absolutely nothing in common with stereotypical depictions of the mythical beings. In the Chinese original, they're called "moon elves" instead. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');"> Anime & Manga </div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DoraemonNobitasDorabianNights' title='/pmwiki/pmwiki.php/Anime/DoraemonNobitasDorabianNights' data-format='QW5pbWUvRG9yYWVtb25Ob2JpdGFzRG9yYWJpYW5OaWdodHM='>Doraemon: Nobita's Dorabian Nights</a></em>, being a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Crossover' title='/pmwiki/pmwiki.php/Main/Crossover' data-format='e3tDcm9zc292ZXJ9fQ=='>Crossover</a> with the <a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a>-verse, have a few odd genies. <ul ><li> One of the new characters introduced in the episode is Mikujin, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheDitz' title='/pmwiki/pmwiki.php/Main/TheDitz' data-format='W1tUaGVEaXR6IGRpdHp5XV0='>ditzy</a> robot-genie from the future hired by Doraemon as a tour guide. He looks like a cat crossed over with a genie, but is a robot underneath, with his name lampshading it ("<em>miku</em>" - a variant of "<em>mirai</em>", or future. So he's a "future"-djinn, get it?) </li><li> Doraemon and gang are rescued by Sinbad halfway through and gets to explore Sinbad's castle of enchanted goods, one of them being a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='R2VuaWVJbkFCb3R0bGU='>Genie in a Bottle</a> - when the bottle is sealed, the genie sleeps inside at a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SleepModeSize' title='/pmwiki/pmwiki.php/Main/SleepModeSize' data-format='U2xlZXBNb2RlU2l6ZQ=='>Sleep-Mode Size</a>. It then grows into a <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/Kaiju' title='/pmwiki/pmwiki.php/Main/Kaiju' data-format='e3trYWlqdX19'>kaiju</a></em>-sized behemoth once the stopper is removed, and carries out every bidding given by it's owner. Unfortunately said bottle gets stolen by the villains late in the story. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/DragonBall' title='/pmwiki/pmwiki.php/Franchise/DragonBall' data-format='RnJhbmNoaXNlL0RyYWdvbkJhbGw='>Dragon Ball</a></em>: <ul ><li> Majin Buu, or Djinn-Boo in the Viz manga, is quite genie-like both in appearance (most notably his Arabic clothing), and in the fact that he first manifests as smoke after being unsealed from a container. Other genie-like attributes include his magical powers (such as shapeshifting and being able to transmute other objects/beings), effective immortality, and debut appearance which featuring him being summoned by an evil sorcerer who tries to order him around. As noted earlier, he was called Djinn-Boo in the manga, as one could make a case for translating it either way. Though due to the "M" symbols on Buu himself, and other Buu-related things, "Majin" is generally preferred over Djinn.<span class="notelabel" onclick="togglenote('note24mbs');"><sup>note </sup></span><span id="note24mbs" class="inlinefolder" isnote="true" onclick="togglenote('note24mbs');" style="cursor:pointer;font-size:smaller;display:none;">Good luck finding a consensus on Boo vs. Buu, though</span> <a class='urllink' href='http://www.kanzenshuu.com/press-archive/shonen-jump-october-2007-dragon-ball-collector-interview-with-the-majin/'>In a 2007 interview<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, Toriyama stated that he came up with Buu's design because he saw <em>The Arabian Nights</em> as a kid, and "had this set image of what a Majin, or genie, should look like", confirming that he thinks of Buu as a kind of genie (or at least modelled him on one). </li><li> The dragons themselves combine this trope with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' data-format='T3VyRHJhZ29uc0FyZURpZmZlcmVudA=='>Our Dragons Are Different</a>. Shenlong (or "Shenron") is the first such creature introduced, and appeared to be an all-powerful, Eastern-style dragon with no limitations regarding whatever wish is asked of him. Later, it not only turns out he's entirely mortal (when he's killed directly by King Piccolo), but that he is only capable of granting wishes that don't exceed the power-based limitations of his creator (an alien that confirmed he designed the balls as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlotCoupon' title='/pmwiki/pmwiki.php/Main/PlotCoupon' data-format='e3tQbG90IENvdXBvbn19cw=='>Plot Coupons</a> as a test of character to whomever decided to collect them). If the creator dies, the dragon goes with him. Note that while their <em>powers</em> may be different, every dragon depicted in the series is generally presented with the same setup: they're sealed inside a magical object, an incantation must be recited to awaken them, and then they'll grant one, two, or even three wishes. They're not <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='W1tKYWNrYXNzR2VuaWUgamVya3NdXQ=='>jerks</a>, and are kind enough to admit when their restrictions will not work in the wisher's favor, even suggesting different wishes as an alternative. Then, they take their leave, waiting for the Dragon Balls to be gathered again to do the same shtick all over again. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/MagiTheLabyrinthOfMagic' title='/pmwiki/pmwiki.php/Manga/MagiTheLabyrinthOfMagic' data-format='TWFuZ2EvTWFnaVRoZUxhYnlyaW50aE9mTWFnaWM='>Magi: The Labyrinth of Magic</a></em>, djinn are more like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlympusMons' title='/pmwiki/pmwiki.php/Main/OlympusMons' data-format='T2x5bXB1c01vbnM='>Olympus Mons</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BondCreatures' title='/pmwiki/pmwiki.php/Main/BondCreatures' data-format='Qm9uZENyZWF0dXJlcw=='>Bond Creatures</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GuardianEntity' title='/pmwiki/pmwiki.php/Main/GuardianEntity' data-format='W1tHdWFyZGlhbkVudGl0eSBHdWFyZGlhbiBFbnRpdGllc11d'>Guardian Entities</a>. <ul ><li> <span class="spoiler" title="you can set spoilers visible by default on your profile" >And former humans who absorbed soul power after one of their former allies lost her mind (she watched her god get murdered by Solomon) and ritually sacrificed 99% of life on the face of the planet</span>. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/OnePiece' title='/pmwiki/pmwiki.php/Manga/OnePiece' data-format='TWFuZ2EvT25lUGllY2U='>One Piece</a></em>, one of "Big Mom" Charlotte Linlin's sons, Daifuku, has a Devil Fruit power that doesn't turn him into a genie, or grant him a lamp, but instead makes Daifuku himself a lamp, able to summon a halberd-wielding genie from his own body by rubbing himself, to fight his enemies. </li><li> Turbain use a genie as his guardian ghost in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Manga/ShamanKing' title='/pmwiki/pmwiki.php/Manga/ShamanKing' data-format='TWFuZ2EvU2hhbWFuS2luZw=='>Shaman King</a></em>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/Bucchigiri' title='/pmwiki/pmwiki.php/Anime/Bucchigiri' data-format='QW5pbWUve3tCdWNjaGlnaXJpfX0='>Bucchigiri?!</a></em> genies are referred to as "Honki people" and Senya mentions that "Honki" has the same spelling as "Majin". He's still able to grant wishes for people but he and his kind have a rich history of fighting opponents to become stronger, which causes lots of annoyance between Senya and Arajin who each seek different things. Another unusual detail is that instead of a lamp, Senya resides in a tiny metal plate that gets stuck on Arajin's head. There also exists another Honki genie named Ichiya. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');"> Card Games </div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' title='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' data-format='VGFibGV0b3BHYW1lL01hZ2ljVGhlR2F0aGVyaW5n'>Magic: The Gathering</a></em> features both djinn and efreet as creature types. They tend to be fairly powerful for their cost, but often have some drawback or ability reflecting their general fickleness, like dealing damage to their controller, making enemy creatures stronger or harder to block, or only attacking or blocking when they feel like it according to a coin flip. They're also two of the few creature types that have cards specifically intended to neutralize them — <a class='urllink' href='https://scryfall.com/card/arn/6/king-suleiman'>King Suleiman<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and his <a class='urllink' href='https://scryfall.com/card/vis/138/suleimans-legacy'>legacy<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, respectively; the former can destroy any one djinn or efreet when activated, while the latter destroys all djinn and efreets on the field when played. <ul ><li> Djinn are usually tied to Blue mana; they are usually associated with either air or water, more commonly the former. They often have powerful abilities, such as <a class='urllink' href='https://scryfall.com/card/cma/38/djinn-of-infinite-deceits'>Djinn of Infinite Deceits<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, which gives you control of one of your opponents' creatures while giving them control of one of yours, and <a class='urllink' href='https://scryfall.com/card/c18/87/djinn-of-wishes'>Djinn of Wishes<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, which lets you play up to three cards of your choice for free. In older sets they're more monstrous and hostile, and have a weaker link to Blue mana; more recent djinn are more clearly Blue-focused and consequently tend to be more contemplative and peaceful. Older djinn usually have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FogFeet' title='/pmwiki/pmwiki.php/Main/FogFeet' data-format='Rm9nRmVldA=='>Fog Feet</a>; modern ones resemble blue-skinned, pointy-eared humans instead. The ones from the plane of Tarkir also have horns. </li><li> Efreets were not particularly distinct from djinn in older sets, and consequently don't appear there much. Modern efreets are closely tied to Red mana and to the element of fire, and have a clearer <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlueOniRedOni' title='/pmwiki/pmwiki.php/Main/BlueOniRedOni' data-format='Qmx1ZU9uaVJlZE9uaQ=='>Blue Oni, Red Oni</a> relationship with djinn — while djinn are passive and thoughtful, efreets are wild, emotional and impulsive. Efreets from Tarkir are tall, spindly humanoids with red-and-black skin, three backwards-pointing horns and short barbels around their mouths, while those of Arcavios resemble red-skinned humans. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');"> Comic Books </div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> One of the main characters of G. Willow Wilson's <em>Cairo</em> is a three-piece suit-wearing genie inhabiting a water-pipe who grants wishes by manipulating probability. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DCComics' title='/pmwiki/pmwiki.php/Creator/DCComics' data-format='Q3JlYXRvci9EQ0NvbWljcw=='>DC Comics</a> character Johnny Thunder was a clueless young man who inherited a genie-like being called The Thunderbolt (who seemed to be a living bolt of lightning) that obeyed his commands- if he said the magic words "Cei-U" first (pronounced "say you!"- as you can imagine from that, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HilarityEnsues' title='/pmwiki/pmwiki.php/Main/HilarityEnsues' data-format='W1tIaWxhcml0eUVuc3VlcyBoaWxhcml0eSBvZnRlbiBlbnN1ZWRdXQ=='>hilarity often ensued</a>.) It was later revealed that there's a whole <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnotherDimension' title='/pmwiki/pmwiki.php/Main/AnotherDimension' data-format='W1tBbm90aGVyRGltZW5zaW9uIGRpbWVuc2lvbl1d'>dimension</a> of creatures like The Thunderbolt. The Thunderbolt later passed to a young African-American boy named Jakeem, and merged with another "genie" to create a new being summoned by the magic words "So Cul" (pronounced "so cool"). <ul ><li> Also the original <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLantern' title='/pmwiki/pmwiki.php/ComicBook/GreenLantern' data-format='Q29taWNCb29rL0dyZWVuTGFudGVybg=='>Green Lantern</a> was actually a man who find a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='R2VuaWVJbkFCb3R0bGU='>Genie in a Bottle</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Djinn' title='/pmwiki/pmwiki.php/ComicBook/Djinn' data-format='Q29taWNCb29rL3t7RGppbm59fQ=='>Djinn</a></em>: Rather than wish-granting spirits with foggy feet, they are Middle-Eastern <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuccubiAndIncubi' title='/pmwiki/pmwiki.php/Main/SuccubiAndIncubi' data-format='U3VjY3ViaUFuZEluY3ViaQ=='>Succubi and Incubi</a> with the ability to enthrall virtually any human with their beauty, but they are devoid of compassion, love and feelings. Jade, the main protagonist's grandmother, was one such creature and was the Ottoman Sultan's favorite concubine in his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyalHarem' title='/pmwiki/pmwiki.php/Main/RoyalHarem' data-format='e3tyb3lhbCBoYXJlbX19'>royal harem</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/EightBillionGenies' title='/pmwiki/pmwiki.php/ComicBook/EightBillionGenies' data-format='Q29taWNCb29rL0VpZ2h0QmlsbGlvbkdlbmllcw=='>Eight Billion Genies</a>:</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TwentyMinutesIntoTheFuture' title='/pmwiki/pmwiki.php/Main/TwentyMinutesIntoTheFuture' data-format='W1tUd2VudHlNaW51dGVzSW50b1RoZUZ1dHVyZSBFYXJ0aCwgYSBzaG9ydCB0aW1lIGZyb20gbm93LF1d'>Earth, a short time from now,</a> gets a visit from eight billion genies, one for every person on Earth. The genies are small, translucent blue creatures from another dimension, they offer one wish each, and there's one of them assigned to every human being on Earth. <a class='urllink' href='https://bookandfilmglobe.com/wp-content/uploads/2022/07/Screen-Shot-2022-07-01-at-9.41.22-AM-800x445.png'>Madness ensues very quickly.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>◊</small> They're not bound by a lamp or any other restriction: they grant wishes because they see it as an art. As a result, they refuse to grant wishes that would cancel out too many other people's (a zombie apocalypse, world peace, any one country taking over the whole world), and break out in applause when they get to grant a completely selfless wish. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Fables' title='/pmwiki/pmwiki.php/ComicBook/Fables' data-format='Q29taWNCb29rL3t7RmFibGVzfX0='>Fables</a></em> plays with the idea that a djinn's lamp is actually <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TailorMadePrison' title='/pmwiki/pmwiki.php/Main/TailorMadePrison' data-format='W1tUYWlsb3JNYWRlUHJpc29uIGEgdmVyeSBlbGFib3JhdGUgcHJpc29uXV0='>a very elaborate prison</a> for <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OmnicidalManiac' title='/pmwiki/pmwiki.php/Main/OmnicidalManiac' data-format='W1tPbW5pY2lkYWxNYW5pYWMgYSB2ZXJ5IHBvd2VyZnVsLCB2ZXJ5IGRlc3RydWN0aXZlIGJlaW5nIG9mIGNoYW9zLl1d'>a very powerful, very destructive being of chaos.</a> As such, it is very important that your third wish be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SealedEvilInACan' title='/pmwiki/pmwiki.php/Main/SealedEvilInACan' data-format='W1tTZWFsZWRFdmlsSW5BQ2FuIGZvciB0aGUgZGppbm4gdG8gcmV0dXJuIHRvIGhpcyBpbXByaXNvbm1lbnQgaW4gdGhlIGxhbXAuXV0='>for the djinn to return to his imprisonment in the lamp.</a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GoldDiggerAntarcticPress' title='/pmwiki/pmwiki.php/ComicBook/GoldDiggerAntarcticPress' data-format='Q29taWNCb29rL0dvbGREaWdnZXJBbnRhcmN0aWNQcmVzcw=='>Gold Digger (Antarctic Press)</a></em> reveals genies to be basically a highly evolved version of artificial magitech lifeforms made as companion-pets who'd 'aid and protect' the children they were with as one of their functions. This directive leading to them, as they grew in stature and intelligence, developing further powers they could only unlock in the service of others- or, 'wishes.' Reflecting the two designs of the original companions, the genies have two physical variants, one with four arms, and the other with their eyes on their stomachs rather than their faces. <ul ><li> The latter configuration causes trouble for one woman who went on a date with a coworker who happened to be a Genie. At the end of the date, she convinces him to show her his real eyes, and she spends some time staring into them, face-to-abdomen. Problem was, they were sitting in a <em>car</em>, and a photographer waiting for them came to entirely the wrong conclusion... </li></ul></li><li> According to a story in <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/LegionOfSuperHeroes' title='/pmwiki/pmwiki.php/ComicBook/LegionOfSuperHeroes' data-format='Q29taWNCb29rL0xlZ2lvbk9mU3VwZXJIZXJvZXM='>Legion of Super-Heroes</a></em>, the Djinn were a technological race who attempted to invade the wrong planet: <a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/GreenLantern' title='/pmwiki/pmwiki.php/ComicBook/GreenLantern' data-format='W1tDb21pY0Jvb2svR3JlZW5MYW50ZXJuIE9hXV0='>Oa</a>. The Guardians promptly sealed each one in a bottle until he or she granted someone three wishes. The Legionnaires find one 40 light-years from Earth. </li><li> Baraka from <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/SoulsearchersAndCompany' title='/pmwiki/pmwiki.php/ComicBook/SoulsearchersAndCompany' data-format='Q29taWNCb29rL1NvdWxzZWFyY2hlcnNBbmRDb21wYW55'>Soulsearchers and Company</a></em> is a Arabic fire demon (also known as a djinn) who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='W1tHZW5pZUluQUJvdHRsZSBkd2VsbHMgaW4gYSBib3R0bGVdXQ=='>dwells in a bottle</a>. However, he is also a slob and whenever his bottle gets too dirty, he moves into a new one. </li><li> A genie who manages to combine <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='QmVuZXZvbGVudEdlbmll'>Benevolent Genie</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a>, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='SmFja2Fzc0dlbmll'>Jackass Genie</a> shows up in one <em><a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PhilFoglio' title='/pmwiki/pmwiki.php/Creator/PhilFoglio' data-format='W1tDcmVhdG9yL1BoaWxGb2dsaW8gWHh4ZW5vcGhpbGVdXQ=='>Xxxenophile</a></em> story. He's in love with the heroine, and, when an evil general captures her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IHaveYouNowMyPretty' title='/pmwiki/pmwiki.php/Main/IHaveYouNowMyPretty' data-format='W1tJSGF2ZVlvdU5vd015UHJldHR5IGZvciB0aGUgZXhwZWN0ZWQgcmVhc29uXV0='>for the expected reason</a>, he interprets one of the general's commands as creating a new legal identity for the heroine, thus allowing him to grant her three new wishes, which she uses to defeat the general. He's also bound to his lamp until someone makes a wish that he <em>wants</em> to grant but isn't able to. This being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PornWithPlot' title='/pmwiki/pmwiki.php/Main/PornWithPlot' data-format='W1tQb3JuV2l0aFBsb3QgWHh4ZW5vcGhpbGVdXQ=='>Xxxenophile</a>, that wish is for another round of wild sex right after he's exhausted himself. </li><li> The genie of one weird sci-fi tale was actually a super-advanced alien whose ship was freed from the ice it was imprisoned in by an Arctic explorer. When he mentioned the tale of the wish-granting genie the alien offered to use his vast psionic powers to grant his rescuer three wishes. He promptly screws up and after accidentally wishing himself with his third wish into being transformed into a copy of the alien inadvertently uses the powers he had to prevent himself from ever making the bargain in the first place (although the alien has to explain to him that he'd granted the fourth wish himself). </li><li> One story in DC Comics' <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/ComicBook/TheHouseOfMystery' title='/pmwiki/pmwiki.php/ComicBook/TheHouseOfMystery' data-format='Q29taWNCb29rL1RoZUhvdXNlT2ZNeXN0ZXJ5'>The House Of Mystery</a></em> featured a demon in a bottle. The demon could seemingly grant any wish, any number of wishes, but if you still owned the bottle when you died, the demon would claim your soul. Also, you couldn't give the bottle to someone else, throw it away, abandon it or break it, and you could only pass it on by selling it <em>for less than you paid for it</em>. Which meant that the more times it got passed on, the harder it was to lose it. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');"> Fan Works </div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/AngelOfTheBat' title='/pmwiki/pmwiki.php/Fanfic/AngelOfTheBat' data-format='W1tGYW5maWMvQW5nZWxPZlRoZUJhdCBBbmdlbCBvZiB0aGUgQmF0IElJSTogRGEgUGFjZW0gRG9taW5lXV0='>Angel of the Bat III: Da Pacem Domine</a></em>: No full-blooded jinn are ever seen, but the presence of Nijah, who is a mostly human <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnevenHybrid' title='/pmwiki/pmwiki.php/Main/UnevenHybrid' data-format='VW5ldmVuSHlicmlk'>Uneven Hybrid</a>, confirms they can have children with humans. Utilizing her jinn powers is treated as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneWingedAngel' title='/pmwiki/pmwiki.php/Main/OneWingedAngel' data-format='T25lV2luZ2VkQW5nZWw='>One-Winged Angel</a> transformation. In that state her skin is consumed with fire, she can functionally teleport by transforming into a gust of hot wind and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DreamWalker' title='/pmwiki/pmwiki.php/Main/DreamWalker' data-format='W1tEcmVhbVdhbGtlciBhcHBlYXIgaW4gdGhlIGRyZWFtcyBvZiBvdGhlciBjaGFyYWN0ZXJzXV0='>appear in the dreams of other characters</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Blog/AskGenieTwilight' title='/pmwiki/pmwiki.php/Blog/AskGenieTwilight' data-format='QmxvZy9Bc2tHZW5pZVR3aWxpZ2h0'>Ask Genie Twilight</a></em>: Genies are mortal ponies that are transformed by a magic spell, initially limited in their power and unable to move that far from their container. However, it's the genie that sets the number of wishes a particular master can have, even giving them no limits, any wish can be refused, and they can also perform any wish they've previously granted on whim at any time. A master can also remove certain limitations if they desire, such as allowing their genie to grant others' wishes and allowing them to move freely. They also return to their bottle to rest, something Twilight considers a perk, as the rest is apparently far better than normal rest. Most critically, a genie <em>can</em> be turned back to a normal pony, but if this isn't done within three days of their transformation, they must remain a genie for the next thousand years. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/AvengerGoddess' title='/pmwiki/pmwiki.php/Fanfic/AvengerGoddess' data-format='RmFuZmljL0F2ZW5nZXJHb2RkZXNz'>Avenger Goddess</a></em>: Djinn are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityWarper' title='/pmwiki/pmwiki.php/Main/RealityWarper' data-format='W1tSZWFsaXR5V2FycGVyIHJlYWxpdHktd2FycGluZ11d'>reality-warping</a> beings who were created in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrimordialChaos' title='/pmwiki/pmwiki.php/Main/PrimordialChaos' data-format='UHJpbW9yZGlhbENoYW9z'>Primordial Chaos</a> of another dimension, and can be bound to any object with the proper seal. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/TheFluffyFolio' title='/pmwiki/pmwiki.php/TabletopGame/TheFluffyFolio' data-format='VGFibGV0b3BHYW1lL1RoZUZsdWZmeUZvbGlv'>The Fluffy Folio</a></em>: Like its <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='W1tUYWJsZXRvcEdhbWUvRHVuZ2VvbnNBbmREcmFnb25zIGhvbWUgZ2FtZV1d'>home game</a>, the Fluffy Folio adds several elemental monsters called genies: <ul ><li> The Dream Genie looks like mass of purple bubbles with limbs and a single eye. While said in-universe to have divinatory abilities, its only fortune-telling spell is the 1st-level <em>augury</em>, and the their actual main trait is being a race of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Cloudcuckoolander' title='/pmwiki/pmwiki.php/Main/Cloudcuckoolander' data-format='W1t7e01haW4vQ2xvdWRjdWNrb29sYW5kZXJ9fSBDbG91ZGN1Y2tvb2xhbmRlcnNdXQ=='>Cloudcuckoolanders</a>. </li><li> The Spark Genie resembles a yellow bird-like humanoid whose body trails into lightning. They're good performers and have some useful magic powers, but are erratic in personality and prone to mood swings. </li><li> The Wild Genie resembles a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlantPerson' title='/pmwiki/pmwiki.php/Main/PlantPerson' data-format='W1tQbGFudFBlcnNvbiBhIGh1bWFub2lkIG1hZGUgb3V0IG9mIHBsYW50IHBhcnRzXV0='>a humanoid made out of plant parts</a> with a flower-like head. They have the ability to form plants from nothing, and to speak with flora and fauna. The latter means one has to be careful about what they say around the genie, as they are also major gossips. </li><li> The Memory Genie looks like a female humanoid formed out of some strange grey material. They are hyper-empaths, able to not just read but also understand the emotions in a mind. However, they aren't always able to handle these strong emotions themselves. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/GazDreamsOfGenie' title='/pmwiki/pmwiki.php/Fanfic/GazDreamsOfGenie' data-format='RmFuZmljL0dhekRyZWFtc09mR2VuaWU='>Gaz Dreams of Genie</a></em> has a genie named Azie whom Gaz gets <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThreeWishes' title='/pmwiki/pmwiki.php/Main/ThreeWishes' data-format='VGhyZWVXaXNoZXM='>Three Wishes</a> from after intentionally breaking her bottle to annoy Dib (which counts as opening it). Azie is noted as looking like the typical image of a genie, being a woman in a belly dancer outfit whose lower body tapers into a smoke tail, and has certain limits to her powers, such as no wishing for more wishes. <span class="spoiler" title="you can set spoilers visible by default on your profile" > One key thing, however, is the curse that comes from breaking the bottle — if Gaz doesn't make a single <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelflessWish' title='/pmwiki/pmwiki.php/Main/SelflessWish' data-format='U2VsZmxlc3NXaXNo'>Selfless Wish</a> (which she doesn't), she's doomed to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BecomingTheGenie' title='/pmwiki/pmwiki.php/Main/BecomingTheGenie' data-format='W1tCZWNvbWluZ1RoZUdlbmllIHN3aXRjaCBsaXZlcyB3aXRoIEF6aWVdXQ=='>switch lives with Azie</a> and take her place in the restored bottle, complete with being aged up and stuck in the same outfit (according to Azie, it comes with the job).</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/RainbowDoubleDashsLunaverse' title='/pmwiki/pmwiki.php/Fanfic/RainbowDoubleDashsLunaverse' data-format='RmFuZmljL1JhaW5ib3dEb3VibGVEYXNoc0x1bmF2ZXJzZQ=='>RainbowDoubleDash's Lunaverse</a>:</em> The camels of Naqah, back over a thousand years ago, created djinns, camel-shaped living weapons who tend to use one of the four elements. No wish-granting here, unless that wish involves covering something with large amounts of fire (not that this stops people who know about their existence asking them to grant wishes anyway). They're also bound to an amulet, and anyone who holds it can command them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/TheSecondArchonWar' title='/pmwiki/pmwiki.php/Fanfic/TheSecondArchonWar' data-format='RmFuZmljL1RoZVNlY29uZEFyY2hvbldhcg=='>The Second Archon War</a>:</em> When the Archons start popping up on Earth and flexing their godly power, it causes much discussion in theological circles regarding their true nature. When the Muslim Bashir Saeed grows upset about calling them gods or angels since it conflicts with his faith, Nahida suggests he can deem them jinns as the Archons are powerful supernatural beings with their own goals and free will. Jinn also is the term children use when they meet Aranaras, who are tiny plant people invisible to grown ups but enjoying games and songs. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Fanfic/VowOfNudity' title='/pmwiki/pmwiki.php/Fanfic/VowOfNudity' data-format='RmFuZmljL1Zvd09mTnVkaXR5'>Vow of Nudity</a></em>: Most flashbacks involve Haara growing up a slave in the Genasi Empire. In D&D canon, Genasi are the rare offspring of mortal-genie unions. Here, they're a full-fledged civilization with their own empire, four distinct subcultures catering to each elemental variant, and they reproduce through biological families like any other race. There's even a fifth variant, the Void Genasi, who serve as the royal family. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');"> Films — Animation </div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/AladdinDisney' title='/pmwiki/pmwiki.php/Franchise/AladdinDisney' data-format='RnJhbmNoaXNlL0FsYWRkaW5EaXNuZXk='>Aladdin (Disney)</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' title='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' data-format='V2VzdGVybkFuaW1hdGlvbi9BbGFkZGluMTk5MkRpc25leQ=='>Aladdin (1992, Disney)</a></em>: Genie is a giant blue humanoid with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FogFeet' title='/pmwiki/pmwiki.php/Main/FogFeet' data-format='Rm9nRmVldA=='>Fog Feet</a>, lives inside a lamp, has to grant three and only three wishes to anyone who rubs his home, and is a <em>really</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='W1tCZW5ldm9sZW50R2VuaWUgbmljZSBqaW5uaV1d'>nice jinni</a> who doesn't go for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='e3tsaXRlcmFsfEdlbmllfX0='>literal</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='e3tqYWNrYXNzfEdlbmllfX0='>jackass</a> route even when he's saddled with an evil master. The wishes have three limitations: genies can't kill anyone, make people fall in love, or bring people <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BackFromTheDead' title='/pmwiki/pmwiki.php/Main/BackFromTheDead' data-format='QmFja0Zyb21UaGVEZWFk'>Back from the Dead</a>. (Well, Genie elaborates that he <em>can</em> do the third one, it's just "not a pretty picture". He's probably <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfFunny' title='/pmwiki/pmwiki.php/Main/RuleOfFunny' data-format='W1tSdWxlT2ZGdW5ueSBqdXN0IGpva2luZy5dXQ=='>just joking.</a>) He is doomed eternal servitude to an endless series of masters unless someone wishes for him to be freed. </li><li> Freed genies seem to be much less powerful than genies of the lamp, as Jafar (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/BecomingTheGenie' title='/pmwiki/pmwiki.php/Main/BecomingTheGenie' data-format='W1tCZWNvbWluZ1RoZUdlbmllIG5vdyBhIGdlbmllIGhpbXNlbGZdXQ=='>now a genie himself</a>) utterly trounces the newly-freed Genie in <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/AladdinTheReturnOfJafar' title='/pmwiki/pmwiki.php/WesternAnimation/AladdinTheReturnOfJafar' data-format='V2VzdGVybkFuaW1hdGlvbi9BbGFkZGluVGhlUmV0dXJuT2ZKYWZhcg=='>Aladdin: The Return of Jafar</a></em> (and Genie himself describes his former "phenomenal cosmic powers" as "semi-phenomenal, nearly cosmic"). They also have subtle references to traditional beliefs about genies. Genie is blue, which is a reference to the marid, which were believed to be blue djinn who were mostly goodish. Jafar on the other hand is red, which is a reference to the ifrits who were associated with the color red and were <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlwaysChaoticEvil' title='/pmwiki/pmwiki.php/Main/AlwaysChaoticEvil' data-format='QWx3YXlzQ2hhb3RpY0V2aWw='>Always Chaotic Evil</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/WishDragon' title='/pmwiki/pmwiki.php/WesternAnimation/WishDragon' data-format='V2VzdGVybkFuaW1hdGlvbi9XaXNoRHJhZ29u'>Wish Dragon</a></em> has Long, who resides in a jade teapot, can revert wishes if he misinterprets them, can shapeshift into a human form, he's a dragon, and so forth. And much like Genie from <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' title='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FsYWRkaW58MTk5MkRpc25leX19'>Aladdin</a></em>, he also can only grant 3 wishes and has 3 limitations; he can't kill, can't make people fall in love, and can't <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TimeTravel' title='/pmwiki/pmwiki.php/Main/TimeTravel' data-format='VGltZVRyYXZlbA=='>Time Travel</a>. But perhaps the most notorious unique traits of Long are that <span class="spoiler" title="you can set spoilers visible by default on your profile" >he <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WasOnceAMan' title='/pmwiki/pmwiki.php/Main/WasOnceAMan' data-format='V2FzT25jZUFNYW4='>Was Once a Man</a> and granting wishes to 10 masters is Heaven's intended way of making him atone for his cruelty during his life as a human emperor</span>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');"> Films — Live-Action </div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> The remake of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ClashOfTheTitans2010' title='/pmwiki/pmwiki.php/Film/ClashOfTheTitans2010' data-format='RmlsbS97e0NsYXNoIG9mIHRoZSBUaXRhbnN8MjAxMH19'>Clash of the Titans</a></em> has Djinn, even though they are from the Arabian lore rather than from the Greek mythology. Here, they appear as black-colored humanoid creatures with bright blue eyes that use blue fire magic that seems organic based (they tame scorpions, heal the hero and are claimed to rebuild themselves of wood). And they also can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SuicideAttack' title='/pmwiki/pmwiki.php/Main/SuicideAttack' data-format='W1tTdWljaWRlQXR0YWNrIHN1aWNpZGUgYm9tYiB0aGVtc2VsdmVzXV0='>suicide bomb themselves</a>. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheCurseOfSleepingBeauty' title='/pmwiki/pmwiki.php/Film/TheCurseOfSleepingBeauty' data-format='RmlsbS9UaGVDdXJzZU9mU2xlZXBpbmdCZWF1dHk='>The Curse of Sleeping Beauty</a></em>, Richard tells Thomas they were attacked by a djinn and that the djinn can possess inanimate objects. The rest of his explanation is straight out of classical Arabian mythology. </li><li> In the Arabic-English <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TobeHooper' title='/pmwiki/pmwiki.php/Creator/TobeHooper' data-format='Q3JlYXRvci9Ub2JlSG9vcGVy'>Tobe Hooper</a> movie <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Djinn' title='/pmwiki/pmwiki.php/Film/Djinn' data-format='RmlsbS97e0RqaW5ufX0='>Djinn</a></em>, the Djinn are pretty much <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFairFolk' title='/pmwiki/pmwiki.php/Main/TheFairFolk' data-format='VGhlRmFpckZvbGs='>The Fair Folk</a>, including the use of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Glamour' title='/pmwiki/pmwiki.php/Main/Glamour' data-format='e3tHbGFtb3VyfX0='>Glamour</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChangelingTale' title='/pmwiki/pmwiki.php/Main/ChangelingTale' data-format='W1tDaGFuZ2VsaW5nVGFsZSByZXBsYWNpbmcgYmFiaWVzIHdpdGggbm9uLWh1bWFuIG9uZXNdXQ=='>replacing babies with non-human ones</a>. They're intelligent beings who live in haunted places and kill any human intruders, though one man manages to make a bargain by offering the life of his friend. They don't offer any wishes though. Also, it turns out that <span class="spoiler" title="you can set spoilers visible by default on your profile" >the male lead</span> is a Djinn, which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TomatoInTheMirror' title='/pmwiki/pmwiki.php/Main/TomatoInTheMirror' data-format='W1tUb21hdG9JblRoZU1pcnJvciBoZSBkaWRuJiMwMzk7dCBrbm93IGFib3V0XV0='>he didn't know about</a>. </li><li> The Hong Kong fantasy-comedy film, <em>Fantasia</em> (2004) stars Cecelia Cheung as a nerdy, bespectacled genie from an antique lamp accidentally summoned by the protagonists. She insists on being called a "sorceress" instead of a genie, despite fulfiling most tropes associated with genies (like granting <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThreeWishes' title='/pmwiki/pmwiki.php/Main/ThreeWishes' data-format='VGhyZWVXaXNoZXM='>Three Wishes</a> to anyone who summoned her and all that). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheFieldGuideToEvil' title='/pmwiki/pmwiki.php/Film/TheFieldGuideToEvil' data-format='RmlsbS9UaGVGaWVsZEd1aWRlVG9Fdmls'>The Field Guide to Evil</a></em>: In "Haunted by Al Karisi, the Childbirth Djinn", the eponymous djinn manifests as a goat and passes judgement on a pregnant teenager, later possessing the girl's invalid mother-in-law wreak vengence on her. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Kazaam' title='/pmwiki/pmwiki.php/Film/Kazaam' data-format='RmlsbS97e0themFhbX19'>Kazaam</a></em>: A genie is trapped in a stereo and becomes a rapping genie. Kazaam recounts several other objects he was bound to, which were apparently destroyed; when this happened, he would be trapped in something new. Also, the main character says that all genies are naturally slaves, and "djinn"—or free spirits—are more powerful. Also, a genie can only grant wishes for material things, which is a lot of power but far less than the feats of reality-warping seen in some other genie stories, and not much use to someone whose true desire is something non-shiny. "Make or summon some<em>thing</em> for the holder of the radio, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfThree' title='/pmwiki/pmwiki.php/Main/RuleOfThree' data-format='W1tSdWxlT2ZUaHJlZSB0aHJlZSB0aW1lc11d'>three times</a>," is what a genie can do, period—and this means even a nice holder can't say "I wish you were free." ("I wish for more wishes" wouldn't work either, probably.) A djinn, on the other hand, can do anything, according to Kazaam. </li><li> <em><a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Film/MyDarlingGenie' title='/pmwiki/pmwiki.php/Film/MyDarlingGenie' data-format='RmlsbS9NeURhcmxpbmdHZW5pZQ=='>My Darling Genie</a></em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ShawBrothers' title='/pmwiki/pmwiki.php/Creator/ShawBrothers' data-format='Q3JlYXRvci9TaGF3QnJvdGhlcnM='>Shaw Brothers</a> fantasy-comedy film where the titular genie - played by the gorgeous Cherie Chung - lives in an umbrella. She was released when the down-on-his-luck protagonist (played by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DerekYee' title='/pmwiki/pmwiki.php/Creator/DerekYee' data-format='Q3JlYXRvci9EZXJla1llZQ=='>Derek Yee</a>) accidentally opens her parasol and tags along with him, but trouble occurs when news of her "magic umbrella" makes her target of loan sharks. </li><li> In the Italian 1986 film <em>Superfantagenio</em> (or its version of <em>Aladdin</em> to U.S. audiences), <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BudSpencer' title='/pmwiki/pmwiki.php/Creator/BudSpencer' data-format='Q3JlYXRvci9CdWRTcGVuY2Vy'>Bud Spencer</a> stars as the genie. His wishes are his master's command as long as the latter addresses one as "I want _____." Also, his powers don't work at night. This genie is also very much a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='QmVuZXZvbGVudEdlbmll'>Benevolent Genie</a> as he defends Al Haddin, his master and his family (within his limitations) and refuses to grant a wish to a villain that's captured him and Al (via the bad guy telling Al to make that wish) to eliminate all the world's armed forces except his own personal army. </li><li> According to Detective Ringwald, the villain in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/WhenEvilCalls' title='/pmwiki/pmwiki.php/Film/WhenEvilCalls' data-format='RmlsbS9XaGVuRXZpbENhbGxz'>When Evil Calls</a></em> is a dark djinn who grants one wish that works perfectly so long as the wisher passes the text message on to others. Thus the wishes are propagated through the phone network, and the djinn <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeCarefulWhatYouWishFor' title='/pmwiki/pmwiki.php/Main/BeCarefulWhatYouWishFor' data-format='W1tCZUNhcmVmdWxXaGF0WW91V2lzaEZvciBob3JyaWJseSB0d2lzdHMgdGhlIHdpc2hlcyBvZiBldmVyeSBzdWJzZXF1ZW50IHdpc2hlcl1d'>horribly twists the wishes of every subsequent wisher</a>. The djinn can only be defeated by the original wisher wishing their original wish to be undone. For some reason, the djinn manifests as a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterClown' title='/pmwiki/pmwiki.php/Main/MonsterClown' data-format='TW9uc3RlckNsb3du'>Monster Clown</a>. </li><li> The djinn in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Wishmaster' title='/pmwiki/pmwiki.php/Film/Wishmaster' data-format='RmlsbS97e1dpc2htYXN0ZXJ9fQ=='>Wishmaster</a></em> series are some kind of byproduct of God's creation of the universe and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlwaysChaoticEvil' title='/pmwiki/pmwiki.php/Main/AlwaysChaoticEvil' data-format='W1tBbHdheXNDaGFvdGljRXZpbCBhcmUgYWxsIGluaGVyZW50bHkgZXZpbF1d'>are all inherently evil</a> and as such were banished to some Hell dimension. The main one is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SealedEvilInACan' title='/pmwiki/pmwiki.php/Main/SealedEvilInACan' data-format='W1tTZWFsZWRFdmlsSW5BQ2FuIHRyYXBwZWQgaW4gYSByZWQgamV3ZWxdXQ=='>trapped in a red jewel</a> on Earth and if he successfully grants his summoner's three wishes he can free his brethren and get rid of whatever it is that's restricting his powers so that they only activate for wishes. He also collects souls and has a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='W1tKYWNrYXNzR2VuaWUgdmVyeSBsb29zZSBkZWZpbml0aW9uIG9mIHdoYXQgZXhhY3RseSBjb25zdGl0dXRlcyBhcyBhIHdpc2hdXQ=='>very loose definition of what exactly constitutes as a wish</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');"> Gamebooks </div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ScreamOfTheEvilGenie' title='/pmwiki/pmwiki.php/Literature/ScreamOfTheEvilGenie' data-format='TGl0ZXJhdHVyZS9TY3JlYW1PZlRoZUV2aWxHZW5pZQ=='>Scream of the Evil Genie</a></em> features a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='SmFja2Fzc0dlbmll'>Jackass Genie</a> whom you released from a Coke can. Her wishes are of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExactWords' title='/pmwiki/pmwiki.php/Main/ExactWords' data-format='RXhhY3RXb3Jkcw=='>Exact Words</a> variety - wishing yourself to be attractive turns you into <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakenForGranite' title='/pmwiki/pmwiki.php/Main/TakenForGranite' data-format='W1tUYWtlbkZvckdyYW5pdGUgYSBiZWF1dGlmdWwgcGFpbnRpbmddXQ=='>a beautiful painting</a>, hoping to be famous and you become the star of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KidsShowMascotParody' title='/pmwiki/pmwiki.php/Main/KidsShowMascotParody' data-format='S2lkc1Nob3dNYXNjb3RQYXJvZHk='>Kids' Show Mascot Parody</a> that you <em>loathe</em>, and so on. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');"> Jokes </div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> One joke concerns a bartender who used up his three wishes and afterwards kept the genie's lamp on the shelf behind his bar as a curiosity. A customer entered the bar, looking with curiosity at a nine-inch-tall man playing the piano in the corner, and then noticed the lamp and asked about it. The bartender offered to lend it to the man, it being of no further use to him. The man summoned the genie and wished for a thousand gold bars. The genie made him look outside, and when the man did, he saw a thousand old cars lining either side of the street. The man re-entered the bar and complained that the genie was a little hard of hearing. The bartender replied, "Well, yeah. Do you seriously think I wished for a nine-inch pianist?" *rim shot* </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');"> Literature </div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AmericanGods' title='/pmwiki/pmwiki.php/Literature/AmericanGods' data-format='TGl0ZXJhdHVyZS9BbWVyaWNhbkdvZHM='>American Gods</a></em> has a very odd side-story about a gay genie who was stuck as a cab driver after immigrating to America, passing his status as a mystic creature on to a man he engaged in a one-night-stand with. The only indications that he wasn't human were flaming eyes and, er... flaming something else showcased in a sex scene. He does not grant wishes, however. Though he did kind of grant the wish of the guy he had a one-night-stand with by liberating him from his dead-end life, and giving him a chance to start over as a New York cabbie. </li><li> There were several genies in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. Here's a sampling... <ul ><li> One was trapped in a jar. Apparently, being stuck in a jar made him so cantankerous that his idea of showing gratitude was to let his rescuer choose how he would die. Which wasn't his original plan — when first sealed into the jar, he pledged that the one who freed him would be granted three wishes. After a thousand years, he pledged to reveal to his rescuer all the treasures of the Earth. After a thousand more, he pledges to grant his rescuer the choice of how he'll die. </li><li> Another took a fancy to a handsome young man. After whisking him away to show him to another genie, she dropped him in Damascus, far away from his own home. </li><li> A woman rescued a female genie from an amorous male genie — by throwing a rock at his head and killing him. The grateful female genie offered to help the woman in the future if she needed it. </li><li> The genies in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Aladdin' title='/pmwiki/pmwiki.php/Literature/Aladdin' data-format='TGl0ZXJhdHVyZS97e0FsYWRkaW59fQ=='>Aladdin</a></em> story are bound to a lamp and to a ring. The genie attached to each item must obey whoever holds it at the time. </li><li> A particularly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a> granted a man's wish for a bigger manhood... by making it <em>gigantic</em>. Like fallen tree gigantic. </li><li> A man throws a date pit away and accidentally kills a genie's son with it, causing the genie to swear revenge. Until three men tell stories that impress the genie so much he doesn't kill the man. Even evil genies have a tendency to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LawfulEvil' title='/pmwiki/pmwiki.php/Main/LawfulEvil' data-format='TGF3ZnVsRXZpbA=='>Lawful Evil</a> and allow you a way out of your predicament. Which Arabian Nights characters <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GuileHero' title='/pmwiki/pmwiki.php/Main/GuileHero' data-format='W1tHdWlsZUhlcm8gYWxtb3N0IGFsd2F5cyBmaW5kXV0='>almost always find</a>. </li><li> Prince Ahmed gets married to a genie after a failed attempt at gaining a princess (Long story). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBartimaeusTrilogy' title='/pmwiki/pmwiki.php/Literature/TheBartimaeusTrilogy' data-format='TGl0ZXJhdHVyZS9UaGVCYXJ0aW1hZXVzVHJpbG9neQ=='>The Bartimaeus Trilogy</a></em> has a whole pantheon of spirits (afrits, jinn, etc.) who magicians use spells to bind to their will. Typically, their actual appearance is that of an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='RWxkcml0Y2hBYm9taW5hdGlvbg=='>Eldritch Abomination</a>, and they use shapeshifting and glamour to take other forms. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/BookOfImaginaryBeings' title='/pmwiki/pmwiki.php/Literature/BookOfImaginaryBeings' data-format='TGl0ZXJhdHVyZS9Cb29rT2ZJbWFnaW5hcnlCZWluZ3M='>Book of Imaginary Beings</a></em>: The Jinn were created from smokeless fire by Allah like angels were created from light and men from earth. They are normally invisible but can take many forms, and live in wells, crossroads and abandoned houses. They can be good or evil and pious or impious, and due to being able to access the lower heavens and listen to the conversations of the angels they can provide soothsayers with knowledge of the future. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertLouisStevenson' title='/pmwiki/pmwiki.php/Creator/RobertLouisStevenson' data-format='Q3JlYXRvci9Sb2JlcnRMb3Vpc1N0ZXZlbnNvbg=='>Robert Louis Stevenson</a>'s story <em>The Bottle Imp</em> does something like <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' title='/pmwiki/pmwiki.php/Literature/TheLordOfTheRings' data-format='TGl0ZXJhdHVyZS9UaGVMb3JkT2ZUaGVSaW5ncw=='>The Lord of the Rings</a></em> with its One Ring — taking a traditional fairy-tale <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MacGuffin' title='/pmwiki/pmwiki.php/Main/MacGuffin' data-format='TWFjR3VmZmlu'>MacGuffin</a> and turning it into an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtifactOfDoom' title='/pmwiki/pmwiki.php/Main/ArtifactOfDoom' data-format='QXJ0aWZhY3RPZkRvb20='>Artifact of Doom</a>. The imp is a demon and buying the bottle is like making a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DealWithTheDevil' title='/pmwiki/pmwiki.php/Main/DealWithTheDevil' data-format='RGVhbFdpdGhUaGVEZXZpbA=='>Deal with the Devil</a>; the only way to escape hell is to sell the bottle for less than you purchased it. Unfortunately, if you are ever dissatisfied after selling the bottle, the imp will make something nasty happen to you to pressure you into buying it back. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The story did have a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappyEnding' title='/pmwiki/pmwiki.php/Main/HappyEnding' data-format='SGFwcHlFbmRpbmc='>Happy Ending</a>, more or less. The hero was more or less trapped, having bought the thing for only three French centimes (a centime is worth one tenth of an American cent), meaning that finding someone he could convince to take it would be almost impossible; but a drunken sailor who had deserted his ship figured his soul was damned anyway, and did so.</span> </li><li> The White Witch from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheChroniclesOfNarnia' title='/pmwiki/pmwiki.php/Literature/TheChroniclesOfNarnia' data-format='TGl0ZXJhdHVyZS9UaGVDaHJvbmljbGVzT2ZOYXJuaWE='>The Chronicles of Narnia</a></em> is half Jinn and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurGiantsAreBigger' title='/pmwiki/pmwiki.php/Main/OurGiantsAreBigger' data-format='W1tPdXJHaWFudHNBcmVCaWdnZXIgaGFsZiBHaWFudF1d'>half Giant</a>. <ul ><li> Or at least, that's the origin Mr. Beaver gives in the first book; specifically, he says she's descended from Lilith, Adam's first wife. The prequel book reveals she's from neither our world nor Narnia's, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MultipleChoicePast' title='/pmwiki/pmwiki.php/Main/MultipleChoicePast' data-format='W1tNdWx0aXBsZUNob2ljZVBhc3Qgc28gdGhhdCBzdG9yeSBpcyB0aHJvd24gaW50byBxdWVzdGlvbl1d'>so that story is thrown into question</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheDaevabadTrilogy' title='/pmwiki/pmwiki.php/Literature/TheDaevabadTrilogy' data-format='TGl0ZXJhdHVyZS9UaGVEYWV2YWJhZFRyaWxvZ3k='>The Daevabad Trilogy</a></em> has a highly complex society of djinn (originally called daeva, their own word for themselves) mostly hidden from human sight. There are several tribes with different cultures, magical powers, and languages. Outside of djinn society are ifrit, dangerous and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheUnfettered' title='/pmwiki/pmwiki.php/Main/TheUnfettered' data-format='W1tUaGVVbmZldHRlcmVkIFVuZmV0dGVyZWRdXQ=='>Unfettered</a> beings who refused to submit to Suleiman's judgement. The "wish-granting genie in a bauble" that humans usually encounter are slaves; they are often imprisoned by ifrit who deliberately let them be found by humans who will cause the most chaos and destruction (inevitably, it ends with the slave killing their master). Djinn society is ruled from the city of Daevabad in Central Asia, where all the tribes intermingle. Finally there are the shafit, part-humans who are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HalfBreedDiscrimination' title='/pmwiki/pmwiki.php/Main/HalfBreedDiscrimination' data-format='W1tIYWxmQnJlZWREaXNjcmltaW5hdGlvbiB0cmVhdGVkIGFzIHNlY29uZC1jbGFzcyBjaXRpemVuc11d'>treated as second-class citizens</a> (if they're <em>lucky</em>) and confined to the city, supposedly so they don't wreak havoc in human society. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Declare' title='/pmwiki/pmwiki.php/Literature/Declare' data-format='TGl0ZXJhdHVyZS97e0RlY2xhcmV9fQ=='>Declare</a></em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TimPowers' title='/pmwiki/pmwiki.php/Creator/TimPowers' data-format='Q3JlYXRvci9UaW1Qb3dlcnM='>Tim Powers</a> has British and Soviet intelligence agencies vying for control of the djinn who live on Mount Ararat. The djinn here are beings of pure thought, often taking the form of storms, flocks of birds, or the movement of a mob, and view things from <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BlueAndOrangeMorality' title='/pmwiki/pmwiki.php/Main/BlueAndOrangeMorality' data-format='W1tCbHVlQW5kT3JhbmdlTW9yYWxpdHkgYSBjb21wbGV0ZWx5LCB1dHRlcmx5IGluaHVtYW4gcGVyc3BlY3RpdmVdXQ=='>a completely, utterly inhuman perspective</a>. Bargains or deals struck with a djinni can grant immortality <span class="spoiler" title="you can set spoilers visible by default on your profile" >(which works just as well for nations as individual humans)</span> and other supernatural powers, but the price is often a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DealWithTheDevil' title='/pmwiki/pmwiki.php/Main/DealWithTheDevil' data-format='RGVhbFdpdGhUaGVEZXZpbA=='>Deal with the Devil</a>. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Discworld' title='/pmwiki/pmwiki.php/Literature/Discworld' data-format='TGl0ZXJhdHVyZS97e0Rpc2N3b3JsZH19'>Discworld</a></em> novel <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Sourcery' title='/pmwiki/pmwiki.php/Literature/Sourcery' data-format='TGl0ZXJhdHVyZS97e1NvdXJjZXJ5fX0='>Sourcery</a></em> has a yuppie genie who apparently isn't bound to his lamp; he has several lamps, including "a small but well-appointed lamp where he lived during the week, another rather unique lamp in the country, a carefully restored peasant rushlight in an unspoilt wine-growing district near Quirm, and just recently a set of derelict lamps in the docks area of Ankh-Morpork that had great potential, once the smart crowd got there, to become the occult equivalent of a suite of offices and a wine bar." He's rather overcommitted on lamps, in fact, and is thinking of diversifying into rings. He grants wishes, if he approves of them, but insists that <em>nobody</em> says "Your wish is my command!" any more. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/HarlanEllison' title='/pmwiki/pmwiki.php/Creator/HarlanEllison' data-format='Q3JlYXRvci9IYXJsYW5FbGxpc29u'>Harlan Ellison</a>'s story "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/PunBasedTitle' title='/pmwiki/pmwiki.php/Main/PunBasedTitle' data-format='W1tQdW5CYXNlZFRpdGxlIERqaW5uLCBObyBDaGFzZXJdXQ=='>Djinn, No Chaser</a>" features a <em>very angry</em> genie trapped in a lamp. He proceeds to make life hell for a couple on their honeymoon and gets the husband temporarily institutionalized <span class="spoiler" title="you can set spoilers visible by default on your profile" >until the wife decides to just bust open the lamp with a can opener, releasing the genie and earning his gratitude</span>. </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TomHolt' title='/pmwiki/pmwiki.php/Creator/TomHolt' data-format='Q3JlYXRvci9Ub21Ib2x0'>Tom Holt</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/DjinnRummy' title='/pmwiki/pmwiki.php/Literature/DjinnRummy' data-format='TGl0ZXJhdHVyZS9EamlublJ1bW15'>Djinn Rummy</a></em>, the genies are transdimensional beings (which is how they can fit into those bottles), and like to hang out together in their spare time and get drunk. On milk. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/EnchantedForestChronicles' title='/pmwiki/pmwiki.php/Literature/EnchantedForestChronicles' data-format='TGl0ZXJhdHVyZS9FbmNoYW50ZWRGb3Jlc3RDaHJvbmljbGVz'>Enchanted Forest Chronicles</a></em>: The same idea as in the first <em>Arabian Nights</em> example is used in <em>Dealing with Dragons</em>. When a genie is accidentally let out of the bottle, he explains to Cimorene and Therandril the terms of reward with years of imprisonment, and then insists that their only choice now was their manner of death, which Cimorene responds to by choosing "old age". <span class="spoiler" title="you can set spoilers visible by default on your profile" >Also in keeping with the theme of the story, the genie actually had only been in the bottle long enough that he'd be forced to grant them three wishes for his release instead of killing them. Because no genie was ever released before the "kill-the-releaser" period, he felt that granting the wishes and not killing anyone would make him a laughingstock. He decides to follow Cimorene's advice and return to the bottle for another three hundred and eighty-one years, when the two of them would certainly be dead of old age and he could go home without granting wishes or breaking his oath.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/FancyApartments' title='/pmwiki/pmwiki.php/Literature/FancyApartments' data-format='TGl0ZXJhdHVyZS9GYW5jeUFwYXJ0bWVudHM='>Fancy Apartments</a></em> features Tisa, who usually looks like a short girl, but can change form into an eight-foot jinn. </li><li> Somer, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='W1tCZW5ldm9sZW50R2VuaWUgZ3VhcmRpYW4gZ2VuaWVdXQ=='>guardian genie</a> who has the form of a cat-dog, is the first arrival in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AFantasyAttraction' title='/pmwiki/pmwiki.php/Literature/AFantasyAttraction' data-format='TGl0ZXJhdHVyZS9BRmFudGFzeUF0dHJhY3Rpb24='>A Fantasy Attraction</a></em>. He name is pronounced <em>so</em>-mer, <em>not</em> summer. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/GodelEscherBachAnEternalGoldenBraid' title='/pmwiki/pmwiki.php/Literature/GodelEscherBachAnEternalGoldenBraid' data-format='TGl0ZXJhdHVyZS9Hb2RlbEVzY2hlckJhY2hBbkV0ZXJuYWxHb2xkZW5CcmFpZA=='>Gödel, Escher, Bach: An Eternal Golden Braid</a></em>: <ul ><li> In the dialogue "Little Harmonic Labyrinth," Genies are allowed to grant wishes, but not wishes about wishes, which are known as meta-wishes. Meta-Genies (who come from Meta-Lamps) are allowed to grant meta-wishes, but not wishes about meta-wishes, which are within the authority of Meta-Meta-Genies. The word "Djinn" is generically used to designate Genies, Meta-Genies, Meta-Meta-Genies, and all others in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GOD' title='/pmwiki/pmwiki.php/Main/GOD' data-format='e3tHT0R9fQ=='>GOD</a> (which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RecursiveAcronym' title='/pmwiki/pmwiki.php/Main/RecursiveAcronym' data-format='W1tSZWN1cnNpdmVBY3JvbnltIHN0YW5kcyBmb3IgIkdPRCBPdmVyIERqaW5uIl1d'>stands for "GOD Over Djinn"</a>). </li><li> In the chapter "Typographical Number Theory," "djinn" is an undefined term used in place of "natural number" in setting out the five <a class='urllink' href='http://en.wikipedia.org/wiki/Peano_axioms'>Peano postulates<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, with "genie" taking the place of zero. </li></ul></li><li> The Portuguese translation of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/HisDarkMaterials' title='/pmwiki/pmwiki.php/Literature/HisDarkMaterials' data-format='TGl0ZXJhdHVyZS9IaXNEYXJrTWF0ZXJpYWxz'>His Dark Materials</a></em> literally translates "daemon" as "genie" ("génio"). In this case, "daemon" is derived from a Greek term defining any lesser supernatural entity, and it was under that definition that jinns originally fell; in other words, those are essentially the Greek and Islamic analogues of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheFairFolk' title='/pmwiki/pmwiki.php/Main/TheFairFolk' data-format='VGhlRmFpckZvbGs='>The Fair Folk</a>. In the context of the books, daemons/genies are your soul walking around as a sentient, talking animal, whose species reflects your personality. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Hurog' title='/pmwiki/pmwiki.php/Literature/Hurog' data-format='TGl0ZXJhdHVyZS97e0h1cm9nfX0='>Hurog</a></em> has Oreg, who fits neatly into the genie archetype: an ancient being capable of great magical power, bound to a ring passed down in a family line which forces him to obey the orders of the holder, but is never referred to as such. <span class="spoiler" title="you can set spoilers visible by default on your profile" >Turns out he's actually a dragon.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/AMasterOfDjinn' title='/pmwiki/pmwiki.php/Literature/AMasterOfDjinn' data-format='TGl0ZXJhdHVyZS9BTWFzdGVyT2ZEamlubg=='>A Master of Djinn</a></em> has djinn returning to the world. They coexist peacefully among humans and even have children with them. Their appearances are very diverse and rarely give their true names but go with geographical regions or titles. When in a bottle, they aren't necessarily trapped than sleeping. The first chapter with the main character has two teenagers opening a bottle to get their wished granted. They woke up a very annoyed and anti-human marid, who chose to grant them one wish. "Very well. I will grant you only wish. You must choose. Choose how you will die." </li><li> Djins in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MythAdventures' title='/pmwiki/pmwiki.php/Literature/MythAdventures' data-format='TGl0ZXJhdHVyZS9NeXRoQWR2ZW50dXJlcw=='>Myth Adventures</a></em> series come from the dimension of Djinger, a place so strapped for funds that they've resorted to hiring out their citizens to work in magic lamps, rings, bottles and so on. Don't believe the hype about what they're capable of; after all, they're only a few inches tall. <span class="spoiler" title="you can set spoilers visible by default on your profile" > Usually. They underplay their power <em>very</em> heavily.</span> </li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PoulAnderson' title='/pmwiki/pmwiki.php/Creator/PoulAnderson' data-format='Q3JlYXRvci9Qb3VsQW5kZXJzb24='>Poul Anderson</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/OperationChaos' title='/pmwiki/pmwiki.php/Literature/OperationChaos' data-format='TGl0ZXJhdHVyZS9PcGVyYXRpb25DaGFvcw=='>Operation Chaos</a></em>, the genie is sealed in a bottle (with Solomon's Seal no less) but does not have to grant wishes. Virginia must use psychological tricks on it. </li><li> In L. Jagi Lamplighter's <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ProsperosDaughter' title='/pmwiki/pmwiki.php/Literature/ProsperosDaughter' data-format='TGl0ZXJhdHVyZS9Qcm9zcGVyb3NEYXVnaHRlcg=='>Prospero's Daughter</a></em> trilogy, djinni are among the beings Prospero Inc. must keep from causing natural disasters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PiersAnthony' title='/pmwiki/pmwiki.php/Creator/PiersAnthony' data-format='Q3JlYXRvci9QaWVyc0FudGhvbnk='>Piers Anthony</a> took a sci-fi twist in the book, <em>Prostho Plus</em>. An Earth dentist repairs the "tooth" of a powerful robotic being. The being declares that he had waited so long he had sworn an oath he would kill his rescuer, but a previous oath bound him to grant him a wish before his death. <span class="spoiler" title="you can set spoilers visible by default on your profile" >The dentist wishes for a delay of 50 years.</span> For the rest of the book, he has a faithful <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeusExMachina' title='/pmwiki/pmwiki.php/Main/DeusExMachina' data-format='W1tEZXVzRXhNYWNoaW5hIERldXMgRXggTWFjaGluZV1d'>Deus Ex Machine</a> who protects him from all harm, declaring "None but I shall do him die!", and even goes to the point of helping him get together with his lady-love because married humans tend to live longer. </li><li> Jinn in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/SeptimusHeap' title='/pmwiki/pmwiki.php/Literature/SeptimusHeap' data-format='TGl0ZXJhdHVyZS9TZXB0aW11c0hlYXA='>Septimus Heap</a></em> sport both heavily armed Warrior Jinn and the more peaceful "actual" Jinn. The former are antagonists in the final phases of <em>Syren</em>. </li><li> In her <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TalesOfTheFiveHundredKingdoms' title='/pmwiki/pmwiki.php/Literature/TalesOfTheFiveHundredKingdoms' data-format='W1tMaXRlcmF0dXJlL1RhbGVzT2ZUaGVGaXZlSHVuZHJlZEtpbmdkb21zIDUwMCBLaW5nZG9tc11d'>500 Kingdoms</a></em> novel <em>Fortune's Fool</em>, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MercedesLackey' title='/pmwiki/pmwiki.php/Creator/MercedesLackey' data-format='Q3JlYXRvci9NZXJjZWRlc0xhY2tleQ=='>Mercedes Lackey</a> used an ifrit as the villain. <span class="spoiler" title="you can set spoilers visible by default on your profile" >At the end, he is sealed into his bottle "until you repent of your evil ways, and are ready to join your lawful kin in the City of Brass." Djinn do have free will, so it's a valid condition.</span> </li><li> Sandy Frances Duncan's <em>The Toothpaste Genie</em> is about an unskilled young genie bound to a tube of toothpaste. He explains to the protagonist that the more successful and esteemed a genie is, the better the container they're assigned to by their superiors. Toothpaste tubes and boxes of laundry detergent are apparently the bottom of the totem pole, with fancy bottles being near the top. </li><li> Malik ibn Ibrahim, the main character of the anthology <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/WanderingDjinn' title='/pmwiki/pmwiki.php/Literature/WanderingDjinn' data-format='TGl0ZXJhdHVyZS9XYW5kZXJpbmdEamlubg=='>Wandering Djinn</a></em> pretty much <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WalkingTheEarth' title='/pmwiki/pmwiki.php/Main/WalkingTheEarth' data-format='V2Fsa2luZ1RoZUVhcnRo'>Walking the Earth</a>, has the ability to disguise himself in a myriad of human forms, knows a lot of different folklore creatures because he's met a lot of them, and has the creepy appearance of skin that's so dark blue it borders on black, golden cat eyes, and instead of hair a scalp covered with flame. If he wasn't such a goofball, he might be frightening. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');"> Live-Action TV </div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> The jinn in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/AmericanGods2017' title='/pmwiki/pmwiki.php/Series/AmericanGods2017' data-format='U2VyaWVzL0FtZXJpY2FuR29kczIwMTc='>American Gods (2017)</a></em> has a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AscendedExtra' title='/pmwiki/pmwiki.php/Main/AscendedExtra' data-format='W1tBc2NlbmRlZEV4dHJhIGxhcmdlciByb2xlIHRoYW4gaW4gdGhlIG9yaWdpbmFsIGJvb2tdXQ=='>larger role than in the original book</a>, particularly in the second season, where we learn that he's working for Mr. Wednesday because the latter freed him from an amulet, and that he originally refused to follow Allah when given the chance. He still does not grant wishes. </li><li> The Genie that Becky finds in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BigWolfOnCampus' title='/pmwiki/pmwiki.php/Series/BigWolfOnCampus' data-format='U2VyaWVzL0JpZ1dvbGZPbkNhbXB1cw=='>Big Wolf on Campus</a></em> has a bit of a nasty caveat to his wishes... once the third wish has been properly fulfilled, the Genie is set free... and the owner of the bottle becomes the new Genie. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Charmed1998' title='/pmwiki/pmwiki.php/Series/Charmed1998' data-format='U2VyaWVzL0NoYXJtZWQxOTk4'>Charmed (1998)</a></em>: Phoebe is turned into one in the Season Six episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CharmedS6E15IDreamOfPhoebe' title='/pmwiki/pmwiki.php/Recap/CharmedS6E15IDreamOfPhoebe' data-format='W1tSZWNhcC9DaGFybWVkUzZFMTVJRHJlYW1PZlBob2ViZSBJIERyZWFtIG9mIFBob2ViZV1d'>I Dream of Phoebe</a>". French Stewart also plays one in the Season Two finale "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/CharmedS2E22BeCarefulWhatYouWitchFor' title='/pmwiki/pmwiki.php/Recap/CharmedS2E22BeCarefulWhatYouWitchFor' data-format='W1tSZWNhcC9DaGFybWVkUzJFMjJCZUNhcmVmdWxXaGF0WW91V2l0Y2hGb3IgQmUgQ2FyZWZ1bCBXaGF0IFlvdSBXaXRjaCBGb3JdXQ=='>Be Careful What You Witch For</a>", as the archetypal trickster character. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Creepshow' title='/pmwiki/pmwiki.php/Series/Creepshow' data-format='U2VyaWVzL3t7Q3JlZXBzaG93fX0='>Creepshow</a></em>'s segment "The Man in the Suitcase" features a Middle-Eastern man contorted to fit into a medium-sized suitcase, and will spit gold coins if he experiences pain. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheReveal' title='/pmwiki/pmwiki.php/Main/TheReveal' data-format='VGhlUmV2ZWFs'>The Reveal</a> is that <span class="spoiler" title="you can set spoilers visible by default on your profile" > he's actually a Djinn subjecting people to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SecretTestOfCharacter' title='/pmwiki/pmwiki.php/Main/SecretTestOfCharacter' data-format='U2VjcmV0VGVzdE9mQ2hhcmFjdGVy'>Secret Test of Character</a> - those that try to help him out of the suitcase even if it means forgoing wealth pass, while those that torture him fail, and get stuffed into their <em>own</em> suitcase</span>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheGenieFromDownUnder' title='/pmwiki/pmwiki.php/Series/TheGenieFromDownUnder' data-format='U2VyaWVzL1RoZUdlbmllRnJvbURvd25VbmRlcg=='>The Genie from Down Under</a></em> deals with the adventures of the very Australian genie Bruce and his son Baz who live in an opal pendant and are forced to obey the commands of whoever holds the opal. </li><li> Four words, <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' title='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' data-format='U2VyaWVzL0lEcmVhbU9mSmVhbm5pZQ=='>I Dream of Jeannie</a></em>. Jeannie is an atypical <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HappinessInSlavery' title='/pmwiki/pmwiki.php/Main/HappinessInSlavery' data-format='SGFwcGluZXNzSW5TbGF2ZXJ5'>Happiness in Slavery</a> version. One episode featured the "Blue Genie" (the one who initially planned on rewarding whoever freed him, but eventually decided to kill that unlucky individual). </li><li> Imagin, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' title='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' data-format='TW9uc3Rlck9mVGhlV2Vlaw=='>Monster of the Week</a> race from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KamenRiderDenO' title='/pmwiki/pmwiki.php/Series/KamenRiderDenO' data-format='U2VyaWVzL0thbWVuUmlkZXJEZW5P'>Kamen Rider Den-O</a></em>, are an odd variation of genie: they claim to grant wishes, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='W1tKYWNrYXNzR2VuaWUgdHlwaWNhbGx5IHR3aXN0aW5nIHRoZW0gaG9ycmlibHldXQ=='>typically twisting them horribly</a>, and once the contract is complete they use their contractor's memories to create a portal to the past so they can alter history for their benefit. Of course, while there is an overall leader, every Imagin has its own personality and can choose whether or not it wants to obey him. The protagonists include several Imagin that decided there were other things they wanted to do (like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HandsomeLech' title='/pmwiki/pmwiki.php/Main/HandsomeLech' data-format='W1tIYW5kc29tZUxlY2ggY2hhc2Ugc2tpcnRdXQ=='>chase skirt</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ToBeAMaster' title='/pmwiki/pmwiki.php/Main/ToBeAMaster' data-format='W1tUb0JlQU1hc3RlciBiZWNvbWUgdGhlIHN0cm9uZ2VzdCBrYXJhdGVrYV1d'>become the strongest karateka</a>) and partnered up with the kind-hearted protagonist to protect people from their malevolent brethren. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Legacies' title='/pmwiki/pmwiki.php/Series/Legacies' data-format='U2VyaWVzL3t7TGVnYWNpZXN9fQ=='>Legacies</a></em> A genie (It's Jinni) shows up at the school. She's able to choose who to show herself to and only grants wishes that she wants to grant. Her tactics are to twist people's wishes in the traditional "Be careful what you wish for" sense and until the only way to get what they want is to wish for what she wants in the first place. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMagicians2016' title='/pmwiki/pmwiki.php/Series/TheMagicians2016' data-format='U2VyaWVzL1RoZU1hZ2ljaWFuczIwMTY='>The Magicians (2016)</a></em>, Eliot and Margo try to brew some Magical Gin, but it turns out that the spell is to summon a Magical Djinn. The Djinn grants even wishes that are only thought. Margo, not knowing this and frustrated at the attention Eliot is showing his new boyfriend Mike, accidentally sets the Djinn on Mike by simply thinking: "I wish Mike would go back where he came from and suck on some other knob." The Djinn takes this literally, takes Mike to the library the group first met him at, and enchants him to lick and suck on a doorknob. </li><li> In the Enchanted Forest in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OnceUponATime2011' title='/pmwiki/pmwiki.php/Series/OnceUponATime2011' data-format='U2VyaWVzL09uY2VVcG9uQVRpbWUyMDEx'>Once Upon a Time (2011)</a></em> there is the Genie of Agrabah who becomes Regina's <span class="spoiler" title="you can set spoilers visible by default on your profile" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/UnwittingPawn' title='/pmwiki/pmwiki.php/Main/UnwittingPawn' data-format='VW53aXR0aW5nUGF3bg=='>Unwitting Pawn</a> in her plot to kill her husband, King Leopold, and is transformed into her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicMirror' title='/pmwiki/pmwiki.php/Main/MagicMirror' data-format='TWFnaWNNaXJyb3I='>Magic Mirror</a></span>. <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/OnceUponATimeInWonderland' title='/pmwiki/pmwiki.php/Series/OnceUponATimeInWonderland' data-format='U2VyaWVzL09uY2VVcG9uQVRpbWVJbldvbmRlcmxhbmQ='>Once Upon a Time in Wonderland</a></em>, the genie Cyrus is both the main character's love interest and the show's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LivingMacGuffin' title='/pmwiki/pmwiki.php/Main/LivingMacGuffin' data-format='TGl2aW5nTWFjR3VmZmlu'>Living MacGuffin</a>. He also has two brothers, but they don't get much screen time. Later in the series, it is revealed that those who cross Nyx, guardian of the Well of Wonders, are punished for their desire to change fate by being turned into genies, <span class="spoiler" title="you can set spoilers visible by default on your profile" >which is what happened to Cyrus and his brothers</span>. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SpecialUnit2' title='/pmwiki/pmwiki.php/Series/SpecialUnit2' data-format='U2VyaWVzL1NwZWNpYWxVbml0Mg=='>Special Unit 2</a></em>, Djinn are gaseous beings that can assume human form and can only grant wishes someone with such abilities would be capable of doing and even then only to further their own goals (a wish for a celebrity leads to said celebrity becoming a kidnap victim). They can hide themselves in containers they can make airtight by lining the insides with their molecules. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Supernatural' title='/pmwiki/pmwiki.php/Series/Supernatural' data-format='U2VyaWVzL3t7U3VwZXJuYXR1cmFsfX0='>Supernatural</a></em> episode "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/SupernaturalS02E20WhatIsAndWhatShouldNeverBe' title='/pmwiki/pmwiki.php/Recap/SupernaturalS02E20WhatIsAndWhatShouldNeverBe' data-format='W1tSZWNhcC9TdXBlcm5hdHVyYWxTMDJFMjBXaGF0SXNBbmRXaGF0U2hvdWxkTmV2ZXJCZSBXaGF0IElzIGFuZCBXaGF0IFNob3VsZCBOZXZlciBCZV1d'>What Is and What Should Never Be</a>", the Winchester brothers track down a djinni that appears to grant whatever its victim wishes for, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityWarper' title='/pmwiki/pmwiki.php/Main/RealityWarper' data-format='W1tSZWFsaXR5V2FycGVyIGFsdGVyaW5nIHRoZSB3b3JsZCBhcm91bmQgdGhlbV1d'>altering the world around them</a>. However, Dean learns firsthand that the djinni just <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LotusEaterMachine' title='/pmwiki/pmwiki.php/Main/LotusEaterMachine' data-format='W1tMb3R1c0VhdGVyTWFjaGluZSBwdXRzIGhpcyB2aWN0aW1zIGluIGFuIGFjaWQtdHJpcC1saWtlIHN0YXRlXV0='>puts his victims in an acid-trip-like state</a>, hooks them up to an IV, and drinks their blood for a few days until they die (but it feels like years in the djinni-induced-acid-trip). The victims do occasionally get flashes of reality, though, which is what helps Dean figure it out and get out of Wishland. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/SuperSentai' title='/pmwiki/pmwiki.php/Franchise/SuperSentai' data-format='RnJhbmNoaXNlL1N1cGVyU2VudGFp'>Super Sentai</a></em>/<em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/PowerRangers' title='/pmwiki/pmwiki.php/Franchise/PowerRangers' data-format='RnJhbmNoaXNlL1Bvd2VyUmFuZ2Vycw=='>Power Rangers</a></em>: <ul ><li> Smokey from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MahouSentaiMagiranger' title='/pmwiki/pmwiki.php/Series/MahouSentaiMagiranger' data-format='U2VyaWVzL01haG91U2VudGFpTWFnaXJhbmdlcg=='>Mahou Sentai Magiranger</a></em> (adapted as Jenji in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/PowerRangersMysticForce' title='/pmwiki/pmwiki.php/Series/PowerRangersMysticForce' data-format='U2VyaWVzL1Bvd2VyUmFuZ2Vyc015c3RpY0ZvcmNl'>Power Rangers Mystic Force</a></em>) is a comical cat-headed genie who was sealed in a lamp for his troublemaking and can't stay outside the lamp for more than three hours. He can grant wishes, but chooses to only grant one to his masters because <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='W1tKYWNrYXNzR2VuaWUgaGUgY2FuJiMwMzk7dCBiZSBib3RoZXJlZCB0byBkbyBtb3JlXV0='>he can't be bothered to do more</a>, and <em>only</em> if he receives some kind of payment for it. He also doesn't get any kind of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityWarper' title='/pmwiki/pmwiki.php/Main/RealityWarper' data-format='UmVhbGl0eVdhcnBlcg=='>Reality Warper</a> powers or anything that would be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RequiredSecondaryPowers' title='/pmwiki/pmwiki.php/Main/RequiredSecondaryPowers' data-format='UmVxdWlyZWRTZWNvbmRhcnlQb3dlcnM='>Required Secondary Powers</a> for a traditional genie, so "making a wish" basically just amounts to "working to fulfill a request to the best of his ability". This being a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MerchandiseDriven' title='/pmwiki/pmwiki.php/Main/MerchandiseDriven' data-format='TWVyY2hhbmRpc2VEcml2ZW4='>Merchandise-Driven</a> series, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EquippableAlly' title='/pmwiki/pmwiki.php/Main/EquippableAlly' data-format='W1tFcXVpcHBhYmxlQWxseSB3aGlsZSBoZSYjMDM5O3MgaW4gdGhlIGxhbXAgaXQgZG91YmxlcyBhcyB0aGUgbWFpbiB3ZWFwb25dXQ=='>while he's in the lamp it doubles as the main weapon</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SixthRanger' title='/pmwiki/pmwiki.php/Main/SixthRanger' data-format='W1tTaXh0aFJhbmdlciBNYWdpU2hpbmVdXQ=='>MagiShine</a>, a magical <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RayGun' title='/pmwiki/pmwiki.php/Main/RayGun' data-format='UmF5R3Vu'>Ray Gun</a> that's reloaded by rubbing (and at full power can <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FastballSpecial' title='/pmwiki/pmwiki.php/Main/FastballSpecial' data-format='W1tGYXN0YmFsbFNwZWNpYWwgc2hvb3QgU21va2V5IGhpbXNlbGYgYXMgYSBwcm9qZWN0aWxlXV0='>shoot Smokey himself as a projectile</a>). </li><li> One episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/KyoryuSentaiZyuranger' title='/pmwiki/pmwiki.php/Series/KyoryuSentaiZyuranger' data-format='U2VyaWVzL0t5b3J5dVNlbnRhaVp5dXJhbmdlcg=='>Kyōryū Sentai Zyuranger</a></em> / <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MightyMorphinPowerRangers' title='/pmwiki/pmwiki.php/Series/MightyMorphinPowerRangers' data-format='U2VyaWVzL01pZ2h0eU1vcnBoaW5Qb3dlclJhbmdlcnM='>Mighty Morphin' Power Rangers</a></em> (Season 1) featured an Anubis-like genie as the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' title='/pmwiki/pmwiki.php/Main/MonsterOfTheWeek' data-format='TW9uc3Rlck9mVGhlV2Vlaw=='>Monster of the Week</a>, whom the villains are trying to gain control over so they can wish for him to destroy the Rangers. In <em>Zyuranger</em>, he was a pretty nice guy when not being bossed around, but would lose all his magic powers if his lamp was destroyed. In <em>Power Rangers</em>, he's completely evil, while his life is connected to his lamp. </li><li> The Crystalians and the Yodonheim from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MashinSentaiKiramager' title='/pmwiki/pmwiki.php/Series/MashinSentaiKiramager' data-format='U2VyaWVzL01hc2hpblNlbnRhaUtpcmFtYWdlcg=='>Mashin Sentai Kiramager</a></em> are genies that do not come from lamps, nor do they grant wishes. Instead, they came from another planet. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheTwilightZone1959' title='/pmwiki/pmwiki.php/Series/TheTwilightZone1959' data-format='U2VyaWVzL1RoZVR3aWxpZ2h0Wm9uZTE5NTk='>The Twilight Zone (1959)</a></em>: In "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TheTwilightZone1959S4E12IDreamOfGenie' title='/pmwiki/pmwiki.php/Recap/TheTwilightZone1959S4E12IDreamOfGenie' data-format='W1tSZWNhcC9UaGVUd2lsaWdodFpvbmUxOTU5UzRFMTJJRHJlYW1PZkdlbmllIEkgRHJlYW0gb2YgR2VuaWVdXQ=='>I Dream of Genie</a>", the genie is an obnoxious loudmouth who smokes a cigar and dresses in contemporary clothes with the exception of "velveteen mukluks." He also offers George P. Hanley only one wish instead of the usual three. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/UltramanEighty' title='/pmwiki/pmwiki.php/Series/UltramanEighty' data-format='U2VyaWVzL1VsdHJhbWFuRWlnaHR5'>Ultraman 80</a></em>: One of the last episodes of the show has the appearance of Marjin, a genie-like alien who lives in a vase, uncovered by a bunch of children who then use the wishes granted by Marjin to help make the city a better place, such as cleaning up the trash. But when the vase falls into the hands of a bunch of bullies, the lead bully decides to ask for a "cool monster toy as big as the real deal"... which ends up accidentally resurrecting the kaiju Red King. </li><li> An episode of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/WizardsOfWaverlyPlace' title='/pmwiki/pmwiki.php/Series/WizardsOfWaverlyPlace' data-format='U2VyaWVzL1dpemFyZHNPZldhdmVybHlQbGFjZQ=='>Wizards of Waverly Place</a></em> featured a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='SmFja2Fzc0dlbmll'>Jackass Genie</a>. In their lamps they have a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ResetButton' title='/pmwiki/pmwiki.php/Main/ResetButton' data-format='UmVzZXRCdXR0b24='>Reset Button</a> for all their granted wishes. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');"> Pinballs </div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> The evil genie and the player's benevolent <em>jinn</em> in <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WilliamsElectronics' title='/pmwiki/pmwiki.php/Creator/WilliamsElectronics' data-format='Q3JlYXRvci9XaWxsaWFtc0VsZWN0cm9uaWNz'>Williams Electronics</a>' <em><a class='twikilink' href='/pmwiki/pmwiki.php/Pinball/TalesOfTheArabianNights' title='/pmwiki/pmwiki.php/Pinball/TalesOfTheArabianNights' data-format='UGluYmFsbC9UYWxlc09mVGhlQXJhYmlhbk5pZ2h0cw=='>Tales of the Arabian Nights</a></em> embody most of the popular western genie stereotypes between the two of them. </li><li> Zeala, the protagonist of <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/JinniZeala' title='/pmwiki/pmwiki.php/VideoGame/JinniZeala' data-format='VmlkZW9HYW1lL0ppbm5pWmVhbGE='>Jinni Zeala</a>,</em> is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CampGay' title='/pmwiki/pmwiki.php/Main/CampGay' data-format='Q2FtcEdheQ=='>Camp Gay</a> <em>jinn</em> who just wants to <em>PARTY!</em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Gottlieb' title='/pmwiki/pmwiki.php/Creator/Gottlieb' data-format='Q3JlYXRvci97e0dvdHRsaWVifX0='>Gottlieb</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Pinball/Genie' title='/pmwiki/pmwiki.php/Pinball/Genie' data-format='UGluYmFsbC97e0dlbmllfX0='>Genie</a></em> has a sexy <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BedlahBabe' title='/pmwiki/pmwiki.php/Main/BedlahBabe' data-format='QmVkbGFoQmFiZQ=='>Bedlah Babe</a> who teases the wizard summoning her. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');"> Podcasts </div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> Genies in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/HelloFromTheMagicTavern' title='/pmwiki/pmwiki.php/Podcast/HelloFromTheMagicTavern' data-format='UG9kY2FzdC97e0hlbGxvIEZyb20gdGhlIE1hZ2ljIFRhdmVybn19'>Hello From the Magic Tavern</a></em> follow the standard European trope of living in bottles and granting wishes to those who release them. They are not to be confused with djinn, who are spirits made of smokeless fire and want to subjugate all creation (and by <em>subjugate</em>, they mean help people work through their emotional issues); or with gin, which is an alcoholic beverage. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');"> Pro Wrestling </div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> Satu Jinn, who appeared to be a giant genie <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManlyGay' title='/pmwiki/pmwiki.php/Main/ManlyGay' data-format='W1tNYW5seUdheSBiZWFyXV0='>bear</a> before he renounced facial hair and becoming an "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/FaceOfAnAngelMindOfADemon' title='/pmwiki/pmwiki.php/Main/FaceOfAnAngelMindOfADemon' data-format='W1tGYWNlT2ZBbkFuZ2VsTWluZE9mQURlbW9uIGFuZ2VsIGZhY2Ugd2VhcmluZ11d'>angel face wearing</a>" jinn. With that said, even before shaving he began dressing more like a <a class='twikilink' href='/pmwiki/pmwiki.php/Manga/DragonBall' title='/pmwiki/pmwiki.php/Manga/DragonBall' data-format='W1tNYW5nYS9EcmFnb25CYWxsIG1hamluXV0='>majin</a> than a djinn as part of his quest to beat Goku. Winning title belts in The National Federation Of Wrestling apparently was part of this training.</div> </li></ul></p><p><div class="folderlabel" onclick="togglefolder('folder14');"> Tabletop Games </div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em> <ul ><li> Genies are elemental spirits from the elemental planes. They have several different types, each tied to a particular element. Efreet are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LawfulEvil' title='/pmwiki/pmwiki.php/Main/LawfulEvil' data-format='TGF3ZnVsRXZpbA=='>Lawful Evil</a> genies from the Plane of Fire. Djinn are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChaoticGood' title='/pmwiki/pmwiki.php/Main/ChaoticGood' data-format='Q2hhb3RpY0dvb2Q='>Chaotic Good</a> genies from the Plane of Air. Jann are made of all of the elements, can be of any alignment, and spend most of their time on the Material Plane. Later supplements added <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NeutralEvil' title='/pmwiki/pmwiki.php/Main/NeutralEvil' data-format='TmV1dHJhbEV2aWw='>Neutral Evil</a> Dao (Earth) and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChaoticNeutral' title='/pmwiki/pmwiki.php/Main/ChaoticNeutral' data-format='Q2hhb3RpY05ldXRyYWw='>Chaotic Neutral</a> Marids (Water), which aren't usually remembered very often since they overlap a lot with Efreet and Djinn on a conceptual basis. They all have various magical abilities, but whether they can grant wishes varies between them. Efreet can grant wishes, but since they hate servitude, they tend to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='e3tMaXRlcmFsIEdlbmllfX1z'>Literal Genies</a>, if not outright <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='e3tKYWNrYXNzIEdlbmllfX1z'>Jackass Genies</a>. Only "noble" djinn (about 1% of them) can grant wishes. In 5th edition, very few genies are capable of granting wishes, but wish-granting genies are represented among all types (except the jann, who are not present in 5th edition). </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/AlQadim' title='/pmwiki/pmwiki.php/TabletopGame/AlQadim' data-format='VGFibGV0b3BHYW1lL0FsUWFkaW0='>Al-Qadim</a></em> setting clarifies this. Genies are more or less widespread there, but treated as powerful, whimsical and extremely dangerous, albeit honorable, beings. Most people avoid any contact closer than hearing tales about them. All genies can grant wishes in proper circumstances, but usually bend any request toward their own desires; when pressed into service they are just as inventive with vengeance later, and while individual genies can be trapped or killed, this tends to upset their pals and rulers. There's also Jann ("composite" genies living in mortal worlds) and Great Ghuls (undead genies). Servitor Genies are specialized sub-breeds that have literally been bred to hold specific roles, such as miner, courier or even wine-maker. Gen are minor genie-kin implied to be kids of the main elemental types and contracted out as servants to sha'ir wizards. Again, gen may serve faithfully, but people unwise enough to mistreat one are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MamaBear' title='/pmwiki/pmwiki.php/Main/MamaBear' data-format='W1tNYW1hQmVhciBpbiBmb3IgYSBiaWcgc3VycHJpc2VdXQ=='>in for a big surprise</a>. </li><li> In 4th edition, Efreeti (Fire Element Genies) are all slave-trading bastards who consider <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Plan' title='/pmwiki/pmwiki.php/Main/Plan' data-format='e3twbGFufX1z'>plans</a> a fun way to spend their spare time. While they can grant wishes, they don't do it by supernatural means (well, beyond their affinity for high level magic, that is); they instead use their connections within their Mafia-like societies to get things done, and always for a high price. On the other hand, Djinni (Air Element Genies) are magical craftsmen and engineers, most of whom have been sealed away. Their primary goal is reclaiming the lost creations of their "golden age" and freeing their allies and family while ensuring their enemies remain imprisoned forever. Dao and Marids also exist, having been added in a late issue of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Magazine/Dungeon' title='/pmwiki/pmwiki.php/Magazine/Dungeon' data-format='TWFnYXppbmUve3tEdW5nZW9ufX0='>Dungeon</a></em>, but are basically just their Great Wheel counterparts transported into the World Axis cosmology. </li><li> 5th edition eventually introduced noble genies as one of the patrons for the Warlock, which zig zags around the modern archetype. For starters Genie Warlocks get several elemental powers (depending on which of the above kinds of genies they get as a patron). As for more stereotypical genie powers, these warlocks get a special lamp, ring, or other trinket that behaves as a pocket dimension where they can hide, store things and take shelter (apparently these genies find ironic pleasure in having people stuff themselves in lamps). They can also fly (no magic carpet needed) and can eventually make wishes to their patrons, in the form of the very powerful ‘’Wish’’ spell (which warlocks don’t usually get), and a weaker version that replicates any spell of 6th level (as opposed to the normal maximum 9th spell level) or lower without any of the usual class or cost restrictions; they do however only get one such wish every few days. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Exalted' title='/pmwiki/pmwiki.php/TabletopGame/Exalted' data-format='VGFibGV0b3BHYW1lL3t7RXhhbHRlZH19'>Exalted</a></em>: Ifrit are humanoid fire elementals of fairly considerable power, and generally given much more respect by the gods than elementals usually are. </li><li> <em><a class='twikilink disambiglink' href='/pmwiki/pmwiki.php/TabletopGame/GURPS' title='/pmwiki/pmwiki.php/TabletopGame/GURPS' data-format='VGFibGV0b3BHYW1lL3t7R1VSUFN9fQ=='>GURPS</a></em>: One of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlternateHistory' title='/pmwiki/pmwiki.php/Main/AlternateHistory' data-format='W1tBbHRlcm5hdGVIaXN0b3J5IEluZmluaXRlIFdvcmxkc11d'>Infinite Worlds</a> is Caliph, a scientifically advanced Arab-dominant timeline where references to djinn in the Qu'ran are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGenieInTheMachine' title='/pmwiki/pmwiki.php/Main/TheGenieInTheMachine' data-format='W1tUaGVHZW5pZUluVGhlTWFjaGluZSBiZWxpZXZlZCB0byBiZSBwcm9waGVjaWVzIG9mIEEuSS4sIGFuZCBhY3R1YWwgQS5JLiBhcmUgY2FsbGVkICJkamlubiJdXQ=='>believed to be prophecies of A.I., and actual A.I. are called "djinn"</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/LegendOfTheFiveRings' title='/pmwiki/pmwiki.php/TabletopGame/LegendOfTheFiveRings' data-format='VGFibGV0b3BHYW1lL0xlZ2VuZE9mVGhlRml2ZVJpbmdz'>Legend of the Five Rings</a></em>: In the spin-off <em>Legend of the Burning Sands</em>, Jinn are the original creations of the Sun and Moon, or of the Ashalan, depending on who you believe. They are usually malevolent, but can be bargained with for service. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/MageTheAwakening' title='/pmwiki/pmwiki.php/TabletopGame/MageTheAwakening' data-format='VGFibGV0b3BHYW1lL01hZ2VUaGVBd2FrZW5pbmc='>Mage: The Awakening</a></em>: One option for the fabled Sixth Watchtower is the realm of the Djinn, where Spirit and Forces hold sway. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/InNomine' title='/pmwiki/pmwiki.php/TabletopGame/InNomine' data-format='VGFibGV0b3BHYW1lL0luTm9taW5l'>In Nomine</a></em>: The Djinn are a type of demon, the fallen counterparts to the Cherubim. They are sullen, moody and cynical, and prone to developing possessive, stalkerish obsessions with mortals. Their humanoid vessels tend to be short and stocky; their celestial forms are monstrous, surreal beasts. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/OldWorldOfDarkness' title='/pmwiki/pmwiki.php/TabletopGame/OldWorldOfDarkness' data-format='VGFibGV0b3BHYW1lL09sZFdvcmxkT2ZEYXJrbmVzcw=='>Old World of Darkness</a></em>: <ul ><li> In the fan forum <a class='urllink' href='http://www.shadownessence.com/forums'>Shadow n Essence<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, a member once proposed a fanwork called <em>Djinn: Of Smokeless Fire</em> that imagined them as Middle Eastern <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ChangelingTheDreaming' title='/pmwiki/pmwiki.php/TabletopGame/ChangelingTheDreaming' data-format='W1tUYWJsZXRvcEdhbWUvQ2hhbmdlbGluZ1RoZURyZWFtaW5nIGZhZV1d'>fae</a>. An interesting idea, but nothing really came of it. </li><li> "Lost Paths", the <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/MageTheAscension' title='/pmwiki/pmwiki.php/TabletopGame/MageTheAscension' data-format='VGFibGV0b3BHYW1lL01hZ2VUaGVBc2NlbnNpb24='>Mage: The Ascension</a></em> supplement which spotlights the Ahl-i-Batin and Taftani factions, features a great deal of detail on the Djinn, supernatural beings created by Allah from "smokeless fire given spirit and form and life" that normally reside within an Umbral Realm called the City of Brass. In general, they envy and hate humans with considerable intensity, most especially since Solomon compelled one of their number to reveal the elaborate facets of djinn behavior and culture, which he codified into the Solomonic Code and used to force the djinn into doing the bidding of anyone following its strictures (and imprisoning them within bottles, rings, gems, etc. inscribed with the Seals of Solomon).<br data-format="\\\" /><br />The djinn have subraces as varied as those of humanity, and range in personality from <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='SmFja2Fzc0dlbmll'>Jackass Genie</a> to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a> to almost every variation in between <em>except</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='QmVuZXZvbGVudEdlbmll'>Benevolent Genie</a>. Again, about the only thing the djinn have in common other than their basic composition and access to unimaginable power is their desire for vengeance upon the arrogant human insects that dare command them — so any mage dealing with them must have varying amounts of foolishness, intelligence, boldness and charisma. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' title='/pmwiki/pmwiki.php/TabletopGame/Pathfinder' data-format='VGFibGV0b3BHYW1lL3t7UGF0aGZpbmRlcn19'>Pathfinder</a></em> Genies are naturally like their D&D counterparts, originally being from the same source. <em>PF</em> Earth Genies are called Shaitans, however. And yes, it's possible to be a Djinn/Efreet/Jann/Marid/Shaitan <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HalfHumanHybrid' title='/pmwiki/pmwiki.php/Main/HalfHumanHybrid' data-format='W1tIYWxmSHVtYW5IeWJyaWQgU29yY2VyZXJdXQ=='>Sorcerer</a>, not to mention the Half-Elemental Sylph/Ifrit/Suli-Jann/Undine/Oread, who often have Genie heritage. Genies are also a big focus of the <em>Legacy of Fire</em> Adventure Path, which deals with the aftermath of a Genie War (you can imagine how crazy <em>that</em> got), and takes you to the Efreeti-run capital of the Elemental Plane of Fire known as the City of Brass. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Rifts' title='/pmwiki/pmwiki.php/TabletopGame/Rifts' data-format='VGFibGV0b3BHYW1lL3t7UmlmdHN9fQ=='>Rifts</a></em>, Jinn are elemental demons that, if captured, can be compelled to grant a wish. However, they aren't nearly all-powerful, so if you were to wish for a million dollars from one, for example, it can't just make it appear out of mid-air, but will have to go and <em>get</em> it... and won't be particularly picky about where it comes from, or what he does in the process. Ever seen a Jinni rob a bank? You're about to. </li><li> <em>Shadow of the Demon Lord</em> from Schwalb Entertainment, has genies being the first creatures made by the Demiurge after <a class='twikilink' href='/pmwiki/pmwiki.php/Main/God' title='/pmwiki/pmwiki.php/Main/God' data-format='e3tHb2R9fQ=='>God</a> had created the universe and the Demiurge and then went off to rest. The genies stole much of God's power and persona and they killed the Demiurge. All that was left of God was his wrath and this coalesced to become the Demon Lord which tried to destroy the universe for happened. The Genies were horrorified and many sacrificed themselves to be a barrier to lock away the Demon Lord and they could do it because of the remainders of God's power they had stolen. The surviving genies migrated to the world that the rpg is set in and would become the fey race. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer' data-format='VGFibGV0b3BHYW1lL3t7V2FyaGFtbWVyfX0='>Warhammer</a></em>: Djinn are occasionally mentioned in association with Araby, a culture that's largely medieval Arabia with the serial numbers filed off. They come in multiple different kinds — "djinn" is less a species name as a catchall category used by Arabyans to refer to powerful, non-Daemonic spiritual beings — but are all powerful elemental spirits, often toweringly tall, that are often bound to the service of Arabyan wizards. Efreets, one of the more commonly referenced kinds, are spirits of fire, and are a particularly aggressive and volatile type of djinn, and best suited for combat purposes. A character in <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Dreadfleet' title='/pmwiki/pmwiki.php/TabletopGame/Dreadfleet' data-format='VGFibGV0b3BHYW1lL3t7RHJlYWRmbGVldH19'>Dreadfleet</a></em>, the Golden Magus, captains a ship called the <em>Scimitar</em> that's powered by two colossal bound djinn — a wind spirit to inflate the sails and a fire spirit to power the engines. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');"> Video Games </div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/AdventureQuestWorlds' title='/pmwiki/pmwiki.php/VideoGame/AdventureQuestWorlds' data-format='VmlkZW9HYW1lL0FkdmVudHVyZVF1ZXN0V29ybGRz'>AdventureQuest Worlds</a></em>: The Sandsea saga has our hero having to battle a powerful Djinn that has become chaorrupted. Djinn are immensely powerful beings that much like the djinn of folklore can grant wishes. They cannot be destroyed, only defeated, contained or bound to the physical world through means of lamps, rings or other objects. Three kinds of djinn generally exist: the Marid, who are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BenevolentGenie' title='/pmwiki/pmwiki.php/Main/BenevolentGenie' data-format='e3tCZW5ldm9sZW50IEdlbmllfX1z'>Benevolent Genies</a> like Saahir; the Ghul, who are evil genies like Tibicenas (the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a> of the arc) once was; and the Efreet, the ruler of all djinn. When a djinn is defeated <span class="spoiler" title="you can set spoilers visible by default on your profile" >such as Saahir at the hands of Tibicenas</span>, it usually takes him several millennia to regain enough power to return. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/AgeOfWonders' title='/pmwiki/pmwiki.php/VideoGame/AgeOfWonders' data-format='VmlkZW9HYW1lL0FnZU9mV29uZGVycw=='>Age of Wonders</a></em>: Djinn appear as tier 3 units for the distinctly Arab-themed Azrac race, serving as flying scouts and ranged support units. They reappear in <em>Age of Wonders: Shadow Magic</em>, filling a similar role for the nomads. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/AlQadimTheGeniesCurse' title='/pmwiki/pmwiki.php/VideoGame/AlQadimTheGeniesCurse' data-format='VmlkZW9HYW1lL0FsUWFkaW1UaGVHZW5pZXNDdXJzZQ=='>Al-Qadim: The Genie's Curse</a></em> features a number of genies, and being set in the <a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ForgottenRealms' title='/pmwiki/pmwiki.php/TabletopGame/ForgottenRealms' data-format='VGFibGV0b3BHYW1lL0ZvcmdvdHRlblJlYWxtcw=='>Forgotten Realms</a>, it applies that system. The elemental division is clearly made — an efreet (fire) is different from a djinn (air) is different from a dao (earth) is different from a marid (water). The "three wishes" thing doesn't really come up, although the broader subject of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='W1tHZW5pZUluQUJvdHRsZSBjb250cm9sbGluZyBnZW5pZXNdXQ=='>controlling genies</a> is highly relevant. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ApeEscape' title='/pmwiki/pmwiki.php/VideoGame/ApeEscape' data-format='VmlkZW9HYW1lL0FwZUVzY2FwZQ=='>Ape Escape</a> 3</em>, the Genie Dancer Morph allows Kei and Yumi to summon a genie to distract enemies via dancing. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Arcana' title='/pmwiki/pmwiki.php/VideoGame/Arcana' data-format='VmlkZW9HYW1lL3t7QXJjYW5hfX0='>Arcana</a></em> had the hero Rooks coming into ownership of four genie-like spirits: Sylph, Efrite, Marid and Dao, representing wind, fire, water and earth, respectively. Their levels are tied to Rooks' and are mostly there to supplement the party's attacks with magical support. <!--* ''VideoGame/{{Archon}}'': Djinn is a playable board piece on the Light side.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BarbarianTitus' title='/pmwiki/pmwiki.php/VideoGame/BarbarianTitus' data-format='VmlkZW9HYW1lL0JhcmJhcmlhblRpdHVz'>Barbarian (Titus)</a></em>: Djinn are portrayed as feral, demonic beings capable of magical abilities originating from an alternate dimension. As for appearance, they are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HornedHumanoid' title='/pmwiki/pmwiki.php/Main/HornedHumanoid' data-format='e3tIb3JuZWQgSHVtYW5vaWR9fXM='>Horned Humanoids</a> that have charcoal dark gray skin and claws and pronounced canines. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BeyondOasis' title='/pmwiki/pmwiki.php/VideoGame/BeyondOasis' data-format='VmlkZW9HYW1lL0JleW9uZE9hc2lz'>Beyond Oasis</a></em>: In both the game and its prequel, <em>Legend</em>, the protagonist can summon a fire elemental named Efreet, who is wreathed in flames and can attack with fire. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BornUnderTheRain' title='/pmwiki/pmwiki.php/VideoGame/BornUnderTheRain' data-format='VmlkZW9HYW1lL0Jvcm5VbmRlclRoZVJhaW4='>Born Under the Rain</a></em>: An Efreet is part of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ActuallyFourMooks' title='/pmwiki/pmwiki.php/Main/ActuallyFourMooks' data-format='W1tBY3R1YWxseUZvdXJNb29rcyBncm91cCBvZiBlbmVtaWVzXV0='>group of enemies</a> that's blocking the way after the chest with the Serpentius Priest Hat. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Cuphead' title='/pmwiki/pmwiki.php/VideoGame/Cuphead' data-format='VmlkZW9HYW1lL3t7Q3VwaGVhZH19'>Cuphead</a></em>: One of the bosses is Djimmi the Great, an orange-skinned genie with an impressive <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EvilLaugh' title='/pmwiki/pmwiki.php/Main/EvilLaugh' data-format='RXZpbExhdWdo'>Evil Laugh</a> who fights with a variety of Egyptian/Arabian-themed attacks. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Destiny' title='/pmwiki/pmwiki.php/VideoGame/Destiny' data-format='VmlkZW9HYW1lL3t7RGVzdGlueX19'>Destiny</a></em> has the Ahamkara, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EmpathicShapeshifter' title='/pmwiki/pmwiki.php/Main/EmpathicShapeshifter' data-format='W1tFbXBhdGhpY1NoYXBlc2hpZnRlciBzaGFwZS1zaGlmdGluZ11d'>shape-shifting</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealityWarper' title='/pmwiki/pmwiki.php/Main/RealityWarper' data-format='W1tSZWFsaXR5V2FycGVyIHJlYWxpdHktYmVuZGluZ11d'>reality-bending</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StarfishAliens' title='/pmwiki/pmwiki.php/Main/StarfishAliens' data-format='U3RhcmZpc2hBbGllbnM='>Starfish Aliens</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurDragonsAreDifferent' data-format='W1tPdXJEcmFnb25zQXJlRGlmZmVyZW50IHRoYXQgcHJlZmVyIGRyYWNvbmljIGZvcm1zXV0='>that prefer draconic forms</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AFormYouAreComfortableWith' title='/pmwiki/pmwiki.php/Main/AFormYouAreComfortableWith' data-format='W1tBRm9ybVlvdUFyZUNvbWZvcnRhYmxlV2l0aCBidXQgY2FuIGFzc3VtZSBhbnkgc2hhcGUgdGhhdCB3b3VsZCBzdWl0IHRoZWlyIG5lZWRzXV0='>but can assume any shape that would suit their needs</a>. In a twist on the trope, they tend to specialize in <em>unvoiced</em> wishes — any stray desire that becomes conscious thought is fair game for them to fulfill. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Digimon' title='/pmwiki/pmwiki.php/Franchise/Digimon' data-format='RnJhbmNoaXNlL3t7RGlnaW1vbn19'>Digimon</a></em> has Lampmon, a Demon Man digimon that looks like a stereotypical green genie. His description states that he will grant wishes to anyone frees him from his lamp. However, he has a distorted personality and will instead attack his benefactor. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DragonsCrown' title='/pmwiki/pmwiki.php/VideoGame/DragonsCrown' data-format='VmlkZW9HYW1lL0RyYWdvbnNDcm93bg=='>Dragon's Crown</a></em>: When you arrive at the final boss of the Ghost Ship Cove Route A, you have to deal with dozens of pirates, one of them carries a lamp that can summon a genie. You can even steal that lamp and use the genie against them. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Extrapower' title='/pmwiki/pmwiki.php/VideoGame/Extrapower' data-format='VmlkZW9HYW1lL3t7RXh0cmFwb3dlcn19'>EXTRAPOWER</a></em>: Magma-O the fire genie lives in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LethalLavaLand' title='/pmwiki/pmwiki.php/Main/LethalLavaLand' data-format='W1tMZXRoYWxMYXZhTGFuZCBNYWdhcmRhIFZvbGNhbm9dXQ=='>Magarda Volcano</a>. A giant being who has been watching the Earth for millennia, he is sometimes sought out for his wisdom though may not always be impressed to give an answer. In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ExtrapowerGiantFist' title='/pmwiki/pmwiki.php/VideoGame/ExtrapowerGiantFist' data-format='W1tWaWRlb0dhbWUvRXh0cmFwb3dlckdpYW50RmlzdCBHaWFudCBGaXN0XV0='>Giant Fist</a></em>, hitting certain parts of the environment will reveal the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreatorCameo' title='/pmwiki/pmwiki.php/Main/CreatorCameo' data-format='W1tDcmVhdG9yQ2FtZW8gTHVja3kgTGFtcF1d'>Lucky Lamp</a>, summoning a genie that grants you the ability to cast all your special attacks without cost and perform transcendental attacks without being at low health for a limited time. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GoldenSun' title='/pmwiki/pmwiki.php/VideoGame/GoldenSun' data-format='VmlkZW9HYW1lL0dvbGRlblN1bg=='>Golden Sun</a></em> has Djinn as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WaddlingHead' title='/pmwiki/pmwiki.php/Main/WaddlingHead' data-format='V2FkZGxpbmdIZWFk'>Waddling Head</a>-like creatures aligned with one of the four elements, used to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ClassAndLevelSystem' title='/pmwiki/pmwiki.php/Main/ClassAndLevelSystem' data-format='W1tDbGFzc0FuZExldmVsU3lzdGVtIHBvd2VyLXVwIHlvdXIgY2hhcmFjdGVyc11d'>power-up your characters</a> (like <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Familiar' title='/pmwiki/pmwiki.php/Main/Familiar' data-format='e3tGYW1pbGlhcn19cw=='>Familiars</a>, sort of). Some are hostile and have to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DefeatMeansFriendship' title='/pmwiki/pmwiki.php/Main/DefeatMeansFriendship' data-format='W1tEZWZlYXRNZWFuc0ZyaWVuZHNoaXAgZGVmZWF0ZWRdXQ=='>defeated</a> or tricked (or both) to gain their services. Surprisingly consistent with Arabic mythology, except that they're not trapped in rings, bottles, or lamps. <ul ><li> The Wise One indicates in the first game that the Djinn were <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMagicGoesAway' title='/pmwiki/pmwiki.php/Main/TheMagicGoesAway' data-format='W1tUaGVNYWdpY0dvZXNBd2F5IHNlYWxlZCBhd2F5IGFsb25nIHdpdGggdGhlIHJlc3Qgb2YgdGhlIHBvd2VyIG9mIEFsY2hlbXldXQ=='>sealed away along with the rest of the power of Alchemy</a>, but were able to escape with the removal of the Stars, before <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMagicComesBack' title='/pmwiki/pmwiki.php/Main/TheMagicComesBack' data-format='W1tUaGVNYWdpY0NvbWVzQmFjayB0aGUgY29tcGxldGUgcmVzdG9yYXRpb24gb2YgQWxjaGVteSB0byB0aGUgd29ybGRdXQ=='>the complete restoration of Alchemy to the world</a>. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GoldenSunDarkDawn' title='/pmwiki/pmwiki.php/VideoGame/GoldenSunDarkDawn' data-format='VmlkZW9HYW1lL0dvbGRlblN1bkRhcmtEYXdu'>Golden Sun: Dark Dawn</a></em> states <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AllThereInTheManual' title='/pmwiki/pmwiki.php/Main/AllThereInTheManual' data-format='W1tBbGxUaGVyZUluVGhlTWFudWFsIGluIHRoZSBlbmN5Y2xvcGVkaWFdXQ=='>in the encyclopedia</a> that the Djinn are <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnergyBeings' title='/pmwiki/pmwiki.php/Main/EnergyBeings' data-format='RW5lcmd5QmVpbmdz'>Energy Beings</a> formed from elemental power. </li><li> They can be used in battle to great effect, such as casting improved versions of regular spells, and also used to power <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SummonMagic' title='/pmwiki/pmwiki.php/Main/SummonMagic' data-format='U3VtbW9uTWFnaWM='>Summon Magic</a>. The downside is that using them for summons lowers your characters' stats, so using the for an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlphaStrike' title='/pmwiki/pmwiki.php/Main/AlphaStrike' data-format='QWxwaGFTdHJpa2U='>Alpha Strike</a> strategy can be dangerous (and even suicidal against some bosses). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GuildWars' title='/pmwiki/pmwiki.php/VideoGame/GuildWars' data-format='VmlkZW9HYW1lL0d1aWxkV2Fycw=='>Guild Wars</a> Nightfall</em>: Djinn appear in a number of locations, some as allies and some as creatures to fight. <!--* ''Franchise/KingdomHearts'', obviously, since it uses the same Genie from ''Franchise/{{Aladdin|Disney}}''.--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KingsQuest' title='/pmwiki/pmwiki.php/VideoGame/KingsQuest' data-format='VmlkZW9HYW1lL0tpbmdzUXVlc3Q='>King's Quest</a></em>: <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KingsQuestVI' title='/pmwiki/pmwiki.php/VideoGame/KingsQuestVI' data-format='VmlkZW9HYW1lL0tpbmdzUXVlc3RWSQ=='>King's Quest VI</a></em> a genie by the name of Shamir Shamazzle causes trouble for the protagonist. Working for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigBad' title='/pmwiki/pmwiki.php/Main/BigBad' data-format='QmlnQmFk'>Big Bad</a>, Shamir shapeshifts into various people and animals, but is always identifiable by his glinting gold eyes, and seems unable to do the hero direct physical harm (instead coercing him into dangerous situations if he is foolish enough to listen to him). Whoever had possession of the lamp had control over — not just the Shamir's servitude — but his very <em>nature</em>. When Alexander <span class="spoiler" title="you can set spoilers visible by default on your profile" >takes possession of the lamp, Shamir celebrates the switch in master, glad that he no longer has to be evil.</span> </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KingsQuestII' title='/pmwiki/pmwiki.php/VideoGame/KingsQuestII' data-format='VmlkZW9HYW1lL0tpbmdzUXVlc3RJSQ=='>King's Quest II</a></em>, Graham acquires a lamp, out of which a genie appears to grant him a flying carpet, a sword and a bridle before disappearing. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KingsQuestV' title='/pmwiki/pmwiki.php/VideoGame/KingsQuestV' data-format='VmlkZW9HYW1lL0tpbmdzUXVlc3RW'>King's Quest V</a></em>, Graham gets a brass bottle that also contains a genie. However, if he opens it <span class="spoiler" title="you can set spoilers visible by default on your profile" ><a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='W1tKYWNrYXNzR2VuaWUgdGhlIGdlbmllIHNpbXBseSB0cmFwcyBoaW0gaW4gaGlzIHBsYWNlIGFuZCBkaXNhcHBlYXJzLF1d'>the genie simply traps him in his place and disappears,</a> thereby ending the game.</span> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MightAndMagic' title='/pmwiki/pmwiki.php/VideoGame/MightAndMagic' data-format='VmlkZW9HYW1lL01pZ2h0QW5kTWFnaWM='>Might and Magic</a></em> <ul ><li> Genies in the original setting were fairly standard, apart from being the complete opposite and sworn enemy to the Efreet, an Inferno creature. Their magic in both the old world and Ashan tends to produce random effects and they seem to have a touch of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a> as well. </li><li> The second case is the most evident in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HeroesOfMightAndMagic' title='/pmwiki/pmwiki.php/VideoGame/HeroesOfMightAndMagic' data-format='VmlkZW9HYW1lL0hlcm9lc09mTWlnaHRBbmRNYWdpYw=='>Heroes of Might and Magic</a> 5: Tribes of the East</em>. Zehir asks them to create a flying city, which they do, but unfortunately they <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouDidntAsk' title='/pmwiki/pmwiki.php/Main/YouDidntAsk' data-format='W1tZb3VEaWRudEFzayBkaWRuJiMwMzk7dCB0ZWxsIGhpbSB0aGUgcHJpY2Ugb2YgbW92aW5nIGl0IGJlZm9yZWhhbmRdXQ=='>didn't tell him the price of moving it beforehand</a>: a large amount of experience, justifying the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BagOfSpilling' title='/pmwiki/pmwiki.php/Main/BagOfSpilling' data-format='QmFnT2ZTcGlsbGluZw=='>Bag of Spilling</a> effect of the expansions in this particular case. </li></ul></li><li> <em>Monster Girl Quest</em> features an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OptionalBoss' title='/pmwiki/pmwiki.php/Main/OptionalBoss' data-format='W1tPcHRpb25hbEJvc3MgYXZvaWRhYmxlIGJhdHRsZV1d'>avoidable battle</a> with a genie that tricks people into making a selfish wish and then devours them. The game's flavor text mentions that only a strong-minded person with absolutely no selfish desires whatsoever behind their wish will actually have it granted. </li><li> The Bajarls from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MonsterRancher' title='/pmwiki/pmwiki.php/VideoGame/MonsterRancher' data-format='VmlkZW9HYW1lL01vbnN0ZXJSYW5jaGVy'>Monster Rancher</a> 2</em> resembled genies. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MetalSlug' title='/pmwiki/pmwiki.php/VideoGame/MetalSlug' data-format='VmlkZW9HYW1lL01ldGFsU2x1Zw=='>Metal Slug</a> 2/X</em> has a genie in a lamp hidden in a secret area of Mission 2, who doesn't grant wishes but gives you a <em>ton</em> of coins for freeing him. If you collect his lamp without waiting for the genie to emerge though, you get 10 measly points. The same genie reappears in the remake, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MetalSlugCodeJ' title='/pmwiki/pmwiki.php/VideoGame/MetalSlugCodeJ' data-format='VmlkZW9HYW1lL01ldGFsU2x1Z0NvZGVK'>Metal Slug: Awakening</a></em> to reward you with goodies if you performed well enough in the Keesi 96 boss fight. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Pokemon' title='/pmwiki/pmwiki.php/Franchise/Pokemon' data-format='RnJhbmNoaXNlL3t7UG9rZW1vbn19'>Pokémon</a></em> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonBlackAndWhite' title='/pmwiki/pmwiki.php/VideoGame/PokemonBlackAndWhite' data-format='VmlkZW9HYW1lL1Bva2Vtb25CbGFja0FuZFdoaXRl'>Pokémon Black and White</a></em> has a trio of Legendary Genie Pokémon, incredibly fitting for a series that already lets you <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlympusMons' title='/pmwiki/pmwiki.php/Main/OlympusMons' data-format='W1tPbHltcHVzTW9ucyB0cmFwIEdvZF1d'>trap God</a>. They aren't typical genies as they have no wish granting powers and are more likely to terrorize the countryside by whipping up severe thunderstorms. They're more based on Oni, specifically Raijin and Fuijin. Landorous is more benevolent and is more of a fertility god. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/PokemonLegendsArceus' title='/pmwiki/pmwiki.php/VideoGame/PokemonLegendsArceus' data-format='VmlkZW9HYW1lL1Bva2Vtb25MZWdlbmRzQXJjZXVz'>Pokémon Legends: Arceus</a></em> introduces the fourth member named Enamourus. As the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSmurfettePrinciple' title='/pmwiki/pmwiki.php/Main/TheSmurfettePrinciple' data-format='W1tUaGVTbXVyZmV0dGVQcmluY2lwbGUgb25seSBmZW1hbGVdXQ=='>only female</a> of the group, it bears a resemblance to female genies, especially to <a class='twikilink' href='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' title='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' data-format='W1tTZXJpZXMvSURyZWFtT2ZKZWFubmllIEplYW5uaWVdXQ=='>Jeannie</a>. </li><li> Gen VI introduces a an event Legendary that is a more typical genie. Hoopa's main motif is its rings, which it uses to teleport and store anything it desires, up to an including entire islands. <span class="spoiler" title="you can set spoilers visible by default on your profile" > With an item called a Prison Bottle, it can unleash its true power and become a gigantic and terrifying being of immense size and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Greed' title='/pmwiki/pmwiki.php/Main/Greed' data-format='W1t7e0dyZWVkfX0gYXZhcmljZV1d'>avarice</a>.</span> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/QuestForGloryII' title='/pmwiki/pmwiki.php/VideoGame/QuestForGloryII' data-format='VmlkZW9HYW1lL1F1ZXN0Rm9yR2xvcnlJSQ=='>Quest for Glory II</a>: Trial by Fire</em> has two varieties. The <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SealedEvilInACan' title='/pmwiki/pmwiki.php/Main/SealedEvilInACan' data-format='U2VhbGVkRXZpbEluQUNhbg=='>Sealed Evil in a Can</a> Iblis and a wishgranting variety in a ring akin to Aladdin. In the backstory, another Djinni turned Julanar into a tree while she was attempting to escape from a band of brigands. </li><li> The strategy game <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/RiseOfLegends' title='/pmwiki/pmwiki.php/VideoGame/RiseOfLegends' data-format='VmlkZW9HYW1lL1Jpc2VPZkxlZ2VuZHM='>Rise of Legends</a></em> featured genies prominently among the Alin race, which takes virtually all of its cues from <em>Arabian Nights</em> and Arabic folklore, with genies coming in fire, sand, and glass varieties. Some are simple units, but the three Alin hero units are particularly powerful genies, each representing one of the Alin elements. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSecretWorld' title='/pmwiki/pmwiki.php/VideoGame/TheSecretWorld' data-format='VmlkZW9HYW1lL1RoZVNlY3JldFdvcmxk'>The Secret World</a></em> features the Jinn, a powerful race of elemental spirits that can be found in both Egypt and the upper echelons of Hell. They don't inhabit lamps, they don't grant wishes, and they <em>really</em> don't like humans. Later investigation reveals that, like the original Djinn of Islamic theology, they were among the first beings brought into existence and initially served <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BigGood' title='/pmwiki/pmwiki.php/Main/BigGood' data-format='W1tCaWdHb29kIEdhaWFdXQ=='>Gaia</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurAngelsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurAngelsAreDifferent' data-format='W1tPdXJBbmdlbHNBcmVEaWZmZXJlbnQgdGhlIEhvc3RdXQ=='>the Host</a> without question; however, when humanity was created, they were outraged and hurt by the fact that they would be "rejected" in favour of such a puny species, and were eventually banished to the Hell dimensions for their rebellion. Most are eager to wipe out humanity regardless of the cost, but a few remember their love of Gaia and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EnemyMine' title='/pmwiki/pmwiki.php/Main/EnemyMine' data-format='W1tFbmVteU1pbmUgcmVsdWN0YW50bHkgYWdyZWUgdG8gaGVscCBodW1hbml0eSBmb3IgaGVyIHNha2VdXQ=='>reluctantly agree to help humanity for her sake</a> — <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MySpeciesDothProtestTooMuch' title='/pmwiki/pmwiki.php/Main/MySpeciesDothProtestTooMuch' data-format='W1tNeVNwZWNpZXNEb3RoUHJvdGVzdFRvb011Y2ggZXZlbiBpZiBpdCBtZWFucyBraWxsaW5nIHRoZWlyIGZvcm1lciBjb21yYWRlc11d'>even if it means killing their former comrades</a>. <ul ><li> However, in a subversion of standard fare, players eventually run into a Jinn that actually <em>does</em> grant wishes: over the course of your meeting, he offers you choices between eternal life and eternal love, wealth or power, knowledge and music. In true <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JerkassGenie' title='/pmwiki/pmwiki.php/Main/JerkassGenie' data-format='SmVya2Fzc0dlbmll'>Jerkass Genie</a> fashion, each choice <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BeCarefulWhatYouWishFor' title='/pmwiki/pmwiki.php/Main/BeCarefulWhatYouWishFor' data-format='W1tCZUNhcmVmdWxXaGF0WW91V2lzaEZvciBiaXRlcyB5b3UgaW4gdGhlIGFzc11d'>bites you in the ass</a>. However, it's not until the very end that the Jinn is revealed to be none other than <span class="spoiler" title="you can set spoilers visible by default on your profile" > <a class='twikilink' href='/pmwiki/pmwiki.php/Myth/Faust' title='/pmwiki/pmwiki.php/Myth/Faust' data-format='W1tNeXRoL3t7RmF1c3R9fSBNZXBoaXN0b3BoZWxlc11d'>Mephistopheles</a>, currently serving as the <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Main/CorruptCorporateExcutive' title='/pmwiki/pmwiki.php/Main/CorruptCorporateExcutive' data-format='W1tDb3JydXB0Q29ycG9yYXRlRXhjdXRpdmUgQ0VPXV0='>CEO</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MorallyBankruptBanker' title='/pmwiki/pmwiki.php/Main/MorallyBankruptBanker' data-format='W1tNb3JhbGx5QmFua3J1cHRCYW5rZXIgRmF1c3QgQ2FwaXRhbF1d'>Faust Capital</a>, a division of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MegaCorp' title='/pmwiki/pmwiki.php/Main/MegaCorp' data-format='W1tNZWdhQ29ycCBPcm9jaGkgR3JvdXBdXQ=='>Orochi Group</a>.</span> </li><li> Later still, players also run into the standard Genie-In-The-Lamp... and it turns out to be <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SealedEvilInACan' title='/pmwiki/pmwiki.php/Main/SealedEvilInACan' data-format='W1tTZWFsZWRFdmlsSW5BQ2FuIGFyZ3VhYmx5IHRoZSBtb3N0IGRhbmdlcm91cyBiZWluZyBpbiB0aGUgZW50aXJlIHNldHRpbmddXQ=='>arguably the most dangerous being in the entire setting</a> with the notable exception of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='W1tFbGRyaXRjaEFib21pbmF0aW9uIHRoZSBEcmVhbWVyc11d'>the Dreamers</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Shantae' title='/pmwiki/pmwiki.php/VideoGame/Shantae' data-format='VmlkZW9HYW1lL3t7U2hhbnRhZX19'>Shantae</a></em>: The title character is a half-genie girl who acts as her home city's Guardian Genie. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Shantae2002' title='/pmwiki/pmwiki.php/VideoGame/Shantae2002' data-format='VmlkZW9HYW1lL1NoYW50YWUyMDAy'>Shantae (2002)</a></em>: As well as using her <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrehensileHair' title='/pmwiki/pmwiki.php/Main/PrehensileHair' data-format='W1tQcmVoZW5zaWxlSGFpciBoYWlyIGFzIGEgd2VhcG9uXV0='>hair as a weapon</a> in combat, she can also transform into different animals by performing dances. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ShantaeRiskysRevenge' title='/pmwiki/pmwiki.php/VideoGame/ShantaeRiskysRevenge' data-format='VmlkZW9HYW1lL1NoYW50YWVSaXNreXNSZXZlbmdl'>Shantae: Risky's Revenge</a></em>: The end of the game shows that her human half gives her some protection against things that target genies, and that <span class="spoiler" title="you can set spoilers visible by default on your profile" >her genie half can somehow by extracted and incarnated, with the proper tools</span>. </li></ul></li><li> The Genies from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSims' title='/pmwiki/pmwiki.php/VideoGame/TheSims' data-format='VmlkZW9HYW1lL1RoZVNpbXM='>The Sims</a></em> are the standard "genie in the lamp" wish granters, but are not very <em>competent</em>. When you wish for money, you could either get free cash or a pile of bills. Wishing for "water" could give you a hot tub, or flood the house. Wishing for fire could heat up your social life... or burn your house down. They're more competent in the sequels, and are even playable in the third game. How do you make them playable? <span class="spoiler" title="you can set spoilers visible by default on your profile" > Wish them free, of course.</span> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheSimsMedieval' title='/pmwiki/pmwiki.php/VideoGame/TheSimsMedieval' data-format='VmlkZW9HYW1lL1RoZVNpbXNNZWRpZXZhbA=='>The Sims Medieval</a></em> has a quest where either <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyalsWhoActuallyDoSomething' title='/pmwiki/pmwiki.php/Main/RoyalsWhoActuallyDoSomething' data-format='W1tSb3lhbHNXaG9BY3R1YWxseURvU29tZXRoaW5nIHRoZSBNb25hcmNoXV0='>the Monarch</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FunctionalMagic' title='/pmwiki/pmwiki.php/Main/FunctionalMagic' data-format='W1tGdW5jdGlvbmFsTWFnaWMgdGhlIFdpemFyZF1d'>the Wizard</a> can find a genie's bottle; the genie appears as a regular Sim, albeit with a unique hair and outfit color. They do grant wishes competently in the Monarch's route, and in the Wizard's route are freed with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AppliedPhlebotinum' title='/pmwiki/pmwiki.php/Main/AppliedPhlebotinum' data-format='QXBwbGllZFBobGVib3RpbnVt'>Applied Phlebotinum</a>, though <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CouldHaveAvoidedThisPlot' title='/pmwiki/pmwiki.php/Main/CouldHaveAvoidedThisPlot' data-format='W1tDb3VsZEhhdmVBdm9pZGVkVGhpc1Bsb3QgdGhlIHdpemFyZCBjb3VsZCYjMDM5O3ZlIGp1c3QgZnJlZWQgdGhlbSB3aXRoIGEgd2lzaF1d'>the wizard could've just freed them with a wish</a>. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SonicAndTheSecretRings' title='/pmwiki/pmwiki.php/VideoGame/SonicAndTheSecretRings' data-format='VmlkZW9HYW1lL1NvbmljQW5kVGhlU2VjcmV0UmluZ3M='>Sonic and the Secret Rings</a></em> is based on the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/ArabianNights' title='/pmwiki/pmwiki.php/Literature/ArabianNights' data-format='TGl0ZXJhdHVyZS9BcmFiaWFuTmlnaHRz'>Arabian Nights</a></em>. There's Erazor, the Genie of the Lamp who is a colossal asshole who was imprisoned for his crimes and went right back to being a criminal as soon as he was freed. Sharah, the Genie of the Ring who seems to be more of the American "Good willing but bound to grant wishes". And numerous Genie Mooks that Sonic has to fight along the way — most of which don't look very humanoid and more like animated flying statues, including a cyborg Ifrit and a giant jellyfish Marid. Also, one mission states that Genies reproduce via laying eggs.... </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Terraria' title='/pmwiki/pmwiki.php/VideoGame/Terraria' data-format='VmlkZW9HYW1lL3t7VGVycmFyaWF9fQ=='>Terraria</a></em>: The Desert Spirit seems inspired by the malicious examples of Djinn. Only appearing in Hardmode deserts which have fallen victim to the Corruption or the Crimson, they have the stereotypical shape as portrayed nowadays (a muscular, shirtless man, without legs, with a ponytail). As of the 1.3.3 update, they can drop <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenieInABottle' title='/pmwiki/pmwiki.php/Main/GenieInABottle' data-format='W1tHZW5pZUluQUJvdHRsZSBhbiBvaWwgbGFtcF1d'>an oil lamp</a> as well as a pants item that gives you the legless effect when equipped. If used as armor, it prevents falling damage. </li><li> The Djinn in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Tibia' title='/pmwiki/pmwiki.php/VideoGame/Tibia' data-format='VmlkZW9HYW1lL3t7VGliaWF9fQ=='>Tibia</a></em> are divided in two races of Green and Blue Djinn, that don't get along well. They are powerful magicians and work as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShopFodder' title='/pmwiki/pmwiki.php/Main/ShopFodder' data-format='W1tTaG9wRm9kZGVyIGJ1eWVycyBmb3IgbW9yZSBleHBlbnNpdmUgbG9vdF1d'>buyers for more expensive loot</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Uncharted3DrakesDeception' title='/pmwiki/pmwiki.php/VideoGame/Uncharted3DrakesDeception' data-format='VmlkZW9HYW1lL1VuY2hhcnRlZDNEcmFrZXNEZWNlcHRpb24='>Uncharted 3: Drake's Deception</a></em> has djinn as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EliteMooks' title='/pmwiki/pmwiki.php/Main/EliteMooks' data-format='RWxpdGVNb29rcw=='>Elite Mooks</a> in the lost city of Iram of the Pillars. They initially appear as ordinary human soldiers, but when killed, they revive with their heads on fire and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GlowingEyesOfDoom' title='/pmwiki/pmwiki.php/Main/GlowingEyesOfDoom' data-format='R2xvd2luZ0V5ZXNPZkRvb20='>Glowing Eyes of Doom</a>. In this state, they can throw fire, release a burst of fire if Nate gets too close, and teleport via flames. When killed again, their torsos light up and their fire throwing becomes more powerful. It's necessary to kill them a third time to keep them down. According to in-universe legend, they used to serve King Solomon but rebelled against him. Solomon imprisoned them in a brass vessel, but the spirits of the djinn drove the populace mad and caused the destruction of the city. However, it turns out that <span class="spoiler" title="you can set spoilers visible by default on your profile" >the djinn Nate encounters are merely hallucinations, caused by drinking hallucinogen-tainted water. The hallucinogens leaked from the brass vessel into the city's water supply, implying that this is the source of the djinn legend.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/WorldOfWarcraft' title='/pmwiki/pmwiki.php/VideoGame/WorldOfWarcraft' data-format='VmlkZW9HYW1lL1dvcmxkT2ZXYXJjcmFmdA=='>World of Warcraft</a></em>'s Cataclysm expansion introduced Djinn into the game as powerful air elementals serving under Al'Akir the Windlord, a servant of the evil Deathwing. Most of them appear in Uldum (a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasyCounterpartCulture' title='/pmwiki/pmwiki.php/Main/FantasyCounterpartCulture' data-format='RmFudGFzeUNvdW50ZXJwYXJ0Q3VsdHVyZQ=='>Fantasy Counterpart Culture</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AncientEgypt' title='/pmwiki/pmwiki.php/Main/AncientEgypt' data-format='QW5jaWVudEVneXB0'>Ancient Egypt</a>) and the Skywall (the Elemental Plane of Air), and they fittingly have a very Middle Eastern motif. They don't grant wishes, and are quite hostile to the player characters (being loyal servants of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EldritchAbomination' title='/pmwiki/pmwiki.php/Main/EldritchAbomination' data-format='W1tFbGRyaXRjaEFib21pbmF0aW9uIE9sZCBHb2RzXV0='>Old Gods</a>). </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder16');"> Visual Novels </div><div id="folder16" class="folder" isfolder="true" style="display:block;"> <ul ><li> Razi Nassar in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/HavenfallIsForLovers' title='/pmwiki/pmwiki.php/VisualNovel/HavenfallIsForLovers' data-format='VmlzdWFsTm92ZWwvSGF2ZW5mYWxsSXNGb3JMb3ZlcnM='>Havenfall Is for Lovers</a></em>, owner/manager of the bowling alley where the player character works and one of her possible love interests, is secretly a djinn (he objects to the word "genie"). His magic specializes in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MasterOfIllusion' title='/pmwiki/pmwiki.php/Main/MasterOfIllusion' data-format='W1tNYXN0ZXJPZklsbHVzaW9uIGlsbHVzaW9uc11d'>illusions</a> and transfiguring things — <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ForcedTransformation' title='/pmwiki/pmwiki.php/Main/ForcedTransformation' data-format='W1tGb3JjZWRUcmFuc2Zvcm1hdGlvbiBvciBwZW9wbGVdXQ=='>or people</a> — into other things, though he's also capable of throwing around waves of force and creating defensive shields. His power is also specifically linked to his home territory, in this case the bowling alley: not only is he at his most powerful on its grounds, using his magic away from the bowling alley is physically painful. Razi likens it to an electrical current, which within the bowling alley is grounded so that he can safely channel it, while away from that ground there's nothing to bear the brunt of the power except his own body. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VisualNovel/MarcoAndTheGalaxyDragon' title='/pmwiki/pmwiki.php/VisualNovel/MarcoAndTheGalaxyDragon' data-format='VmlzdWFsTm92ZWwvTWFyY29BbmRUaGVHYWxheHlEcmFnb24='>Marco & the Galaxy Dragon</a></em>, three of the inmates in Gold Cord’s underground prison look like stereotypical genies. Gargouille punches them all out before they can do much of anything. There’s also a fourth inmate who <em>claims</em> to be a genie, but is clearly a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DemBones' title='/pmwiki/pmwiki.php/Main/DemBones' data-format='W1tEZW1Cb25lcyBza2VsZXRvbl1d'>skeleton</a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder17');"> Web Animation </div><div id="folder17" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em>The Genie With a Dirty Mind</em>, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpinOff' title='/pmwiki/pmwiki.php/Main/SpinOff' data-format='U3Bpbk9mZg=='>Spin-Off</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheLazerCollection' title='/pmwiki/pmwiki.php/WebAnimation/TheLazerCollection' data-format='V2ViQW5pbWF0aW9uL1RoZUxhemVyQ29sbGVjdGlvbg=='>The Lazer Collection</a></em>, in which a genie accompanies a boy <a class='urllink' href='https://youtu.be/gKiBaEAUEPk?t=582'>in the bedroom<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> at <a class='urllink' href='https://www.youtube.com/watch?v=KEVjOudHHWk'>shop class<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and <a class='urllink' href='https://www.youtube.com/watch?v=YpJjfJTwnhs'>lunch<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and... does nothing except <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HehHehYouSaidX' title='/pmwiki/pmwiki.php/Main/HehHehYouSaidX' data-format='W1tIZWhIZWhZb3VTYWlkWCBsYXVnaCB3aGVuIHRoZSBib3kgc2F5cyBvciBkb2VzIHNvbWV0aGluZyB0aGF0IGNvdWxkIGJlIGludGVycHJldGVkIGFzIGlubnVlbmRvXV0='>laugh when the boy says or does something that could be interpreted as innuendo</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/RWBY' title='/pmwiki/pmwiki.php/WebAnimation/RWBY' data-format='V2ViQW5pbWF0aW9uL3t7UldCWX19'>RWBY</a></em> has the Spirits of the Relics, magical beings sealed inside the divine objects. <ul ><li> Jinn is the first Spirit encountered, dwelling in the Lamp of Knowledge. When her name is called by a Summoner, she will appear to them and offer to answer a specific number of Questions. Every century, Jinn may answer a total of Three Questions before her power is sealed and she must wait for the next era. While she cannot reveal the Future, she has access to all the knowledge of her creator, the God of Light. When asked a question, her response may be as simple as a verbal answer ("You cannot.") or as elaborate as an illusion that draws the summoner(s) into a story narrated by Jinn. </li><li> Ambrosius is the second Spirit encountered, dwelling inside the Staff of Creation. <span class="spoiler" title="you can set spoilers visible by default on your profile" > When summoned, he will create whatever is requested from him with the caveat that his creations have <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NoOntologicalInertia' title='/pmwiki/pmwiki.php/Main/NoOntologicalInertia' data-format='Tm9PbnRvbG9naWNhbEluZXJ0aWE='>No Ontological Inertia</a>. For decades, his power was used to hold up the floating city of Atlas. He is openly dismissive of that Task, viewing it as "pedestrian" and a poor usage of his artistry. However, Ambrosius is a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a> that will create <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExactWords' title='/pmwiki/pmwiki.php/Main/ExactWords' data-format='W1tFeGFjdFdvcmRzIGV4YWN0bHldXQ=='>exactly</a> what is requested, requiring that his Summoner be extremely thorough to avoid unforeseen issues. Ozpin advises the heroes to bring blueprints and other real world examples, treating Ambrosius as a Craftman being commissioned</span>. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder18');"> Web Comics </div><div id="folder18" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' title='/pmwiki/pmwiki.php/Webcomic/ElGoonishShive' data-format='V2ViY29taWMvRWxHb29uaXNoU2hpdmU='>El Goonish Shive</a></em>, during the "Goonmanji 2" storyline, one of the cards from the eponymous magical card game transforms the player into a <a class='urllink' href='https://www.egscomics.com/egsnp/2018-02-12'>genie form<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> capable of <a class='urllink' href='https://www.egscomics.com/egsnp/2018-03-26'>tranforming<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> others into forms from the game including <a class='urllink' href='https://www.egscomics.com/egsnp/2018-05-23'>the genie form itself<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> In Dan Standing's <em>Held Within</em> both genies are former college students who were turned into genies thanks to unknowingly making wishes on a magic amulet. No "natural born" genies have been seen. Unlike other genies, these do not have a three wish limit, and are specifically tied to their specific mistresses. Instead of lamps they have a very private connection to the women they are bound to. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/IDreamOfAJeanieBottle' title='/pmwiki/pmwiki.php/Webcomic/IDreamOfAJeanieBottle' data-format='V2ViY29taWMvSURyZWFtT2ZBSmVhbmllQm90dGxl'>I Dream of a Jeanie Bottle</a></em>, a guy gets transformed into a (<a class='twikilink' href='/pmwiki/pmwiki.php/Main/GenderBender' title='/pmwiki/pmwiki.php/Main/GenderBender' data-format='W1tHZW5kZXJCZW5kZXIgZmVtYWxlXV0='>female</a>) Genie. A spoof of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' title='/pmwiki/pmwiki.php/Series/IDreamOfJeannie' data-format='U2VyaWVzL0lEcmVhbU9mSmVhbm5pZQ=='>I Dream of Jeannie</a></em> and parodying the tropes used there. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/LastRes0rt' title='/pmwiki/pmwiki.php/Webcomic/LastRes0rt' data-format='V2ViY29taWMvTGFzdFJlczBydA=='>Last Res0rt</a></em>'s Djinn and Djinni-Si are so far off the myth they're practically <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InNameOnly' title='/pmwiki/pmwiki.php/Main/InNameOnly' data-format='SW5OYW1lT25seQ=='>In Name Only</a>. Magical? sure. Long-lived? Well, they're undead, so we'll count it. Freaky colored skin? Yup. Wish-granting? No. Live in bottles/lamps? Well, Efreet CAN, but not the rest. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' title='/pmwiki/pmwiki.php/Main/DarkIsNotEvil' data-format='W1tEYXJrSXNOb3RFdmlsIEV2aWw/IE1lYmJlLl1d'>Evil? Mebbe.</a> Oh, and this is without including the detail that the term "Djinni-Si" encompasses ALL undead creatures, including <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurVampiresAreDifferent' title='/pmwiki/pmwiki.php/Main/OurVampiresAreDifferent' data-format='W1tPdXJWYW1waXJlc0FyZURpZmZlcmVudCBWYW1waXJlc11d'>Vampires</a> (dubbed "Life Djinn") and Zombies. Efreet (one of the most powerful variants of Djinn) have recently been revealed to be capable of living in small glass balls. </li><li> <a class='urllink' href='http://nonadventures.com/2007/11/10/djinn-there-done-that/'>This strip<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/TheNonAdventuresOfWonderella' title='/pmwiki/pmwiki.php/Webcomic/TheNonAdventuresOfWonderella' data-format='V2ViY29taWMvVGhlTm9uQWR2ZW50dXJlc09mV29uZGVyZWxsYQ=='>The Non-Adventures of Wonderella</a></em> parodies the disconnect between the original djinni myths and the American pop-culture genie. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder19');"> Web Original </div><div id="folder19" class="folder" isfolder="true" style="display:block;"> <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/MagicMetahumansMartiansAndMushroomCloudsAnAlternateColdWar' title='/pmwiki/pmwiki.php/Literature/MagicMetahumansMartiansAndMushroomCloudsAnAlternateColdWar' data-format='TGl0ZXJhdHVyZS9NYWdpY01ldGFodW1hbnNNYXJ0aWFuc0FuZE11c2hyb29tQ2xvdWRzQW5BbHRlcm5hdGVDb2xkV2Fy'>Magic, Metahumans, Martians and Mushroom Clouds: An Alternate Cold War</a></em>, <em>Jinn</em> are presented as etheric entities of great magic power, which can only be used against someone at close range, and are bound to serve whomever holds the container they're tied to. Several Muslim nations start searching for and collecting these in order to use <em>Jinn</em> as weapons, while the French recover some from Algeria for the same purposes. </li><li> The Djinn in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/NewYorkMagician' title='/pmwiki/pmwiki.php/Literature/NewYorkMagician' data-format='TGl0ZXJhdHVyZS9OZXdZb3JrTWFnaWNpYW4='>New York Magician</a></em>, who works for Cthulhu and is forced to wander around New York, body to body until such a time as undisclosed. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder20');"> Western Animation </div><div id="folder20" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Westernanimation/AladdinTheSeries' title='/pmwiki/pmwiki.php/Westernanimation/AladdinTheSeries' data-format='V2VzdGVybmFuaW1hdGlvbi9BbGFkZGluVGhlU2VyaWVz'>Aladdin: The Series</a></em>, beyond <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' title='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FsYWRkaW58MTk5MkRpc25leX19'>Aladdin</a></em>'s blue Genie, also introduces <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ShoutOut' title='/pmwiki/pmwiki.php/Main/ShoutOut' data-format='W1tTaG91dE91dCBFZGVuXV0='>Eden</a>, a green-skinned female genie. She gets romantically attached to the Genie, and is going to be set free with her master's third wish, until her master (who is a lonely little girl) accidentally says: "I just wish you could be with me forever." The couple is parted... but they realize that because they're immortal they can just meet up in a hundred years or so. But they can still date each other in the mean time. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/DannyPhantom' title='/pmwiki/pmwiki.php/WesternAnimation/DannyPhantom' data-format='V2VzdGVybkFuaW1hdGlvbi9EYW5ueVBoYW50b20='>Danny Phantom</a></em> had Desiree, an evil "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurGhostsAreDifferent' title='/pmwiki/pmwiki.php/Main/OurGhostsAreDifferent' data-format='W1tPdXJHaG9zdHNBcmVEaWZmZXJlbnQgZ2hvc3QgZ2VuaWVdXQ=='>ghost genie</a>" who grew in power when she granted wishes. Unfortunately for her, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PowerIncontinence' title='/pmwiki/pmwiki.php/Main/PowerIncontinence' data-format='W1tQb3dlckluY29udGluZW5jZSBzaGUgY291bGRuJiMwMzk7dCBzdG9wIGhlcnNlbGYgZnJvbSBncmFudGluZyB3aXNoZXNdXQ=='>she couldn't stop herself from granting wishes</a>, and that led to her defeat in both of her solo appearances. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Westernanimation/TheFairlyOddparents' title='/pmwiki/pmwiki.php/Westernanimation/TheFairlyOddparents' data-format='V2VzdGVybmFuaW1hdGlvbi9UaGVGYWlybHlPZGRwYXJlbnRz'>The Fairly Oddparents</a></em> has Norm (voiced by Norm Macdonald), a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JackassGenie' title='/pmwiki/pmwiki.php/Main/JackassGenie' data-format='SmFja2Fzc0dlbmll'>Jackass Genie</a> (in fact, most genies are like that according to Wanda) who was trapped inside a <em>lava lamp</em> and is weak against things made of "smoof". He follows the typical three wishes rule (although that's a bluff to avoid hard work. Masters can just wish for additional three wishes as much as they can), which are rule-free, unlike fairy wishes. He also wants to be a fairy in order to avoid being stuck in a lamp. <span class="spoiler" title="you can set spoilers visible by default on your profile" > He eventually becomes one, but it backfires on him thanks to a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChekhovsGag' title='/pmwiki/pmwiki.php/Main/ChekhovsGag' data-format='Q2hla2hvdnNHYWc='>Chekhov's Gag</a>.</span> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/GeniusGenie' title='/pmwiki/pmwiki.php/WesternAnimation/GeniusGenie' data-format='V2VzdGVybkFuaW1hdGlvbi9HZW5pdXNHZW5pZQ=='>Genius Genie</a></em>'s title character is an anthropomorphic blue elephant in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorldOfFunnyAnimals' title='/pmwiki/pmwiki.php/Main/WorldOfFunnyAnimals' data-format='V29ybGRPZkZ1bm55QW5pbWFscw=='>World of Funny Animals</a> who is summoned by simply saying the word "problem". Rather than granting wishes, he uses his magic to try and help solve people's problems, and while he means well, he usually tends to give silly or impractical solutions to mundane issues. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HeathcliffAndTheCatillacCats' title='/pmwiki/pmwiki.php/WesternAnimation/HeathcliffAndTheCatillacCats' data-format='V2VzdGVybkFuaW1hdGlvbi9IZWF0aGNsaWZmQW5kVGhlQ2F0aWxsYWNDYXRz'>Heathcliff & the Catillac Cats</a></em>: "Wishful Thinking" has a cat genie, but other than be a cat is the typical genie in everything else. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MiraculousLadybug' title='/pmwiki/pmwiki.php/WesternAnimation/MiraculousLadybug' data-format='V2VzdGVybkFuaW1hdGlvbi9NaXJhY3Vsb3VzTGFkeWJ1Zw=='>Miraculous Ladybug</a></em>: <ul ><li> Kwamis may seem fairy-like at first glance, but they're actually repressed gods bound to jewelry and forced to serve whoever holds their Miraculous. Only the Ladybug and Black Cat used in tandem can grant a wish, <span class="spoiler" title="you can set spoilers visible by default on your profile" >but any wish they grant has to destroy the existing universe to create a new universe where the wielder's desires are realized</span>. </li><li> Season 4 introduces Wishmaker, a black-and-white supervillain with the power to force people to live out their childhood dreams. Anyone hit by his stardust attacks will happily, but mindlessly, act out their dreams while transformed. (Ex. A toymaker turning into Santa Claus and delivering toys, Jagged Stone becoming an actual crocodile). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyAndFriends' title='/pmwiki/pmwiki.php/WesternAnimation/MyLittlePonyAndFriends' data-format='V2VzdGVybkFuaW1hdGlvbi9NeUxpdHRsZVBvbnlBbmRGcmllbmRz'>My Little Pony 'n Friends</a></em>: In "Through the Door", Aladdin's genie resembles a large, heavyset human with pointed ears and small fangs, lives in a lamp, and can conjure up anything as long as someone wishes for it. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/PixelPinkie' title='/pmwiki/pmwiki.php/WesternAnimation/PixelPinkie' data-format='V2VzdGVybkFuaW1hdGlvbi9QaXhlbFBpbmtpZQ=='>Pixel Pinkie</a></em>, Pinkie is a digital genie trapped in a really old mobile phone. She has to grant unlimited wishes to whomever owns the phone. She is generally well-meaning, but often falls into <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LiteralGenie' title='/pmwiki/pmwiki.php/Main/LiteralGenie' data-format='TGl0ZXJhbEdlbmll'>Literal Genie</a> territory. <!--* ''WesternAnimation/PopeyeAndSon'': A genie appears in "Junior's Genie".--> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheRealGhostbusters' title='/pmwiki/pmwiki.php/WesternAnimation/TheRealGhostbusters' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVSZWFsR2hvc3RidXN0ZXJz'>The Real Ghostbusters</a></em>: "Janine's Genie" has a genie of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JerkassGenie' title='/pmwiki/pmwiki.php/Main/JerkassGenie' data-format='SmVya2Fzc0dlbmll'>Jerkass Genie</a> variety. The genie is evil and uses Janine's wishes to open a portal from the spirit world to Earth. </li><li> In the <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/RockosModernLife' title='/pmwiki/pmwiki.php/WesternAnimation/RockosModernLife' data-format='V2VzdGVybkFuaW1hdGlvbi9Sb2Nrb3NNb2Rlcm5MaWZl'>Rocko's Modern Life</a></em> episode "Scrubbin' Down Under," Rocko uses a jackhammer in a misguided attempt to remove spinach from between his teeth. Obviously, he ends up landing himself in the hospital. While he's laid up in traction, sleeping, he dreams of a hygiene-obsessed monkey genie attempting to re-educate him about hygiene. The monkey genie is actually the doctor who's treating him in the "real" world. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Shazzan' title='/pmwiki/pmwiki.php/WesternAnimation/Shazzan' data-format='V2VzdGVybkFuaW1hdGlvbi97e1NoYXp6YW59fQ=='>Shazzan</a></em>: The eponymous character is a giant genie summoned by magic rings. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ShimmerAndShine' title='/pmwiki/pmwiki.php/WesternAnimation/ShimmerAndShine' data-format='V2VzdGVybkFuaW1hdGlvbi9TaGltbWVyQW5kU2hpbmU='>Shimmer and Shine</a></em>: They live in another dimension, their bottles are just a way to travel between their world and Earth and they don't have to return right after granting the third wish. Shimmer and Shine usually stay around to fix their mistakes and only then go back home. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheSmurfs1981' title='/pmwiki/pmwiki.php/WesternAnimation/TheSmurfs1981' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVTbXVyZnMxOTgx'>The Smurfs (1981)</a></em> we have Gourdy, Farmer Smurf's genie who <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ChuckCunninghamSyndrome' title='/pmwiki/pmwiki.php/Main/ChuckCunninghamSyndrome' data-format='W1tDaHVja0N1bm5pbmdoYW1TeW5kcm9tZSBvbmx5IG1hZGUgdGhyZWUgYXBwZWFyYW5jZXNdXQ=='>only made three appearances</a> in Season 6. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/YogisGang' title='/pmwiki/pmwiki.php/WesternAnimation/YogisGang' data-format='V2VzdGVybkFuaW1hdGlvbi9Zb2dpc0dhbmc='>Yogi's Gang</a></em>: The Greedy Genie is free to roam the world with a flying lamp and is free to offer his wishes to anyone he wants. In his case, it means people who agree to never share anything he gives them. </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="61l8u9" data-video-descrip="(SPOILERS) <br>After using the bee miraculous to freeze Marinette, Gabriel takes both the ladybug and cat miraculouses, and uses them to summon Gimmi the Kwami of Reality, Tikki&rsquo;s &amp; Plagg&rsquo;s true form. In this form, they can grant any wish that the miraculous holder cherishes deeply, however with each wish, a sacrifice is required." data-video-title="Gimmi" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/61l8u9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/61l8u9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/61l8u9.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/28474c4b_b31a_4e86_af6b_582339fa9059.png" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.57" data-video-rating-count="7" data-video-media-sources="Main/EldritchAbomination,Main/FusionDance,Main/VoiceOfTheLegion,Recap/MiraculousLadybugS05E26RecreationTheLastDayPart2,WesternAnimation/MiraculousLadybug" 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://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/28474c4b_b31a_4e86_af6b_582339fa9059.png" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/61l8u9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/61l8u9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/61l8u9.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">Gimmi</h2> <p class="_pmvv-vidbox-descTxt"> (SPOILERS) <br>After using the bee miraculous to freeze Marinette, Gabriel takes both the ladybug and cat miraculouses, and uses them to summon Gimmi the Kwami of Reality, Tikki’s & Plagg’s true form. In this form, they can grant any wish that the miraculous holder cherishes deeply, however with each wish, a sacrifice is required. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="iyaud7" data-video-descrip="Freed from the yoke of her tyrannical father, the Green Genie uses her mystic powers to bring fun and joy to the bleakest corners of the world." data-video-title="Green Genie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/iyaud7_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/iyaud7.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/iyaud7.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iyaud7.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/AbusiveParent,VideoGame/FreedomForce,VideoGame/FreedomForceVsThe3rdReich" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iyaud7.jpg"> <p><span class="bold">Green Genie</span></p> </a> <a href="#video-link" data-video-id="e8bj86" data-video-descrip="Jenji is a cat-like magical being that was turned into a genie in an effort to protect him from a curse." data-video-title="Jenji" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e8bj86_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e8bj86.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e8bj86.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8bj86.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Recap/PowerRangersMysticForceS1E13ScaredyCat,Series/PowerRangersMysticForce,Main/CatFolk" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8bj86.jpg"> <p><span class="bold">Jenji</span></p> </a> <a href="#video-link" data-video-id="fulmnz" data-video-descrip="Al-Zalam was a powerful genie who was trapped inside the skull of Sir Daniel Fortesque by the evil sorcerer Zarok." data-video-title="Al-Zalam" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fulmnz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fulmnz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fulmnz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mresalzalam1.png" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="VideoGame/MediEvilResurrection" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mresalzalam1.png"> <p><span class="bold">Al-Zalam</span></p> </a> <a href="#video-link" data-video-id="bn7o81" data-video-descrip="After becoming a genie at the end of the first film, Jafar is found by Abis Mal and now wants to take his revenge. " data-video-title="Jafar" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/bn7o81_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/bn7o81.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/bn7o81.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bn7o81.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/AladdinTheReturnOfJafar" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bn7o81.jpg"> <p><span class="bold">Jafar</span></p> </a> <a href="#video-link" data-video-id="9kcbsp" data-video-descrip="An ifrit brought to America by the belief of muslim immigrants, he now works odd jobs to survive in a world that is not kind to the likes of him. " data-video-title="The Jinn" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9kcbsp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9kcbsp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9kcbsp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kcbsp.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Series/AmericanGods2017,Recap/AmericanGodsS1E3HeadFullOfSnow" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kcbsp.jpg"> <p><span class="bold">The Jinn</span></p> </a> <a href="#video-link" data-video-id="r2ba8z" data-video-descrip="The Genie of lamp hidden in the Cave of Wonders." data-video-title="Genie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/r2ba8z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/r2ba8z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/r2ba8z.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r2ba8z.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WesternAnimation/Aladdin1992Disney" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r2ba8z.jpg"> <p><span class="bold">Genie</span></p> </a> <a href="#video-link" data-video-id="vnt7h3" data-video-descrip="Genie of the lamp within the Cave of Wonders." data-video-title="Genie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vnt7h3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vnt7h3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vnt7h3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vnt7h3.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Film/Aladdin2019" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vnt7h3.jpg"> <p><span class="bold">Genie</span></p> </a> </div> </div> </div> <div class="alt-titles section section-fact"> <h3> <strong>Alternative Title(s):</strong> <span>Our Jinns Are Different</span>, <span>Our Djinn Are Different</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/Miraj">Mi'raj</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/TheMiddleEast">UsefulNotes/The Middle East</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BecomingTheGenie">Becoming the Genie</a> </li> </ul> <ul> <li> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GenieTropes">Genie Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GenieWorks">Genie Works</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/Miraj">Mi'raj</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/ArabWorld">UsefulNotes/Arab World</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BecomingTheGenie">Becoming the Genie</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/LiteralGenie">Literal Genie</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/WishingTropes">Wishing Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ThreeWishes">Three Wishes</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OneHitPointWonder">One-Hit-Point Wonder</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OlderThanPrint">Older Than Print</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Outlaw">Outlaw</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OurGargoylesRock">Our Gargoyles Rock</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IndexOfFictionalCreatures">Index of Fictional Creatures</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurGhostsAreDifferent">Our Ghosts Are Different</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OurGargoylesRock">Our Gargoyles Rock</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurMonstersAreDifferent">Our Monsters Are Different</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurGhostsAreDifferent">Our Ghosts Are Different</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/Miraj">Mi'raj</a> </li> <li> <a href="/pmwiki/pmwiki.php/UsefulNotes/Asia">UsefulNotes/Asia</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/BecomingTheGenie">Becoming the Genie</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GenieTropes">Genie Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CosmicEntity">Cosmic Entity</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/AboveTheGods">Above the Gods</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OfferingAHand">Offering a Hand</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/DisneyAnimatedCanon">ImageSource/Disney Animated Canon</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PollyWantsAMicrophone">Polly Wants a Microphone</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OurGargoylesRock">Our Gargoyles Rock</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesMToP">WeAreNotAlone/Tropes M to P</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurGhostsAreDifferent">Our Ghosts Are Different</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/ArabianNights">Arabian Nights</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Literature">QuoteSource/Literature</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurGhoulsAreCreepier">Our Ghouls Are Creepier</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/OurFairiesAreDifferent">Our Fairies Are Different</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FairyTaleTropes">Fairy Tale Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OurGhostsAreDifferent">Our Ghosts Are Different</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Franchise/TheWitcher">The Witcher</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/VideoGamesMToZ">ImageSource/Video Games (M to Z)</a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoGame/TheWitcher3WildHunt">The Witcher 3: Wild Hunt</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/Shazzan">Shazzan</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/WesternAnimation">ImageSource/Western Animation</a> </li> <li> <a href="/pmwiki/pmwiki.php/WesternAnimation/SittingDucks">Sitting Ducks</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/Aladdin">Aladdin</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/Literature">ImageSource/Literature</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/PublicDomainArtifact">Public Domain Artifact</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/GenieWorks">Genie Works</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/LiveActionTV">ImageSource/Live-Action TV</a> </li> <li> <a href="/pmwiki/pmwiki.php/Series/ILoveLucy">I Love Lucy</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-61l8u9" data-video-image="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/28474c4b_b31a_4e86_af6b_582339fa9059.png" data-video-title="Gimmi" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/61l8u9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/61l8u9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/61l8u9.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">Gimmi</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> (SPOILERS) <br>After using the bee miraculous to freeze Marinette, Gabriel takes both the ladybug and cat miraculouses, and uses them to summon Gimmi the Kwami of Reality, Tikki’s & Plagg’s true form. In this form, they can grant any wish that the miraculous holder cherishes deeply, however with each wish, a sacrifice is required. </p> <div class="rating-row" data-video-id="61l8u9" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">★</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">★</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">★</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">★</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">★</label> </div> <div id="star-rating-total"> 4.57 (7 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / OurGeniesAreDifferent</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="61l8u9" data-vimeo-id="" data-video-descrip="(SPOILERS) <br>After using the bee miraculous to freeze Marinette, Gabriel takes both the ladybug and cat miraculouses, and uses them to summon Gimmi the Kwami of Reality, Tikki&rsquo;s &amp; Plagg&rsquo;s true form. In this form, they can grant any wish that the miraculous holder cherishes deeply, however with each wish, a sacrifice is required." data-video-title="Gimmi" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/61l8u9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/61l8u9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/61l8u9.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/28474c4b_b31a_4e86_af6b_582339fa9059.png" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.57" data-video-rating-count="7" data-video-media-sources="Main/EldritchAbomination,Main/FusionDance,Main/VoiceOfTheLegion,Recap/MiraculousLadybugS05E26RecreationTheLastDayPart2,WesternAnimation/MiraculousLadybug" 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/28474c4b_b31a_4e86_af6b_582339fa9059.png"> <p><span class="bold">Gimmi</span></p> </a> <a href="#video-link" data-video-id="iyaud7" data-vimeo-id="" data-video-descrip="Freed from the yoke of her tyrannical father, the Green Genie uses her mystic powers to bring fun and joy to the bleakest corners of the world." data-video-title="Green Genie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/iyaud7_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/iyaud7.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/iyaud7.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iyaud7.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Main/AbusiveParent,VideoGame/FreedomForce,VideoGame/FreedomForceVsThe3rdReich" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/iyaud7.jpg"> <p><span class="bold">Green Genie</span></p> </a> <a href="#video-link" data-video-id="e8bj86" data-vimeo-id="" data-video-descrip="Jenji is a cat-like magical being that was turned into a genie in an effort to protect him from a curse." data-video-title="Jenji" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e8bj86_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e8bj86.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e8bj86.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8bj86.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Recap/PowerRangersMysticForceS1E13ScaredyCat,Series/PowerRangersMysticForce,Main/CatFolk" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e8bj86.jpg"> <p><span class="bold">Jenji</span></p> </a> <a href="#video-link" data-video-id="fulmnz" data-vimeo-id="466266192" data-video-descrip="Al-Zalam was a powerful genie who was trapped inside the skull of Sir Daniel Fortesque by the evil sorcerer Zarok." data-video-title="Al-Zalam" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/fulmnz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/fulmnz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/fulmnz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mresalzalam1.png" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="VideoGame/MediEvilResurrection" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/mresalzalam1.png"> <p><span class="bold">Al-Zalam</span></p> </a> <a href="#video-link" data-video-id="bn7o81" data-vimeo-id="448436256" data-video-descrip="After becoming a genie at the end of the first film, Jafar is found by Abis Mal and now wants to take his revenge. " data-video-title="Jafar" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/bn7o81_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/bn7o81.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/bn7o81.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bn7o81.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="13" data-video-media-sources="WesternAnimation/AladdinTheReturnOfJafar" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/bn7o81.jpg"> <p><span class="bold">Jafar</span></p> </a> <a href="#video-link" data-video-id="9kcbsp" data-vimeo-id="394351871" data-video-descrip="An ifrit brought to America by the belief of muslim immigrants, he now works odd jobs to survive in a world that is not kind to the likes of him. " data-video-title="The Jinn" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/9kcbsp_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/9kcbsp.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/9kcbsp.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kcbsp.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Series/AmericanGods2017,Recap/AmericanGodsS1E3HeadFullOfSnow" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/9kcbsp.jpg"> <p><span class="bold">The Jinn</span></p> </a> <a href="#video-link" data-video-id="r2ba8z" data-vimeo-id="379896052" data-video-descrip="The Genie of lamp hidden in the Cave of Wonders." data-video-title="Genie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/r2ba8z_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/r2ba8z.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/r2ba8z.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r2ba8z.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="28" data-video-media-sources="WesternAnimation/Aladdin1992Disney" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/r2ba8z.jpg"> <p><span class="bold">Genie</span></p> </a> <a href="#video-link" data-video-id="vnt7h3" data-vimeo-id="379896736" data-video-descrip="Genie of the lamp within the Cave of Wonders." data-video-title="Genie" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vnt7h3_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vnt7h3.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vnt7h3.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vnt7h3.jpg" data-video-trope="Main/OurGeniesAreDifferent" data-video-tropename="Our Genies Are Different" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.93" data-video-rating-count="14" data-video-media-sources="Film/Aladdin2019" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vnt7h3.jpg"> <p><span class="bold">Genie</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=2ee58fb49f74484952c2d172f55c446e74ca485c'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=2ee58fb49f74484952c2d172f55c446e74ca485c'; } 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>