“Thanks for coming to my wedding,” Trump says.\n\n[[“You're welcome.”|Welcome]]<<fadeoutsound "visiondrone.mp3">>
They recite their vows and say, “I do.”\n\n[[Later, at the reception...|Reception]]
You are Hillary Clinton.\n\n[[Where am I?|Wedding]]
\n#mce-EMAIL{\n\tborder-color: black;\n\tborder-style: solid;\n\tborder-radius: 5px;\n\twidth: 190px;\n\theight: 32px;\n\tposition: relative;\n\tleft:-5px;\n\ttop: 13px;\n\tfont-family: "IM Fell English", serif;\n\tfont-size: 20px;\n\tpadding-left: 15px;\n\tfont-color: grey;\n}\n#mc-embedded-subscribe {\n\tposition: relative;\n\tleft: 215px;\n\ttop: -29px;\n\tfont-family: "IM Fell English", serif;\n\tfont-size: 24px;\n\tbackground: white none repeat scroll 0% 0%;\n\tborder-width: 2px;\n\tborder-style: solid;\n\tborder-color: black;\n\tborder-radius: 5px;\n}\n#mc-embedded-subscribe:hover {\n\tbackground-color: black;\n\tcolor: white;\n}
version.extensions.timedgotoMacro={major:1,minor:2,revision:0};\nmacros["goto"]=macros.timedgoto={timer:null,handler:function(a,b,c,d){function cssTimeUnit(s){if(typeof s=="string"){if(s.slice(-2).toLowerCase()=="ms"){return +(s.slice(0,-2))||0\n}else{if(s.slice(-1).toLowerCase()=="s"){return +(s.slice(0,-1))*1000||0\n}}}throwError(a,s+" isn't a CSS time unit");return 0}var t,d,m,s;\nt=c[c.length-1];d=d.fullArgs();m=0;if(b!="goto"){d=d.slice(0,d.lastIndexOf(t));\nm=cssTimeUnit(t)}d=eval(Wikifier.parse(d));if(d+""&&state&&state.init){if(macros["goto"].timer){clearTimeout(macros["goto"].timer)\n}s=state.history[0].passage.title;macros["goto"].timer=setTimeout(function(){if(state.history[0].passage.title==s){state.display(d,a)\n}},m)}}};
.transition-in {\n\tposition:absolute;\n\topacity:0;\n}\n.passage {\n\ttransition: 3s;\n\t-webkit-transition: 3s;\n\t-webkit-transition: 3s;\n\t-o-transition:3s;\n \t-ms-transition:3s;\n \t-moz-transition:3s;\n}\n.transition-out {\n\ttransition: .5s;\n\t-webkit-transition: .5s;\n\t-o-transition:.5s;\n \t-ms-transition:.5s;\n \t-moz-transition:.5s;\n\tposition:absolute;\n\topacity:1;\n}
“Hey,” he says to Bill, “maybe I'll run for President one day.”\n\n[[Laugh|Laugh]]
Melania walks down the aisle. Trump smiles at the front.\n\n<<nobr>><<if visited("Whisper") neq true>>[[Whisper to Bill|Whisper]]<br><<endif>>[[Watch the ceremony|Watch2]]<<endnobr>>
/* Your story will use the CSS in this passage to style the page.\nGive this passage more tags, and it will only affect passages with those tags.\nExample selectors: */\n\nbody {\n\tbackground: red;\n\tcolor: white;\n}\n\n.passage {\n\tcolor: white;\n}\n\n.passage a:hover {\n\tcolor: #303030;\n}\n\n\n.passage a {\n\tcolor: white;\n}\n\n.transition-in {\n\tposition:absolute;\n\topacity:0;\n}\n.passage {\n\ttransition: 3s;\n\t-webkit-transition: 3s;\n}\n.transition-out {\n\tposition:absolute;\n\topacity:1;\n\ttransition: .5s;\n\t-webkit-transition: .5s;\n}
(function () {\n "use strict";\n version.extensions['soundMacros'] = {\n major: 1,\n minor: 1,\n revision: 2\n };\n var p = macros['playsound'] = {\n soundtracks: {},\n handler: function (a, b, c, d) {\n var loop = function (m) {\n if (m.loop == undefined) {\n m.loopfn = function () {\n this.play();\n };\n m.addEventListener('ended', m.loopfn, 0);\n } else m.loop = true;\n m.play();\n };\n var s = eval(d.fullArgs());\n if (s) {\n s = s.toString();\n var m = this.soundtracks[s.slice(0, s.lastIndexOf("."))];\n if (m) {\n if (b == "playsound") {\n m.play();\n } else if (b == "loopsound") {\n loop(m);\n } else if (b == "pausesound") {\n m.pause();\n } else if (b == "unloopsound") {\n if (m.loop != undefined) {\n m.loop = false;\n } else if (m.loopfn) {\n m.removeEventListener('ended', m.loopfn);\n delete m.loopfn;\n }\n } else if (b == "stopsound") {\n m.pause();\n m.currentTime = 0;\n } else if (b == "fadeoutsound" || b == "fadeinsound") {\n if (m.interval) clearInterval(m.interval);\n if (b == "fadeinsound") {\n if (m.currentTime>0) return;\n m.volume = 0;\n loop(m);\n } else {\n if (!m.currentTime) return;\n m.play();\n }\n var v = m.volume;\n m.interval = setInterval(function () {\n v = Math.min(1, Math.max(0, v + 0.005 * (b == "fadeinsound" ? 1 : -1)));\n m.volume = Math.easeInOut(v);\n if (v == 0 || v == 1) clearInterval(m.interval);\n if (v == 0) {\n m.pause();\n m.currentTime = 0;\n m.volume = 1;\n }\n }, 10);\n }\n }\n }\n }\n }\n macros['fadeinsound'] = p;\n macros['fadeoutsound'] = p;\n macros['unloopsound'] = p;\n macros['loopsound'] = p;\n macros['pausesound'] = p;\n macros['stopsound'] = p;\n macros['stopallsound'] = {\n handler: function () {\n var s = macros.playsound.soundtracks;\n for (var j in s) {\n\t\tif (s.hasOwnProperty(j)) {\n s[j].pause();\n if (s[j].currentTime) {\n\t\t s[j].currentTime = 0;\n\t\t }\n\t\t}\n }\n }\n }\n var div = document.getElementById("storeArea").firstChild;\n var fe = ["ogg", "mp3", "wav", "webm"];\n while (div) {\n var b = String.fromCharCode(92);\n var q = '"';\n var re = "['" + q + "]([^" + q + "']*?)" + b + ".(ogg|mp3|wav|webm)['" + q + "]";\n k(new RegExp(re, "gi"));\n div = div.nextSibling;\n }\n\n function k(c, e) {\n do {\n var d = c.exec(div.innerHTML);\n if (d) {\n var a = new Audio();\n if (a.canPlayType) {\n for (var i = -1; i < fe.length; i += 1) {\n if (i >= 0) d[2] = fe[i];\n if (a.canPlayType("audio/" + d[2])) break;\n }\n if (i < fe.length) {\n a.setAttribute("src", d[1] + "." + d[2]);\n a.interval = null;\n macros.playsound.soundtracks[d[1]] = a;\n } else console.log("Browser can't play '" + d[1] + "'");\n }\n }\n } while (d);\n }\n}());
You are at Donald Trump's wedding. Bill is next to you.\n\n[[Watch the ceremony|Watch]]\n[[Whisper to Bill|Whisper]]<<fadeinsound "wedding.mp3">>
Hillary 2016: The Politics of Fear
Donald Trump stands in the penthouse office of the Trump White House. He laughs above the flames and shouts, “I made America great again!”\n\n[[No!|No]]
You wait in line.\n\n[[Talk to Bill|Bill]]\n[[Wait some more|Wait2]]
You reach the front of the line. Donald Trump reaches out his hand to shake.\n\n[[Shake his hand|Vision]]
“When we leave here, we should get dinner.”\n\n[[Wait in line|Wait2]]
/* Your story will use the CSS in this passage to style the page.\nGive this passage more tags, and it will only affect passages with those tags.\nExample selectors: */\n\n\nbody {\n\t/* This affects the entire page */\n\t\n\tbackground: white;\n}\n.passage {\n\t/* This only affects passages */\n\tpadding-top: 16%;\n\tfont-family: IM Fell English;\n\tfont-size: 25px;\n\tcolor: black;\n}\n.transition-in {\n\tposition:absolute;\n\topacity:0;\n}\n.passage {\n\ttransition: 3s;\n\t-webkit-transition: 3s;\n\t-o-transition:3s;\n \t-ms-transition:3s;\n \t-moz-transition:3s;\n}\n.transition-out {\n\ttransition: .1s;\n\t-webkit-transition: .1s;\n\t-o-transition:.1s;\n \t-ms-transition:.1s;\n \t-moz-transition:.1s;\n\tposition:absolute;\n\topacity:1;\n}\n.passage a {\n\t/* This affects passage links */\n\tcolor: black;\n\ttext-decoration: none;\n\tfont-weight: bold;\n\t\n}\n.passage a:hover {\n\tcolor: red;\n\ttext-decoration: none;\n\tfont-weight: bold;\n\t/* This affects links while the cursor is over them */\n\t\n\t\n}\n\n#sidebar { display: none; }\n#passages { border-left: 0px; padding-left: 0; }\n@import url(http://fonts.googleapis.com/css?family=IM+Fell+English);
You are in the receiving line. Bill is behind you.<<fadeoutsound "wedding.mp3">><<fadeinsound "conversation.mp3">>\n\n[[Wait in line|Wait]]\n[[Talk to Bill|Bill]]
You have a vision.\n\n[[Of what?|Shake]]<<fadeinsound "visiondrone.mp3">><<fadeoutsound "conversation.mp3">>
“How long do you think this one'll last?” you whisper. Bill laughs.\n\n<<if visited("Watch") neq true>>[[Watch the ceremony|Watch]]<<else>>[[Watch the ceremony|Watch2]]<<endif>>
You have to stop him.\n\n[[Share on Twitter|https://twitter.com/intent/tweet?text=Hillary+2016%2C+a+bite+sized+horror+game%3A+http%3A%2F%2Fbitesizedhorror.com%2Fhillary%2F]]\n<a href="https://www.facebook.com/sharer/sharer.php?u=http://bitesizedhorror.com/hillary/" target="_blank">Share on Facebook</a>\n[[More Bite-Sized Horror|http://bitesizedhorror.com/]]\n\n<span style="padding-bottom: 15px">Subscribe via email for new games,<br>as well as a secret, subscribers only game.</strong></span>\n<div id="mc_embed_signup"><form action="//gregkarber.us8.list-manage.com/subscribe/post?u=7def7cb630f884c6ecfd8a5e0&id=571013a9eb" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate><div id="mc_embed_signup_scroll"><div class="mc-field-group"><label for="mce-EMAIL"></label><input type="email" value="" name="EMAIL" placeholder="Give us your email" class="required email" id="mce-EMAIL"></div><div class="mc-field-group input-group" style="display:none"><strong>Basic </strong><ul><li><input type="checkbox" value="1" name="group[17585][1]" id="mce-group[17585]-17585-0"><label for="mce-group[17585]-17585-0">Standard</label></li><li><input type="checkbox" value="2" name="group[17585][2]" id="mce-group[17585]-17585-1"><label for="mce-group[17585]-17585-1">Games</label></li><li><input type="checkbox" value="4" name="group[17585][4]" id="mce-group[17585]-17585-2" checked><label for="mce-group[17585]-17585-2">Horror</label></li></ul></div><div id="mce-responses" class="clear"><div class="response" id="mce-error-response" style="display:none"></div><div class="response" id="mce-success-response" style="display:none"></div></div> <div style="position: absolute; left: -5000px;"><input type="text" name="b_7def7cb630f884c6ecfd8a5e0_571013a9eb" tabindex="-1" value=""></div><div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div></div></form></div>
You have to stop him.<<if visited() lt 2>><<timedgoto "Share" 4s>><<endif>>
Washington D.C. is ablaze.\n\n[[Why?|Vision2]]
Greg Karber
.transition-in {\n\tposition:absolute;\n\topacity:0;\n}\n.passage {\n\ttransition: 2s;\n\t-webkit-transition: 2s;\n\t-o-transition:2s;\n \t-ms-transition:2s;\n \t-moz-transition:2s;\n}\n.transition-out {\n\ttransition: .1s;\n\t-webkit-transition: .1s;\n\t-o-transition:.1s;\n \t-ms-transition:.1s;\n \t-moz-transition:.1s;\n\tposition:absolute;\n\topacity:0;\n}