<img src= "media/Scenery/ManhattanSkyline2.jpeg" class="background-filled">\
<img src="media/Scenery/tile.png" class="background-filter">\
<h2>Become a Wall Street Gigachad</h2>
<h3>Are you ready to climb the corporate ladder, broker shady deals, and dominate the financial world? In this game, you'll start as a lowly analyst and work your way up to become a god-tier international financier, all while enjoying the perks of the high life. But beware, the road to success is paved with ruthless competition, scandalous affairs, and dangerous enemies. Can you handle the heat of Wall Street?</h3>
Heads up,
None of the content of this game constitutes investment advice, play responsibly.
By playing, you agree you are at least 18 years of age.
<div class="spaced">\
<<button "Start New Game" "Intro">><</button>>
</div>\
<div class="spaced">\
<<button "Arc Selection" "Arc Selection">><<set $_intro to false>><</button>>
</div>\
<<InitCharacters>>\<<bg firstApartment>>\
<<set $you.location to "Home">><<set $location = [1.0, 1.07, 1.18, 1.24]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<button [[Head to Work|Lobby]]>><</button>> <<button [[Head Out|Central Park Tower]]>><</button>> <<button [[Sleep]]>><</button>>
<<if $mission.arc gt 1.07>><<button [[FlirtFolio]]>><</button>><</if>>\
<<if $nicole.met is true>><<button "Head to the Gym" "Natty Nicole's Gym">><</button>><</if>>\
<<if $mission.arc gt 1.25>><<button [[Inventory and Elyssian Essentials App]]>><</button>><</if>>
<<button [[Cheats|cheatPage]]>><</button>><<set $thread to "null">><<widget varLocation>>\
<<set _tempLocation to $args[0]>>\
<<link $args[0] _tempLocation>><</link>>\
<</widget>>
<<widget "bg">>\
<img @src="'media/Scenery/'+$args[0]+'.jpeg'" class="background-filled">\
<img src="media/Scenery/tile.png" class="background-filter">\
<</widget>>
<<widget "missionAdvance">>\
<<set $mission.arc = $mission.arc + 0.01>>\
<<set $mission.arc = parseFloat($mission.arc.toFixed(2))>>\
<</widget>>
<<widget "missioncheck">>\
<<if $missionCountdown == 0 && $args[0].contains($args[1]) && $mission.requirements.every(function(requirement){ return requirement; })>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<</widget>>
<<widget "missionCountdown">>
<<set $missionCountdown to $args[0]>>
<</widget>>
<<widget countDowns>>
<<if $missionCountdown gt 0>>\
<<set $missionCountdown = $missionCountdown - 1>>
<</if>>\
<<if $cheatCounter gt 0>><<set $cheatCounter = $cheatCounter - 1>><</if>>\
<<relationshipupdate>>\
<<for _i to 0; _i lt $girls.length; _i++>>\
<<if $girls[_i].countdown gt 0>>\
<<set $girls[_i].countdown = $girls[_i].countdown - 1>>
<</if>>\
<</for>>\
<<if $insiderTradeCountdown gt 0>>\
<<set $insiderTradeCountdown = $insiderTradeCountdown - 1>>
<</if>>\
<<if $nicole.exercisedToday is true>>\
<<set $nicole.exercisedToday to false>>
<</if>>\
<<if $you.physique gt 20>><<set $you.physique = 20>><</if>>\
<<if $you.heat lt 0>><<set $you.heat to 0>><</if>>\
<<dailyLobbyingUpdate>>\
<<if setup.DAYS[$day % 7] is "Saturday">>\
<<weeklyFinanceUpdate>>\
<<weeklyLobbyingUpdate>>\
<<set $trading.capital to $trading.level>>\
<<set $you.heat -= (3 + $you.power)>>\
<<if $you.heat lt 0>><<set $you.heat to 0>><</if>>\
<<looksmax -0.2>>\
<<if $you.physique lt 0>><<set $you.physique to 0>> <</if>>
<</if>>\
<</widget>>
<<widget "now">>
\It is <<print setup.DAYS[$day % 7]>>, <<print setup.PERIODS[$period]>>, Day $day.
<</widget>>
<<widget "advancePeriod">>
\<<silently>>
<<set _offset to 1>>
<<set _periodsInDay to setup.PERIODS.length>>
<<if $args.length > 0>>
<<set _offset to $args[0]>>
<</if>>
<<set $period += _offset>>
/% Update the Day Number as necessary. %/
<<if $period >= _periodsInDay>>
<<set $day += Math.trunc($period / _periodsInDay)>>
<<set $period to ($period % _periodsInDay)>>
<<goto "Sleepyhead">>
/% Daily countdown shit %/
<<countDowns>>
/% End of countdown stuff %/
<</if>>
<</silently>>\
<</widget>>
<<widget "nextMorning">>
\<<silently>>
<<set $day += 1>>
<<set $period to 0>>
/% Daily countdown shit %/
<<countDowns>>
/% End of countdown stuff %/
<</silently>>\
<</widget>>
<<widget "weekend">>
\<<silently>>
<<if setup.DAYS[$day % 7] == 'Saturday' || setup.DAYS[$day % 7] == 'Sunday'>>
<<set $weekend to true>>
<<else>>
<<set $weekend to false>>
<</if>>
<</silently>>
<</widget>>
<<widget "day">>
<<if setup.DAYS[$day % 7] == 'Monday'>>\
<<set $weekday = 'Monday'>>\
<<elseif setup.DAYS[$day % 7] == 'Tuesday'>>\
<<set $weekday = 'Tuesday'>>\
<<elseif setup.DAYS[$day % 7] == 'Wednesday'>>\
<<set $weekday = 'Wednesday'>>\
<<elseif setup.DAYS[$day % 7] == 'Thursday'>>\
<<set $weekday = 'Thursday'>>\
<<elseif setup.DAYS[$day % 7] == 'Friday'>>\
<<set $weekday = 'Friday'>>\
<<elseif setup.DAYS[$day % 7] == 'Saturday'>>\
<<set $weekday = 'Saturday'>>\
<<elseif setup.DAYS[$day % 7] == 'Sunday'>>\
<<set $weekday = 'Sunday'>>\
<</if>>\
<</widget>>
<<widget "time">>\
<<if $period == 0>>\
<<set $time = 'morning'>>\
<<elseif $period == 1>>\
<<set $time = 'noon'>>\
<<elseif $period == 2>>\
<<set $time = 'afternoon'>>\
<<elseif $period == 3>>\
<<set $time = 'evening'>>\
<<elseif $period == 4>>\
<<set $time = 'night'>>\
<</if>>\
<</widget>>/% The names of the Days of the Week. %/
<<set setup.DAYS to ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>>
/% The names of the Time Periods of a Day. %/
<<set setup.PERIODS to ["Morning", "Noon", "Afternoon", "Evening", "Night"]>>
/% The current Game Day: Monday. %/
<<set $day to 0>>
/% The current Time Period: Morning. %/
<<set $period to 0>>
<<set $mission = {
arc: 0.0,
requirements: [true,],
}>>
<<set $trading = {
capital: 10000000,
level: 10000000,
currentNews: "",
currentMacro: "",
investments: [],
}>>
<<set $lobbying = {
budget: 0,
support: 0,
relationship: 0,
requiredBudget: 0,
requiredSupport: 0,
requiredRelationship: 0,
supportCountdown: 0,
items: {"rolex": 0, "golf": 0, "pens": 0, "ties": 0, "opera": 0, "cufflinks": 0, "suit": 0},
}>>
<<set $sectors = ["Energy", "Materials", "Industrials", "Utilities", "Healthcare", "Financials", "Consumer Discretionary", "Consumer Staples", "Information Technology", "Communication Services", "Real Estate"]>>
<<set $freeplay to false>>
<<set $game={
cheats: 0,
version: 0.03,
release: 'Alpha',
id1: 'b37e51660cc9396fdc184b7a05a9d6043f9b34aa0bef5ed40ec835e128885460',
id2: '68bf647f4273a4e3b09b668bbd4b9a108589803c21a2a75c6d44b9e10393abcc',
id3: '3921b0fbcf0d09c73889071dfcc066eb29b85f50e70b3f60a895b1749e19011d',
id4: '167edf855a2f91590d08cdfef635e7d982f87f017c7389571632de3ee59651b4',
background: 'Normal',
mode: 'Realistic',
}>>
<<set $expenses={
rent: 2000,
debt: 250000,
otherSalaries: 0,
}>>
<<set $storeOneMore ={
low: false,
medium: false,
high: false,
}>>
<<set $currentAction to "null">>
<<set $thread to "null">>
<<InitCharacters>>
<<set $weekend to true>>
<<set $you.cash to 0>>
<<set $playerEnteredCode to 0>>
<<set $playerEnteredDebt to 0>>
<<set $missionCountdown to 0>>
<<set $paymentCounter to 5>>
<<set $cheatCounter to 0>><<bg ManhattanSkyline>><<set $you.geography to "NYC">>\
<img src="media/Scenery/ManhattanSkyline1.png" alt="Manhattan" class="left">
<em>Welcome to the city that never sleeps, where dreams are made and fortunes are won and lost in the blink of an eye. With 107 billionaires and countless millionaires calling New York City home, you're determined to claw your way to the top and join their exclusive ranks.</em>
But the road to success is paved with obstacles, and in today's cut-throat economy, even the most talented and qualified candidates struggle to find work. Despite your impressive credentials and Wall Street ambitions, you're just another face in the crowded sea of job seekers, lacking the insider connections and social cachet that seem to matter more than merit.
You don't have an uncle who's a Managing Director at J.O. Morgan. Honestly, Golden Sacks is more interested in the bisexual gender studies girl from Princeton who lives in the Hamptons than someone like you.
[[The hardworking middle class guy can't take a break these days.|Intro Home]]
This game is brought to you by the OG GigaChad. To support this project's growth and help a struggling wagie, please visit https://www.patreon.com/WallStreetGigaChad
Thank you to Weimanno for help with video clipping and editing! His help cut down development time significantly.
Thank you for the following SPECIAL patrons, who have made this game possible! If you'd like your name to be featured below, subscribe at a CEO or PM* level at the Patreon link above!
- JANNIK Blöse
- Brent P
*To be very honest, I just needed a differentiating factor between the Analyst and PM level, so I decided to throw in special name recognition for the glory fiends ;)<<widget "pickOne">><<nobr>>
<<set $_choiceNumber = Math.floor(Math.random()*$args[0].length)>>
<<set _thelist = $args[0]>>
<<print _thelist[$_choiceNumber]>>
<</nobr>><</widget>>
<<widget "refreshCaption">><<silently>>
<<replace "#story-caption">><<include "StoryCaption">><</replace>>
<</silently>><</widget>>
<<widget "relationshipupdate">>\
<<set $girls = []>>\
<<set $girls.push($abigail)>>\
<<set $girls.push($kendralust)>>\
<<set $girls.push($angela)>>\
<<set $girls.push($adriana)>>\
<<set $girls.push($alina)>>\
<<set $girls.push($blake)>>\
<<set $girls.push($nikki)>>\
<<set $girls.push($autumn)>>\
<<set $girls.push($gia)>>\
<<set $girls.push($allie)>>\
<<set $girls.push($miamelano)>>\
<<set $girls.push($alexistexas)>>\
<<set $girls.push($miamal)>>\
<<set $girls.push($morgan)>>\
<<set $girls.push($eva)>>\
<<set $girls.push($gabbie)>>\
<<set $girls.push($karlee)>>\
<<set $girls.push($riley)>>\
<<set $girls.push($kendrasunderland)>>\
<<set $girls.push($teanna)>>\
<<set $girls.push($emily)>>\
<<set $girls.push($elsa)>>\
<<set $girls.push($kayden)>>\
<<set $girls.push($zoeyh)>>\
<<set $girls.push($brandi)>>\
<<set $girls.push($armani)>>\
<<set $girls.push($autumn)>>\
<<set $girls.push($whitney)>>\
<<set $girls.push($kissa)>>\
<<set $girls.push($violet)>>\
<<set $girls.push($canela)>>\
<<set $girls.push($athena)>>\
<<set $girls.push($nicole)>>\
<<set $girls.push($gabriela)>>\
<<set $girls.push($skylar)>>\
<<set $girls.push($alex)>>\
<<set $girls.push($jennifer)>>\
<</widget>>
<<bg ManhattanAfternoon>>\
<<set _exitPage to "Home">>\
<<if $you.geography is "DC">><<set _exitPage to "Georgetown">><</if>>\
Trying to slum it with the 99%, respectable I guess.
To activate cheats again, you will need to enter the password again.
[[Yes.|Home][set $game.id to 0]]
[[No.|cheatPage]]<<bg Suburbs>>
You wake up to the sound of you girlfriend saying your name. You and <<textbox "$jennifer.name" "Jennifer">> met in college, and while she's lowkey mid, she's good enough for you.
<<speech "jennifer" "$jennifer.name">>Wake up, sleepyhead!<</speech>>
You groan, rubbing the sleep from your eyes. Who the hell is Ron Jeremy? Sounds like some pornstar from the 70s. Your name is <<textbox "$you.firstName" "Patrick">> <<textbox "$you.lastName" "Bateman">> - the ultimate sigma male.
<<speechYou "you">>Who the fuck are you talking about? That's not my name.<</speechYou>>
Jennifer giggles, amused by your morning grumpiness.
<<speech "jennifer" "$jennifer.name">>Sorry babe, Freudian slip!<</speech>>
Unbelievable. With all the shit these hoes are giving you, how realistic do you really want your dating life to be?
<b>Note: This choice will determine the inclusion of NTR content. The vanilla build may still include sharing content, but it will ALWAYS be optional.</b>
<i>Realistic (NTR): Remember, she's not yours, it's just your turn. You live in NYC, and frankly, you're not exactly the most high status guy at the moment. As you gradually level yourself up, more and more women will start to flock to you, and you can build your harem.</i>
<i>Fairy Tale Land (Vanilla): Your basic porn game mode, every girl you stick your dick into is a virgin (even the MILFs). Life is difficult enough, why shouldn't you just have a game where every single girl in NYC only has eyes on you?</i>
<<radiobutton "$game.mode" "Realistic">> Realistic
<<radiobutton "$game.mode" "Fairy Tale Land">> Fairy Tale Land
[[Don't I have a job interview or something?|GF is Horny]]
<<set $jennifer.met to true>>
<<set $jennifer.bio to "You two met in college, and she's been with you through this rough period of time in your life">>[v0.03]
Arc 2 Beginning: Giga Chad Takes Washington
- New Main Story progress!
- New DC Map and Characters! Meet:
- Autumn
- Whitney
- Gina
- Ashly
- Significant new Sandbox and NPC content added
- New Class of Minor NPCs
- Sophia Chang (Kaya from Spunkmouth)
- Dr. Jasmine Patel (Yasmine from Backroom Casting Couch)
- Grace
- New Locations in New York: Upstate Country Club and Port of New York in Brooklyn
- No content for Port yet, but significant sandbox elements to NY Country Club
- Rebalanced Physique Gain
- Fixed Bug in Alex Coal sex sequence
- New Cheat Code scheme to benefit Patreons.
- New minor scenes in Realistic Mode for Nikki Benz model
[v0.02]
Sandbox Expansion Edit + Some bug fixes
- Full divergence between Vanilla and NTR path. Players who select Vanilla should not see ANY NTR at ANY POINT in the story.
- Minor plot inconsistencies fixed and plot points changed
- Replaced Casey Calvert with Gabbie Carter model
- FlirtFolio, the new dating simulation! Meet:
- Gabriela
- Skylar
- Alex
- Personal arc started for Karlee and Emily
- Relationships tab also contains hints for NPC mini quests
- New Male character: Tommy
- New Uber functionality added
- Functionality implemented for miniquests with individual characters
- New Residential Locations Added
- New Trader's Cabaret Private Room location
- Updated Sandbox and Sex UI/UX
- Added minor content for Alina
- You can now lower heat through Nikki
- Preliminary balancing done for SMV system
- New online ordering functionality for Elysium Emporium
- Bad Endings Implemented (going broke and exceeding heat)
- Earn Status (and heat) in the Dorsia Club Bathroom
- Major Finance bugs fixed, and rebalancing of system
- You can pay off debt in lump sums under the Finances Tab
- Visit Greystone Associate NPCs at end of personal arc in evening to go clubbing
- General Formatting improvements
[v0.01]
Game Released<<bg ManhattanAfternoon>>\
<<set _exitPage to "Home">>\
<<if $you.geography is "DC">><<set _exitPage to "Georgetown">><</if>>\
<<if $cheatCounter == 0>>\
So you want to play God? We congratulate you, success is sweeter when you bend the rules ;)
<<if $playerEnteredCode == 0>>\
<<elseif sha256($playerEnteredCode) is $game.id1>>\
<<goto "cheatPageRight">><<set $game.cheats to 1>>\
<<elseif sha256($playerEnteredCode) is $game.id2>>\
<<goto "cheatPageRight">><<set $game.cheats to 2>>\
<<elseif sha256($playerEnteredCode) is $game.id3>>\
<<goto "cheatPageRight">><<set $game.cheats to 3>>\
<<elseif sha256($playerEnteredCode) is $game.id4>>\
<<goto "cheatPageRight">><<set $game.cheats to 4>>\
<<else>>\
<<goto "cheatPageWrong">>\
<</if>>
Cheat Code: <<textbox "$playerEnteredCode" "">> <<button "Enter" "cheatPage">><</button>>
<<button "Exit" _exitPage>><</button>>
<<set _tmp to $game.mode>>
<<set $game.mode to _tmp>>
<<else>>\
$cheatCounter days until you can use the cheatcode again.
<<button "Exit" _exitPage>><</button>>
<</if>><<bg ManhattanAfternoon>>\
<<set _exitPage to "Home">>\
<<if $you.geography is "DC">><<set _exitPage to "Georgetown">><</if>>\
Incorrect Cheat Code
<<button "Try Again" "cheatPage">><</button>> <<button "Exit" _exitPage>><</button>><<bg ManhattanAfternoon>>\
<<set _exitPage to "Home">>\
<<if $you.geography is "DC">><<set _exitPage to "Georgetown">><</if>>\
<<if $cheatCounter gt 0>>\
Please wait $cheatCounter more days before entering the cheat code
<<else>>\
Hey, I really appreciate the support (if you didn't get the password from the comment section lmao).
It means a lot that you've enjoyed the game enough to donate; I'm currently going through a bit of a rough situation financially, and it is impossible to express how much each contribution helps make life a little easier :)
<<if $game.cheats == 1>>\
<<button "+ Cash" "cheatPage">><<paycheck 1000>><<set $cheatCounter to 4>><</button>>
<<button "+ Status" "cheatPage">><<statsmax 1>><<set $cheatCounter to 4>><</button>>
<<button "+ Physique" "cheatPage">><<looksmax 1>><<set $cheatCounter to 4>><</button>>
<<elseif $game.cheats == 2>>\
<<button "+ Cash" "cheatPage">><<paycheck 1000>><<set $cheatCounter to 1>><</button>>
<<button "+ Status" "cheatPage">><<statsmax 1>><<set $cheatCounter to 1>><</button>>
<<button "+ Physique" "cheatPage">><<looksmax 1>><<set $cheatCounter to 1>><</button>>
<<elseif $game.cheats == 3>>\
<<button "+ Cash" "cheatPageRight">><<paycheck 10000>><</button>>
<<button "+ Status" "cheatPageRight">><<statsmax 5>><</button>>
<<button "+ Physique" "cheatPageRight">><<looksmax 1>><</button>>
<<elseif $game.cheats == 4>>\
<<button "+ Cash" "cheatPageRight">><<paycheck 100000>><</button>>
<<button "+ Status" "cheatPageRight">><<statsmax 20>><</button>>
<<button "+ Physique" "cheatPageRight">><<looksmax 20>><</button>>
<</if>>
<</if>>\
<<button "Exit" _exitPage>><</button>><<widget "vid">>
<<set _url to "media/" + $args[0] + "/" + $args[1] + ".webm">>\
<video @src=_url width="100%" autoplay loop></video>\
<</widget>>
<<widget "image">>
<<set _url to "media/" + $args[0] + "/" + $args[1] + ".jpeg">>\
<img @src=_url class="small-image">\
<</widget>>
<<widget "profile">>
<<set _url to "media/profile/" + $args[0] + ".jpeg">>\
<img align = "left" @src=_url
width="auto"
height=400>\
<</widget>><<widget "paycheck">>\
<<set $you.cash = $you.cash + $args[0]>>\
<</widget>>
<<widget "payment">>\
<<set $you.cash = $you.cash - $args[0]>>\
<</widget>>
<<widget "statsmax">>\
<<set $you.status to Number(($you.status + $args[0]).toFixed(1))>>\
<</widget>>
<<widget "looksmax">>\
<<set $you.physique to Number(($you.physique + $args[0]).toFixed(1))>>\
<</widget>>
<<widget "heatmax">>\
<<set $you.heat to Number(($you.heat + $args[0]).toFixed(1))>>\
<</widget>>
<<widget "useItem">>\
<<set $you.items[$args[0]] -= $args[1]>>\
<</widget>>
<<widget "weeklyFinanceUpdate">>\
<<set _wpti = Math.trunc($you.income*$you.tax/52)>>\
<<set _wBI = Math.trunc($trading.capital - $trading.level)>>\
<<if _wBI lt 0>><<set _wBI to 0>><</if>>\
<<set _wBI = Math.trunc((_wBI*$you.compensation)*$blake.bonusRate)>>\
<<set _we = Math.trunc($expenses.rent + $expenses.otherSalaries + ($expenses.debt/52/5))>>\
<<set _wpti = _wpti + _wBI - _we>>\
<<paycheck _wpti>>\
<</widget>>
<<widget "dailyLobbyingUpdate">>\
<<if $lobbying.supportCountdown gt 0>><<set $lobbying.supportCountdown -= 1>><</if>>\
<<if $lobbying.supportCountdown lt 0>><<set $lobbying.supportCountdown to 0>><</if>>\
<<if $lobbying.budget gt $lobbying.requiredBudget>>\
<<set $lobbying.budget to $lobbying.requiredBudget>>\
<</if>>\
<<if $lobbying.support gt $lobbying.requiredSupport>>\
<<set $lobbying.support to $lobbying.requiredSupport>>\
<</if>>\
<<if $lobbying.relationship gt $lobbying.requiredRelationship>>\
<<set $lobbying.relationship to $lobbying.requiredRelationship>>\
<</if>>\
<</widget>>
<<widget "weeklyLobbyingUpdate">>\
<<if $you.politics is "neo">>\
<<set $lobbying.budget += 500000>>
<<set $you.power += 3>>
<<paycheck 2000>>
<<elseif $you.politics is "prog">>\
<<set $lobbying.budget += 200000>>
<<set $you.power += 3>>
<<set $you.status += 2>>
<<elseif $you.politics is "green">>\
<<set $lobbying.budget += 100000>>
<<set $you.power += 3>>
<<elseif $you.politics is "est">>\
<<set $lobbying.budget += 500000>>
<<paycheck 2000>>
<<set $you.power += 1>>
<<elseif $you.politics is "right">>\
<<set $lobbying.budget += 350000>>
<<paycheck 2000>>
<<elseif $you.politics is "lib">>\
<<set $lobbying.budget += 100000>>
<<paycheck 5000>>
<</if>>\
<<if $whitney.onPayroll>>\
<<set $lobbying.support += 14>>
<</if>>\
<</widget>><<widget "updateIfCashSufficient">>\
<<if ($you.cash - $args[0].minMoney) gte 0>>\
You're rich to <<= $args[0].name >>
<<elseif ($you.cash - $args[0].minMoney) gte -100000>>\
For <<= $args[0].name >>, your bank account size is pretty average.
<<else>>\
<<= $args[0].name >> thinks you're broke
<</if>>\
<</widget>>
<<widget "updateIfStatusSufficient">>\
<<if ($you.status - $args[0].minStatus) gte 0>>\
<<= _characters[_i].name >> thinks you're a high status man
<<elseif ($you.status - $args[0].minStatus) gte -15>>\
You're still a beta to <<= _characters[_i].name >>
<<else>>\
You're pretty low status to <<= _characters[_i].name >>
<</if>>\
<</widget>>
<<widget "updateIfPhysiqueSufficient">>\
<<if ($you.physique - $args[0].minPhysique) gte 0>>\
<<= _characters[_i].name >> finds you athletic
<<elseif ($you.physique - $args[0].minPhysique) gte -5>>\
You can stand to lose a few more body fat percentage points for <<= _characters[_i].name >>
<<else>>\
<<= _characters[_i].name >> can see you're out of shape
<</if>>\
<</widget>>
<<widget "updateIfBioSufficient">>\
<<if $args[0].bio is "">>\
Bio: You don't really know them that well.
<<else>>\
Bio: <<= _characters[_i].bio >>
<</if>>\
<</widget>>
<<widget "updateIfHintSufficient">>\
<<if $args[0].hint is "">>\
Hint: No personal mission implemented yet
<<else>>\
Hint: <<= _characters[_i].hint >>
<</if>>\
<</widget>>@@.tip;$game.version $game.release@@
<span id="box"><span class="limegreen">\
<<if $period == 0>>\
Morning
<<elseif $period == 1>>\
Noon
<<elseif $period == 2>>\
Afternoon
<<elseif $period == 3>>\
Evening
<<else>>\
Night
<</if>>\
<<now>>\
<<if setup.DAYS[$day % 7] == 'Saturday' || setup.DAYS[$day % 7] == 'Sunday'>>
<span class="good">It's the Weekend</span>
<<set $weekend to true>>
<<else>>
<span class="fine">It's a Weekday</span>\
<<set $weekend to false>>
<</if>>
Job: <<print $you.job>>
$<<print $you.cash.toLocaleString()>>
Status: <<print $you.status>>
Physique: <<print $you.physique>>/20
Heat: <<print $you.heat>>/100
Power: <<print $you.power>>
<<if $you.geography is "NYC">>\
<<button "Go Home" "Home">><</button>>\
<<elseif $you.geography is "DC">>\
<<button "Go Home" "Georgetown">><</button>>\
<</if>>\
<<button "Pass Time" $you.location>><<advancePeriod>><</button>>\
<<button [[Finances|Finances]]>><</button>>\
<<button [[Relationships|Relationships]]>><</button>>\
<<button [[Missions|Missions]]>><</button>>\
<<button [[Credits|Credits]]>><</button>>\
<<button [[Change Log|Change Log]]>><</button>>\
<div class="spaced">\
<a href="https://www.patreon.com/WallStreetGigaChad" target="_blank"><img src="media/Scenery/bannerPatreon.png" width="100%" align="middle"></a>\
</div>\
<div class="spaced">\
<a href="https://www.subscribestar.com/wall-street-gigachad" target="_blank"><img src="media/Scenery/bannerSubscribeStar.png" width="100%" align="middle"></a>\
</div>\
<div class="spaced">\
<a href="https://discord.gg/cERAcQgsVw" target="_blank"><img src="media/Scenery/bannerDiscord.png" width="100%" align="middle"></a>\
</div>\
<div class="spaced">\
<a href="https://f95zone.to/threads/wall-street-giga-chad-v0-02-alpha-wallstreetgigachad.161020/" target="_blank"><img src="media/Scenery/bannerF95zone.jpg" width="100%" align="middle"></a>\
</div>\
<<bg "GigachadCartoon">>\
Pre-Tax Income: $<<print $you.income.toLocaleString()>>
<<set _t = Number(100*(1 - $you.tax).toFixed(1))>>\
Tax Rate: _t%
<<set _pti = $you.income*$you.tax>>\
Post-Tax Income: $<<print _pti.toLocaleString()>>
<<set _wafp = Math.trunc($trading.capital - $trading.level)>>\
<<if _wafp lt 0>><<set _wafp to 0>><</if>>\
Weekly Accrued Fund Profits: $<<print _wafp.toLocaleString()>>
<<set _pf = Number((100*$you.compensation).toFixed(2))>>\
Performance Fee: _pf%
<<set _bt = Number(100*(1 - $blake.bonusRate).toFixed(2))>>\
Bonus Tax-Rate: _bt%
<<set _d = Math.trunc($expenses.debt)>>
Debt: $<<print _d.toLocaleString()>>
Rent: $<<print $expenses.rent.toLocaleString()>>
<<set _wi = Math.trunc(_pti/52)>>\
<b>Weekly Income: $<<print _wi.toLocaleString()>></b>
<<set _wafc = Math.trunc(_wafp*$blake.bonusRate*_pf/100)>>\
<b>Weekly Accrued Fund Compensation: $<<print _wafc.toLocaleString()>></b>
<<set _we = $expenses.rent + $expenses.otherSalaries + Math.trunc($expenses.debt/52/5)>>\
<b>Weekly Expenses: $<<print Math.trunc(_we).toLocaleString()>></b>
<<set _wcf = _wi + _wafc - _we>>\
<b>Weekly Cash Flow: $<<print _wcf.toLocaleString()>></b>
<<button "Clear Debt" "Clear Debt">> <</button>>
<<button "Go back" $you.location>><</button>><h2>Your very own hoe and colleague rolodex!</h2>\
<i>Once a girl is in your harem, fuck them repeatedly and even explore different parts of the city to see new scenes with them!</i>
<<relationshipupdate>>\
<<set _characters to $girls>>\
<<for _i = 0; _i < _characters.length; _i++>>\
<<if _characters[_i].met is true>>\
<div class="character-card">
<div class="character-image">
<<image "profile"_characters[_i].id >>
<h3>_characters[_i].name</h3>
</div>
<div class="character-info">
<ul>
<li>Respect: _characters[_i].respect</li>
<li><<updateIfCashSufficient _characters[_i]>></li>
<li><<updateIfStatusSufficient _characters[_i]>></li>
<li><<updateIfPhysiqueSufficient _characters[_i]>></li>
<li><<updateIfBioSufficient _characters[_i]>></li>
<li><<updateIfHintSufficient _characters[_i]>></li>
</ul>
</div>
</div>
<</if>>
<</for>>
<<button "Exit Page" $you.location>><</button>>
<<if $mission.arc gte 2>>\
<strong>Arc 2: Giga Chad Takes Washington</strong>
<<if $mission.arc == 2.01>>\
<em>Head to the Executive Floor at Greystone</em>
<<elseif $mission.arc == 2.02 and $you.location is "Executive Floor">>\
<em>Catch up to $autumn.name in the Lobby</em>
<<elseif $mission.arc == 2.02 and $you.location is "Lobby">>\
<em>In the Lobby, click "Keep listening", and then choose an affiliation</em>
<<elseif $mission.arc == 2.03 and $you.location is "JFK Airport">>\
<em>Deal with the TSA agents</em>
<<elseif $mission.arc == 2.03>>\
<em>Get to the JFK airport by the limo at the Lobby, or just go to Queens</em>
<<elseif $mission.arc == 2.04 and $you.location is "JFK Airport">>\
<em>Fly to Washington D.C.</em>
<<elseif $mission.arc == 2.04 and $you.location is "Dulles Airport">>\
<em>Follow $autumn.name out of the airport</em>
<<elseif $mission.arc == 2.04 and $you.location is "Virginia">>\
<em>Drive to Northwest D.C.</em>
<<elseif $mission.arc == 2.04 and $you.location is "Northwest DC">>\
<em>Head over to Georgetown</em>
<<elseif $mission.arc == 2.04 and $you.location is "Georgetown">>\
<em>Pay up bucko!</em>
<<elseif $mission.arc == 2.05>>\
<em>This is a Gigachad skill based minigame, channel your inner Sigma </em>
<<elseif $mission.arc == 2.06>>\
<em>Once you're in the lobby, get in the car.</em>
<<elseif $mission.arc == 2.07>>\
<em>Listen to $autumn.name as you travel through D.C. and then go into the Secure Room.</em>
<<elseif $mission.arc == 2.08>>\
<em>Read the info carefully, then start research with the Thrust of Progress Think Tank at the Capitol Hill Zone</em>
<<elseif $mission.arc == 2.09>>\
<em>Wait $missionCountdown days, and then go to the Capitol Hill Zone.</em>
<<elseif $mission.arc == 2.10>>\
<em>Reach fundraising and support thresholds, then follow $autumn.name's instructions</em>
<<elseif $mission.arc == 2.11>>\
<em>Take the limo, and go to the Country Club in Upstate New York</em>
<<elseif $mission.arc == 2.12>>\
<em>Dang you fucked up! Go visit $whitney.name at the WAP Building in Downtown D.C. to collect blackmail on $gracecharis.name</em>
<<elseif $mission.arc == 2.13>>\
<em>Click through events at JFK, then meet with $autumn.name at your place and proceed to visit the Congressman.</em>
<<elseif $mission.arc == 2.14>>\
<em>Go outside the Capitol Hill Zone, continue fundraising.</em>
<<elseif $mission.arc == 2.15>>\
<em>Meet the Congressman at his office, and click through the events</em>
<<elseif $mission.arc == 2.16>>\
<em>Continue fundraising, raising support, and raising your relationship with the Congressman. After $missionCountdown days, follow $autumn.name from the office to Capitol Hill, then go visit the Congressman's home in Virginia.</em>
<<elseif $mission.arc == 2.17>>\
<em>Once you've reached the thresholds, go back to the Executive Floor in the New York Greystone building</em>
<<else>>\
<em>Stay tuned for further updates!</em>
<</if>>\
<</if>>\
<<if $mission.arc gte 1>>\
<strong>Arc 1: Enter the Giga Chad</strong>
<<if $mission.arc == 1.00>>\
<em>Show up to work, nice and early!</em>
<<elseif $mission.arc == 1.01>>\
<em>Head to Support Floor, then click "She hands it to you and you nearly cream your pants."</em>
<<elseif $mission.arc == 1.02>>\
<em>Head to Investment Management Floor and click "Get the PM"</em>
<<elseif $mission.arc == 1.03>>\
<em>Walk back with $alexistexas.name to the Investment Management Floor</em>
<<elseif $mission.arc == 1.04>>\
<em>Use the terminal to trade</em>
<<elseif $mission.arc == 1.05>>\
<em>Next even triggers in the afternoon</em>
<<elseif $mission.arc == 1.06>>\
<em>Head to the Investment Banking Floor to talk to $emily.name</em>
<<elseif $mission.arc == 1.07>>\
<em>Your first day was relatively uneventful, you should probably go back home.</em>
<<elseif $mission.arc == 1.08 && $missionCountdown == 1>>\
<em>You have lunch with $miamal.name in 1 day</em>
<<elseif $mission.arc == 1.08 && $missionCountdown == 0>>\
<em>You have lunch with Mia today, make sure to get some trading in today before noon.</em>
<<elseif $mission.arc == 1.09>>\
<em>Follow $miamal.name to the Dorsia Club</em>
<<elseif $mission.arc == 1.1>>\
<em>Take a seat</em>
<<elseif $mission.arc == 1.11>>\
<em>Go to the bathroom of the Dorsia Club</em>
<<elseif $mission.arc == 1.12>>\
<em>Head back to the club</em>
<<elseif $mission.arc == 1.13>>\
<em>Escort $miamal.name out of the club</em>
<<elseif $mission.arc == 1.14>>\
<em>Take the Uber to Upstate, and then go to Foresight Market Research</em>
<<elseif $mission.arc == 1.15>>\
<em>Go inside the firm</em>
<<elseif $mission.arc == 1.17>>\
<em>Pick one of the two dialogue options</em>
<<elseif $mission.arc == 1.18>>\
<em>Go back home</em>
<<elseif $mission.arc lte 1.19>>\
<em>You'll hear back from $alina.name in $missionCountdown days on the Investment Management Floor. Be there in the morning</em>
<<elseif $mission.arc == 1.2>>\
<em>Go to the Support Floor and click "Ayo??". Keep on clicking the blue text</em>
<<elseif $mission.arc == 1.21>>\
<em></em>
<<elseif $mission.arc == 1.22>>\
<em>Head to the Executive Floors, and select one of the two options</em>
<<elseif $mission.arc == 1.23>>\
<em>Finish fucking $kendralust.name</em>
<<elseif $mission.arc == 1.24>>\
<em>Wake up the next day for the event to trigger. Then, Click: "You get a text"</em>
<<elseif $mission.arc == 1.25>>\
<em>Click the button to go to Elysian Essentials, then buy the suit.</em>
<<elseif $mission.arc == 1.26>>\
<em>Head to the Dorsia Club in the Evening, and then follow $angela.name</em>
<<elseif $mission.arc == 1.27>>\
<em>Finish fucking $angela.name, and then go back to your place</em>
<<elseif $mission.arc == 1.28>>\
<em>Feel free to make money and explore the city, but be at the Investment Management Floor in the morning in $missionCountdown days</em>
<<elseif $mission.arc == 1.29>>\
<em>Talk to $miamal.name</em>
<<elseif $mission.arc lte 1.31>>\
<em>Go Upstate to Foresight Market Research, then head back to the Investment Management Floor</em>
<<elseif $mission.arc == 1.32>>\
<em>Feel free to make money and explore the city, but be at the Investment Management Floor in $missionCountdown days</em>
<<elseif $mission.arc == 1.33>>\
<em>Head back to the Trading Floor</em>
<<elseif $mission.arc lte 1.34>>\
<em>Click "Time to Perp Walk", and go through each dialogue option at the SEC Headquarters</em>
<<elseif $mission.arc == 1.35>>\
<em>Hit "Yeah, go figure" at the SEC headquarters</em>
<<else>>\
<em>Completed!</em>
<</if>>\
<</if>>
<<button "Go back" $you.location>><</button>><<widget "InitCharacters">><<silently>>
<<set $you = {
firstName: "Patrick",
lastName: "Bateman",
id: "you",
ntr: false,
physique: 0,
status: 0,
cash: 0,
power: 0,
heat: 0,
job: "Unemployed",
location: "",
geography: "NYC",
income: 0,
compensation: 0,
tax: 0.7,
politics: "null",
items: {"clothes": "none", "roses": 0, "wine": 0, "weed": 0, "cocaine": 0, },
}>>\
<<set $ricky = {
name: "Ricky",
id: "ricky",
respect: 0,
met: false,
}>>\
<<set $abigail = {
name: "Abigail",
id: "abigail",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>\
<<set $kendralust = {
name: "Kendra",
id: "kendralust",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>\
<<set $angela = {
name: "Angela",
id: "angela",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>\
<<set $adriana = {
name: "Adriana",
id: "adriana",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>\
<<set $blake = {
name: "Blake",
id: "blake",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "Personal mission not started yet",
bonusRate: 0.63,
}>>\
<<set $nikki = {
name: "Nikki",
id: "nikki",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $autumn = {
name: "Autumn",
id: "autumn",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
progress: 0,
}>>
<<set $gia = {
name: "Gia",
id: "gia",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $allie = {
name: "Allie",
id: "allie",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $miamelano = {
name: "Mia",
id: "miamelano",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $canela = {
name: "Canela",
id: "canela",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 0,
minStatus: 0,
minPhysique: 0,
bio: "",
hint: "",
}>>
<<set $eva = {
name: "Eva",
id: "eva",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $mick = {
name: "Mick",
id: "mick",
respect: 0,
met: false,
}>>
<<set $gabbie = {
name: "Gabbie",
id: "gabbie",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $karlee = {
name: "Karlee",
id: "karlee",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000,
minStatus: 80,
minPhysique: 5,
bio: "",
hint: "Personal mission not started yet",
progress: 0,
}>>
<<set $riley = {
name: "Riley",
id: "riley",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $kendrasunderland = {
name: "Kendra",
id: "kendrasunderland",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $jean = {
name: "Jean",
id: "jean",
respect: 0,
met: false,
}>>
<<set $teanna = {
name: "Teanna",
id: "teanna",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $emily = {
name: "Emily",
id: "emily",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 125000,
minStatus: 130,
minPhysique: 6,
bio: "",
hint: "Personal mission not started yet",
progress: 0,
}>>
<<set $elsa = {
name: "Elsa",
id: "elsa",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $alexistexas = {
name: "Alexis",
id: "alexistexas",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $johnny = {
name: "Johnny",
id: "johnny",
respect: 0,
met: false,
}>>
<<set $miamal = {
name: "Mia",
id: "miamal",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $morgan = {
name: "Morgan",
id: "morgan",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $jennifer = {
name: "Jennifer",
id: "jennifer",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $margot = {
name: "Margot",
id: "margot",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $jason = {
name: "Jason",
id: "jason",
respect: 0,
met: false,
}>>
<<set $alina = {
name: "Alina",
id: "alina",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "Personal mission not started yet",
}>>
<<set $athena = {
name: "Athena",
id: "athena",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $nicole = {
name: "Nicole",
id: "nicole",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
boughtMembership: false,
exercisedToday: false,
}>>
<<set $violet = {
name: "Violet",
id: "violet",
arc: 0,
countdown: 0,
met: false,
fucked: false,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $gabriela = {
name: "Gabriela",
id: "gabriela",
arc: 0,
countdown: 0,
respect: 0,
met: false,
fucked: false,
minMoney: 50000,
minStatus: 10,
minPhysique: 1,
skinny: false,
bio: "",
hint: "Personal mission not started yet",
}>>
<<set $skylar = {
name: "Skylar",
id: "skylar",
arc: 0,
countdown: 0,
respect: 0,
met: false,
fucked: false,
minMoney: 90000,
minStatus: 35,
minPhysique: 3,
bio: "",
hint: "Personal mission not started yet",
}>>
<<set $alex = {
name: "Alex",
id: "alex",
arc: 0,
countdown: 0,
respect: 0,
met: false,
fucked: false,
minMoney: 100000,
minStatus: 75,
minPhysique: 7,
bio: "",
hint: "Personal mission not started yet",
}>>
<<set $kissa = {
name: "Kissa",
id: "kissa",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $tommy = {
name: "Tommy",
id: "tommy",
respect: 0,
met: false,
}>>
<<set $kayden = {
name: "Kayden",
id: "kayden",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $zoeyh = {
name: "Zoey",
id: "zoeyh",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $brandi = {
name: "Brandi",
id: "brandi",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $armani = {
name: "Armani",
id: "armani",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $whitney = {
name: "Whitney",
id: "whitney",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
onPayroll: false,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
progress: 0,
}>>
<<set $gina = {
name: "Gina",
id: "gina",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $jasminepatel = {
name: "Dr. Jasmine Patel",
id: "jasminepatel",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $sophiachang = {
name: "Sophia Chang",
id: "sophiachang",
met: false,
fucked: false,
arc: 0,
countdown: 0,
respect: 0,
minMoney: 100000000000,
minStatus: 100000000000,
minPhysique: 100000000000,
bio: "",
hint: "",
}>>
<<set $ashly = {
name: "Ashly",
id: "ashly",
met: false,
countdown: 0,
minMoney: 0,
minStatus: 0,
minPhysique: 0,
bio: "",
poolProgress: 0,
}>>
<<set $gracecharis = {
name: "Grace",
id: "grace",
met: false,
bio: "",
countryClubPurchased: false,
}>>
<</silently>><</widget>><<bg exHouse>>
You're thrusting into Jennifer from behind and she's moaning with pleasure. Her body is moving in time with your strokes and you can feel her getting wetter and wetter.
<<speech "jennifer" "$jennifer.name">>Please, don't stop... I'm so close...<</speech>>
Unfortunately for $jennifer.name, every situation has its Pros and Cons.
Pro: Your dick is probably in the tightest ass in the western hemisphere
Con: You're also about to nut in 5 seconds
Hang on, maybe if you go faster she'll cum at the same time?
You pick up the pace, hoping to push her over the edge and maybe buy yourself some time. You can hear the sound of your skin slapping against hers, and Jennifer's moans are getting louder.
<<vid "jennifer" "doggy">>
<<button[[Creampie that shit|Unsatisfactory Ending]]>><</button>><<bg exHouse>>
<<set $jennifer.respect = 0>>
You've got a few more pumps left in the tank but then...
<<vid "jennifer" "creampie">>
<<speech "jennifer" "$jennifer.name">>God dammit $you.firstName, did you just cum?<</speech>>
<<speechYou "you">>Damn shawty I'm sorry, you're just so damn fine<</speechYou>>
<<speechYou "you">>So uh...did you cum?<</speechYou>>
Yikes, she does not look happy
<<speech "jennifer" "$jennifer.name">>Just go to your interview, what time will you be back?<</speech>>
<<speechYou "you">>These are usually all day events, I'll be back tonight<</speechYou>>
<<speech "jennifer" "$jennifer.name">>Ok whatever, hopefully you don't fail this one too<</speech>>
Wow, she really isn't happy, you should probably figure out a way to make it up to her. At the moment, however, you have more pressing concerns.
[[Head to Interview...|Before Job Interview]]<<bg traffic>>
<<advancePeriod 1>>
You turn the key in your girlfriend's trusty 2010 Subaru, and thankfully it manages to start up. That's what makes a Subaru a Subaru, you think to yourself as you make your way to the job interview, reflecting on your past.
In college, you double majored in Math and Economics, ran your school's undergraduate investment fund, and even had an award-winning research paper published on modern portfolio theory. Despite your impressive credentials, none of the other firms gave a damn about you, but a shadowy company called Greystone Associates invited you to apply. While there wasn't much information you could find about Greystone Associates online, you'd heard about the group from some of your professors.
From what you gathered, Greystone managed the wealth of powerful people and groups at home and abroad. They had their fingers in everything from Asian credit swaps to tech startup underwriting. The more you learned, the more intrigued you became.
After two agonizing hours of standstill traffic, you finally manage to reach the building. It's an imposing skyscraper, with the Greystone Associates logo emblazoned at the top.
<img src="media/Scenery/GABuilding.jpeg">
The interview offer asked you to leave the car in the parking deck, and arrive at the lobby by the stated time.
[[Head Inside|FirstTimeInBuilding]]
<<bg exHouse>>
While you usually passed the first round of written tests for jobs, you always manage to screw it up in the second round of interviews.
Due to a combination of performance anxiety and the fact that you'd make any DEI Officer soy the fuck out, you're down to your last job interview. If you screw this one, your choices are between retail or putting off retail for a few more years (grad school).
$jennifer.name breaks your foreboding thoughts, and holds your hand.
<<speech "jennifer" "$jennifer.name">>I know how important this opportunity is for you, my love...<</speech>>
<<speechYou "you">>For us. I won't be able to give us the life we dreamed about if I don't nail this interview.<</speechYou>>
<<speech "jennifer" "$jennifer.name">>Aww baby, I know. It's all the stress you've built up, <<print $you.firstName>>. But don't worry, I have a little something that'll help you blow off some steam.<</speech>>
<img src="media/jennifer/1.jpeg">
<<speech "jennifer" "$jennifer.name">>A <i>tight</i>, <b>wet</b> little something...<</speech>>
<<vid "jennifer" "seduce">>
Fuck yeah!
Which way modern man?
[[Need to suck some mad titties |Losing Your Virginity 2]]
[[Give her that good doggystyle dick|Losing Your Virginity]]<<bg exHouse>>
Holy shit, $jennifer.name's pussy has never felt this wet before
<<vid "jennifer" "missionary">>
<<speech "jennifer" "$jennifer.name">>FUCK! Why are you so...ahh...stupidly big...<</speech>>
Her eyes are closed, and you can tell she's surprisingly close to an orgasm
<<speech "jennifer" "$jennifer.name">>Oh my god, you feel amazing. How do you even know how to do that?<</speech>>
[[Flip her around|Losing Your Virginity]] <<bg lobby>>
The lobby is fairly standard, as far as the lobbies of stupidly rich companies go. Soon after you take a seat at one of the countless corporate sofas, a statuesque woman saunters up to you.
<img src="media/miamelano/red.jpeg">
<<speech "miamelano" "$miamelano.name">>Welcome to Greystone Associates Mr....$you.lastName?<</speech>>
Holy fuck how do they make women this attractive.
<<speechYou "you">>That'd be me. How are you doing today?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>...<</speech>>
She seems to be eyeing your thrifted suit and tie. Bitches be cold.
<<speech "miamelano" "$miamelano.name">>I'm <<textbox "$miamelano.name" "Mia">>, and I manage interactions on the first floor at Greystone.<</speech>>
<<speechYou "you">>So...you're a receptionist?<</speechYou>>
$miamelano.name shoots you a glare that could freeze an erupting volcano. Lmao gottem
<<speech "miamelano" "$miamelano.name">>The Vice President of Domestic Operations is currently out of state, so you'll be meeting with our International VP. Follow me.<</speech>>
The International Operations VP? How are you already meeting with somebody that high up for something as small as a job interview?
[[Follow her|Meet IntVP]]
<<set $miamelano.met to true>>
<<set $miamelano.bio to "The 'Interactions Manager of the First Floor at Greystone' (read: Receptionist), looks like she hates poor people">><<bg office>>
You follow $miamelano.name to a conference room after taking the elevator up several floors. As you enter, you're greeted by a stunning woman with an accent you can't quite place.
<<speech "miamelano" "$miamelano.name">>Mr. $you.lastName is here ma'am.<</speech>>
<<speech "angela" "$angela.name">>Thank you $miamelano.name. You can go back to your duties now.<</speech>>
<img src="media/angela/black.jpeg">
<<speech "angela" "$angela.name">>Mr. $you.lastName, it's a pleasure to finally meet you in person. Would you like some water or coffee before we begin?<</speech>>
Is that a British...no, Australian accent? And damn, those are some tits, just absolutely massive honkers.
<<speechYou "you">>Thank you, I'm good for now.<</speechYou>>
<<speech "angela" "$angela.name">>So, Mr. $you.lastName, can you tell me a bit about your background and experience?<</speech>>
<<speechYou "you">>I have a double major in Math and Economics, and I also have experience in managing the undergraduate investment fund and conducting research on modern portfolio theory. I believe my education and experience would be valuable assets to Greystone Associates.<</speechYou>>
Angela nods and takes notes as you speak. After a few more questions and discussions about your experience and qualifications, Angela leans forward and looks you in the eye.
<<speech "angela" "$angela.name">>Well, Mr. $you.lastName, I must say, you are very impressive. Your qualifications and experience align perfectly with what we're looking for at Greystone Associates.<</speech>>
<<speech "angela" "$angela.name">>You know Mr. $you.lastName, your file doesn't do you justice, when I saw your headshot I didn't know I was interviewing such a stud! <</speech>>
You feel your cheeks flush at the unexpected compliment. While you'd always been a looker in college, you'd kinda let yourself go after being in a long term relationship. As you take a seat, you can't help but notice Angela's ample cleavage and perfectly fitted suit.
She laughs, and then unbuttons her suit jacket, leaning in.
<img src="media/angela/officeFlirt.jpeg">
<<speech "angela" "$angela.name">>Don't tell HR, but why don't you let me take you out to dinner this weekend? My business card has my numbers<</speech>>
The business card reads: <<textbox "$angela.name" "Angela">>, VP, Greystone Associates.
<<speechYou "you">>Laying it on a little thick there, aren't you?<</speechYou>>
<<speech "angela" "$angela.name">>Hopefully not too thick<</speech>>
She winks, and staring down at your pants, she adds with a smile on her face
<<speech "angela" "$angela.name">>Or too big...<</speech>>
With each passing second you can feel your dick stretching against your pants, and Angela notices.
<<speech "angela" "$angela.name">>On second thought, too big might actually be a good thing haha<</speech>>
<<speechYou "you">>I think this interview is probably the most enjoyable one I've had yet<</speechYou>>
<<speech "angela" "$angela.name">>Oh right, about that. There is no interview.<</speech>>
[[Wait, what the fuck?!|GotTheInternship]]
<<set $angela.met to true>>
<<set $angela.bio to "The Vice President of International Operations. You're surprised both by the fact that someone at her level has taken an interest in you and at how big her titties are!">><<set $you.job to "Intern">>\
<<set $you.status to 10>>\
<<bg office>>\
<b>You get the feeling you'll want to pay attention to this, especially if you've been going through the motions up til now ;)</b>
<<speech "angela" "$angela.name">>Don't worry Mr. $you.lastName, you're already hired! We've been monitoring your progress closely since your junior year of college.<</speech>>
<<speechYou "you">>Wait, what do you mean I'm hired? Don't I need to take a test or something?<</speechYou>>
<<speech "angela" "$angela.name">>There's no need for any of that. Greystone Associates tracks all prospective hires for at least two years. We track the candidates aptitude, skill versatility, and personality before extending any hiring offers. <</speech>>
You finally got your foot in the door. All your efforts, hopes, and dreams have been vindicated. But you can't act like a dumbass and say some silly shit right now.
<<speechYou "you">>Thank you for the opportunity $angela.name. What is my job description and compensation?<</speechYou>>
$angela.name smiles,
<<speech "angela" "$angela.name">>Straight to business, I see we made the right choice. For the first month, you'll be working as an Intern in our Investments Division. Your salary will be $100K, and once you become a Junior Analyst, you will be able to receive performance-based bonuses as well.<</speech>>
Six figures, not bad for your first job.
<<speech "angela" "$angela.name">>The rest of today will be spent meeting your team and the other groups. Greystone is divided into three main operations:
- Investments: Your group, focused on trading a wide variety of assets for Greystone clients
- Investment Banking: Focused on structuring deals and facilitating business transactions
- Quantitative Research: Focused on developing computer and mathematical models for trading and research
If you feel overwhelmed by the people you meet and their relationships to you, hit the 'Relationships' tab on the sidebar<</speech>>
Angela looks at you with a glint in her eyes, and says
<<speech "angela" "$angela.name">>I know what kind of man you are. I know you're a man of ambition, and all men like you need women to yield to them. If you want your way with women, you need to have high enough levels of money, respect, status, and physique. Different women will have different standards, and you can check what each woman wants under the Relationships tab.<</speech>>
<<speech "angela" "$angela.name">>To get promoted, improve your stats, and unlock interactions with different women, you'll need to complete missions. <</speech>>
<<speech "angela" "$angela.name">>Power dictates your ability to make certain decisions, investments or otherwise. Not all these decisions may be above the law, which increases government scrutiny on you. There are consequences if your heat reaches 100. If you are unable to make your payments, other consequences exist as well.<</speech>>
<<speech "angela" "$angela.name">>You'll get paid, pay taxes, and pay expenses on a weekly basis.<</speech>>
<<speech "angela" "$angela.name">>I hope you got all that information! Once you're ready, feel free to follow me, and I'll introduce you to the office.<</speech>>
[[Lead the way lady|Meet the Investment Group]]<<bg iOffice>>\
<<speech "angela" "$angela.name">>We'll start with your division, Investments.<</speech>>
<<speechYou "you">>So how many people are in my divison?<</speechYou>>
<<speech "angela" "$angela.name">>Four, including you. You'll report to the team analyst, who reports to the senior analyst. All of you will report to the Portfolio Manager.<</speech>>
<<speech "angela" "$angela.name">>Speaking of which, here's our analyst, and your direct supervisor.<</speech>>
<<image miamal 1>>
<<speech "miamal" "$miamal.name">>Good to meet you $you.firstName, I look forward to working with you!<</speech>>
Another Mia, seems to be a common name around here.
<<image johnny 1>>
A tall, muscular man walks up from behind $miamal.name, and extends his hand.
<<speech "johnny" "$johnny.name">>Hey $you.firstName, what's good man?<</speech>>
<<speechYou "you">>Just learning the ropes, glad to be on the team.<</speechYou>>
<<speech "johnny" "$johnny.name">>Good to hear, you'll be trading with $miamal.name for a few days, but if you have any big fish, I want you to run it by me first. <</speech>>
<<speech "angela" "$angela.name">>And here comes your PM.<</speech>>
<<image alexistexas 1>>
<<speech "alexistexas" "$alexistexas.name">>I see you've met the rest of the team<</speech>>
<<speechYou "you">>Yeah I...<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>I read your file, you managed $5 million in university?<</speech>>
<<speechYou "you">>Well sort off, I had a big team to hel-<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>Tomorrow you'll get $10 million. Don't fuck it up, I need to beat the sons of bitches in Investment Banking.<</speech>>
She wants me, an intern, to manage $10 million? What kind of company is this?
<<speech "angela" "$angela.name">>Remember $alexistexas.name, we're all on the same team! Come on $you.firstName, it's time to checkout the IB division.<</speech>>
<i>Character rename section</i>
<<textbox "$miamal.name" "Mia">>
<<textbox "$johnny.name" "Johnny">>
<<textbox "$alexistexas.name" "Alexis">>
[[Follow her|Meet the IB group]]\
<<set $trading.level to 10000000>>\
<<set $trading.capital to 10000000>>\
<<set $miamal.met to true>>\
<<set $johnny.met to true>>\
<<set $alexistexas.met to true>>\<<bg ibOffice>>\
<<speechYou "you">>What did $alexistexas.name mean by "beating Investment Banking"<</speechYou>>
<<speech "angela" "$angela.name">>Each week, the division which performed the best gets extra bonuses and other rewards. Your division is the newest and least staffed, so the weekly reward usually goes to Investment Banking, or on occassion, the Quants.<</speech>>
On the Investment Banking floor, there was a lot more activity. Makes sense, considering these guys are always in touch with clients and work 90 hours a week.
<<speech "angela" "$angela.name">>They seem pretty busy, so I'll just point everyone out to you.<</speech>>
<<speech "angela" "$angela.name">>The junior analyst is that young lady over there, $emily.name. <</speech>>
<<image emily 1>>
<<speech "angela" "$angela.name">>Her supervisor is $teanna.name, the analyst.<</speech>>
<<image teanna 1>>
<<speech "angela" "$angela.name">>Their boss $jean.name, the Senior Analyst, is that handsome stud.<</speech>>
<<image jean 1>>
<<speech "angela" "$angela.name">>Finally, the Managing Director is $kendrasunderland.name, who is that lady over there.<</speech>>
<<image kendrasunderland 1>>
<i>Character rename section</i>
<<textbox "$emily.name" "Emily">>
<<textbox "$teanna.name" "Teanna">>
<<textbox "$jean.name" "Jean">>
<<textbox "$kendrasunderland.name" "Kendra">>
[[Follow her|Meet the Quant Group]]
<<set $emily.met to true>>
<<set $teanna.met to true>>
<<set $jean.met to true>>
<<set $kendrasunderland.met to true>><<bg qOffice>>
<<speechYou "you">>So who's above the PMs and MD?"<</speechYou>>
<<speech "angela" "$angela.name">>Well that would be me and my coworker, the VPs of International and Domestic Operations. You'll meet her tomorrow. Both of us report to the CEO, who reports to the Board.<</speech>>
The amount of advanced hardware on this level was absurd. The quants seemed to be running some kind of diagnostic issue, and they were running around with their equipment.
<<speech "angela" "$angela.name">>I have to catch a flight to Zurich in a couple hours. Before I leave, you should probably get to know the quants.<</speech>>
<<speech "angela" "$angela.name">>Their newest member is the Junior Researcher, $karlee.name. <</speech>>
<<image karlee 1>>
<<speech "angela" "$angela.name">>The workhorse for the quants is $gabbie.name, their Researcher.<</speech>>
<<image gabbie 1>>
<<speech "angela" "$angela.name">>The Senior Researcher is $mick.name, <</speech>>
<<image mick 1>>
<<speech "angela" "$angela.name">>And last, but not least, the Head Quant is that brilliant woman over there, $eva.name.<</speech>>
<<image eva 1>>
<i>Character rename section</i>
<<textbox "$karlee.name" "Karlee">>
<<textbox "$gabbie.name" "Gabbie">>
<<textbox "$mick.name" "Mick">>
<<textbox "$eva.name" "Eva">>
<<speech "angela" "$angela.name">>And that's a wrap! I'll show you the way out, follow me.<</speech>>
[[Leave with Angela|Say goodbye to Angela]]
<<set $karlee.met to true>>\
<<set $gabbie.met to true>>\
<<set $mick.met to true>>\
<<set $eva.met to true>>\<<bg lobby>>\
<<advancePeriod 1>>\
<<image angela black>>
<<speech "angela" "$angela.name">>There's still a few more support staff you've gotta meet. But don't worry, hun. We're all about serious business here at Greystone, and we can always use another talented player on our team.<</speech>>
Her voice is smooth and sultry, and without warning, Angela's hand slides down your pants, gripping your semi-erect cock firmly. Your mind races as you try to process the sudden rush of sensation, but her playful giggle cuts through the haze, sending shivers down your spine. You can't help but twitch in excitement as she whispers in your ear.
<<image angela cockgrab>>
<<speech "angela" "$angela.name">>Just wanted to see what I'm working with before we meet on Saturday.<</speech>>
<<speech "angela" "$angela.name">>Remember, you're part of the 1% now, don't forget that love.<</speech>>
You're left with a raging hard-on as $angela.name pulls away, her smoky gaze promising more. As you turn to leave, you catch $miamelano.name, the receptionist, staring at you with undisguised curiosity and envy.
[[Head Home|Nasty Surprise]]<<bg exHouse>><<advancePeriod 1>>
<<if $game.mode is "Realistic">>\
You arrive at the 1-room apartment that $jennifer.name and you share. With all the new money you're about to make, you can't wait until you can buy a new place for her.
As you walk up to the door, you notice that the kitchen window blind's are open. You've told $jennifer.name so many times to keep it closed for her safety. You walk up to inspect it, and glance through the window.
<span id="link1"><<link "Check Window">>
<<run $("#link1").toggle()>>
<<run $("#text2").css("visibility", "visible")>>
<<run $("#link2").css("visibility", "visible")>>
<</link>></span><span id="text2" style="visibility: hidden"><<vid jennifer bliss>>
<b>What the fuck does $jennifer.name think she's doing?</b>
[[Leave the hoe|Call Receptionist For Housing][$jennifer.respect += 5]]
[[Move in closer|Watch your ex get railed]]
</span>\
<<set $jennifer.bio to "Your cheating ex (mid), probably too busy throating the next cock she finds">>
<<elseif $game.mode is "Fairy Tale Land">>\
On the way back home, the only thought on your mind is about the new life that you can buy for her. You'll finally have the money you need to upgrade the studio apartment the two of you share, and you can make all of her dreams come true now.
You get a text on your phone, and you diligently pull over to check the message (texting while driving is wrong and the game dev would never encourage that kind of behavior). You had automatically set your phone to silent for the duration of the interview, and you finally get a flood of messages:
<<speech "jennifer" "$jennifer.name">>Hey babe, how'd the interview go?<</speech>>
<<speech "jennifer" "$jennifer.name">>Why aren't you responding?<</speech>>
<<speech "jennifer" "$jennifer.name">>That bad, huh.<</speech>>
<<speech "jennifer" "$jennifer.name">>Jesus fucking Christ...you're actually such a fucking failure.<</speech>>
<<speech "jennifer" "$jennifer.name">>I can't emotionally handle you coming back home after another failed job interview. I don't even know what to do!<</speech>>
<<speech "jennifer" "$jennifer.name">>You're not even a fraction of the man I thought you were. When we were freshman in college, you seemed like a star, and now, you're just some unemployable, fat, lazy, IDIOT!<</speech>>
<<speech "jennifer" "$jennifer.name">>Whatever, there's no way you can provide for me, I should have listened to all my friends ages ago. We're done, don't bother coming home.<</speech>>
Fuck, how could you forget to text $jennifer.name the good news?
<<speechYou "you">>$jennifer.name you got it wrong, I got the job! I'm sorry I forgot to text you, the time just slipped me by<</speechYou>>
You hit send, waiting for the message to be delivered. You wait and wait, but the delivered indicator doesn't come up. Eventually, you feel your heart sink into your gut.
[[She blocked you|Call Receptionist For Housing]]
<</if>>\<<bg ManhattanSkyline>><<advancePeriod 1>>
Your head is wringing.
<<if $game.mode is "Realistic">>\
You can't get the image out of your mind. How could $jennifer.name do this?
<<elseif $game.mode is "Fairy Tale Land">>
The realization that $jennifer.name thought so little of you hits you like a ton of bricks. You wrack your brain, trying to detect any signs of your four year relationship deteriorating. All you can wonder is how $jennifer.name could do this?
<</if>>
You stand facing the majestic city skyline, a symbol of progress and possibility. Today marks the end of an era and the beginning of a new chapter in your life. As the sun sets behind the towering skyscrapers, you can feel the weight of the past lifting off your shoulders.
The betrayal by your ex (mid) hurts, but you finally feel like your life is in control. You've got your dream job, and even though you accomplished your life goal, you don't feel empty.
You can sense the horizon of opportunity.
You can sense something else on the horizon, namely the setting sun, and you realize you probably don't want to be the only homeless finance bro in New York.
Your supervisor, $miamal.name, seemed nice enough. Maybe she can help you out, as a lifeline in this sea of uncertainty.
[[Maybe give her a call?|Seek shelter with Mia]]<<bg exHouse>>
You move in closer, unable to believe your eyes.
<<vid "jennifer" "bullThrust">>
This may break your heart but damn, she looks good while doing it.
You watch as she throws her head back in ecstasy, her skin glistening with sweat. It's a heartbreakingly beautiful sight, even though you know it's wrong.
You're so angry and yet, so captivated.
[[Leave This Slut|Call Receptionist For Housing][$jennifer.respect += 4]]
[[Get a closer look to see what is going on|Jennifer catches you watching her get railed]]<<bg exHouse>>\
<h2>CREAAAKK</h2>
Shit, you'd been meaning to grease the door hinges. The super was never getting around to it anyways.
<<vid jennifer walkIn>>
<<speech "jennifer" "$jennifer.name">>$you.firstName! You weren't supposed to be here until later tonight!<</speech>>
<<speechYou "you">>That's your response??<</speechYou>>
<<speech "jennifer" "$jennifer.name">>What the hell was I supposed to do $you.firstName? You went all minute man on me this morning!<</speech>>
<<speechYou "you">>So you go and spread your legs for the first dude you see?<</speechYou>>
$jennifer.name stares at you awkwardly, and you get a sinking feeling in your stomach.
<<image jennifer cowgirlbbc>>
God damn, this isn't just some random guy, or even the first guy. She's been cheating on you for a while.
$jennifer.name looks at you with a mixture of guilt and desire in her eyes. You can tell she's conflicted, torn between the committment she should have to you and the dick inside her.
<<speech "jennifer" "$jennifer.name">>Can you just wait outside for a bit, we really should talk.<</speech>>
[[Nah fuck that shit|Call Receptionist For Housing][$jennifer.respect += 3]]
[[Fine, I can wait|Wait outside while your ex gets railed]]<<bg exHouse>>\
<<speechYou "you">>Fine. Just finish this shit up quickly.<</speechYou>>
You step outside the apartment you lived in with $jennifer.name for the past few years.
Five, ten, fifteen minutes pass as you stand awkwardly outside the door, with $jennifer.name and her new man showing no sign of stopping. Her moans can be lightly heard from the street, and some of your neighbors look at you strangely. Most glance with pity, but one of your lady neighbors can't control their laughter
A car pulls up at the curb, and you see a man get out of the car. He grins, and walks up to you.
<<set _x to "$jennifer.name's Other Fuckbuddy??">>
<<speech "anon" "_x">>Uhh, is this Julia's place?<</speech>>
<<image jennifer secondGuy>>
<<speechYou "you">>Uhh, no one named Julia lives here?<</speechYou>>
From inside the apartment, you hear $jennifer.name , high-pitched and breathy. She moans, oblivious to your presence:
<<speech "jennifer" "$jennifer.name">>AAHHH! MMMM! FUCK YES! GET YOU ASS IN HERE!<</speech>>
<<speech "anon" "_x">>Ohh you must be Julia's boyfriend!<</speech>>
<<speechYou "you">>Her name is $jennifer.name<</speechYou>>
<<speech "anon" "_x">>Shit man, my bad! Her mouth was kinda muffled when she told me her name haha<</speech>>
<<speechYou "you">>What the fuck, not cool man<</speechYou>>
<<speech "anon" "_x">>You know, I could teach you a thing or two about pleasing a woman. Let me show you how to really treat her.<</speech>>
He winks at you, and walks in.
[[Ok this is too much|Call Receptionist For Housing][$jennifer.respect += 2]]
[[Might as well make the wait worth it.|Watch your ex get dp'd]]<<bg exHouse>>
You walk up to the window, and decide to check out what $jennifer.name arranged for herself.
<<vid jennifer bbcthreesome>>
The air is thick with the musky scent of sex and sweat, and you can hear the sound of flesh slapping against flesh. Your heart races as you peer through the window, watching intently as the scene unfolds.
You've never seen $jennifer.name this turned on. Over the four years you guys dated, she's letting these two people do things to her body she never let you do.
Nearly half an hour passes as you watch these men use $jennifer.name, or rather, watch as <i>$jennifer.name uses these men</i>. $jennifer.name moans and writhes beneath them, her body glistening with sweat as she rocks back and forth on the bed. You can see the pleasure etched on her face, and for a moment, you feel a pang of jealousy. These strangers have given her something you never could.
God knows how much time passes before $jennifer.name finally reaches her peak. Sweat drips down her body as she cries out in ecstasy, her back arching off the bed. The two men continue to pleasure her until she's completely spent, and then they withdraw, leaving her panting and gasping for breath.
<<speech "jennifer" "$jennifer.name">>You can come in now $you.firstName!<</speech>>
[[Talk to Jennifer|Figure out why she cheated]]<<bg exHouse>>\
<<vid jennifer postCum>>
You walk in as the people who just got finished banging your girlfriend walk out. They weren't even wearing fucking condoms.
<<speechYou "you">>How could you do this to me $jennifer.name<</speechYou>>
<<speech "jennifer" "$jennifer.name">>I'm sorry for breaking your trust, but living with you was getting insane.<</speech>>
<<speechYou "you">>What the fuck is that supposed to mean?<</speechYou>>
<<speech "jennifer" "$jennifer.name">>When I fell in love with you, you were on top of your shit. You seemed so smart, so sociable, and you even used to be in shape.<</speech>>
<<speech "jennifer" "$jennifer.name">>Now you're just a bitter, pathetic loser. You can't find a job, and you can't even pleasure your woman.<</speech>>
You smile bitterly, and deeply exhale.
<<speechYou "you">>I got the job<</speechYou>>
There's a moment of silence as you watch $jennifer.name realize how badly she just fucked up.
<<speech "jennifer" "$jennifer.name">>I...baby why didn't you tell me?<</speech>>
<<speechYou "you">>I was planning on surprising you, but I guess you surprised me first.<</speechYou>>
<<speech "jennifer" "$jennifer.name">>I'm so sorry $you.firstName, I didn't know you still had it in you! I would never have done this had I known! Baby please, can we talk about or relationship?<</speech>>
[[Fuck you|Call Receptionist For Housing][$jennifer.respect += 1]]
[[I need time to process this|Call Receptionist For Housing]] <<bg ManhattanSkyline>>
You don't know her number, so you see if you can grab her number from reception.
<<speech "miamelano" "$miamelano.name">>Greystone Associates, state your employee identification or account number.<</speech>>
<<speechYou "you">>Uhh hey, I just got hired today, I was hoping to speak to $miamal.name?<</speechYou>>
<<if $miamal.name == $miamelano.name>>
<<speech "miamelano" "$miamelano.name">>Speaking.<</speech>>
<<speechYou "you">>Hi $miamal.name, it's $you.firstName $you.lastName, your intern. So basically I need a place to stay for the night...<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Wrong $miamal.name, this is Interactions Manager of the Lobby $miamelano.name.<</speech>>
Fuck me, I'm talking to the receptionist. Why do all these women have the same name?
<<else>>
<<speech "miamelano" "$miamelano.name">>$miamal.name left early today.<</speech>>
<</if>>
Ok think, what can you do next? Maybe an old college friend, maybe a nearby motel? Ok think $you.firstName, think...
<<speech "miamelano" "$miamelano.name">>Hey $you.firstName, what are you doing all the way out in the Suburbs?<</speech>>
Hot damn, Greystone is able to run traces on calls? Jesus, who are these people?
<<speechYou "you">>Uhh, until recently I live here.<</speechYou>>
<<speech "miamelano" "$miamelano.name">>What's wrong with Central Park Tower?<</speech>>
<<speechYou "you">>What's Central Park Tower?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Ugh...just come over to this address<</speech>>
You get a text on your phone from one of those 6 digit corporate numbers.
[[Time to go back to the city.|First Time Seeing Central Park Tower]]
<<bg ManhattanSkyline2>>
You pull up to this 'Central Park Tower', and as you pull up to the address...
<<image Scenery apartmentcomplex>>
Was $miamelano.name talking about the big ass blue building? How will you ever afford to live here?
<<button [[Walk into the lobby|Mia reveals last name]]>><</button>>
<<bg apartmentlobby>>
The sheer audacity of the lobby takes you back. In your crumpled shirt and beat up blazer, you feel woefully out of place.
Out of the corner of your eye, you spot $miamelano.name, waiting by a staircase.
<<image miamelano staircase>>
Spiders. Br*tish 'people'. Granny vaginas. You're shocked by the vile things your mind tries to conjure to prevent you from popping a boner.
<<speech "miamelano" "$miamelano.name">>I was supposed to go hit the town with the college girlies tonight, and because of you, I'm now going to be late<</speech>>
<<speechYou "you">>You went to college?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Shut the fuck up and walk.<</speech>>
You two ride the elevator, while $miamelano.name grills you on your lack of onboarding training.
<<speech "miamelano" "$miamelano.name">>Don't you know that a ton of Greystone Associates employees work here? Well at least the ones who aren't poor do.<</speech>>
Not exactly super class-conscious $miamelano.name.
<<speechYou "you">>I don't get my first paycheck until the end of this week. How do I pay the deposit?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Most new hires just use part of their signing bonus to cover the deposit, but that would take too much time, so I just took care of it<</speech>>
Wait, she might not be as bad as you initially thought?
<<speechYou "you">>Thank you, but seriously how much was the deposit?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Ohh about six...<</speech>>
Ok that's not too terrible
<<speech "miamelano" "$miamelano.name">>-ty grand<</speech>>
[[60K??|Mia reveals last name part 2]]<<bg apartmentlobby>>
<<speechYou "you">>How the fuck did you just pay a 60 grand deposit?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Well technically my dad did<</speech>>
You smirk and drop a real zinger on her.
<<speechYou "you">>Damn girl, whose your daddy?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Rufus Vandercunt<</speech>>
WAIT WHAT?
$miamelano.name is a Vandercunt??
The Vandercunts were one of America's founding families, with the most famous of the line being Cornelius Vandercunt. Cornelius, or I guess $miamelano.name's great great great great grandfather, became the first big rail and shipping tycoon during the fucking Gilded Age.
You regain your composure and try to act chill.
<<speechYou "you">>Cool.<</speechYou>>
<<speechYou "you">>So...uh, I'll pay you back when I get the signing bonus.
<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Don't worry about it, money isn't real.<</speech>>
A moment of silence passes.
<<speech "miamelano" "$miamelano.name">>What, you haven't read Das Kapital? Never heard of Fictitious Capital?<</speech>>
This woman took some VERY artistic liberties with Marx. You really wonder where she was taught about Marxism.
<<speechYou "you">>Umm, I don't think that's what Fictitious Capital means.<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Well, you know my Harvard professors would disagree with you.<</speech>>
Yeahhhh, go figure.
[["Here we are"|Your brand new apartment]]
<<set $miamelano.bio to "The 'Interactions Manager of the First Floor at Greystone' (read: Receptionist), looks like she hates poor people. Probably tracks, as she's the heiress of the Vandercunt fortune.">>
<<bg firstApartment>>
<<speech "miamelano" "$miamelano.name">>Well, this is your new home<</speech>>
Why were you even expecting something that wasn't stupidly ostentatious
<<image Scenery firstApartment>>
<<speechYou "you">>Well, thanks for showing me up<</speechYou>>
<<speech "miamelano" "$miamelano.name">>Ok, I've got a few hours. The night is still young!<</speech>>
You manage to catch a glimpse of $miamelano.name from your apartment window.
<<vid "miamelano" "street">>
What a fine fucking end to the night.
You've had a long first day, and as you go to sleep, you slowly absorb the information you've gathered throughout the day.
[[You go to sleep|Your new life begins]]
<<statsmax 5>><<widget "insidertrading">>
<<if $insiderTradeCountdown == 0>>
<<button "You have a new tip" "Trading Results">><<nobr>>
<<set $insiderTradeCountdown = 5>>
<<set $usedInsiderInfo to true>>
<</nobr>><</button>>
<<else>>
No new messages at this time
<</if>>
<</widget>>
<<widget "newsload">>
<<nobr>>
<<set _newsevents = ["Nationwide condom shortage predicted",
"Famous adult star becomes CEO of major pharmaceutical company",
"World's largest sex toy manufacturer files for bankruptcy",
"Pope Francis declares support for legalization of cannabis",
"New study finds that regular masturbation can boost worker productivity",
"Controversial adult website launches new cryptocurrency",
"National sex strike declared in protest of government shutdown",
"Sudden increase in demand for lube causes global shortage of palm oil",
"Famous celebrity sex tape leaked, sparking debate about privacy laws",
"Government announces plan to subsidize development of AI sex robots",
"Major oil spill caused by stripper party on barge, leading to environmental damage",
"International condom company releases revolutionary new product",
"New study shows that regular sex can increase lifespan and decrease healthcare costs",
"Global sperm donor shortage leads to soaring prices for genetic material",
"Luxury lingerie brand goes public, causing stocks to skyrocket",
"Investigation reveals widespread insider trading in adult film industry",
"Hollywood actress launches line of vegan sex toys",
"Large-scale data breach at popular adult website compromises millions of user accounts",
"Rising popularity of BDSM leads to shortage of leather goods",
"Government announces ban on all non-renewable energy sources",
"Adult industry advocates for government subsidies to combat climate change"
]>>
<<set _choiceNumber = Math.floor(Math.random()*_newsevents.length)>>
<<set $trading.currentNews to _newsevents[_choiceNumber]>>
$trading.currentNews
<</nobr>>
<</widget>>
<<widget "macroeconload">>
<<nobr>>
<<set _macrocondition = ["Interest Rates Rise", "Interest Rates Fall",]>>
<<set $_choiceNumber = Math.floor(Math.random()*_macrocondition.length)>>
<<set $trading.currentMacro to _macrocondition[$_choiceNumber]>>
<<print _macrocondition[$_choiceNumber]>>
<</nobr>>
<</widget>>
<<widget "tradeExecution">>
<<nobr>>
<<set _tradingCapital to 0>>
<<set _tradingCapitalIter to 0>>
<<for _i = 0; _i < $trading.investments.length; _i++>>
<<if $trading.currentNews is "Nationwide condom shortage predicted">>
<<if $trading.investments[_i] is "Healthcare" or $trading.investments[_i] is "Consumer Staples">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Famous adult star becomes CEO of major pharmaceutical company">>
<<if $trading.investments[_i] is "Healthcare" or $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "World's largest sex toy manufacturer files for bankruptcy">>
<<if $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Pope Francis declares support for legalization of cannabis">>
<<if $trading.investments[_i] is "Healthcare" or $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "New study finds that regular masturbation can boost worker productivity">>
<<if $trading.investments[_i] is "Healthcare" or $trading.investments[_i] is "Financials">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Controversial adult website launches new cryptocurrency">>
<<if $trading.investments[_i] is "Information Technology" or $trading.investments[_i] is "Financials">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "National sex strike declared in protest of government shutdown">>
<<if $trading.investments[_i] is "Consumer Discretionary" or $trading.investments[_i] is "Utilities">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Sudden increase in demand for lube causes global shortage of palm oil">>
<<if $trading.investments[_i] is "Consumer Staples">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<elseif $trading.investments[_i] is "Materials">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Famous celebrity sex tape leaked, sparking debate about privacy laws">>
<<if $trading.investments[_i] is "Information Technology" or $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Government announces plan to subsidize development of AI sex robots">>
<<if $trading.investments[_i] is "Information Technology" or $trading.investments[_i] is "Industrials">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Major oil spill caused by stripper party on barge, leading to environmental damage">>
<<if $trading.investments[_i] is "Energy">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<elseif $trading.investments[_i] is "Real Estate" or $trading.investments[_i] is "Utilities">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "International condom company releases revolutionary new product">>
<<if $trading.investments[_i] is "Healthcare" or $trading.investments[_i] is "Consumer Staples">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "New study shows that regular sex can increase lifespan and decrease healthcare costs">>
<<if $trading.investments[_i] is "Healthcare" or $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Global sperm donor shortage leads to soaring prices for genetic material">>
<<if $trading.investments[_i] is "Healthcare">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<elseif $trading.investments[_i] is "Materials">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Luxury lingerie brand goes public, causing stocks to skyrocket">>
<<if $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Investigation reveals widespread insider trading in adult film industry">>
<<if $trading.investments[_i] is "Financials" or $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Hollywood actress launches line of vegan sex toys">>
<<if $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Large-scale data breach at popular adult website compromises millions of user accounts">>
<<if $trading.investments[_i] is "Information Technology" or $trading.investments[_i] is "Consumer Discretionary">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Rising popularity of BDSM leads to shortage of leather goods">>
<<if $trading.investments[_i] is "Materials" or $trading.investments[_i] is "Consumer Staples">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Government announces ban on all non-renewable energy sources">>
<<if $trading.investments[_i] is "Energy">>
<<set _tradingCapitalIter = ($trading.capital/3)*0.95>>
<<elseif $trading.investments[_i] is "Utilities">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentNews is "Adult industry advocates for government subsidies to combat climate change">>
<<if $trading.investments[_i] is "Real Estate" or $trading.investments[_i] is "Energy" or $trading.investments[_i] is "Utilities">>
<<set _tradingCapitalIter = ($trading.capital/3)*1.05>>
<<else>>
<<set _tradingCapitalIter = ($trading.capital/3)*(1+(Math.random()*(0.05) -0.025))>>
<</if>>
<</if>>
<<if $trading.currentMacro is "Interest Rates Rise">>
<<if $trading.investments[_i] is "Financials" or $trading.investments[_i] is "Industrials">>
<<set _tradingCapitalIter = (_tradingCapitalIter)*1.03>>
<<else>>
<<set _tradingCapitalIter = (_tradingCapitalIter)*0.99>>
<</if>>
<<elseif $trading.currentMacro is "Interest Rates Fall">>
<<if $trading.investments[_i] is "Financials">>
<<set _tradingCapitalIter = (_tradingCapitalIter)*0.98>>
<<else>>
<<set _tradingCapitalIter = (_tradingCapitalIter)*1.04>>
<</if>>
<<else>>
<<set _tradingCapitalIter = (_tradingCapitalIter)*(1+(Math.random()*(0.1) -0.05))>>
<</if>>
<<set _tradingCapital = _tradingCapital + _tradingCapitalIter>>
<</for>>
<<set $trading.capital to _tradingCapital>>
<</nobr>>
<</widget>><<set $introduction to true>>
With this introduction over, your journey to become the Wall Street Gigachad begins now.
The first arc will start in the morning.
Every week, you'll go to work, earn your paycheck, and work your way through the company. There'll be different missions that'll improve your earning capacity and status.
You can check your relationships with the people in your life under the Relationships tab.
To get with the girls you want, you'll need to earn enough money, and gain enough status and physique.
You can check ongoing missions under the Missions tab.
Under the Finances tab, you can check your balance, income, compensations, taxes, and other running expenses.
[[Wake Up|Home]]
<<nextMorning>>
<<set $mission.arc += 1.00>><<bg lobby>>\
<<set $you.location to "Lobby">>\
<<set $location to [1.00, 1.23, 2.01, 2.02, 2.17, 2.18]>>\
<<if $weekend>>\
The office is officially 'closed', but there's still plenty of employees busting their ass off on the weekend.<</if>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gte 1.02>><<button [[Investment Management]]>><</button>><</if>> <<if $mission.arc gte 1.06>><<button [[Investment Banking]]>><</button>> <</if>><<if $mission.arc gte 1.06>><<button [[Quantitative Research]]>><</button>>
<</if>> <<if $mission.arc gte 1.22>><<button [[Executive Floor]]>><</button>><</if>> <<if $mission.arc gte 1.01>><<button [[Support Staff|Support Floor]]>><</button>><</if>> <<if $mission.arc gte 1.01>><<button [[Bathroom|Office Bathroom]]>><</button>><</if>>
<<button [[Head Outside|Manhattan]]>><</button>><<bg WallStreet1>>\
<<set $you.location to "Manhattan">>\
<<set $location = [1.13, 2.00]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<button [[Greystone Associates|Lobby]]>><</button>> <<button [[Central Park Tower]]>><</button>> <<button [[The Dorsia Club]]>><</button>> <<if $mission.arc gte 1.33>>\
<<button [[SEC Headquarters]]>><</button>>
<</if>>\
<<button [[Call an Uber]]>><</button>>
<<button [[The Bronx]]>><</button>> <<button [[Brooklyn]]>><</button>><<bg bronx>>\
<<set $you.location to "The Bronx">>\
<<button [[The Bluehall]]>><</button>> <<button [[Natty Nicole's Gym]]>><</button>> <<button [[The Trader's Cabaret|Brothel]]>><</button>>
<<button [[Call an Uber]]>><</button>>
<<button [[Manhattan]]>><</button>> <<button [[Queens]]>><</button>> <<button [[Upstate]]>><</button>><<bg queens>><<set $you.location to "Queens">>\
<<button [[Avignon Riverview]]>><</button>> <<if $mission.arc gte 2>><<button [[JFK Airport]]>><</button>><</if>>
<<if $mission.arc gte 3.00>>\
<<button [[General Hospital]]>><</button>>
<<button [[Columbus University]]>><</button>>
<</if>>
<<button [[Call an Uber]]>><</button>>
<<button [[The Bronx]]>><</button>> <<button [[Brooklyn]]>><</button>> <<button [[Long Island]]>><</button>><<bg brooklyn>>\
<<set $you.location to "Brooklyn">>\
<<button [[The Brooklynite]]>><</button>> <<button [[The Port of New York]]>><</button>> <<if $mission.arc gte 1.25>><<button [[Elysian Essentials]]>><</button>><</if>> <<if $mission.arc gte 3.00>><<button [[The Mafia]]>><</button>><</if>>
<<button [[Manhattan]]>><</button>> <<button [[Queens]]>><</button>><<bg longisland>><<set $you.location to "Long Island">>\
<<if $mission.arc gt 1.21>><<button [[West Egg]]>><</button>><</if>>
<<button [[Call an Uber]]>><</button>>
<<button [[Queens]]>><</button>>
<<bg brothel>>\
<<set $you.location to "Brothel">>\
<<if $violet.met is true>>\
<<button "Meet with a girl" "Brothel Backroom">><</button>>
<<speech "violet" "$violet.name">>Hey $you.firstName, like what you see today?<</speech>>
You also spot $tommy.name, discreetly seated in a location that allows him to monitor all the entrances.
<<speech "tommy" "$tommy.name">>$you.firstName my man, need me to hook you up with something?<</speech>>
<<button "Buy Weed ($10/g)" $you.location>><<set $you.items["weed"] += 1>><<payment 10>><</button>> <<button "Buy Cocaine ($100/g)" $you.location>><<set $you.items["cocaine"] += 1>><<payment 100>><</button>>
<<else>>\
You've gone to strip clubs once or twice in your life, but this place definitely has some more...advanced shit going on. This place isn't nearly as seedy as you expected it to be-in fact, the place looks crazy affluent. The clients seem to all be Manhattan-types, and the place is abuzz with young professionals, flush with cash.
<<speech "violet" "$violet.name">>First time?<</speech>>
<<image violet 1>>
<<speechYou "you">>Yeah haha, you work here?<</speechYou>>
<<speech "violet" "$violet.name">>Kinda...I'm the proprieter of this establishment<</speech>>
<<speechYou "you">>Well hello madam...<</speechYou>>
The two of you laugh, and she places her arms around your shoulder, in a way that somehow doesn't feel contrived. You stare at the lapel on her chest, which simply has <<textbox "$violet.name" "Violet">> inscribed on it.
<<speech "violet" "$violet.name">>Like what you see?<</speech>>
<<speechYou "you">>Ohh, no, I was just trying to catch your name.<</speechYou>>
<<speech "violet" "$violet.name">>It's ok to look, but I'm afraid that as just a $you.job, I'm a little bit out of your price range. Some of my other girls may be more fitting...<</speech>>
<<speechYou "you">>Wait, how did you know...ohh the arm<</speechYou>>
$violet.name smiles, revealing the business card she'd taken from your breastpocket.
<<speech "violet" "$violet.name">>Enjoy your time here, I left a little something behind to make your evening just a little more enjoyable!<</speech>>
You reach into your breastpocket and feel around, pulling a small plastic bag with a white powder...oh fuck<<set $you.items["cocaine"] += 1>>
<<speech "violet" "$violet.name">>There's plenty more where that came from...<</speech>>
A pretty muscular dude walks up to you, and grins.
<<image tommy 1>>
His tank top has a lapel similar to $violet.name, that says <<textbox "$tommy.name" "Tommy">>
<<speech "tommy" "$tommy.name">>Hey bro, if you need any weed or coke, I'm your guy. I'm $violet.name's main plug, so let me know if you need anything.<</speech>>
<<speechYou "you">>You got any Quaaludes?<</speechYou>>
<<speech "tommy" "$tommy.name">>The fuck? You think this is the Wolf of Wall Street? The last batch was made in '85, that shit won't even give you a buzz after 40 years.<</speech>>
Seductively, $violet.name whispers in your ear, a warm, sultry sound
<<speech "violet" "$violet.name">>The first one is...on the house<</speech>>
<<button "You watch her disappear into the crowd" "Brothel">><<set $violet.met to true>><<set $tommy.met to true>>\<</button>>
<</if>>
<<button [[The Bronx]]>><</button>><<bg Suburbs>>\
<<set $you.location to "Upstate">>\
<<button [[Your Ex's House]]>><</button>> \
<<if $mission.arc gte 1.13>><<button [[Foresight Market Research]]>><</button>><</if>> <<if $mission.arc gte 2.10>><<button [[Country Club]]>><</button>><</if>>
<<button [[Call an Uber]]>><</button>>
<<button [[The Bronx]]>><</button>><<bg theBrooklynite>>\
<<set $you.location to "The Brooklynite">>\
<<if $karlee.arc gt 1.03>><<button "$karlee.name's place" "Karlee Place">><</button>><</if>> <<if $alex.arc gt 1.01>><<button "$alex.name's place" "Alex Place">><</button>><</if>>
<<button [[Brooklyn]]>><</button>><<bg avignonRiverview>>\
<<set $you.location to "Avignon Riverview">>\
<<if $skylar.arc gt 1.0>><<button "$skylar.name's Place" "Skylar Place">><</button>><</if>>
<<button [[Queens]]>><</button>>
<<bg DorsiaClub>>\
<<set $location to [1.09, 1.10, 1.12, 1.26]>>\
<<set $you.location to "The Dorsia Club">>\
<<set _gabrielaarc to [1.01, 1.02]>>\
<<set _alexarc to [1.0, 1.01]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _gabrielaarc.contains($gabriela.arc) && $gabriela.countdown == 0 && $period == 3>>
<<girlcheck $gabriela _gabrielaarc>>
<<elseif _alexarc.contains($alex.arc) && $period == 1 && setup.DAYS[$day % 7] is "Friday">>
<<girlcheck $alex _alexarc>>
<</if>>\
<<button [[Head to Bathroom|DorsiaClubBathroom]]>><</button>>
<<button [[Head Outside|Manhattan]]>><</button>>\<<bg exHouse>>\
<<set $you.location to "Your Ex's House">>\
<<if $game.mode is "Fairy Tale Land">>\
You decide to keep on driving past $jennifer.name's studio apartment, you have no reason to be here.
<<elseif $period lte 2>>\
$jennifer.name's car isn't in the driveway. Not that you care where she is; she's your ex and you hate her. Right?
<<elseif $period == 3>>\
Seems like $jennifer.name's car is in the driveway. All of a sudden, the kitchen blind's open, and you see $jennifer.name staring directly at you.
She laughs, and without closing the blinds, she leaves the kitchen. Moments later, you see the living room blinds open, as if she's inviting you to peek inside.
<span id="link1"><<link "Take the bait?">>\
<<run $("#link1").toggle()>>
<<run $("#text2").css("visibility", "visible")>>
<<run $("#link2").css("visibility", "visible")>>
<</link>></span><span id="text2" style="visibility: hidden">\
Play stupid games, win stupid fucking prizes.
<<vid jennifer missionary>>
Hmm, he definitely isn't either of the guys who she cheated on you with, although those were the only two guys that you actually knew were fucking her. Judging by $jennifer.name's noises, it seems like he's fucking her better than you or those other two guys.
</span>\
<<elseif $period == 4>>\
Seems like $jennifer.name's car is in the driveway. The living room blinds are open, and you notice that $jennifer.name is looking back at you, laughing.
She walks away, leaving the living room blinds open, as if she's inviting you to peek inside.
<span id="link1"><<link "Take the bait?">>
<<run $("#link1").toggle()>>
<<run $("#text2").css("visibility", "visible")>>
<<run $("#link2").css("visibility", "visible")>>
<</link>></span><span id="text2" style="visibility: hidden">
Play stupid games, win stupid fucking prizes. Seems like he's the first guy that you found fucking $jennifer.name.
<<vid jennifer bliss>>
After he finishes up with your ex, they cuddle and go to sleep together. Is this her new boyfriend?
</span>
<</if>>
<<button [[Go back into town|Upstate]]>><</button>><<bg fmr>>\
<<set $you.location to "Foresight Market Research">>\
<<set $location = [1.14, 1.15, 1.16, 1.17, 1.3]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>
<<if $mission.arc gt 1.31>><<button "Talk to $alina.name" "AlinaLopezWork">><</button>><</if>>
<<button [[Leave|Upstate]]>><</button>><<bg iOffice>>\
<<set $you.location to "Investment Management">>\
<<set $location = [1.02, 1.03, 1.04, 1.05, 1.08, 1.19, 1.21, 1.28, 1.29, 1.31, 1.32, 1.33]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gte 2.18 or ($mission.arc gte 1.04 and $mission.arc lt 2)>>\
<<button [[Trading Terminal|Trading Screen]]>><</button>>
<</if>>
<<button [[Lobby]]>><</button>><<bg ibOffice>>\
<<set $you.location to "Investment Banking">>\
<<set $location to [0,1.06]>>\
<<set _emilyarc to [0, 1.0, 1.01]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _emilyarc.contains($emily.arc) && $emily.countdown == 0 && $mission.arc gt 1.21 && $you.physique gt 1>>\
<<girlcheck $emily _emilyarc>>
<</if>>
<<button [[Lobby]]>><</button>><<bg qOffice>>\
<<set $you.location to "Quantitative Research">>\
<<set $location to [0, ]>>\
<<set _karleearc to [0.0, 1, 1.01]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _karleearc.contains($karlee.arc) && $karlee.countdown == 0 && $mission.arc gt 1.25>>\
<<girlcheck $karlee _karleearc>>
<</if>>\
<<button [[Lobby]]>><</button>><<bg efOffice>>\
<<set $you.location to "Executive Floor">>\
<<set $location to [1.22, 2.01, 2.17]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<else>>\
<<if setup.DAYS[$day % 7] is "Friday" and $period == 2 and $mission.arc gt 1.24>>\
<<if $trading.capital gte 3.5*$trading.level>>\
Once you reach the Executive Floor, you see $jean.name in front of $kendralust.name's door.
<<speech "jean" "$jean.name">>Hey man, you down to run a train on this bitch tonight? If not, I got a few other baddies I can hit up.<</speech>>
[[Sure, why not?|KendraDPReward]]
[[I think I've got it tonight|KendraSoloReward]]
<<elseif $game.mode is "Fairy Tale Land">>\
You didn't make your earnings benchmark this week.
<<else>>\
Once you reach the Executive Floor, you notice it's eerily quiet. In a flash, you remember that the ending tally placed the Quant division in first place. Maybe if you had made more money, the situation would be different.
[[Maybe the VP will still let you hit?|KendraPunishment]]
<</if>>\
<</if>>\
<</if>>\
<<button [[Lobby]]>><</button>><<nextMorning>>\
<<bg ManhattanSkyline>>\
<<set _sleepPlace to "Home">>\
<<if $you.geography is "DC">>\
<<set _sleepPlace to "Georgetown">>\
<</if>>
<<if $you.cash gt 0 and $you.heat lt 100>>\
You're rolling in cash in your dreams
<<button "Wake Up" _sleepPlace>><</button>>
<<elseif $you.heat gte 100>>\
You've barely gone to sleep, when you hear the door to your apartment get blown open. <<set _x to "FBI">>
In a start, you wake up. Whoever the fuck just knocked down your door probably wants your head on a platter too. There's no exits, and you're trapped in. You hear multiple footsteps outside, and they're rapidly headed to your door.
You jump out of the bed, and you accidentally dislodge part of the heavy wooden headrest. It crashes to the floor with a heavy bang, and you turn around in shock. From outside the door you hear a young, strong voice yell:
<<speech "anon" "_x">>This is the FBI executing a no-knock warrant for $you.firstName $you.lastName!<</speech>>
Fuck, they think that was a gunshot! How the hell are you going to get out of this situation? A different. more gruff voice yells out this time:
<<speech "anon" "_x">>DROP YOUR WEAPON OR WE WILL FI-<</speech>>
All of a sudden, a series of bullets rip through the door, hitting you across your chest. The bedroom door flies off it's frame, as countless federal agents pour in.
<<speech "anon" "_x">>Fuck rookie, why'd you shoot? He wasn't even armed?<</speech>>
<<speech "anon" "_x">>But the bang? Wasn't that a gunshot?<</speech>>
<<speech "anon" "_x">>Man, the SEC is going to be pissed that we couldn't bring him in alive<</speech>>
You drop to floor. There were no high philosophical inquiries on what you could have done differently. Your life didn't flash before your eyes. You were dead before you even hit the ground.
<<button "Start Over" "Title">><</button>>
<<elseif $you.cash lt 0>>\
Before you can go to sleep, you see an insanely ripped guy sitting at the foot of your bed.
<<speech "you" "WSGC">>What's good $you.firstName.<</speechYou>>
<<speechYou "you">>Uhh who the fuck are you?<</speechYou>>
<<speech "you" "WSGC">>Isn't it obvious? I'm the Wall Street Giga Chad. You're playing my fucking game, but some respect on the name<</speechYou>>
<<speechYou "you">>Ah shit, I'm sorry man, what can I do for you?<</speechYou>>
<<speech "you" "WSGC">>Look dude, you're broke. How the fuck did you lose all your money? I literally made this game so that while money might limit you from fucking some girls, you should at least have a little dough in the bank.<</speechYou>>
<<speechYou "you">>I'm sorry for being fiscally irresponsible Wall Street Giga Chad. <</speechYou>>
The two of you hug, and you can feel his big, burly arms around you. Dang, this guy works out! He seems super smart too. And what about that chiseled face?
<<speech "you" "WSGC">>It's ok bro. Look, I'll give you a little cash, but try not to fuck up again. Afterall, you're a Wall Street man, you're too big to fail!<</speechYou>>
<<set $you.cash to 50000>>
Wow, this guy is so nice, maybe you should visit his Patreon and give him more money!
<<button "Wake Up" _sleepPlace>><</button>>
<</if>>
<<bg ManhattanSkyline>>\
For veteran players, choose which Story Arc and Game Mode to start with
<i>Realistic (NTR): Remember, she's not yours, it's just your turn. You live in NYC, and frankly, you're not exactly the most high status guy at the moment. As you gradually level yourself up, more and more women will start to flock to you, and you can build your harem.</i>
<i>Fairy Tale Land (Vanilla): Your basic porn game mode, every girl you stick your dick into is a virgin (even the MILFs). Life is difficult enough, why shouldn't you just have a game where every single girl in existence only has eyes on you?</i>
<<radiobutton "$game.mode" "Realistic">> Realistic
<<radiobutton "$game.mode" "Fairy Tale Land">> Fairy Tale Land
<<button "Arc 1/Skip Introduction" "Enter the Gigachad">>\<</button>>
<<button "Arc 2" "Coins and Cronies">>\<</button>>
<<button "Freeplay" "CIA Coup 1">>\<</button>><<if $you.location is "Home">>\
It's probably a good idea to head to work bright and early for your first day
<<else>>\
It's your first day at work, and you come in at 4 AM. It goes beyond just making a great impression on your bosses; this is also when pre-market trades begin executing.
Normally you try to avoid trading in the first half hour, but it's a good time to get a pulse on some of the bigger players.
As you stroll through the lobby, a sharply dressed woman in the lobby walks up to you.
<<image kendralust 1>>
<<speech "kendralust" "$kendralust.name">>Are you Mr. $you.lastName?<</speech>>
She hands you a business card that reads: <<textbox "$kendralust.name" "Kendra">>, VP, Greystone Associates.
<<speechYou "you">>Ah yes, I was supposed to meet you yesterday, you're the VP of Domestic Operations, right?<</speechYou>>
<<speech "kendralust" "$kendralust.name">>Indeed, there's still a few onboarding tasks left. Like collecting your bonus.<</speech>>
<<speech "kendralust" "$kendralust.name">>Head up to Accounting on the Support Floors, all your payroll information will be sorted there.<</speech>>\
<<missionAdvance>>\
<<set $kendralust.met to true>>\
<<set $kendralust.bio to "The Vice President of Domestic Operations. She's seems incredibly intelligent, and you figure she'll be less malleable than other people at Greystone. Even though she's got a few years on you, you know she probably still looks great under that corporate attire.">>\
<</if>>\
<<set $paymentCounter to 4>><<bg support>>\
<<set $you.location to "Support Floor">>\
<<set $location to [1.01, 1.2, ]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gt 1.02>><<button [[Accounting|Blake's Office]]>><</button>><</if>> <<if $mission.arc gt 1.19>><<button [[Risk Management|Adriana's Office]]>><</button>><</if>> <<if $mission.arc gte 1.34>><<button [[Legal|Nikki's Office]]>><</button>><</if>>
<<button "Lobby" "Lobby">><</button>>You're surprised that the Support Floors are just as well maintained as the other floors. In fact, as you make your way through Greystone Associates, it seems as though much of the office is occupied by these support staff.
Greystone always struck you as a lean outfit, why would they maintain all this overhead? How many accountants, lawyers, and supporting roles does an investment fund need?
You get to the accounting floor, and see rows upon rows of accountants. After speaking with someone who looked like a mailroom boy, you're directed towards an emblazoned door.
The door reads
<<textbox "$blake.name" "Blake">>, CPA
and you give it a good knock.
An attractive lady swings her head out the door, and curtly asks:
<<speech "blake" "$blake.name">>What can I do for you?<</speech>>
<<image blake 1>>
<<speechYou "you">>I'm here to collect my signing bonus and set up payroll?<</speechYou>>
<<speech "blake" "$blake.name">>Oh, you're Mr. $you.lastName, right? Come on in.<</speech>>
As you follow $blake.name into the room, you notice a Princeton degree on the wall, and a PwC sweater slung over a desk. Gross. As $blake.name gets her papers ready, you ask
<<speechYou "you">>How long were you with Piss Waterhouse Cumper?<</speechYou>>
<<speech "blake" "$blake.name">>I interned in college and then worked with them for about two years. Greystone poached me, and I've been here ever since<</speech>>
<<speech "blake" "$blake.name">>Ok found the check<</speech>>
[[She hands it to you and you nearly cream your pants.]]
<<set $blake.met to true>>\
<<set $blake.bio to "Your reliable accountant, handling your finances with precision and efficiency. She's got that Ivy League resting bitch face that would look good around your cock">>\
<<set $blake.arc to 1.00>>\
<<girlAdvance $blake>><<bg support>><<set $you.location to "She hands it to you and you nearly cream your pants.">>\
100K in the bank, you'll try not to blow it all on coke and whores
<<image Scenery GigachadCartoon>>
<<speech "blake" "$blake.name">>Don't spend it all at once, you won't be getting this kind of lump sum payment for a while. I was able to make this bonus tax-free, but all your future income will be taxed. Given your current income, you'll pay 30% of your income out in taxes. Your bonuses will be taxed 37%.<</speech>>
<<speechYou "you">>Fuck taxes<</speechYou>>
<<speech "blake" "$blake.name">>Greystone provides accounting services for all it's employees. We can bring that rate down to about 5%, but our retainer fee is 5% of your income, bringing the effective rate to 10%.<</speech>>
<<speechYou "you">>I think I like that<</speechYou>>
<<speech "blake" "$blake.name">>Come back here at any time, and we can get you set up.<</speech>>
<<speechYou "you">>So how do I get my weekly salary?<</speechYou>>
<<speech "blake" "$blake.name">>It will be direct deposited into your account at the end of the week.<</speech>>
Just then, $blake.name's desk phone rings.
<<speech "blake" "$blake.name">>$blake.name's office, Accounting...Yes Ma'am, he's here with me...yes, I'll tell him to do that.<</speech>>
Out of all the accountants, how did $kendralust.name figure out you were with $blake.name?
<<speech "blake" "$blake.name">>That was the Domestic Operations VP, you must be pretty important around here.<</speech>>
<<speechYou "you">>Hey, what can I sa...<</speechYou>>
<<speech "blake" "$blake.name">>She also told you to get your ass up to the Investment Management floor.<</speech>>
<<button "Shit, see you around" "Lobby">><</button>>\
<<paycheck 100000>>\
<<set $you.income = 100000>>\
<<set $you.tax = 0.7>>\
<<missionAdvance>>\
<<set $blake.hint to "Visit $blake.name's office to get your tax work done">>The floor is filled with activity, as traders, analysts, and executives prepare themselves for the market open.
$kendralust.name spots you, and as she walks towards you, people scurry out of the way. Truly some Old Testament shit.
<<speech "kendralust" "$kendralust.name">>Good to see you got sorted out with Accounting. Each morning will start with team meetings, where investment ideas are shared and capital parameters are set.<</speech>>
You two briskly walk along the floor, and you can see your group come into view. You see $johnny.name and $miamal.name waiting, alongside a few dozen other analysts.
<<speech "kendralust" "$kendralust.name">>Where's the hell is the portfolio manager?<</speech>>
<<speech "johnny" "$johnny.name">>Sorry ma'am, not sure. Hey, you're $you.lastName, right? Run to $alexistexas.name's office and get her.<</speech>>
[[Get the PM|Arc1.02cont1]]<<bg iOffice>><<set $you.location to "Arc1.02cont1">>\
As you make your way to the PM's office, you notice that the blinds are barely open, casting the room in a dim, mysterious light. You can't help but feel a little curious about what might be going on inside.
<<image you peeking>>
<<speechYou "you">>WOWZA<</speechYou>>
The first time you saw $alexistexas.name, you thought she was kinda meh. But that's cause you only saw her from the front.
<<image alexistexas officeLookBack>>
And fuck, she caught you staring.
You feel a sudden rush of excitement and curiosity, your eyes drawn to the curves of her body and the way she moves with such grace and confidence. As she catches you staring, you feel a wave of embarrassment wash over you, but you can't help but admire the way $alexistexas.name pulls down her skirt and walks out of the room with such effortless poise.
<<speech "alexistexas" "$alexistexas.name">>Well, looks like you caught me changing. On your first day, no less. Guess I'll try not to spill coffee on myself again.<</speech>>
You feel your heart skip a beat as she speaks, your mind racing with a million thoughts and emotions.
[[I sincerely apologize ma'am|Arc1.02cont2]]
[[That's a fine ass you got there|Arc1.02cont2][$alexistexas.respect += 5]]\
<<set $alexistexas.bio to "Your incredibly competitive portfolio manager. She's going to ride you hard at this job (hopefully in more ways than one).">><<bg iOffice>><<set $you.location to "Arc1.02cont2">>\
$alexistexas.name smirks, and you can tell her professional demeanor cracked a bit.
<<speech "alexistexas" "$alexistexas.name">>Well, we should probably get back to the rest of the group.<</speech>>
<<button"Walk back with her" "Investment Management">><</button>>
<<missionAdvance>>The meeting proceeds as expected. It seems that $alexistexas.name increased cap raises across the board, and it is clear to everyone that she really wants to beat the Investment Banking division.
You make your way back to the desk, and see $miamal.name waiting for you.
<<image miamal 2>>
<<speech "miamal" "$miamal.name">>Heya $you.firstName, how's your first day been? I know getting my signing bonus was CRAZY after waitressing throught college.<</speech>>
Your boss doesn't seem so bad
<<speechYou "you">>Yeah, a hundred grand is pretty great<</speechYou>>
<<speech "miamal" "$miamal.name">>A hundred thousand dollars? My signing bonus was 77K?<</speech>>
<<speechYou "you">>What can I say, the gender pay gap must be real<</speechYou>>
The two of you laugh, as $miamal.name says
<<speech "miamal" "$miamal.name">>Well, wait until you hear about the promotion bonus that comes with becoming an analyst.<</speech>>
Market open is half an hour away, and $miamal.name points to one of the many desktops.
<<speech "miamal" "$miamal.name">>This is your terminal, which you'll use to execute trades.<</speech>>
<img src="media/Scenery/terminal.jpeg">
<<speech "miamal" "$miamal.name">>You'll be able to view allocated capital, current news, and macroeconomic conditions. You can invest in broad market sectors given the news and these conditions.<</speech>>
Up until the opening bell, $miamal.name shows you the controls.
<<speech "miamal" "$miamal.name">>When you're ready, feel free to hit the Trading Terminal button.<</speech>>
<<missionAdvance 1>>\
<<set $miamal.bio to "For an analyst at a high powered Wall Street firm, she seems nice enough, but she's somehow making crazy returns. The 80 hours a week don't seem to stop her from looking like fucking gorgeous as well.">><<bg terminal>>\
<<set $you.location to "Trading Screen">>\
<<if $weekend or $period > 1>>\
Markets are closed
<<else>>\
<h1>Welcome, $you.firstName $you.lastName</h1>
Your capital allocation is $<<print $trading.capital.toLocaleString()>>
News Highlights: <<newsload>>
Macroeconomic Conditions: <<macroeconload>>
Instant Bloomberg Messages; <<insidertrading>>
Investment 1: <<listbox "$investment1" autoselect>>
<<optionsfrom $sectors>>
<</listbox>>
Investment 2: <<listbox "$investment2" autoselect>>
<<optionsfrom $sectors>>
<</listbox>>
Investment 3: <<listbox "$investment3" autoselect>>
<<optionsfrom $sectors>>
<</listbox>>
<<button [[Execute Trades|Trading Results]]>><</button>>
<</if>>
<<button "Back" "Investment Management">><</button>><<bg terminal>>\
<<if $usedInsiderInfo>>\
<<speech "alina" "$alina.name">>Hey $you.firstName, got a new tip for you:<</speech>>
<<set _newsevents = ["a new form of OTC male birth control is about to get approved by the FDA.", "a famous Twitch star's sex tape is about to get leaked by a public production company.", "a VR company is about to announce a new line of even more realistic fleshlights and 8K videos.", "a famous female rapper is about to release a new sex toy, 'for women, designed by women'.", "the paperwork is about to get finished on a new strip club in Las Vegas, that focuses on hiring former A-list actresses.", "a repressive foreign country is about to rollback it's laws on pornography production and consumption.", "major banks are about to announce an OnlyFans competitor, that let's site users borrow money and use their personal property as collateral to pay sex workers."
]>>
<i>Foresight Market Research has credible information that indicates <<pickOne _newsevents>></i>
Trades successfully executed
<<set _factor to random(200, 500)>>
<<set _factor = _factor/100>>
<<set $trading.capital = $trading.capital*_factor>>
<<set $you.heat += 5>>
Total Portfolio Value: $<<print $trading.capital.toLocaleString()>>
<<set $usedInsiderInfo to false>>
<<button "Exit" "Investment Management">><</button>>
<<else>>
<<set $trading.investments to [$investment1, $investment2, $investment3]>>
Trades successfully executed
<<tradeExecution>>
Total Portfolio Value: $<<print $trading.capital.toLocaleString()>>
<<button "Exit" "Investment Management">><</button>>
<</if>>
<<advancePeriod 1>><<if $period == 0>>
Get to trading $you.firstName!
<<else>>
The opening bell was brutal. $alexistexas.name was berating a team of analysts, and $johnny.name was frantically running between teams.
Your coworkers were all visibly stressed, except for $miamal.name, who seemed oddly relaxed.
<<image miamal seated>>
<<speech "miamal" "$miamal.name">>How was your first time prop trading?<</speech>>
<<speechYou "you">>Not too shabby, how'd you do?<</speechYou>>
<<speech "miamal" "$miamal.name">>Uhh, I was only able to 2X the account size<</speech>>
<<speechYou "you">>Double?<</speechYou>>
<<speech "miamal" "$miamal.name">>Normally I do better but this weekend every index just gapped down.<</speech>>
Holy fuck, this woman is a goddess.
<<speech "miamal" "$miamal.name">>Well, I think I'm going to head out, I've probably done my work for today and tomorrow. Why don't you join me for lunch at the Dorsia Club down the street?<</speech>>
As you start to walk out, $alexistexas.name stops you.
<<speech "alexistexas" "$alexistexas.name">>Nope, sit the fuck back down $you.firstName. Until you start earning like $miamal.name, you work until market close.<</speech>>
$miamal.name sighs.
<<speech "miamal" "$miamal.name">>Ok, how about we meet for dinner this Wednesday Afternoon?<</speech>>
<<speechYou "you">>Sounds like a plan.<</speechYou>>
You should probably get back to trading.\
<<missionAdvance 1>><</if>>
<<if $period == 1>>\
Keep on slinging trades cowboy
<<else>>\
Compared to $miamal.name, your first day was mediocre at best, but hell, her risk management must be crazy. The Investment Management division, however, fared far worse than you. You find $alexistexas.name in your office, her demeanor entirely different from earlier today.
<<image alexistexas office>>
<<speech "alexistexas" "$alexistexas.name">>Heyyy Mr. $you.lastName...<</speech>>
Ah shit. There's only way you treat two-faced mother fuckers, even if they are your boss.
<<speechYou "you">>Alright, what's the deal, $alexistexas.name? You didn't even give me a fucking lunch break. What do you want now, and it better be worth it.<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>I need you to go to the IB floor and figure out how much they made today.<</speech>>
<<speechYou "you">>Now why the fuck should I do that?<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>Any man would be drooling to do this task... but fine. Do you know what you'll get if we win this week's competition?<</speech>>
<<speechYou "you">>Yeah a boatload of cash.<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>That's not the only benefit employees get...at least not the male employees...<</speech>>
A moment of silence passes between you as you try to figure out if she is mad or sane.
<<speech "alexistexas" "$alexistexas.name">>The best male performer is..aha...offered to $kendralust.name, the VP. Don't ask me why, probably has to do with her getting passed over for CEO and wanting to motivate the employee base.<</speech>>
This job fucking slaps. Six-figure salaries and hot milfs as motivation? Let's do this!
<<speech "alexistexas" "$alexistexas.name">>You better hurry up unless you want $jean.name to pound her pussy first.<</speech>>\
<<missionAdvance 1>>
<</if>>You look around the IB floor, and compared to the insanity of the trading floor, everything seemed relatively calm. You try to find someone near your level on the corporate hierarchy, and you spot the attractive IB analyst you were introduced to yesterday. When you get a better look at her, you feel like you've seen her before somewhere.
<<image emily 1>>
<<speechYou "you">>Hey $emily.name, got a quick question for you<</speechYou>>
<<speech "emily" "$emily.name">>You're the new guy, right?<</speech>>
<<speechYou "you">>Yeah, $kendralust.name sent me to check your guys' progress for the day <</speechYou>>
$emily.name starts laughing, and says
<<speech "emily" "$emily.name">>Don't worry, I know $alexistexas.name sent you. That jealous bitch probably can't afford the next installment on that new Hampton property she was bragging about.<</speech>>
The Hamptons? $alexistexas.name didn't look more than forty, how much money does upper management make?
<<speechYou "you">>So how much did IB rake in today?<</speechYou>>
$emily.name giggles, pulls you in, and whispers an astoundingly large number.
<<speechYou "you">>You guys pull that much in one day?<</speechYou>>
<<speech "emily" "$emily.name">>Nahh, more like a month. This tech company hired a CEO who majored in "Ethical Finance" from Wharton. They're an ESG favorite, and the CEO just finished a merger with a really cool socialist commune! They came to us to take care of it. Because the commune doesn't recognize the legitimacy of the US, it didn't actually have a legal structure, so we finished the work in a day.<</speech>>
<<speechYou "you">>Haha, man these disconnected Tech CEOs who aren't connected to their product sure are dumb<</speechYou>>
$emily.name frowns, and looks confused.
<<speech "emily" "$emily.name">>I think it was a brilliant business decision, and the Harvard Business Revew agrees with me.<</speech>>
She's technically your superior, and you aren't trying to make a enemies on the first day.
You decide to text $alexistexas.name, and she texts you back
<<speech "alexistexas" "$alexistexas.name">>God dammit, of course they pulled off some stupidly lucrative deal. You can just go back home Mr. $you.lastName.<</speech>>
<<missionAdvance 1>>
<<set $emily.bio to "The cute analyst who works in Investment Banking. You swear that you must have seen her somewhere before.">>Your first day at work: not too shabby.
You're surrounded by hot ass women, but you feel like you still have to upgrade yourself.
There's your lunch with $miamal.name in two days (Wednesday) and dinner with $angela.name on Saturday.
In the meanwhile, feel free to travel across the city, and visit the sites. You can always check upcoming deadlines and hints in the missions tab.
<<missionAdvance 1>>
<<set $missionCountdown to 2>><<if $period == 1 >>
Due to the massive merger IB managed to land on Monday, Investment Management is leagues behind. $alexistexas.name has been especially hard on everyone, but now that it's lunchtime, things are looking up.
<<image miamal 1>>
<<speech "miamal" "$miamal.name">>Heyyy...<</speech>>
<<speechYou "you">>What's good $miamal.name?<</speechYou>>
<<speech "miamal" "$miamal.name">>Doing alright, you free to grab some lunch?<</speech>>
<<speechYou "you">>Sure, got any idea where you wanna go?<</speechYou>>
<<speech "miamal" "$miamal.name">>Yeah, my For You page is all WallStreetTok content, a bunch of finfluencers have been recommending the Dorsia Club for chic dining and clubbing options!<</speech>>
$miamal.name having a Tik Tok has gotta be a security risk for the firm.
<<speechYou "you">>Do we have reservations?<</speechYou>>
<<speech "miamal" "$miamal.name">>All taken care of, follow me!<</speech>>
<<button "Follow her" "The Dorsia Club">><</button>>
<<elseif $period == 0>>
You have lunch with $miamal.name at noon. Maybe get some trading done in the meanwhile?
<<set $mission.arc -= 0.01>>
<</if>>
<<missionAdvance 1>>!!Pound Town
<<bg sex>>
<<if $currentAction is "null">>
Which way, Western Man?
<<else>>
$sexDescription[$currentAction]
<<vid $person $sexdict[$currentAction]>>
<</if>>
<<for _i = 0; _i < $sexlist.length - 1; _i++>>\
<<set _x to $sexlist[_i]>>\
<<if _x is $currentAction>>\
<<else>>\
<<capture _x>>\
<<button _x "SexPage">>\
<<set $currentAction to _x>>\
<</button>>\
<</capture>>\
<</if>>\
<</for>>
<<set _final to $sexlist[$sexlist.length - 1] >>
<<button _final $exitpage>><<set $currentAction to "cum">><</button>><<widget "girlAdvance">>\
<<set _x = $args[0].arc + 0.01>>\
<<set $args[0].arc = parseFloat(_x.toFixed(2))>>\
<</widget>>
<<widget "girlcheck">>\
<<if $args[1].contains($args[0].arc) && $args[0].countdown == 0>>\
<<set _passage to $args[0].id + $args[0].arc>>\
<<include _passage>>
<</if>>\
<</widget>>So this is the upscale Manhattan dining place everyone is raving about?
<<image Scenery DorsiaClubDining>>
<<speech "miamal" "$miamal.name">>Oh my god doesn't this place look amazing?<</speech>>
The Dorsia Club is an interesting amalgamation of fine dining settings and a clubbing floor. Despite its cluttered appearance, it's clearly in high demand. Even on a Wednesday afternoon, the line stretches a few blocks long.
<<speechYou "you">>I have to admit, it looks a little chaotic.<</speechYou>>
<<speech "miamal" "$miamal.name">>It's super economic! You can have lunch with a high-level executive and broker financial transactions, then hit the dance floor and grind on their cute assistant!<</speech>>
<<speechYou "you">>That sounds a little too specific<</speechYou>>
$miamal.name giggles, as you two find a table.
<<button "Take a seat" "The Dorsia Club">><</button>>\
<<missionAdvance 1>>You decide to splurge a bit and order a Kobe steak, while $miamal.name opts for a caviar salad. Wanting to learn more about how she's been making her returns, you decide to treat her to some stupidly expensive wine.
<<image miamal dining>>
<<speech "miamal" "$miamal.name">>So, how have your first few days been at Greystone?<</speech>>
<<speechYou "you">>To be honest, I've never handled this much money before. It's pretty crazy, but you can't beat the pay.<</speechYou>>
<<speech "miamal" "$miamal.name">>You've been doing pretty well for a rookie. $kendralust.name and $alexistexas.name have been impressed by your performance so far.<</speech>>
<<speechYou "you">>Hey, I haven't pulled in anywhere near the amount of cash you have.<</speechYou>>
$miamal.name laughs, and you feel her foot brush against your leg. Was that on purpose?
<<speech "miamal" "$miamal.name">>A girl's gotta do what she's gotta do. It's hard to make your way up without getting crowded out by all the rich and famous at Greystone.<</speech>>
$miamal.name takes a big swig of her drink, and you two sit there for a second.
<<speechYou "you">>Why do all these big firms, that supposedly only care about money, hire all these underqualified dipshits whose only redeeming quality is who their parents are?<</speechYou>>
<<speech "miamal" "$miamal.name">>Pretty loaded question haha.<</speech>>
<<speech "miamal" "$miamal.name">>Well, money attracts money, and when Greystone is trying to attract capital, it's good to have these people on the payroll.<</speech>>
$miamal.name has been drinking a lot, and she's getting a little loose lipped. It's definitely not accidental that you can feel the edge of her heel run up your thigh.
<<speech "miamal" "$miamal.name">>You know $you.firstName, I'm starting to like you a lot.<</speech>>
You have a running theory about how $miamal.name has been making her returns.
<<speechYou "you">>You know, you're a smart lady and all, but I need to know. How have you been multiplying your account numbers?<</speechYou>>
She smiles coyly, and abruptly gets up from her seat, slightly stumbling.
<<speech "miamal" "$miamal.name">>Before I tell you anything, why don't you guide me to the restroom?<</speech>>
<<missionAdvance 1>>
<<bg DorsiaClubBr>>\
<<set $location to [1.11]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $thread == 5 or $thread == 6 or $thread == 7 or $thread == 8 or $thread == 9 or $thread == 10>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 1>>
You had an fairly uneventful time selling coke. <<paycheck 300>><<statsmax 1>>
<<elseif $thread == 1>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 200>><<statsmax 2>>\
One of the customer's wallet was a little light, so she paid you back in other ways
<<vid Scenery pc1>>
<<elseif $thread == 2>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 200>><<statsmax 2>>\
One of the customer's wallet was a little light, but she was cute, so she paid you back in other ways
<<vid Scenery pc21>><<vid Scenery pc22>><<vid Scenery pc23>>
<<elseif $thread == 3>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 200>><<statsmax 2>>\
One of the customer's wallet was a little light, but she was cute, so she paid you back in other ways. She pretended to be embarassed, but you think she liked how everyone watched her slut herself out for a little blow.
<<vid Scenery pc31>><<vid Scenery pc32>><<vid Scenery pc33>>
<<elseif $thread == 4>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 150>><<statsmax 2>>\
These two chicks from Stanford were a little light on cash, so they paid you back the West Coast way.
<<vid Scenery pc41>><<vid Scenery pc42>><<vid Scenery pc43>><<vid Scenery pc44>>
<</if>>
<<if $you.items["cocaine"] gt 0>>\
<<button "Push dat powder" "DorsiaClubBathroom">><<advancePeriod>><</button>>\
<</if>>
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<set $thread to _scene>>
<<button [[Head Back to the Club|The Dorsia Club]]>><<set $thread to "null">><</button>>You step through the door and the overwhelming chaos of the environment assaults your senses.
<<vid Scenery brdegen>>
People are fucking on the floor, while countless men snort cocaine out of various bodily orifices. Amidst all the commotion, $miamal.name has already undone your zipper and is lazily staring at your cock.
<<image miamal cocktease>>
<<speechYou "you">>Think you wanna wrap your mouth around it?<</speechYou>>
<<speech "miamal" "$miamal.name">>Mmm maybe later. I just wanted to see if $angela.name was lying or not. You'll need to work on yourself a little more if you want to get anywhere with me.<</speech>>
Her hands feel so warm, what a cocktease.
<<speechYou "you">>When was the last time you had something that big between your hands?<</speechYou>>
She genuinely processes the question, and $miamal.name slowly starts tugging at your cock.
<<speech "miamal" "$miamal.name">>Hmm, I guess that's not a bad argument.<</speech>>
<<vid miamal handjob>>
Her wet tongue runs along one of the veins on your cock, and she laughs as you take a deep breath
<<speechYou "you">>I'm gonna need you to bend over.<</speechYou>>
<<speech "miamal" "$miamal.name">>It'll take more than a nice cock and some sweet nothings to make me to give up my pussy.<</speech>>
After several minutes of the best handjob you've ever gotten, you say
<<speechYou "you">>Open wide $miamal.name<</speechYou>>
<<speech "miamal" "$miamal.name">>Don't push your luck, I don't let every guy-<</speech>>
Before she can finish her sentence, you blast all over her face.
<<vid miamal facial>>
<<speech "miamal" "$miamal.name">>Jesus, that was more than I expected! We should probably finish our food though before a waiter takes it away.<</speech>>
<<missionAdvance 1>><<set $miamal.respect += 5>><<advancePeriod 1>>\
<<set $you.cash = 100000>>\
<<payment 1000>>\
$miamal.name sways slightly as you both make your way back to the table, her words slurring a little. You can tell she's really drunk, but her eyes are still sparkling with excitement as she starts to tell you about her job on Wall Street.
<<speech "miamal" "$miamal.name">>You know, when I first started, I thought I was hot stuff with all my special strategies from the student investment fund at NYU<</speech>>
<<speech "miamal" "$miamal.name">>But then I realized they didn't really scale at Greystone. That's when $kendralust.name told me about this group Upstate, called Foresight Market Research.<</speech>>
She leans in close, her breath smelling of alcohol as she whispers conspiratorially
<<speech "miamal" "$miamal.name">>They provide all the secret information that the top traders on Wall Street use, in exchange for a cut of the institutional money. That's how I make so much money.<</speech>>
<<speech "miamal" "$miamal.name">>And hey, I can hook you up with them too, if you're interested...<</speech>>
You can't help but feel a little uneasy about the whole thing, but the promise of insider information is too tempting to resist. You nod, trying to keep your excitement in check
<<speechYou "you">>Yeah, that sounds great. Thanks, $miamal.name.<</speechYou>>
The conversation doesn't go much farther, given $miamal.name's present condition. The waiter comes around with the check, and the bill makes your heart skip a beat. Mia bats her eyes at you, and you groan while you pull out your wallet.
<<speech "miamal" "$miamal.name">>Walk me back to work?<</speech>>
<<missionAdvance 1>>\
<<set $miamal.bio to "Your insider-trading boss at Greystone. The 80 hours a week don't seem to stop her from looking like fucking gorgeous as well.">>\As the two of you make your way back to work, $miamal.name pulls out her phone
<<speech "miamal" "$miamal.name">>I texted the Foresight guys, you're set up to meet them this evening.<</speech>>
<<speechYou "you">>Pretty quick turnaround time<</speechYou>>
<<speech "miamal" "$miamal.name">>Probably has to do with $alexistexas.name increasing cap levels. Even rookies like you are being given serious cash to handle.<</speech>>
<<speechYou "you">>You mentioned they're Upstate?<</speechYou>>
<<speech "miamal" "$miamal.name">>Well, anything north of the Bronx is upstate<</speech>>
<<speech "miamal" "$miamal.name">>Once you cross into the Bronx, you should be able to get upstate. Or you could just ask $miamal.name to book you an Uber, while you're still getting used to the city.<</speech>>
<<button "Get in the $miamal.name's Uber - free :)" "Foresight Market Research">><</button>>\
<<missionAdvance 1>>\Your uber drive brings you out of the city, and to a farily generic office complex.
The building you pull up to is fairly nondescript, and alongside the gate, an incredibly dripped out man leans on a gray sports car.
<<image jason first>>
<<speech "jason" "$jason.name">>Yo, you $you.firstName?<</speech>>
<<speechYou "you">>Yeah, who's asking?<</speechYou>>
<<speech "jason" "$jason.name">>Call me whatever the fuck you want<</speech>>
You have a feeling his name is <<textbox "$jason.name" "Jason">>
As you walk through the gate, you notice the unimposing gate is equipped with top of the line millimeter scanners. This clearly isn't your average quiet suburban company.
<<speechYou "you">>Hey man, I'm not strapped or anything<</speechYou>>
<<speech "jason" "$jason.name">>I don't give a fuck if you have a gun. I'm checking for wires.<</speech>>
<<speechYou "you">>Is that your job here?<</speechYou>>
<<speech "jason" "$jason.name">>I'm the security guard.<</speech>>
A few key factors, like the car and his outfit, make you think that maybe he's lying.
<<speech "jason" "$jason.name">>You're good. Entrance is that way.<</speech>>
<<button "Entrance" "Foresight Market Research">><</button>>
<<missionAdvance 1>>\
<<set $jason.met to true>>\
<<set $jason.bio to "The 'security guard' at Foresight Market Research.">>\
This place looks more like the reception of a rental car store than a center of illicit white collar crime. You walk up to the lady at the front desk, who's sitting behind a placard labelled <<textbox "$alina.name" "Alina">>
<<image alina first>>
<<speech "alina" "$alina.name">>Hey handsome, take a seat right here...<</speech>>
As you sit across from $alina.name, you can feel her sharp gaze on you, sizing you up. She takes a sip of her drink and leans in closer, her lips curling into a sly smile.
<<speech "alina" "$alina.name">>So, $miamal.name tells me you're interested in our little operation. But before I can tell you anything, I need to know you're the real deal.<</speech>>
<<speechYou "you">>Trust me, I'm the real deal. I can turn any of your tips into fucking gold. I can trade the primary assets, derivatives, and even second order benefit equities. We can make a lot of money together.<</speechYou>>
$alina.name chuckles, running a finger along the rim of her glass.
<<speech "alina" "$alina.name">>I don't doubt that, but we need people who won't even flinch against pressure from the regulators.<</speech>>
<<button "I can handle the SEC" "Foresight Market Research">><</button>>
<<missionAdvance 1>>
<<set $alina.met to true>><<speech "alina" "$alina.name">>If you think you can handle the SEC, can you handle this?<</speech>>
<<vid alina firstSexIntro>>
<<speechYou "you">>Damn, are you in heat?<</speechYou>>
<<speech "alina" "$alina.name">>You think it takes a genius to do inside trading? As long as you have a cute face and some good dick, I'll give you all the tips I have...<</speech>>
<<speechYou "you">>I'm not the kinda guy who'll turn down free pussy, but I've just met you haha<</speechYou>>
<<speech "alina" "$alina.name">>Look, this job keeps me busy, and I have no time to meet guys. I'm cooped up in here all day, and whenever I get to travel, it's always for work. I'll take whatever cock I can get!<</speech>>
<<button "Fair enough" "SexPage">><</button>>
<<missionAdvance 1>>\
<<nobr>>
<<set $currentAction to "null">>
<<set $sexdict = {"Fingering": "firstSexFingering", "Blowjob": "firstSexBj", "Cowgirl": "firstSexCowgirl", "Doggystyle": "firstSexDoggy", "Reverse Cowgirl":"firstSexReverseCowgirl", "Missionary": "firstSexMissionary", "Money Shot": "firstSexCumshot"}>>
<<set $sexDescription = {
"Fingering": "You feel $alina.name's pussy already slick and ready as you slide your fingers inside. With each thrust, she grinds her hips against you, moaning softly in pleasure. As you curl your fingers upwards, searching for her g-spot, $alina.name arches her back, pushing herself closer to you.",
"Blowjob": "You feel $alina.name's lips wrap around your cock, and she begins to bob her head up and down. Her tongue swirls around the head of your cock, and you can feel yourself getting closer to the edge.",
"Cowgirl": "$alina.name climbs on top of you, straddling your hips. You watch as she lowers herself onto your cock, moaning as she feels you fill her up. She starts to move her hips in circles, grinding herself against you. You run your hands over her body, feeling her breasts bounce as she rides you.",
"Doggystyle": "You grab $alina.name's hips and pull her towards you, sinking your cock deep inside her from behind. With each thrust, she moans louder and louder, her head thrown back in ecstasy. You spank her ass, feeling her shudder with pleasure as she reaches her orgasm.",
"Reverse Cowgirl":"$alina.name turns around and straddles you, facing away. You watch as she lowers herself onto your cock, feeling her tight pussy grip you. She starts to bounce up and down, her ass slapping against your thighs. You reach up to touch her breasts, feeling her body shudder with pleasure.",
"Missionary": "You pull $alina.name close to you, sinking your cock deep inside her as she wraps her legs around you. You kiss her deeply as you start to thrust, feeling her nails dig into your back. Her moans fill the room as you pick up the pace, both of you lost in the moment.",
}>>
<<set $sexlist = ["Fingering", "Blowjob", "Cowgirl", "Doggystyle", "Reverse Cowgirl", "Missionary", "Money Shot"]>>
<<set $person to "alina">>
<<set $exitpage to "Foresight Market Research">>
<</nobr>>She seems thoroughly fucked, and you realize it's time to give $alina.name her reward. $mission.arc
<<vid "alina" "firstSexCumshot">>
<<speech "alina" "$alina.name">>Jesus...fucking...Christ...I haven't been fucked like that in a long time!<</speech>><<set $currentAction to "null">>
$alina.name is flush with pleasure, and she reclines back on one of the nearby chairs. She grabs a pack of babywipes to wipe her face down, which you feel is an odd thing to have on hand.
<<image "alina" "10">>
<<speechYou "you">>So, how about that information?<</speechYou>>
$alina.name is still panting, and raises her hand
<<speech "alina" "$alina.name">>Give a girl a second to savor this $you.firstName!<</speech>>
<<speechYou "you">>We can always run it back anytime you want baby<</speechYou>>
<<speech "alina" "$alina.name">>No hard feelings, but this was just a part of the job<</speech>>
<<speechYou "you">>What fucking job?<</speechYou>>
$alina.name reaches over the desk to hit the intercom.
<<speech "alina" "$alina.name">>Sir, you can come in now<</speech>>
The 'security guard' from before walks in, with some papers in hand. You had neglected to put on your clothes, and $jason.name was staring at your flaccid dick
<<speech "jason" "$jason.name">>Ayo $alina.name, was this the guy you were just fucking? That was a whole lotta noise for not a whole lotta length<</speech>>
[[Watch your fucking mouth, or I'm taking my $10 million with me|AlinaRespect][$alina.respect += 5]]
[[How about you get down on your knees and make it longer, that mouth looks like it's used to getting fucked|JasonRespect][$jason.respect += 5]]\
<<missionAdvance 1>>\
<<bg fmr>>\
$jason.name's face immediately darkens, and you catch $alina.name's subtle smile and the flicker of her fingers on her clit out of the corner of your eye.
<<speech "jason" "$jason.name">>Put on some damn clothes, the both of you.<</speech>>
Throwing the papers on the desk, which you now see are photos, he says
<<speech "jason" "$jason.name">>That $10 million isn't going anywhere.<</speech>>
You move around to the desk, and $alina.name silently hands you the papers, avoiding your gaze.
<<image "alina" bm0>><<image "alina" bm1>><<image "alina" bm2>>
These motherfuckers recorded you? Your eyes dart around the room, searching for any hidden cameras or other signs of surveillance.
<<speech "alina" "$alina.name">>It was a microdot camera, I'm sorry<</speech>>
<<speechYou "you">>What the fuck is this?<</speechYou>>
<<speech "jason" "$jason.name">>It's simple: we have something on you, just like we do with all our clients. It's called Mutually Assured Destruction. If you try to screw us over or go to the SEC, we'll take you down with us.<</speech>>
<<speech "alina" "$alina.name">>Please understand, it's just an insurance policy. We'll make you rich beyond your wildest dreams, just like we've done with everyone else.<</speech>>
You take a deep breath, trying to steady yourself. This is what you signed up for. It's just business, after all. You didn't expect Wall Street to be a bed of roses. This is your shot to play with the high rollers.
<<speechYou "you">>Alright, whatever. This information better be fucking gold. How does this work?<</speechYou>>
<<speech "jason" "$jason.name">>It's easy. You contact us on a secure channel through your trading terminal. We'll handle the rest remotely and take a 10% cut. But be careful not to abuse it, or you'll draw the attention of the regulators.<</speech>>
$jason.name and $alina.name run you through some final details, and after everything is settled, they get you an Uber back to your apartment.
<<button "Head back home" "Home">><</button>><<bg fmr>>\
$jason.name breaks into laughter, and $alina.name tries to hide her laughter.
<<speech "jason" "$jason.name">>Well, well, looks like we've got a fighter here. You've got guts, I'll give you that, but you need to know what's at stake here. <</speech>>
$jason.name hands you the papers he walked in with, which you can now see are photos
<<image "alina" bm0>><<image "alina" bm1>><<image "alina" bm2>>
These motherfuckers recorded you? Your eyes dart around the room, searching for any hidden cameras or other signs of surveillance.
<<speechYou "you">>What the fuck is this? I'm not interested in being blackmailed.<</speechYou>>
<<speech "jason" "$jason.name">> It's a common practice in our line of work. You understand how it works. We need to ensure that we're all committed to this venture. If you get cold feet and try to report Foresight Market Research to the SEC, we will bring you down with us. But I don't think it'll come to that. You strike me as someone who's in this for the long haul.<</speech>>
<<speech "alina" "$alina.name">>Look, it's just an insurance policy. We'll make you rich beyond your wildest dreams, just like we've done with everyone else.<</speech>>
You take a deep breath, trying to steady yourself. This is what you signed up for. It's just business, after all. You didn't expect Wall Street to be a bed of roses. This is your shot to play with the high rollers.
<<speechYou "you">>Alright, whatever. This information better be fucking gold. How does this work?<</speechYou>>
<<speech "jason" "$jason.name">>It's easy. You contact us on a secure channel through your trading terminal. We'll handle the rest remotely and take a 10% cut. But be careful not to abuse it, or you'll draw the attention of the regulators.<</speech>>
$jason.name and $alina.name run you through some final details, and after everything is settled, they get you an Uber back to your apartment.
<<button "Head back home" "Home">><</button>>Two more trading day exists before the end of the week. The Investment Management division is still lagging behind IB. If you can get in one good trade before the weekend, that might be what it takes to balance the scales.
$alina.name told you she'd have a ticker ready for you by Friday morning. To get the approval for the trade, you'll need to show up early and run the stock by your Senior Analyst, $johnny.name.\
<<advancePeriod 1>>\
<<missionCountdown 2>>\
<<missionAdvance 1>>\<<if $period == 0>>
Sitting at your desk, you get an IM from $alina.name
<<speech "alina" "$alina.name">>Morning $you.firstName! We have credible information that $RASI is set to blow up, just make sure you get the trade in before 1:30<</speech>>
$alina.name attached a quote for the company. $RASI, or Rise and Shine Inc, seems to be a male virility enhancement company, currently trading for $10 a pop. The stock price has been stagnating, and the fundamentals don't look super sound.
<<speechYou "you">>Are you sure this is the right company?<</speechYou>>
<<speech "alina" "$alina.name">>Trust me, just get the money in by 1:30 PM<</speech>>.
You walk up to $johnny.name's desk.
<<speechYou "you">>Hey $johnny.name, I got a good feeling about this stock.<</speechYou>>
<<speech "johnny" "$johnny.name">>Sure, what's the ticker?<</speech>>.
<<speechYou "you">>R-A-S-I<</speechYou>>
$johnny.name's face instnatly hardens, and his usually good natured smile is gone.
<<speech "johnny" "$johnny.name">>Are you fucking serious? We don't go balls to the walls with fucking dipshit stocks like that. Get out of my fucking sight.<</speech>>
You wonder how $johnny.name knew the stock and company without even looking it up. Problems in the bedroom?
Your head is spinning, how can you use any of this information if $johnny.name will just shoot you down?
You flag $miamal.name down, hoping to maybe find a solution.
<<speechYou "you">>Hey $miamal.name, I got some info from our mutual friends, but $johnny.name won't let me fucking trade on it.<</speechYou>>
<<speech "miamal" "$miamal.name">>Ughhh, I was so shitfaced, I was hoping that was a dream. Did I really give you a handjob?<</speech>>
<<speechYou "you">>Yeah, don't worry though, you did great<</speechYou>>
<<speech "miamal" "$miamal.name">>Cute and funny. You know you don't actually need his approval to make large trades, right? He's just trying to flex his power at work to make up for the fact that his wife fucks whoever she wants<</speech>>
<<speechYou "you">>Seriously? Then who do I need to talk to?<</speechYou>>
<<speech "miamal" "$miamal.name">>Talk to the Chief Risk Management officer up on the Support floor, she should be able to clear any trades. She's smart, so have a very good reason for this trade. <</speech>>
<</if>>
<<set $insiderTradeCountdown = 0>>\
<<missionAdvance 1>>Risk Management used to be a field where careers went to die, but after 2008, the comp rates for risk managers went through the roof.
You find the door for Greystone's chief risk manager, Dr. <<textbox "$adriana.name" "Adriana">>, Ph.D and knock
<<speech "adriana" "$adriana.name">>Come on in<</speech>>
<<image "adriana" "first">>
<<speechYou "you">>I need your approval for a large trade on RASI<</speechYou>>
You see her pull it up on the terminal. As you sit across from $adriana.name, you can feel the weight of her skepticism bearing down on you.
<<speech "adriana" "$adriana.name">>Are you crazy? Why on earth would you want to invest that much money in RASI? It's a fucking crapshot at best.<</speech>>
<<speechYou "you">>Check the covariance with other male enhancement stocks, there's a clear cointegration. It's an obvious arbitrage opportunity<</speechYou>>
$adriana.name laughs, and seems to be running some calculations on her computer
<<speech "adriana" "$adriana.name">>You're obviously lying to me. You Ivy League dipshits think you can bullshit me just because I graduated from a state school?<</speech>>
<<speechYou "you">>Wait, what? I literally know nothing about you!<</speechYou>>
<<speech "adriana" "$adriana.name">>Oh yeah, sure...I bet you got a little tip from the old boy's club and you were told to run it by the idiot risk manager. You know what the maximum sentence is for this kinda shit? Twenty years in the slammer.<</speech>>
<<speechYou "you">>$adriana.name, please-<</speechYou>>
<<speech "adriana" "$adriana.name">>Dr. $adriana.name...<</speech>>
<<speechYou "you">>Yes, sorry, Dr. $adriana.name. I'll be honest with you. Yeah I might have a tip, but I'm not who you think I am. At every point in my life, I've had to bust my ass off. I saw kids dumber than me getting all the things I'd ever dreamed of just because of who their parents were, and it fucking pisses me off.<</speechYou>>
$adriana.name's face softens, and she seems to relax back in her seat.
<<speechYou "you">>I'm sorry I lied to you. But this is my chance to get back at those fuckers. I don't want to just coast for thirty years at Greystone, and retire in the Hamptons. I want to run my own fund someday, and I'll use every fucking trick in the book to get there. <</speechYou>>
$adriana.name looks conflicted, and after an awkard few seconds, she says
<<speech "adriana" "$adriana.name">>Are you sure this tip is good?<</speech>>
<<speechYou "you">>Pretty sure, yeah<</speechYou>>
<<speech "adriana" "$adriana.name">>Ok, look. My job is to only make sure traders don't put too much money in shit that can tank. If you say you've got good information, then I just need one more thing from you.<</speech>>
<<vid "adriana" "flirt">>
<<speech "adriana" "$adriana.name">>All the men here are just overprivileged idiots. I like ambition in a man, and I think I want to ride you to the top...<</speech>>
<<set $adriana.met to true>>\
<<set $adriana.met to true>><<set $adriana.bio to "The brilliant risk manager at Greystone and your...love interest?">>\
[[Ayo??|Continued seduction]]
<<bg support>><<set $you.location to "Continued seduction">>\
<<speech "adriana" "$adriana.name">>You'll need a girl on the inside if you want to reach the top, how do you plan on getting there?<</speech>>
<<speechYou "you">>I think after a few years I'll start my own firm<</speechYou>>
<<speech "adriana" "$adriana.name">>God, you're so naive. How do you plan on getting the clients, clearing your non-compete, building your company infrastructure, hiring the right talent, and covering the startup and legal fees?<</speech>>
<<speechYou "you">>Uhh...the right balance of talent and hard work?<</speechYou>>
The two of you laugh, and you ask
<<speechYou "you">>Ok, help me out here. What's my path of least resistance?<</speechYou>>
<<speech "adriana" "$adriana.name">>Take over Greystone Associates.<</speech>>
<<speechYou "you">>Right, because that's easier<</speechYou>>
<<speech "adriana" "$adriana.name">>Look, you need to work your way up the corporate ladder. Along the way, recruit Greystone employees and clients to your cause, and build a base of support. Once you get popular enough, the board will have no choice but to make you the CEO. <</speech>>
<<speechYou "you">>If you can't beat them, join them?<</speechYou>>
<<speech "adriana" "$adriana.name">>You got it $you.firstName<</speech>>
<<speechYou "you">>That's Mr. $you.lastName to you missy<</speechYou>>
$adriana.name laughs, and at that moment, a wave of emotion hits you. $jennifer.name fucking cheated on you, and this is the first woman you've met who's taken a serious interest in you. $adriana.name is smart, charming, and fucking gorgeous. And she gets you. In a moment of impulse, you abruptly get up, and pull her close to you
<<vid "adriana" "kiss">>
<<set $adriana.respect += 5>>
[[I want you|Adriana head]]<<bg support>><<set $you.location to "Adriana head">>\
<<speech "adriana" "$adriana.name">>Coming on a little strong, aren't we?<</speech>>
<<speechYou "you">>I thought someone said something about being my girl on the inside? I'm going to need you to prove that.<</speechYou>>
<<vid "adriana" "prepBj">>
<<speech "adriana" "$adriana.name">>God, your dick is huge!<</speech>>
$adriana.name takes a second to stop giving you head, before saying
<<speech "adriana" "$adriana.name">>Look, your cock tastes great, but I need you to show me that you're actually capable of accomplishing our plan<</speech>>
<<speech "adriana" "$adriana.name">>The day you make analyst, I want you to take me out to dinner...<</speech>>
<<vid "adriana" "bjClothed">>
<<speech "adriana" "$adriana.name">>...and only then, I want you to rail my brains out.<</speech>>
<<speech "adriana" "$adriana.name">>And when you make senior analyst, I'll bend over and let you fuck my ass<</speech>>
This pushed you over the edge, and you busted across her face
<<vid "adriana" "cumshotOffice">>
As the two of you clean yourself up, $adriana.name walks to her computer, and types something out.
<<speech "adriana" "$adriana.name">>Ok, I cleared all restrictions on your account, you should be able to put in the order for $RASI, when do you have to trade the stock?<</speech>>
<<speechYou "you">>Fuck! Yeah I gotta run and do that.<</speechYou>>
<<advancePeriod>><<missionAdvance>>
<<button "Time flies when you're having fun" "Investment Management">><</button>>You walk back to your desk, and try to discreetly log on. Insider trading may be a time honored American-tradition, but that's not really an excuse you can use in front of a judge.
In the terminal, you construct the order schema. Buying too many shares at once will cause the price of the stock to spike, but buying in too slowly would result in not fully capitalizing on the trade.
The trades go in slowly. Eventually, the entire position is converted into $RASI stock. Unlike most days, you don't really have anything to do. To avoid attracting the attention of $alexistexas.name, you pretend to work hard, but in reality, you're just refreshing the $RASI ticker. The price doesn't seem to be budging, and you wonder if the tip is legit.
1:30 PM rolls around. You catch $miamal.name's eyes for a second, but she quickly averts her gaze, probably still feeling bashful about the drunk handjob. The seconds tick towards 1:31.
All of a sudden, the terminal lights up:
<b>BREAKING NEWS</b>
<i>Men's health company Rise and Shine Inc (RASI) has passed Phase 4 clinical trials for their groundbreaking premature ejaculation drug. For the minute-men willing to pay for it, the drug effectively solves the One Pump Chump problem.</i>
Your eyes lock onto your portfolio. The price gaps up to $20, doubling in price in a matter of seconds. For the next few hours, until market close, the stock steadily climbs up to $30. News about the rookie intern who tripled his portfolio travelled fast across the trading floor, and you get plenty of pats on the back throughout the day.
<<image "Scenery" "GigachadCartoon2">>
At 4:30, $alexistexas.name calls you into her office. You catch $johnny.name give you a death stare, and you momentarily notice the Rise and Shine website pulled up on one of his monitors, which he quickly closes.
<<speech "alexistexas" "$alexistexas.name">>Nicely fucking done $you.firstName<</speech>>
<<speechYou "you">>So when do I get my promotion?<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>I can't promote you for one good trade, but I can for a couple. Keep up the trading and it won't be long.<</speech>>
<<speechYou "you">>And what about compensation?<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>Well, interns aren't eligible for comp, at least not of the financial kind.<</speech>>
<<speech "alexistexas" "$alexistexas.name">>But on the subject of...compensation, I do have some news to share. IB beat us this week, but proportionally, you just became the highest performing employee at Greystone. $kendralust.name says that if you want, you can go up to her office on the Executive floor.<</speech>>
<<set $you.heat += 5>>\
<<set $you.status += 5>>\
<<set $miamal.respect += 5>>\
<<missionAdvance>>\
<<advancePeriod>>\The elevator takes you all the way up to the Executive Floor, where the top brass at Greystone finds time to work whenever they get bored of blowing their limitless paychecks. You'll end up here one day, but today, you're just here to unwind after a stressful day.
You find $jean.name outside $kendralust.name's office
<<speech "jean" "$jean.name">>Hey bro, heard about your trading today! <</speech>>
<<speechYou "you">>Thanks man, and congrats to you too. Seems like Investment Banking has been killing it.<</speechYou>>
The two of you awkwardly stand outside.
<<speech "jean" "$jean.name">>So...first time?<</speech>>
<<speechYou "you">>Yeah.<</speechYou>>
<<speech "jean" "$jean.name">>$kendralust.name is great. I wouldn't worry about the delay, last time I was waiting out here for twenty minutes while she was applying her eyelashes<</speech>>
You guys shoot the shit for the next few minutes until $kendralust.name opens the door
<<speech "kendralust" "$kendralust.name">>Well well well, if it isn't Greystone's finest. Didn't think I'd be seeing you here so soon $you.firstName<</speech>>
<<speechYou "you">>I'm just glad to be here ma'am.<</speechYou>>
<<speech "kendralust" "$kendralust.name">>Please, call me $kendralust.name, you're about to fuck me.<</speech>>
The three of you laugh, and $kendralust.name continues.
<<speech "kendralust" "$kendralust.name">>Well $you.firstName, how do you want to do this? I can handle two young studs just fine, and it technically wouldn't be fair to ask $jean.name to leave, but I'd understand if you aren't comfortable with it.<</speech>>
<<speechYou "you">>It's up to me?<</speechYou>>
<<speech "jean" "$jean.name">>Whatever works for you man!<</speech>>
[[Sharing is caring|firstKendraRewardMFM]]
[[It takes two to tango, and I think a tango's all I can handle right now|firstKendraRewardSolo]]<<bg efOffice>><<set $you.location to "firstKendraRewardMFM">>\
<<speech "kendralust" "$kendralust.name">>I was hoping you'd say that<</speech>>
Maybe you would have been gentler if $jean.name wasn't there. You figure between making love and fucking her like a bitch in heat, the latter option is more tonally appropriate. You and $jean.name make $kendralust.name drop to her knees, while furiously unbuckling your pants. $kendralust.name hungrily stares at both of your crotches, waiting to see whose cock pops out first. You win, and almost instantly you get your reward as you feel $kendralust.name wrap her lips around your cock.
<<speech "kendralust" "$kendralust.name">>God damn $jean.name, do you see what $you.firstName is packing? He's even bigger than you!<</speech>>
$jean.name laughs, appearing unexpectedly easygoing and confident He gets his dick out a few moments later, and $kendralust.name sucks $jean.name off as well.
<<vid "jean" "kendralustbj">>
<<speech "kendralust" "$kendralust.name">>$jean.name, why don't you loosen me up a little for $you.firstName? There's no way I can take him without warming up first.<</speech>>
She pushes you back onto the sofa, and $kendralust.name skillfully continues to stroke and pleasure you. Without much pomp or ceremony, With little fanfare, $jean.name positions himself between $kendralust.name's legs, forcefully thrusting his cock into her wetness. $kendralust.name manages to keep sucking your dick while $jean.name continues to mechanically pump into her. The way she's keeping tempo while getting spitroasted makes you realize this probably isn't her first rodeo.
<<vid "jean" "kendraSpitRoast">>
<<speech "jean" "$jean.name">>Alright $you.firstName, I'm getting a little tired, I'll have $kendralust.name ride me while she sucks you off<</speech>>
$jean.name didn't even address $kendralust.name, but she still followed his orders without hesitation. You didn't expect this kind of submissiveness from the high powered executive you'd met a week ago.
<<vid "jean" "kendraCowgirl">>
Following $jean.name's example, you tell him
<<speechYou "you">>You can't have all the fun $jean.name, it's my turn to fuck her now<</speechYou>>
$kendralust.name gasps as $jean.name pulls her off his dick, and she gets on her back. She spreads her legs for you, her now empty pussy pulsating and begging to be filled. As you penetrate her, you notice most of her wetness ended up on $jean.name's cock. Guess you'll just have to make her cream again.
<<vid "jean" "kendraMissionary">>
<<speechYou "you">>Those backshots must be crazy $jean.name, and I think I want some of them right now<</speechYou>>
You and $jean.name laugh. $kendralust.name tries to join in on the joke, but unfortunately, she has $jean.name's cock down her throat
<<vid "jean" "kendraHead">>
You reach around to grab $kendralust.name's tits. Interesting that a corporate woman like herself would get a boobjob, no wonder she's so busty.
<<vid "jean" "KendraSpitroastBj">>
After getting tag teamed for the last hour, $kendralust.name's skin is flush. She is starting to tire, and the two of you decide to put her out of your misery. $kendralust.name extends her tounge, and you generously decorate her face and tits. While a little lacking after your romp with $adriana.name earlier, $kendralust.name seems satisfied enough.
<<vid "jean" "KendraCumshot">>
Before the cum has even started to dry, $kendralust.name's demeanor changes.
<<speech "kendralust" "$kendralust.name">>You know, you taste shockingly good. I do have to get back home now, and I'm sure you two studs don't want to be in the office at this hour.<</speech>>
<<button "Leave" "Lobby">><</button>>
<<advancePeriod>>\
<<set $kendralust.respect += 10>>\
<<set $jean.respect += 5>>\
<<missionAdvance>><<bg efOffice>><<set $you.location to "firstKendraRewardSolo">>\
You quickly learned why $kendralust.name is a VP: she gets right down to business. After exchanging a few pleasantries, she wastes no time in pulling you close and planting a deep kiss on your lips.
<<speech "kendralust" "$kendralust.name">>People think I do this for employee management or some other bullshit, but truth be told, this is the highlight of my goddamn week<</speech>>
$kendralust.name drops down to her knees, taking you into her mouth. You can feel her tongue working its magic as she bobs up and down, taking you deeper and deeper with each thrust. She moans, looking up at you with those gorgeous brown eyes.
<<vid "kendralust" "officeBj">>
$kendralust.name lies back on the table, spreading her legs wide open and beckoning you towards her. You climb on top of her, gazing into her eyes as you begin to thrust.
As you enter her, she gasps, and you can feel her gripping on your cock. She is surprisingly tight for a lady of her age, and after some resistance, her pussy finally gives way.
<<vid "kendralust" "tableMissionary">>
$kendralust.name bends over the table, offering up her pussy for you to penetrate. You grab her hips and thrust deep inside her, relishing in the feel of her tight wetness.
<<speech "kendralust" "$kendralust.name">>I'm going to need you to fuck me harder<</speech>>
<<vid "kendralust" "tableDoggy">>
She gets back up, and whispers in your ear:
<<speech "kendralust" "$kendralust.name">>This one is a personal favorite of mine<</speech>>
She climbs on top of you, riding you hard and fast as you grip her hips and watch her tits bounce up and down.
<<vid "kendralust" "officeCowgirl">>
<<speech "kendralust" "$kendralust.name">>Put your back into it $you.firstName<</speech>>
You grab her hips, feeling her ass cheeks part with every thrust as she writhes in pleasure.
<<speech "kendralust" "$kendralust.name">>mmmmMMMMM, oh gawd yes!<</speech>>
<<vid "kendralust" "officeSideFuck">>
Finally, you both reach the point of no return as you can't possibly hold it any longer
<<vid "kendralust" "officeCumShot">>
She eagerly licks it up, moaning with pleasure as she savors every last drop. Giving you a slight smile, $kendralust.name purrs
<<vid "kendralust" "officeCumLick">>
<<speech "kendralust" "$kendralust.name">>You know, you taste shockingly good. I do have to get back home now, and I'm sure you don't want to be in the office at this hour.<</speech>>
<<button "Leave" "Lobby">><</button>>\
<<advancePeriod>>\
<<missionAdvance>>\
<<set $kendralust.respect += 5>>\As you leave the executive floor, you feel as though you're coming off of this incredible high. Sure, fucking your boss's boss's boss is a helluva way to spend the afternoon, but it's more than that. It's as if you've finally discovered your true calling, your rightful place in the world. Perhaps it's the newfound wealth or the newfound admiration from your peers. Or perhaps it's the realization that you've broken free from the shackles of a stagnant existence.
With the benefits of your new life, you also have a new normal you must balance. Between the office politics, dodging the feds, and banging hoors, you still need to focus on your ultimate goal—getting filthy fucking rich and powerful.
$blake.name, your accountant, told you that your first direct deposit should land in your account tomorrow. Have you gotten your tax situation sorted with her yet? If you haven't, you can probably catch her working late tonight.
In addition to financial concerns, your thoughts drift to tomorrow's dinner engagement with $angela.name. You haven't seen her all week, and anticipation builds within you as you wonder what the evening will bring. In any case, the night is still young, and there's still work to do in the city that never sleeps.
<<set $missionCountdown to 1>>
<<missionAdvance>>It's late, and you head back to your cozy bed.
<<set _x to "Home">>\
<<if $you.geography is "DC">>\
<<set _x to "Georgetown">>\
<</if>>
<<button "Take a quick nap before your alarm rings" _x>><<set $thread to "null">><</button>><<bg "GigachadCartoon">>\
Pre-Tax Income: $<<print $you.income.toLocaleString()>>
<<set _t = Number(100*(1 - $you.tax).toFixed(1))>>\
Tax Rate: _t%
<<set _pti = $you.income*$you.tax>>\
Post-Tax Income: $<<print _pti.toLocaleString()>>
<<set _wafp = Math.trunc($trading.capital - $trading.level)>>\
<<if _wafp lt 0>><<set _wafp to 0>><</if>>\
Weekly Accrued Fund Profits: $<<print _wafp.toLocaleString()>>
<<set _pf = Number((100*$you.compensation).toFixed(2))>>\
Performance Fee: _pf%
<<set _bt = Number(100*(1 - $blake.bonusRate).toFixed(2))>>\
Bonus Tax-Rate: _bt%
<<set _d = Math.trunc($expenses.debt)>>
Debt: $<<print _d.toLocaleString()>>
Rent: $<<print $expenses.rent.toLocaleString()>>
<<set _wi = Math.trunc(_pti/52)>>\
<b>Weekly Income: $<<print _wi.toLocaleString()>></b>
<<set _wafc = Math.trunc(_wafp*$blake.bonusRate*_pf/100)>>\
<b>Weekly Accrued Fund Compensation: $<<print _wafc.toLocaleString()>></b>
<<set _we = $expenses.rent + Math.trunc($expenses.debt/52/5)>>\
<b>Weekly Expenses: $<<print _we.toLocaleString()>></b>
<<set _wcf = _wi + _wafc - _we>>\
<b>Weekly Cash Flow: $<<print _wcf.toLocaleString()>></b>
You'll typically see these numbers under the Finance Tab. This is a comprehensive overview of your financial situation, at least as it relates to your job. You'll get your weekly post-tax rate profits, which are calculated as your income + bonuses - expenses. Your rent is $expenses.rent, and you had $expenses.debt dollars worth of student debt. All debt needs to be paid off in 5 years, but in return for paying it off in this tight time frame, no interest is accrued. In the future, there will be expensive line items that you can choose to just add to your debt.
Debt isn't necessarily bad, just make sure that your income and bonuses are higher than your weekly expenses. If you have extra cash on hand, you can clear out any amount of debt in the Finance tab. Just remember, most girls want to see how loaded you are before getting to know you better, and that's done by checking your account balance.
<<button "You get a text" "A Text From Angela">><<missionAdvance>><</button>>\<<bg apartmentlobby>>\
<<set $you.location to "Central Park Tower">>\
<<set $location = [1.27, ]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<button [[Your Place|Home]]>><</button>>
<<button [[Call an Uber]]>><</button>>
<<button [[Go Outside|Manhattan]]>><</button>>\<<bg firstApartment>><<set $you.location to "A Text From Angela">>\
<<speech "angela" "$angela.name">>Hey love, $miamelano.name gave me your number btw. Hope you remember our dinner plans tonight!<</speech>>
<<speechYou "you">>How could I forget?<</speechYou>>
<<speech "angela" "$angela.name">>I just direct-deposited some play cash in your account, why don't you go buy something nice for youself before our dinner?<</speech>>
Is this a subtle way to indicate that your current clothing isn't really up to par? Or did you just become $angela.name's sugar baby? It's probably a little bit of both to be fair.
<<speechYou "you">>Appreciate it $angela.name! Know any good stores for new threads?<</speechYou>>
There's a pause in the texting, and then $angela.name responds:
<<speech "angela" "$angela.name">>Oh sweetheart, I forgot! If you ever want to buy something, just go to Elysian Essentials in Brooklyn, everyone like us shop there. I think they have an app as well.<</speech>>
<<speechYou "you">>Great, thanks $angela.name!<</speechYou>>
You can just download the app, but why don't you visit Brooklyn?
<<button "Head to Elysian Essentials" "Elysian Essentials">><<paycheck 1000>><</button>>\
<<bg elysium>>\
<<set $you.location to "Elysian Essentials">>\
<<set $location = [1.25, ]>>\
<<set _karleearc to [1.02, 1.03]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _karleearc.contains($karlee.arc) && $karlee.countdown == 0 && $mission.arc gt 1.25>>\
<<girlcheck $karlee _karleearc>>
<</if>>
Fancy Roses: <<button "Buy for $100" "Elysian Essentials">><<set $you.items["roses"] += 1>><<payment 100>><</button>>\
Wine: <<button "Buy for $200" "Elysian Essentials">><<set $you.items["wine"] += 1>><<payment 200>><</button>>\
<<if $you.job is "Senior Analyst">>\
Now that you got a little more cred on the Street, buy yourself some Thomas Pink Shirts, Burberry Ties, Tag watches, Theory Suits, and Cole Haan shoes!\
<<button "Buy for $5000">><<set $you.items["clothes"] to "medium">><<payment 5000>><<statsmax 80>><</button>>\
<<elseif $you.job is "PM">>\
You're a top dog now, buy yourself some Ferragamo shoes, Hermes ties, Canali Suits, and a Rolex!\
<<button "Buy for $12000">><<set $you.items["clothes"] to "high">><<payment 12000>><<statsmax 150>><</button>>\
<</if>>\
<<button [[Brooklyn]]>><</button>>\<<speech "athena" "$athena.name">>Welcome to Elysian Essentials!<</speech>>
<<image athena inStore>>
<<speechYou "you">>Morning! This looks a helluva lot like those new and swanky AmazonPrime instant checkout stores<</speechYou>>
<<speech "athena" "$athena.name">>I'm supposed to tell you that we're not at all like them, but we are. We just kinda orient everything towards the upper class<</speech>>
<<speechYou "you">>Do they pay you anymore than Amazon does?<</speechYou>>
<<speech "athena" "$athena.name">>Unfortunately, labor markets are super competitive.<</speech>>
<<speechYou "you">>Well, that sucks. Hate to switch the topic, but know where I can buy some new clothes?<</speechYou>>
<<speech "athena" "$athena.name">>Sure, right over here:<</speech>>
There's a pecking order on Wall Street, and you can only buy clothes based on where you stand. At the moment, all you should be buying are some Brooks Brothers threads:
<<button "Buy for $2000" "Elysian Essentials">><<set $you.items["clothes"] to "low">><<payment 2000>><<statsmax 30>><<set $angela.respect += 5>><<missionAdvance>><</button>><<set $athena.met to true>>\<<if $period == 3>>
As you enter the restaurant, you catch a glimpse of $angela.name, who has been absent for the entire week. Tonight, you finally have the opportunity to reconnect and unravel the mysteries that surround her.
<<image angela dinner>>
<<speechYou "you">>It's great to finally see you again. I've missed your presence this week.<</speechYou>>
<<speech "angela" "$angela.name">>Likewise, my dear. Business has taken me far and wide, but I couldn't wait to meet you for dinner.<</speech>>
<<speech "angela" "$angela.name">>I must say, you're looking exceptionally sharp tonight. I must say, those new clothes suit you.<</speech>>
<<speechYou "you">>Thank you. I appreciate your generosity, but Greystone has been paying me well enough.<</speechYou>>
<<speech "angela" "$angela.name">>I know, but then when would I get the chance to spoil you baby?<</speech>>
The two of you sit down, and as the waiter approaches your table, $angela.name tells the waiter
<<speech "angela" "$angela.name">>Bring the check to me after we're done, I'm spoiling this handsome young man tonight.<</speech>>
The waiter smirks at you, but $angela.name quickly rectifies that. She abruptly starts rubbing his crotch, and he quickly gets hard. Noticing this, she tells him
<<speech "angela" "$angela.name">>My, aren't you quite the stud? If you don't wipe that stupid fucking grin of you're face, I'll tell the manager you tried to grope me.<</speech>>
The waiter sprints away, and the two of you laugh.
<<speechYou "you">>So, where have you been recently?<</speechYou>>
<<speech "angela" "$angela.name">>Well, I am the International Operations Vice President. I've had some business in Europe. How's your trading been going?<</speech>>
<<speechYou "you">>Remarkably well, actually. I've had some successful trades recently.<</speechYou>>
<<speech "angela" "$angela.name">>I've heard from a little birdie at the SEC that they're starting to build a little profile on you. But don't worry, they do that for every major trader on the street, clean or not.<</speech>>
This new development is a bit concerning, you'll need to be more careful about getting your tips from $alina.name. You figure $angela.name took you out here because this place isn't bugged.
The two of you enjoy a pleasant dinner, and as the waiter of the meal takes your plates away, $angela.name leans in.
<<speech "angela" "$angela.name">>Shall we continue this evening at my place? There's more to explore beyond these walls<</speech>>
<<button "Head to her place" "Central Park Tower">><<missionAdvance>><<advancePeriod>><</button>>
<<else>>
Your dinner with $angela.name is in the evening.
<</if>>As the Greystone Associates limo $angela.name hailed pulls up to her place, you recognize the building.
<<speechYou "you">>You live at Central Park Tower too?<</speechYou>>
<<speech "angela" "$angela.name">>Oh, you live here too? It is a big place<</speech>>
The elevator takes you up past your floor. Significantly past your floor. As you enter her stunning penthouse apartment, you step into the lap of opulence.
<<speech "angela" "$angela.name">>No need for shoes<</speech>>
As she leads you inside, she begins to lazily strip her dress off.
<<image angela penthouseStrip>>
Her bra slips off her magnificent breasts, followed by her panties, as she casually flops down on her bed. She lays there. You see her nipples stiffen. Her thighs spread wide, and you don't dare look anywhere else.
<<speechYou "you">>You look fucking amazing<</speechYou>>
<<speech "angela" "$angela.name">>I taste fucking amazing too...<</speech>>
She sure wasn't kidding; slightly sweet and incredibly wet, you grind your face into her pussy. $angela.name tightens her legs around your head as you push deeper.
<<vid angela pentHousePussyEating>>
You draw one orgasm out of her, then another, and she still shows no sign of giving up. You need to thoroughly tire $angela.name out, before she gets up, and runs to her closet.
$angela.name returns, oil in hand, and releases your rock hard cock from your suit pants. She runs her fingers along your dick, tracing her fingers along your veins.
<<speech "angela" "$angela.name">>$you.firstName, you really out did yourself today! After orgasm number three I for sure thought you'd give up. You really, really deserve a reward...<</speech>>
<<vid angela pentHouseOilHandJob>>
As she expertly guides her hands on your shaft, $angela.name makes it difficult for you to hold your load in.
<<speech "angela" "$angela.name">>I want you to cum for me $you.firstName, it's ok, I want all the $you.lastName babies running down my tits<</speech>>
Her firm grip, the oil, her encouragement, it's all just too much to absorb, and you follow her orders to a T.
The two of you lie there exhausted, panting like animals.
<<speechYou "you">>Well, I should probably head back to my place<</speechYou>>
<<speech "angela" "$angela.name">>Yeah, probably for the best<</speech>>\
<<missionAdvance>>\
<<set $missionCountdown to 8>>\As you show up to work again, things are starting to get a little rote. You've been making some big trades, but your standing at the company seems to have stagnated. You hit up the terminal IMs, and message $alina.name for a change
<<speechYou "you">>Yo $alina.name, I need a big mover today.<</speechYou>>
<<speech "alina" "$alina.name">>Well today's your lucky day, I got some real primo grade A shit, sent you the ticker.<</speech>>
You take a look at the stock quote. Tri-State Power Providers ($TSPP) is some kind of regional power grid company, and the price appears to be accelerating, in anticipation of some kind of merger. Maybe there's better news that the market doesn't know yet? You put in the trade, and decide to take a break. As you observe the bustling trading floor from the water cooler, $miamal.name runs up to you.
<<button "Yeah, what's up?" "Investment Management">><<missionAdvance>><</button>>
<<speech "miamal" "$miamal.name">>Uhh, $you.firstName, did you also get $TSPP from Foresight?<</speech>>
<<speechYou "you">>Yeah, is there something wrong with it...<</speechYou>>
<<speech "miamal" "$miamal.name">>I think Foresight might have fucked up with this one, BIG time.<</speech>>
The two of you rush to your desk, and you look at the account balance.
<i>$1,796.24</i>
<<speechYou "you">>WAIT, WHAT THE FUCK? THIS WAS $10 MIL JUST A FEW MINUTES AGO!<</speechYou>>
$alexistexas.name looks up at you, and down at her dashboard, mouthing the words:
<<speech "alexistexas" "$alexistexas.name">>Fucking FIX this<</speech>>
<<speech "miamal" "$miamal.name">>I'm an analyst and can fuck up once or twice, but you're an intern. Just sell the shares, cut your losses, and pray you don't get axed by $alexistexas.name. I can vouch for you as your boss, but can't promise you any job security.<</speech>>
You see your Wall Street career flash before your very eyes.
<<speechYou "you">>I am not going to fucking die here today<</speechYou>>
You get into the terminal, and IM $alina.name:
<<speechYou "you">>$alina.name, I am going to fucking crucify you. You might have those fucking pictures of me, but this is a two way street. I am taking you and your boss's asses to jail if this shit doesn't fix itself.<</speechYou>>
<<speech "alina" "$alina.name">>DO NOT SELL<</speech>>
<<speechYou "you">>Give me one good reason not to.<</speechYou>>
<<speech "alina" "$alina.name">>JUST DON'T. STAY AT GREYSTONE<</speech>>
<<speechYou "you">>Give me $30.<</speechYou>>
<<speech "alina" "$alina.name">>TF?? OK WHATEVER.<</speech>>
Perfect, just the amount it takes to get an Uber up to Foresight.
<<paycheck 30>>
<<button "Call an Uber" "Foresight Market Research">><</button>>
<<missionAdvance>>After the Uber drops you off at Foresight, you see $alina.name frantically running around, phone in hand.
<<speech "alina" "$alina.name">>WTF $you.firstName? I told you to STAY AT GREYSTONE<</speech>>
<<speechYou "you">>Kiss my ass, I'm not going to be the bagholder while you and whatever associates you have run a fucking pump and dump on me<</speechYou>>
<<speech "alina" "$alina.name">>I promise you, this is not what this is. There was just a slight hiccup in our information. The board of $TSPP was supposed to approve a merger with a larger company, but the fucking CEO opted for a more personally lucrative merger with some dipshit Pennsylvania energy giant.<</speech>>
<<speechYou "you">>Ok, so? Why did that merger fall through?<</speechYou>>
<<speech "alina" "$alina.name">>Turns out the Pennsylvania CEO had been embezzling a shit ton of cash from his company, and this morning he was last spotted in Maldives<</speech>>
<<speechYou "you">>And I'm guessing the original company pulled the offer off the table<</speechYou>>
<<speech "alina" "$alina.name">>That's what we're trying to fix now, get in the car, I'll show you.<</speech>>
The two of you drive twenty minutes away, to another muted office building. As $alina.name pulls up to the curb, she points out an alley to you. To your shock, 8 men carrying semi-automatic rifles and tactical gear are waiting.
<<image Scenery theBackup>>
$alina.name signals for them to move, and they advance on the building.
<<speech "alina" "$alina.name">>Don't worry $you.firstName, they're not going to kill anyone. Some of these CEOs who kinda dip in and out of the Fortune 500 can be a little pigheaded, and require a bit of convincing.<</speech>>
<<speech "alina" "$alina.name">>Look, we get a cut from all your trading, our interests are aligned. Let me take you back to the office, see for yourself what your portfolio looks like now.<</speech>>
<<missionAdvance>>
<<button "Drive back to the office" "Investment Management">><</button>>
<<advancePeriod>>By the time you reach the office, it seems like Foresight's last-ditch effort was a success.
<i>Breaking News, Tri-State Power Provider (TSPP) is set to be acquired by largest East Coast energy provider. TSPP CEO also unexpectedly retires, to be replaced by experienced industry enginerr.</i>
As you watch a featured clip from the news, the rather frazzled CEO of the East Coast energy provider announces the decision to a room full of confused Finance Correspondents. His appearance is no doubt Foresight's unique contribution.
The stock first gapped up to nearly ten times it's originally price, and by the time you put in the sell order, you investment had x15, easily the largest trade you've made yet.
<<speech "miamal" "$miamal.name">>Ugh, it fucking sucks that I sold early, how did you know it'd recover?<</speech>>
<<speechYou "you">>Hey, once you've hit rock bottom, you can only go up. Stocks are just like depressed zoomers I guess haha<</speechYou>>
$miamal.name grimly laughs, while $alexistexas.name walks up to your desk, followed by $johnny.name.
<<speech "alexistexas" "$alexistexas.name">>And I thought I would have to fire you after blowing $10 million, good job with the recovery.<</speech>>
She winks at you, and you suspect she knows something is up. $johnny.name, on the other hand, is a lot less subtle.
<<speech "johnny" "$johnny.name">>You fucking piece of shit, this is some textbook insider trading. Some of us have to bust our ass of for years before making anywhere near that kind of cash. I hope the feds fucking nail you to the wall, go to hell.<</speech>>
<<speechYou "you">>U mad?<</speechYou>>
$johnny.name flips you off, and a couple of your fellow Interns and Analysts try to hide their laughter at his futile gesture.
As you stare at the number on the screen, you realize that someday, that money will be yours. Not some tiny comp pulled from a slice of the trade, nor some measly fucking wage derived from it after all the fat cats get to eat.
One day, you'll own the whole fucking pie.
<<statsmax 20>>\
<<missionAdvance>>\
<<advancePeriod>>\
<<set $trading.capital to 150000000>>\
<<set $missionCountdown to 6>><<set $adriana.respect += 5>><<set $miamal.respect += 10>><<set $alexistexas.respect += 5>>As you arrive at work, $alexistexas.name pulls you into her office.
<<speech "alexistexas" "$alexistexas.name">>Congrats Mr. $you.lastName, you've had a better fucking run than any other intern in Greystone history. We believe that extraordinary performance requires extraordinary rewards. You won't need to wait until next term to hear if you'll be hired back by us. We're promoting you to Junior Analyst. Today.<</speech>>
About fucking time
<<speechYou "you">>What's my new comp scheme?<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>A little cocky, aren't we? That's ok I respect it. Junior Analysts make $125K a year, along with a 0.05% cut of trading profits.<</speech>>
And the pie is just starting to bake.
<<speechYou "you">>Well, I appreciate it, I look forward to working with Greystone<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>You should go back to the floor, I have a feeling you'll start to fully appreciate why Wall Street loves bonuses.<</speech>>
<<button "Go back to the Trading Floor" "Investment Management">><</button>>
<<set $you.job to "Junior Analyst">>\
<<set $you.income to 125000>>\
<<set $you.compensation = 0.0005>>\
<<missionAdvance>>As you step outside $alexistexas.name's office, you see $miamal.name and $kendralust.name, smiling and waiting for you at their desk.
<<speech "miamal" "$miamal.name">>Great job $you.firstName!<</speech>>
<<speech "kendralust" "$kendralust.name">>Looks like we picked a winner with you Mr. $you.lastName<</speech>>
Before you respond, the entrance to the trading floor slams open, and the smiles evaporate instantly from $miamal.name and $kendralust.name's faces.
<<set _x to "Male Regulator">>
<<speech "anon" "_x">>Attention all personnel! This is the Securities and Exchange Commission and Federal Marshals.<</speech>>
<<speech "kissa" "$kissa.name">>We are here to apprehend $you.firstName $you.lastName. Failure to cooperate will result in further charges.<</speech>>
She flashes a badge that reads Agent <<textbox "$kissa.name" "Kissa">>
<<image kissa 1>>
The female regulator walks up to $johnny.name and asks:
<<speech "kissa" "$kissa.name">>Do not fuck around with me sweetie, where is Mr. $you.lastName<</speech>>
<<speech "alexistexas" "$alexistexas.name">>$johnny.name, why don't you finally grow a pair of balls and sort your house in order? We don't need your wife busting in here with some bullshit trumped up charges<</speech>>
Ohhh, so this must be $johnny.name's slutty wife!
$johnny.name meekly stares between his boss and his wife, and ultimately points his finger at you.
The male regulator walks up to you, and slam your face on the table.
<<speechYou "you">>Fucking asshole, think you'll get me to cooperate with you like that? KISS MY ASS<</speechYou>>
<<speech "kendralust" "$kendralust.name">>Mr. $you.lastName, don't say a fucking word to these hacks, you'll have a Greystone appointed lawyer meet you at the federal plaza<</speech>>
Flanked by federal marshals and Securities and Exchange Commision agents, you get hauled to the SEC headquarters.
<<button "Time to Perp Walk" "SEC Headquarters">><<missionAdvance>><</button>>
<<set $kissa.met to true>>\You're sitting in a relatively comfortable interrogation room as you wait for your counsel. $kissa.name and the male regulator stare you down from across the table, and you meet them with a stoic gaze.
The standoff ends abruptly, when a woman with a briefcase barges in to the room.
<<speech "nikki" "$nikki.name">>Good morning Mr. $you.lastName, I will be your Greystone-appointed attorney.<</speech>>
<<image nikki 1>>
Dawgg, look at my lawyer, I'm going to go to jail
She hands you a business card that reads <<textbox "$nikki.name" "Nikki">> J.D., General Counsel at Greystone Associates.
<<speechYou "you">>Cool, don't you have to tell these guys to fuck off so we can talk in private?<</speechYou>>
She looks at you confused.
<<speech "nikki" "$nikki.name">>Uhh, I can do that? I mean, yes, of course, uhh, can you two please leave the room so I can speak to my client in private?<</speech>>
The male regulator isn't even pretending to not be staring directly at $nikki.name's tits.
<<set _x to "Male Regulator">>
<<speech "anon" "_x">>I don't want to leave, I'd rather stay here and look at your...impressive legal ability<</speech>>
What the fuck is going on? Not only did this guy just blatantly violate your constitutional rights, but he's hitting on your lawyer too?
$nikki.name blushes, and shrugs at you.
<<speech "nikki" "$nikki.name">>I don't know, I guess I can't really make them leave. Uh, you two can stay here if you really want to...<</speech>>
Wow. You're actually going to jail, and it's all going to be because of your idiot lawyer.
<<speech "nikki" "$nikki.name">>Don't worry $you.firstName, this is just a civil violation, we'll just pay a fine and you'll get off!<</speech>>
<<speech "kissa" "$kissa.name">>Actually, the SEC is pursuing criminal charges against Mr. $you.lastName.<</speech>>
<<speech "nikki" "$nikki.name">>Oh. Umm, what's the difference?<</speech>>
This can't possible get any worse. $kissa.name and the male regulator try to stiffle their laughter, and your veneer of confidence is beginning to break.
<<if $game.mode is "Realistic">>\
<<speech "nikki" "$nikki.name">>Look, civil, criminal, whatever. I'm sure it's not a problem too big for..ahem..money to fix.<</speech>>
$nikki.name opens a large breifcase of cash, sliding it towards the regulators.
<<speech "kissa" "$kissa.name">>Wasn't this money meant for Mr. $you.lastName's bail?<</speech>>
<<speech "anon" "_x">>And did you just try to bribe us?<</speech>>
$nikki.name starts to fumble over her words, and with each sentence that comes out of her mouth, your head sinks deeper into your hands.
<<speech "nikki" "$nikki.name">>Uhhhh, your honor, could I have a 15 minute recess with opposing counsel?<</speech>>
The regulators are now just actively laughing at $nikki.name, making her even more confused.
<<speech "anon" "_x">>I'm not a judge, but we can meet in my office<</speech>>
<<speech "nikki" "$nikki.name">>Can we do it in the bathroom instead?<</speech>>
Both you and $kissa.name stare at each other, confused about what the fuck the two lawyers could be talking about.
<<speech "anon" "_x">>Sure, why not?<</speech>>
<<elseif $game.mode is "Fairy Tale Land">>\
$nikki.name starts to fumble over her words, and with each sentence that comes out of her mouth, your head sinks deeper into your hands.
<<speech "nikki" "$nikki.name">>Uhhhh, your honor, could I have a 15 minute recess with opposing counsel?<</speech>>
The regulators are now just actively laughing at $nikki.name, making her even more confused.
<<speech "anon" "_x">>I'm not a judge, but we can meet in my office<</speech>>
$nikki.name is discreetly checks her briefcase, in view of you, but out of view to the SEC lawyers. For just a second, you can see row after row of $100 bills, and you realize what's coming next. $kissa.name stare at you intently, confused about what her supervisor and your lawyer are about to privately discuss.
<</if>>
<<button "A few minutes later, both lawyers walk back through the doors" "SEC Headquarters">><<missionAdvance>><</button>>
<<set $nikki.bio to "The General Counsel at Greystone. You're not sure what she learned at Yale Law, because she seems like an idiot.">>\
<<set $nikki.met to true>>\You and $kissa.name glare at each other from across the room.
<<set _x to "Male Regulator">>
<<speech "kissa" "$kissa.name">>Look, your lawyer is clearly a fucking bimbo, if we come to an understanding right now, we can give you a deal that works for all parties.<</speech>>
<<speechYou "you">>Nice try, but I think you don't have shit on me. You come into my place of work and physically assault me in front of my colleagues, while making baseless accusations?<</speechYou>>
<<speech "kissa" "$kissa.name">>Yeah, it's very normal to 15X your account in less than four hours<</speech>>
<<speechYou "you">>Remind me again, what's the US criminal statute for being good at your job?<</speechYou>>
<<if $game.mode is "Realistic">>\
Before $kissa.name can retort, her colleague walks into the room, and you notice his shirt is untucked
<<speech "anon" "_x">>Alright $kissa.name, let him go, we're dropping all charges<</speech>>
<<speech "kissa" "$kissa.name">>Wait, why? We have a credible witness<</speech>>
<<speech "anon" "_x">>Who, your loser husband? All he said was that he saw Mr. $you.lastName outside of the office right before TSPP's stock price blew up<</speech>>
Of course it was fucking $johnny.name, what an asshole.
<<if $game.mode is "Realistic">>
Your lawyer walks back into the room, and you can't help but laugh. It seems $nikki.name managed to get you off all the charges by getting the SEC lawyer off.
<<image nikki facialClothed>>
<<speech "nikki" "$nikki.name">>Whew, well, I'm glad the government was willing to listen to reason...<</speech>>
<<speechYou "you">>Hey $nikki.name, I think you have something on your face.<</speechYou>>
<<speech "nikki" "$nikki.name">>Hmm? Oh, I wonder how that got there?<</speech>>
<<else>>\
Your lawyer walks back into the room, and you can't help but laugh. It seems $nikki.name managed to get you off all the charges by bribing the SEC lawyer.
<</if>>\
Turning towards the SEC regulators, you ask
<<speechYou "you">>Well, I think we're done here, have a great day!<</speechYou>>
$kissa.name is clearly furious, and on your way out, you give her your business card
<<speechYou "you">>In case your husband runs out of those Rise and Shine pills, feel free to give me a call!<</speechYou>>
You and $nikki.name waltz out of the SEC building, and while $nikki.name wipes her face, you ask
<<elseif $game.mode is "Fairy Tale Land">>\
Before $kissa.name can retort, her colleague walks into the room, and you notice his shirt is untucked
<<speech "anon" "_x">>Alright $kissa.name, let him go, we're dropping all charges<</speech>>
<<speech "kissa" "$kissa.name">>Wait, why? We have a credible witness<</speech>>
<<speech "anon" "_x">>Who, your loser husband? All he said was that he saw Mr. $you.lastName outside of the office right before TSPP's stock price blew up<</speech>>
Of course it was fucking $johnny.name, what an asshole.
Your lawyer walks back into the room, and you can't help but laugh. Turning towards the SEC regulators, you ask
<<speechYou "you">>Well, I think we're done here, have a great day!<</speechYou>>
$kissa.name is clearly furious, and on your way out, you give her your business card
<<speechYou "you">>In case your husband runs out of those Rise and Shine pills, feel free to give me a call!<</speechYou>>
You and $nikki.name waltz out of the SEC building, and while $nikki.name double checks her briefcase, you ask
<</if>>
<<speechYou "you">>So where did you pick up that legal move?<</speechYou>>
<<speech "nikki" "$nikki.name">>Yale Law!<</speech>>
<<button "Yeah, go figure" "Coins and Cronies">><<missionAdvance>><<advancePeriod>><<set $you.heat to 0>><</button>>
<<bg sec>>\
<<set $you.location to "SEC Headquarters">>\
<<set $location = [1.34, 1.35]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>
<<button [[Head Outside|Manhattan]]>><</button>>\$blake.name's desk is filled with binders and folders, and as you open the door, $blake.name peeks over the stack of papers.
<<if $period == 3>>\
<<speechYou "you">>Working late?<</speechYou>>
<<speech "blake" "$blake.name">>Well, all you traders keep forgetting about your tax shit, and if I don't stay on top of everything, Greystone will kick me to the curb.<</speech>>
<<speechYou "you">>Don't most employees usually do their own taxes? Don't get me wrong, I fucking hate doing taxes<</speechYou>>
<<else>>\
<<speechYou "you">>Hey $blake.name, I'm here to take care of the tax stuff?<</speechYou>>
<<speech "blake" "$blake.name">>Sure, take a seat.<</speech>>
<</if>>
<<speech "blake" "$blake.name">>Greystone Associates provides personal tax services to employees free of charge, since peace of mind usually leads to better trading results.<</speech>>
<<speechYou "you">>Fucking A, let's get into this<</speechYou>>
$blake.name runs you through a series of forms and questionaires, and after what feels like an eternity, the two of you finally finish everything.
<<button "Bye bye to a lifetime of filing taxes" "Support Floor">><</button>>\
<<girlAdvance $blake>><<set $blake.hint to "Stay tuned for further content!">>
<<set $you.tax = 0.9>><<bg support>>\
<<set $location to []>>\
<<set _blakearc to [1.01, 1.02]>>\
<<set $you.location to "Blake's Office">>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _blakearc.contains($blake.arc) && $blake.countdown == 0>>\
<<girlcheck $blake _blakearc>>\
<</if>>\
<<button [[Support Staff|Support Floor]]>><</button>><<bg support>>\
<<set $you.location to "Adriana's Office">>\
<<button [[Support Staff|Support Floor]]>><</button>><b>CONTENT IN PROGRESS</b>
Stay tuned for more updates with $blake.name!
<<image blake 2>><<bg efOffice>>\
You and $jean.name make $kendralust.name drop to her knees, while furiously unbuckling your pants. $kendralust.name hungrily stares at both of your crotches, waiting to see whose cock pops out first. You win, and almost instantly you get your reward as you feel $kendralust.name wrap her lips around your cock.
<<vid "jean" "kendralustbj">>
<<speech "kendralust" "$kendralust.name">>$jean.name, why don't you loosen me up a little for $you.firstName?<</speech>>
She pushes you back onto the sofa, and $kendralust.name skillfully continues to stroke and pleasure you. Without much pomp or ceremony, With little fanfare, $jean.name positions himself between $kendralust.name's legs, forcefully thrusting his cock into her wetness. $kendralust.name manages to keep sucking your dick while $jean.name continues to mechanically pump into her.
<<vid "jean" "kendraSpitRoast">>
<<speech "jean" "$jean.name">>Alright $you.firstName, I'm getting a little tired, I'll have $kendralust.name ride me while she sucks you off<</speech>>
<<vid "jean" "kendraCowgirl">>
<<speechYou "you">>You can't have all the fun $jean.name, it's my turn to fuck her now<</speechYou>>
$kendralust.name gasps as $jean.name pulls her off his dick, and she gets on her back. She spreads her legs for you, her now empty pussy pulsating and begging to be filled. As you penetrate her, you notice most of her wetness ended up on $jean.name's cock. Guess you'll just have to make her cream again.
<<vid "jean" "kendraMissionary">>
<<speechYou "you">>$jean.name, pass that fine piece of ass over here<</speechYou>>
<<vid "jean" "kendraHead">>
You reach around to grab $kendralust.name's tits.
<<vid "jean" "KendraSpitroastBj">>
After getting tag teamed for the last hour, $kendralust.name's skin is flush. She is starting to tire, and the two of you decide to put her out of your misery. $kendralust.name extends her tounge, and you generously decorate her face and tits. While a little lacking after your romp with $adriana.name earlier, $kendralust.name seems satisfied enough.
<<vid "jean" "KendraCumshot">>
Before the cum has even started to dry, $kendralust.name's demeanor changes.
<<speech "kendralust" "$kendralust.name">>I'm sure you two studs don't want to be in the office at this hour.<</speech>>
<<button "Leave" "Executive Floor">><</button>>\
<<advancePeriod>>\<<bg efOffice>>\
<<speech "kendralust" "$kendralust.name">>People think I do this for employee management or some other bullshit, but truth be told, this is the highlight of my goddamn week<</speech>>
$kendralust.name drops down to her knees, taking you into her mouth. You can feel her tongue working its magic as she bobs up and down, taking you deeper and deeper with each thrust. She moans, looking up at you with those gorgeous brown eyes.
<<vid "kendralust" "officeBj">>
$kendralust.name lies back on the table, spreading her legs wide open and beckoning you towards her. You climb on top of her, gazing into her eyes as you begin to thrust.
As you enter her, she gasps, and you can feel her gripping on your cock. She is surprisingly tight for a lady of her age, and after some resistance, her pussy finally gives way.
<<vid "kendralust" "tableMissionary">>
$kendralust.name bends over the table, offering up her pussy for you to penetrate. You grab her hips and thrust deep inside her, relishing in the feel of her tight wetness.
<<speech "kendralust" "$kendralust.name">>I'm going to need you to fuck me harder<</speech>>
<<vid "kendralust" "tableDoggy">>
She gets back up, and whispers in your ear:
<<speech "kendralust" "$kendralust.name">>This one is a personal favorite of mine<</speech>>
She climbs on top of you, riding you hard and fast as you grip her hips and watch her tits bounce up and down.
<<vid "kendralust" "officeCowgirl">>
<<speech "kendralust" "$kendralust.name">>Put your back into it $you.firstName<</speech>>
You grab her hips, feeling her ass cheeks part with every thrust as she writhes in pleasure.
<<speech "kendralust" "$kendralust.name">>mmmmMMMMM, oh gawd yes!<</speech>>
<<vid "kendralust" "officeSideFuck">>
Finally, you both reach the point of no return as you can't possibly hold it any longer
<<vid "kendralust" "officeCumShot">>
She eagerly licks it up, moaning with pleasure as she savors every last drop. Giving you a slight smile, $kendralust.name purrs
<<vid "kendralust" "officeCumLick">>
<<speech "kendralust" "$kendralust.name">>Delicious as always! I do have to get back home now, and I'm sure you don't want to be in the office at this hour.<</speech>>
<<button "Leave" "Executive Floor">><</button>>\
<<advancePeriod>>\<<bg efOffice>>\
<<speech "kendralust" "$kendralust.name">>Hey $you.firstName...<</speech>>
<<speech "mick" "$mick.name">>Sorry bro, but $kendralust.name is mine this week.<</speech>>
<<speech "kendralust" "$kendralust.name">>$you.firstName, why don't you pull that cock out, I want to see you get hard while $mick.name fucks me.<</speech>>
<<vid mick KLCuck>>
$kendralust.name turns her attention to $mick.name, and starts to throat him.
<<speech "mick" "$mick.name">>Fuuckkk, you give pretty good head for someone your age. Maybe the 4th best head I've gotten from a MILF?<</speech>>
$kendralust.name glares at $mick.name after these comments, but he doesn't notice because $kendralust.name is sucking his soul out.
<<vid mick KLLoseBJ>>
<<speech "mick" "$mick.name">>Ok, not gonna lie, I'm kinda bored right now. Get on top of me.<</speech>>
He slaps $kendralust.name's ass as she mounts him, and you watch with a mixture of agony and voyeuristic joy as she slowly let's $mick.name's cock penetrate her.
<<vid mick KLLoseCowgirl>>
<<speech "mick" "$mick.name">>Yo $you.firstName, why don't you move away from the door and see how a real man fucks a whore.<</speech>>
<<speech "mick" "$mick.name">>Wait, I didn't pay her...oh I guess I kinda did by making a fuck ton of cash for Greystone<</speech>>
<<vid mick KLLoseBehind>>
<<speech "kendralust" "$kendralust.name">>Hey $mick.name, I'm getting a little tired, can you take over?<</speech>>
<<speech "mick" "$mick.name">>Well, I guess all girls get old someday. Whatever, get on your back bitch.<</speech>>
<<vid mick KLLoseMissionary>>
<<speech "kendralust" "$kendralust.name">>$mick.name, please don't cum in me this time, last time was special because you set the firm's weekly record.<</speech>>
<<speech "mick" "$mick.name">>What are you worried about? Can women even get pregnant at fifty? Eh whatever.<</speech>>
<<speech "kendralust" "$kendralust.name">>...<</speech>>
<<vid mick KLLoseCumshot>>
You leave the room discreetly, so you don't need to deal with either of them right away.
<<button "Leave" "Executive Floor">><</button>>\
<<advancePeriod>>\<<bg theBluehall>>\
<<set $you.location to "The Bronx">>\
<<if $gabriela.arc gte 1.03>>\
<<button "$gabriela.name's place" "Gabriela place">><</button>>
<</if>>
<<button [[The Bronx]]>><</button>><<bg gym>>\
<<set $you.location to "Natty Nicole's Gym">>\
<<if $nicole.met is true>>\
<<if $nicole.boughtMembership is true and $nicole.exercisedToday is false>>
<<button "Workout" "Natty Nicole's Gym">>\
<<advancePeriod>>\
<<looksmax 0.4>>\
<<set $nicole.exercisedToday to true>>
<</button>>\
<<elseif $nicole.boughtMembership is true and $nicole.exercisedToday is true>>\
<<speech "nicole" "$nicole.name">>Exercising anymore today is counterproductive.<</speech>>
<<else>>\
<</if>>\
<<else>>\
You decide to checkout the gym, which seems about as upscale as you expected it to be. At the front desk, you meet the manager, who's wearing a nametag: <<textbox "$nicole.name" "Nicole">>
<<speech "nicole" "$nicole.name">>Heyyy!!! Welcome to my Natty Gym!<</speech>>
<<image nicole main>>
<<speechYou "you">>Hey $nicole.name, I'm just shopping around for a gym that matches my needs. How quickly will it take for a guy like me to get ripped?<</speechYou>>
$nicole.name gives you a once over and grimaces. Ouch
<<speech "nicole" "$nicole.name">>At any other gym? 3 years. But here, we can <i>significantly</i> speed that process up.<</speech>>
<<speechYou "you">>Ok, how much is a membership here?<</speechYou>>
<<speech "nicole" "$nicole.name">>There's a $1000 deposit, and a weekly payment of $300.<</speech>>
Pricey, but if the results come as quickly as $nicole.name promises, it'll be totally worth it.<<set $nicole.met to true>>
<</if>>\
<<if $nicole.boughtMembership is false>>\
<<button "Buy Membership ($1K deposit + $300/week)" "Natty Nicole's Gym">>\
<<payment 1000>>\
<<set $nicole.bio to "Your personal trainer">>\
<<set $expenses.rent += 300>>\
<<set $nicole.boughtMembership to true>>\
<</button>>
<</if>>
<<button [[The Bronx]]>><</button>><<bg title>>\
<h2>Enter the Gigachad</h2>
<<set $paymentCounter to 7>>\
<<set $you.job to "Intern">>\
<<set $you.location to "Home">>\
<<set $you.status to 15>>\
<<set $you.geography to "NYC">>\
<<set $day = 1>>\
<<set $mission.arc = 1.00>>\
<<set $trading.level to 10000000>>\
<<set $jennifer.met to true>>\
<<set $jennifer.bio to "Your cheating ex (mid), probably too busy throating the next cock she finds">>\
<<set $miamelano.met to true>>\
<<set $miamelano.bio to "The 'Interactions Manager of the First Floor at Greystone' (read: Receptionist), looks like she hates poor people. Probably tracks, as she's the heiress of the Vandercunt fortune.">>\
<<set $angela.met to true>>\
<<set $angela.bio to "The Vice President of International Operations. You're surprised both by the fact that someone at her level has taken an interest in you and at how big her titties are!">>\
<<set $miamal.met to true>>\
<<set $alexistexas.met to true>>\
<<set $emily.met to true>>\
<<set $teanna.met to true>>\
<<set $kendrasunderland.met to true>>\
<<set $karlee.met to true>>\
<<set $gabbie.met to true>>\
<<set $eva.met to true>>\
<<button "Last night was a movie brooo" "Home">><</button>><<bg arc2bg>>\
<h2>Giga Chad Takes Washington</h2>
<<set $you.geography to "NYC">>\
<<if $you.cash lt 5>><<set $you.cash = 95783>><</if>>\
<<if $day == 0>><<set $day = 22>><</if>>\
<<if $period == 0>><<set $period = 1>><</if>>\
<<if $you.status == 0>><<set $you.status = 70>><</if>>\
<<set $you.job to "Junior Analyst">>\
<<set $you.income = 125000>><<set $you.items["clothes"] to "low">>\
<<set $you.location to "Manhattan">>\
<<set $mission.arc = 2.0>>\
<<set $trading.level to 10000000>><<set $trading.capital = 10000000>>\
<<set $insiderTradeCountdown = 0>>\
<<set $you.compensation = 0.0005>><<set $you.tax = 0.7>>\
<<set $jennifer.met to true>>\
<<set $jennifer.bio to "Your cheating ex (mid), probably too busy throating the next cock she finds">><<set $miamelano.met to true>>\
<<set $miamelano.bio to "The 'Interactions Manager of the First Floor at Greystone' (read: Receptionist), looks like she hates poor people. Probably tracks, as she's the heiress of the Vandercunt fortune.">>\
<<set $angela.met to true>><<set $angela.bio to "The Vice President of International Operations. She's kind of your sugar mommy.">>\
<<set $kendralust.met to true>><<set $alina.met to true>><<set $blake.met to true>><<set $nikki.met to true>><<set $alexistexas.met to true>><<set $miamal.met to true>><<set $eva.met to true>><<set $gabbie.met to true>><<set $karlee.met to true>><<set $kendrasunderland.met to true>><<set $teanna.met to true>><<set $emily.met to true>><<set $athena.met to true>><<set $kissa.met to true>><<set $adriana.met to true>>\
<<set $kendralust.bio to "The Vice President of Domestic Operations. She's seems incredibly intelligent, and you figure she'll be less malleable than other people at Greystone. Even though she's got a few years on you, you know she probably still looks great under that corporate attire.">>\
<<set $alina.bio to "Your contact at Foresight. She's an enigma, and you have no idea what she is capable of.">>\
<<set $blake.bio to "Your reliable accountant, handling your finances with precision and efficiency. She's got that Ivy League resting bitch face that would look good around your cock">><<set $blake.arc to 1.01>><<set $blake.hint to "Visit $blake.name's office to get your tax work done">><<set $adriana.respect = 10>>\
<<set $nikki.bio to "The General Counsel at Greystone. You're not sure what she learned at Yale Law, because she seems like an idiot.">>\
<<set $alexistexas.bio to "Your incredibly competitive portfolio manager. She's going to ride you hard at this job (hopefully in more ways than one).">>\
<<set $miamal.bio to "Your insider-trading boss at Greystone. The 80 hours a week don't seem to stop her from looking like fucking gorgeous as well.">>\
<<set $eva.bio to "The Quant Division's Head Quant">><<set $gabbie.bio to "The Quant Division's Researcher">><<set $karlee.bio to "The Quant Division's Junior Researcher">>\
<<set $kendrasunderland.bio to "Investment Banking's Managing Director">>\
<<set $teanna.bio to "Investment Banking's Analyst">>\
<<set $emily.bio to "Investment Banking's Junior Analyst. She seems a little airheaded, and you can't shake the feeling you've seen her before.">>\
<<set $athena.bio to "The cashier at Elysian Essentials">>\
<<set $kissa.bio to "$johnny.name's wife, and the regulator who is after your ass.">>\
<<set $paymentCounter to 4>><<set $adriana.met to true>><<set $adriana.bio to "The brilliant risk manager at Greystone and your...love interest?">>\
<<if $miamal.respect == 0>><<set $alina.respect = 5>><<set $kendralust.respect = 5>><<set $miamal.respect = 20>><<set $alexistexas.respect = 15>><<set $angela.respect = 5>><</if>>\
<<set $you.location to "Manhattan">>
<<button "The World is Yours" "Manhattan">><</button>> <<bg westegg>>\
<<set $you.location to "West Egg">>\
<<button "$emily.name's Place" "Emily Place">><</button>>
<<button [[Long Island]]>><</button>><<bg support>>\
<<set $you.location to "Nikki's Office">>\
<<if $thread == "null">>\
<<speech "nikki" "$nikki.name">>Why hello $you.firstName....Is there anything I can help you with?<</speech>>
<<speechYou "you">>Well, let's just say I think I may have been incurring the wrath of the law. I might be getting paranoid, but I feels like I saw a "flower-delivery" van outside my apartment.<</speechYou>>
<<speech "nikki" "$nikki.name">>Uhh, why is that bad?<</speech>>
Jesus, this woman is fucking stupid.
<<speechYou "you">>Look, can you get some heat off me? From the law, that is.<</speechYou>>
<<speech "nikki" "$nikki.name">>Uhh, sure, but it'll cost you $10K in legal fees<</speech>>
<<if $game.mode is "Realistic">>\
<<set _sceneSelectorList to [1, 1, 1, 1, 2]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<button "Hand her the money" "Nikki's Office">><<set $you.cash -= 10000>><<advancePeriod>><<set $thread to _scene>><</button>>
<<else>>\
<<button "Hand her the money" "Nikki's Office">><<set $you.cash -= 10000>><<advancePeriod>><<set $thread = 1>><</button>>
<</if>>
<<elseif $thread == 1>>\
<<set $you.heat -= 5>><<set $thread to "null">>\
$nikki.name comes back about half an hour later.
<<speech "nikki" "$nikki.name">>Ok, I was able to speak to some people at the SEC and worked my magic. I was able to explain some of the more suspicious stuff, but they might still have some information on you. I can go back and talk to them if you like, but it'll set you back another $10K.<</speech>>
<<button "Hand her the money" "Nikki's Office">><<set $you.cash -= 10000>><<set $thread = 1>><<advancePeriod>><</button>>
<<elseif $thread == 2>>\
<<set $you.heat -= 5>><<set $thread to "null">>\
Right when $nikki.name leaves the room, a swarm of interns rush inside, with a fucking telescope. They set up the telescope near the window, and you realize they have it pointed at the SEC building.<<set _x to "Legal Intern">>
<<speech "anon" "_x">>Haha, whenever $nikki.name is out doing "legal work", we love to watch. Best part of the job!<</speech>>
You take a peek through the telescope, and frankly, you're not surprised by what you see. This woman can barely string two coherent thoughts together, let alone a legal argument.
<<vid nikki 1>>
<<vid nikki 2>>
<<vid nikki 3>>
<<vid nikki 4>>
<<vid nikki 5>>
<<vid nikki 6>>
As $nikki.name wipes her face with undoubtedly important trial papers she picked up off the desk, the interns start packing up. It's a short walk back to Greystone Associates, and she'll be here any minute now.
When she gets back to her office, she tells you:
<<speech "nikki" "$nikki.name">>Ok, I was able to "work my magic" at the SEC, you should have I can go back and talk to them if you like, but it'll set you back another $10K.<</speech>>
<<speechYou "you">>What? I'm paying you $10K to get fucking railed?<</speechYou>>
<<speech "nikki" "$nikki.name">>Do you want to go over there and take my place instead?<</speech>>
<<set _sceneSelectorList to [1, 1, 1, 1, 2]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>
<<button "Hand her the money" "Nikki's Office">><<set $you.cash -= 10000>><<advancePeriod>><<set $thread to _scene>><</button>>
<</if>>
<<button [[Leave her office|Support Floor]]>><</button>><<bg brothel>>\
<<set $you.location to "Brothel Backroom">>\
<<button "Check out the private room" "Brothel Private Room">><</button>>
<<button "Eat some pussy ($50)" "BrothelEatPussy">><<payment 50>><</button>>
<<button "Get a blowjob ($100)" "Brothel BJ">><<payment 100>><</button>>
<<button "Fuck a prostitute ($250)" "Brothel Fucking">><<payment 250>><</button>>
<<button "Get the whole package ($1000)" "BrothelFullPackage">><<payment 1000>><</button>>
<<button [[Return to The Trader's Cabaret|Brothel]]>><<advancePeriod>><</button>><<bg brothel>><<set _bj = ["bj1", "bj2", "bj3", "bj4", "bj5"]>>\
<<set _choiceNumber = Math.floor(Math.random()*_bj.length)>>\
<<vid brothel _bj[_choiceNumber]>>
<<button "Get another blowjob" "Brothel BJ">><<payment 100>><</button>>
<<button "Try something else" "Brothel Backroom">><</button>>
<<button [[Return to The Trader's Cabaret|Brothel]]>><<advancePeriod>><</button>>
<<bg brothel>><<set _fucking = ["fucking1", "fucking2", "fucking3", "fucking4", "fucking5","fucking6","fucking7","fucking8","fucking9"]>>\
<<set _choiceNumber = Math.floor(Math.random()*_fucking.length)>>\
<<vid brothel _fucking[_choiceNumber]>>
<<button "Keep on fucking" "Brothel Fucking">><<payment 250>><</button>>
<<button "Try something else" "Brothel Backroom">><</button>>
<<button [[Return to The Trader's Cabaret|Brothel]]>><<advancePeriod>><</button>><<bg brothel>><<set _tFP = ["theFullPackage1", "theFullPackage2"]>>\
<<set _choiceNumber = Math.floor(Math.random()*_tFP.length)>>\
<<vid brothel _tFP[_choiceNumber]>>
<<button "Run it back" "BrothelFullPackage">><<payment 1000>><</button>>
<<button "Try something else" "Brothel Backroom">><</button>>
<<button [[Return to The Trader's Cabaret|Brothel]]>><<advancePeriod>><</button>><<bg brothel>>\
<<vid brothel pussyeating>>
<<button "Keep Eating Pussy" "BrothelEatPussy">><<payment 50>><</button>>
<<button "Try something else" "Brothel Backroom">><</button>>
<<button [[Return to The Trader's Cabaret|Brothel]]>><<advancePeriod>><</button>><<set _gabrielaarc to [0.0, 1.00, 1.03]>>\
<<set _skylararc to [0.0, 1.0]>>\
<<set _alexarc to [0.0,]>>\
<<girlcheck $gabriela _gabrielaarc>>\
<<if $gabriela.arc == 1.04 and $you.physique gte 5>>\
<<set $gabriela.hint to "She is now in your harem.">>
As you check your phone, you get a text from $gabriela.name.
<<image gabriela skinnyNude>>
<<speech "gabriela" "$gabriela.name">>Soooo, what do you think?<</speech>>
<<speechYou "you">>Wow, you look really good!<</speechYou>>
<<speech "gabriela" "$gabriela.name">>Thanks! I noticed you've been making gains in the gym, and I just got so inspired!<</speech>>
So, seems like $gabriela.name isn't totally irredemable. But what do you think about her new lifestyle change?
NOTE: THIS CHOICE IS PERMANENT
<<button "I like her new look" $you.location>><<set $gabriela.skinny to true>><<girlAdvance $gabriela>><</button>> <<button "I liked the extra pounds" $you.location>><<girlAdvance $gabriela>><</button>>\
<</if>>\
<<set _c to $skylar>>\
<<if $gabriela.arc gte 1.04 and _c.arc == 0.0 and $athena.met is true>>\
<<girlcheck _c _skylararc>>\
<<elseif _c.arc == 1.0 and _c.minMoney lte $you.cash and _c.minStatus lte $you.status and _c.minPhysique lte $you.physique>>
<<girlcheck _c _skylararc>>\
<<elseif $skylar.arc gte 1.01 and $alex.met is false and $you.status gt 72>>
<<girlcheck $alex _alexarc>>\
<<else>>\
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]>>\
<<set _sceneChance = Math.floor(Math.random()*10)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<if $game.mode == 'Realistic' and $skylar.arc gt 1.01 and _scene is 5>>\
As you check your phone, you see a text from $skylar.name
<<speech "skylar" "$skylar.name">>Lee, I can't believe you slept with Anna!!!<</speech>>
What? Wasn't Lee her ex boyfriend's name? Before you can text back, she sends a picture
<<image "skylar" "skylarTinderOOPS">>
<<speech "skylar" "$skylar.name">>I might have loved you, but I have other men who can fulfill my needs<</speech>>
<<speechYou "you">>Uhh, $skylar.name, this is $you.firstName...<</speechYou>>
<<speech "skylar" "$skylar.name">>OMG I'm so sorry! That was not meant for you, please delete that!<</speech>>
<<elseif $alex.met is true and _scene is 6>>
<<speech "alex" "$alex.name">>Sooo Mr. $you.lastName, what do you think?<</speech>>
<<image "alex" sexting>>
<<speechYou "you">>I think I want to make you a Mrs. $you.lastName<</speechYou>>
<<speech "alex" "$alex.name">>Ohh hush...<</speech>>
<</if>>\
<</if>>
<<if $gabriela.arc gt 1.03>><<button "Hook up with $gabriela.name" "The Bluehall">><<payment 30>><</button>><</if>> <<if $skylar.arc gt 1.01>><<button "Hook up with $skylar.name" "Avignon Riverview">><<payment 30>><</button>><</if>> <<if $alex.arc gt 1.01>><<button "Hook up with $skylar.name" "Avignon Riverview">><<payment 30>><</button>><</if>>
<<if $alex.arc gt 1.02>><<button "Hook up with $alex.name" "The Brooklynite">><<payment 30>><</button>><</if>>
<<button [[Turn off your phone|Home]]>><</button>>
<<bg firstApartment>>\As you stare at your phone, you decide it's time to give this online dating thing a try. Single life in the big city has been getting lonely, and Flirtfolio seems to be the talk of the town. You download the app, your heart fluttering with a mix of excitement and trepidation.
You start setting up your profile, uploading a decent photo and entering your income level. It feels odd, like you're auctioning off your time and attention, but you press on.
As you start swiping, an uncomfortable pattern emerges. The women you're matching with aren't quite what you'd hoped. Some are overweight, others far from your usual type, and a surprising number seem more interested in promoting their SoleyStars accounts than finding a date.
<<image Scenery ofTinderGirl>>
<<speechYou "you">>Maybe Ted Kaczynski was right...RIP Teddy K<</speechYou>>
Hours go by. You're swiping, reading profiles, crafting messages, but nothing sticks. Each profile blurs into the next. You start to feel more like a consumer than a potential partner, picking from a catalogue of products that don't quite fit.
There's a growing sense of disillusionment as you realize this digital marketplace values surface level traits over deeper connections. It's a jarring reality, not at all like the romanticized versions of dating you've seen in movies and TV shows.
With a heavy sigh, you shut off your phone and toss it aside. Love, it seems, won't be won so easily.
You've sent out countless messages tonight, maybe by the time you check your phone tomorrow someone will have swiped right?
<<girlAdvance $gabriela>><<set $gabriela.arc to 1.00>>\
<<set $gabriela.countdown to 1>>\
<<set $gabriela.hint to "Wait one day, then check the Flirtfolio app">>The next day, you cautiously open Flirtfolio, not expecting anything new. To your surprise, you notice a new match notification from a girl named <<textbox "$gabriela.name" "Gabriela">>.
<<image gabriela catfish1>>
Gabriela's photos are different from what you've been seeing. Each one is more tantalizing than the last - a calculated series of thirst traps. Her radiant smile, piercing eyes, and confident pose make your heart skip a beat.
<<image gabriela catfish2>>
You take the plunge and send her a message
<<speechYou "you">>Hey Gabriela, gotta say your pictures caught my eye. How's your day going?<</speechYou>>
To your surprise, she replies almost immediately.
<<speech "gabriela" "$gabriela.name">>What can I say, I just try to look my best in case a handsome man like you stumbles onto my profile! I'm pretty good, what about yourself?<</speech>>
You're caught off guard. You didn't expect such a quick and friendly reply.
<<speechYou "you">>I'm having a pretty good day, especially now. Your pictures... let's just say they stand out in the crowd<</speechYou>>
Gabriela's responses are quick and flirtatious. You feel a thrill you haven't felt before on Flirtfolio. She's fun, responsive, and somehow different from the rest. With increasingly risqué lines of conversation, you decide it's time to escalate the conversation.
<<speechYou "you">>How about we take this conversation offline? There's this great place, the Dorsia Club, that you might like.<</speechYou>>
You anxiously wait for her reply. After a few heart-stopping moments, she responds.
<<speech "gabriela" "$gabriela.name">>LOL who hasn't heard of the Dorsia Club? I'm there in the evening, why don't you hit my line the next time you stop by?<</speech>>
With a grin, you agree to her suggestion. For the first time since you downloaded Flirtfolio, you feel a glimmer of hope and excitement.
<<girlAdvance $gabriela>><<set $gabriela.met to true>><<set $gabriela.hint to "You can meet $gabriela.name at the Dorsia Club any evening.">>Your eyes scan the club, searching for $gabriela.name. You've seen her pictures enough times to have them imprinted in your mind. You look for the confident smile, the piercing eyes, the figure that held you captive in every photo.
After a few minutes of unsuccessful scanning, a girl walks up to you. She's quite overweight, nothing like the woman you've been chatting with. She beams at you, her smile surprisingly familiar.
<<speech "gabriela" "$gabriela.name">>Oh my gawwdd, hi $you.firstName!<</speech>>
<<image gabriela 1>>
Your mind races as you take a second look at her. The similarities are there, but her current state is a far cry from her pictures. You feel a sinking sensation as the reality sets in - you've been catfished.
<<button [[Heyyyyy....(continue storyline with her)|The Dorsia Club]]>><<girlAdvance $gabriela>><<set $gabriela.hint to "Continue your interaction at the Dorsia Club">><</button>>
<<set $gabriela.bio to "The Flirtfolio catfish">>
<<button [[I think you've got the wrong guy. (End storyline with her)|The Dorsia Club]]>><<set $gabriela.arc to 2>><<set $gabriela.hint to "You chose to end this mission early">><</button>>\
<<speechYou "you">>$gabriela.name...?<</speechYou>>
You pray that this is some sort of mix-up. But the beaming smile on her face leaves no room for doubt. She nods, clearly oblivious to your internal turmoil.
<<speech "gabriela" "$gabriela.name">>In the flesh! Sorry if I look a bit different, those pictures were from a little while ago.<</speech>>
A 'little while' feels like an understatement. You feel your enthusiasm drain away, replaced by a sour taste of deception. But you take a deep breath, trying to regain your composure. The night is young, and you decide to see how it goes. Maybe this can be a pump and dump kinda thing. Everyone on FlirtFolio has had to fuck their way through a few whales before those quality matches come up, right?
As if she read your mind, $gabriela.name tells you
<<speech "gabriela" "$gabriela.name">>By the way, you should know I never sleep with guys on the first date.<</speech>>
You struggle to smile as the two of you sit at a corner booth. As the night wears on, you find yourself struggling to keep the conversation alive. $gabriela.name doesn't seem too interested in engaging, her attention constantly drifting back to her phone. She occasionally laughs at something on her screen, but doesn't share the joke. It's like she's more interested in her online world than the real one right in front of her.
<<if $game.mode is "Fairy Tale Land">>\
Finally, after what feels like an eternity of one-sided conversation, Gabriela glances at the time on her phone and finally makes eye contact with you
<<set $gabriela.hint to "Check status on the Flirtfolio page">>
<<speech "gabriela" "$gabriela.name">>It's getting late. I have to, uhh, powder my nose...<</speech>>
You decide to preserve what's left of your dignity and make a gracious exit. Getting rejected by a whale is really not a Giga Chad move, maybe you should work on yourself some more before trying to reach out to her again on the FlirtFolio app?
As you walk out, you notice $gabriela.name surreptitiously transfer a joint out of her purse. Would getting her stoned be a possible future avenue for getting between those thunder thighs?
<<else>>\
<<speechYou "you">>So, what are you doing on your phone?<</speechYou>>
<<speech "gabriela" "$gabriela.name">>Ugh, this asshole I hooked up with still owes me $50 for Plan B...<</speech>>
Jesus, she let some random guy creampie her last night?
<<set $gabriela.hint to "Watch her or go home. Then check FlirtFolio status.">>
<<speechYou "you">>I thought you don't sleep with guys on the first date?<</speechYou>>
<<speech "gabriela" "$gabriela.name">>Who said we went on a date...<</speech>>
Hey, she might not be the kinda girl you take home to your parents, but at least she's easy.
As you sit there stewing in your thoughts, you hear...
<<set _x to "Club Hipster">>
<<speech "anon" "_x">>Dammnn girl, you look like you like to part-ayyy!<</speech>>
Almost instantly, $gabriela.name's face lights up, and she coyly smiles back
<<speech "gabriela" "$gabriela.name">>Oh I don't know, depends who we're partying with...<</speech>>
<<speech "anon" "_x">>I don't know, maybe we can chill with Mary Jane for a bit?<</speech>>
As he pulls out a joint, you realize you are helpless to stop what is going to happen. $gabriela.name is a party girl, and nothing gets a party going like weed.
Fuck, this guy is gonna steal your date.
<<speech "anon" "_x">>Why don't you wait up on me in one of the private rooms shawty?<</speech>>
As she walks by, $gabriela.name yelps and laughs as this stranger slaps her ass. When she's out of earshot, he leans in.
<<speech "anon" "_x">>Damn brah, she even left you with the bill. Look, she's a blow bunny, brah. Fun for the night, but not the kind you take home to momma. This ain't a game for nice guys. But if you want to learn, stick around. You might just pick up a few things.<</speech>><<payment 300>>
<<button [[Might as well check out the action|gabriela1.02NTR]]>><</button>>
<<button [[Head Home|Home]]>><</button>>
<</if>><<girlAdvance $gabriela>><<set _c to $gabriela>>
<<if $you.location is "Home" and $you.items["weed"] gte 1 and _c.minMoney lte $you.cash and _c.minStatus lte $you.status and _c.minPhysique lte $you.physique>>\
You have a feeling $gabriela.name may be more open to a second date, so you take some shirtless dick pics with your apartment as the background, and send it to her. You figure she's not really the kind of girl who's a prude.
<<set $gabriela.hint to "Go to the Bluehall in The Bronx and fuck her">>
<<speechYou "you">>Like what you see?<</speechYou>>
<<speech "gabriela" "$gabriela.name">>My place. Now. I live at The Bluehall in the Bronx<</speech>>
You didn't expect a ton of fanfare, but damn. You can take an Uber there if you don't know the way, or you could just walk there.
<<button "Call up an Uber" "Gabriela place">><<payment 30>><</button>>
<<elseif $gabriela.arc == 1.03 and $you.location is "Gabriela place" and $you.items["weed"] gte 1 and _c.minMoney lte $you.cash and _c.minStatus lte $you.status and _c.minPhysique lte $you.physique>>\
<<useItem "weed" 1>>\
You push the door open, and see $gabriela.name's studio apartment. There's no candle-lit dinner, nor is there any excited lady in a cute little sweater waiting at the couch with Netflix opened up. This is just a hookup, with a girl who isn't even in the same league as you.
$gabriela.name is waiting on her bed, already ripping off her clothes. She takes a lit joint from your hands, and starts playing with herself.
<<speechYou "you">>God, you made me wait this long to fuck you. You look like a fucking cow, open your fucking mouth<</speechYou>>
$gabriela.name giggles, and even seems to get turned on. And it makes sense.
<<vid gabriela home1>>
You think about why $gabriela.name was turned on when you humiliated her over her weight. Girl enters hook up culture, only aiming for the top 1% guy. Girl finds and fucks said guy, who treats her like shit. Girl becomes co-dependent and emotionally neglected, and the guy leaves her. Girl starts the cycle all over again, and each time she goes through it, she becomes more and more jaded.
<<set $gabriela.hint to "She is now in your harem. Increase your physique to 5 for a little surprise!">>
Who knows how many cycles $gabriela.name went through before ending up with you deep in her guts.
<<vid gabriela home2>>
You're not really interested in looking at her face, so you flip her over to get a better view of that ass
<<vid gabriela home3>>
As you pound away at her ass, you look around her room. Opened cans of beer, half smoked joints all over the place, and a video recording set up in front of an old computer.
<<vid gabriela home4>>
The computer set up interests you. Is she a streamer?
No, more likely $gabriela.name is a SoloStarz girl, the go-to website for sex workers and celebrities around the world. Judging by the conditions of her apartment, she's probably just like the countless other women who can barely make any money between shifts on the website.
Pretty standard broke, slutty girl in NYC stuff. Let's hope she can get knocked up by some rich asshole, maybe the child support will improve her life. Oh fuck, and speaking of child support, you've gotta pull out if you don't want to be the bagholder!
As you empty your balls onto her face, she puts her hand on your chest
<<vid gabriela home5>>
<<speech "gabriela" "$gabriela.name">>Do you want to stay the night babe?<</speech>>
Babe? Is this the same hoe who treated you like shit during that first date? Fuck her.
<<girlAdvance $gabriela>>
<<speechYou "you">>Yeah.....thing is, I've got work early tomorrow<</speechYou>>
<<speech "gabriela" "$gabriela.name">>Oh, ok. Maybe next time?<</speech>>
<<speechYou "you">>Haha, we'll see<</speechYou>>
Fuucckk that
<<else>>\
Your sexual market value isn't quite high enough for a second date with $gabriela.name, or maybe you're missing a little something. \
<<set $gabriela.hint to "Have at least $50K, 10 status, 1 physique, and buy one package of weed from $tommy.name.">>
<</if>>\<<bg DorsiaClub>>\
<<set _x to "Club Hipster">>\
You slyly trail behind $gabriela.name and her new friend as they walk to one of the Dorsia Club's many curtain-covered private rooms that rent by the hour.
By the time you get there, $gabriela.name is already on her knees choking on a new dick.
<<vid gabriela club1>>
$gabriela.name shows a little initiative and pushes the stranger back on the cheap bed. Cradling his cock in her hands, she guides it to her pussy, and drops down.
<<vid gabriela club2>>
She soon gets tired (lol), and gets off of him. He pushes $gabriela.name off himself, and starts methodically pumping away at her. That should have been you, but here you are, peeping behind the curtains while jerking off.
<<vid gabriela club3>>
Flipping $gabriela.name on her back, he proceeds to pump away at the girl whose bill you just covered.
<<speech "anon" "_x">>Stick those titties in your mouth you fat fuck!<</speech>>
<<vid gabriela club4>>
Thoroughly worn out and exhausted, $gabriela.name tilts her head up and opens wide waiting for her load
<<speech "anon" "_x">>Still hungry pig? Jesus alright, fill you stomach up with this<</speech>>
You watch as he sprays $gabriela.name with his semen.
<<vid gabriela club5>>
While $gabriela.name lays down on the bed, panting from the pounding she just took, the stranger quickly gets dressed
<<speech "gabriela" "$gabriela.name">>Babe please stay and cuddle for a bit!<</speech>>
<<speech "anon" "_x">>Bitch what? I barely know you lmao<</speech>>
As he pulls back the curtain, he reveals you standing behind with your dick still in your hand. They both laugh as you quickly try to stick your boner back in your pants.
<<speech "anon" "_x">>Why don't you cuddle with this guy? He sure seems excited to see you<</speech>>
<<speech "gabriela" "$gabriela.name">>Ew, I think I'm good<</speech>>
They both laugh, and as he walks out, he says to you quietly
<<speech "anon" "_x">>One last tip lil bro, if you leave first before anyone notices anything, the girl gets left with the tab for the room haha<</speech>>
Hey, maybe one of these days you'll be in a position to ditch a bitch with the bill.
<<button "Head Back to the Club" "The Dorsia Club">><</button>><<advancePeriod>><<bg theBluehall>>\
<<set $you.location to "Gabriela place">>\
<<set _gabrielaarc to [1.03]>>\
<<set _ntrChanceList to [1, 2, 3]>>\
<<set _ntrChance = Math.floor(Math.random()*3)>>\
<<set _ntr = _ntrChanceList[_ntrChance]>>\
<<if $gabriela.arc gte 1.04>>\
<<if $currentAction is "cum">>\
<<set $currentAction to "null">>\
<<if $gabriela.skinny>>\
As you jizz across $gabriela.name's chest, she giggles as part of your warm load hits her chin.
<<vid "gabriela" "slim5">>
There's no asking if you want to stay over for the night. The two of you have your routine, and $gabriela.name knows who she is to you. You make your exit, while she cleans herself up.
<<else>>\
As you jizz across $gabriela.name's face, she greedily swallows up your load.
<<vid "gabriela" "home5">>
There's no asking if you want to stay over for the night. The two of you have your routine, and $gabriela.name knows who she is to you. You make your exit, while she cleans herself up.
<</if>>
<<elseif _ntr == 1 and $game.mode == 'Realistic'>>\
<<if $gabriela.skinny>>\
<<set _x to "Jock">>\
Wait, $gabriela.name, who the fuck is this new guy? Damn, should have called ahead. Whoever this jock is, he's man-handling the shit out of $gabriela.name!
<<vid gabriela ntr1>>
From rhythmic slapping noise that you can hear through the door, it's clear $gabriela.name is wetter with this guy than he is with you. Despite this, the dude she's fucking still seems a little insecure.
<<speech "anon" "_x">>Am I the biggest you've ever had<</speech>>
<<speech "gabriela" "$gabriela.name">>Mmm yes babe, the second biggest guy doesn't even come close to as big as you<</speech>>
Well that's a lie. Judging from what you're seeing through the crack in the door, he's only maybe 2 or 3 inches bigger than you. Maybe one of $gabriela.name's other fuckbuddies is bigger?
<<vid gabriela ntr2>>
He lifts $gabriela.name up, and bounces her on his cock. She's so wet that she's able to easily take the entire length of his cock. You should take some tips from this guy, he's getting $gabriela.name to make noises you've never heard from her.
<<vid gabriela ntr3>>
<<speech "anon" "_x">>You ever done anal before?<</speech>>
Christ, she's never even done that with you
<<speech "gabriela" "$gabriela.name">>Uhh, a few times, it's not really my thing...<</speech>>
<<speech "anon" "_x">>I'll make you enjoy it<</speech>>
She willingly obliges, but as he tries to ram his dick up her butt, you can see $gabriela.name tense up. Her pleasure turns to pain, and she yelps
<<speech "gabriela" "$gabriela.name">>Ah ah AH, you're too big babe! Can we please try something else?<</speech>>
<<vid gabriela ntr5>>
This guy definitely seems pissed that $gabriela.name couldn't take it up the ass. He pushes $gabriela.name to the edge, and mounts himself onto her. Thrusting into her as fast as he can, and $gabriela.name gets turned into his ragdoll.
<<speech "gabriela" "$gabriela.name">>oh mY GOD! HOLY SHIT! FUCK FUCK FUCK! NO ONE HAS EVER RAILED ME LIKE THIS BEFORE IN MY LIFE, FUCKING MARRY ME!<</speech>>
<<speech "anon" "_x">>Shut your mouth slut<</speech>>
At this point $gabriela.name is just yelling from the sheer pleasure she's experiencing. Her neighbors start hitting the walls to get her to shut up, and she just screams louder. People down the hall are peeking out their doors to see what the hell is even happening.
<<vid gabriela ntr4>>
After creaming god knows how many times, it's the jock's turn, and he blew his load across her face.
<<vid gabriela ntr6>>
Better leave before he walks out, maybe come back around and get some sloppy seconds?
<<else>>\
<<set _x to "Club Hipster">>\
As you open the door, the stench of recently smoked weed hits you like a freight train. $gabriela.name looks at you with surprise, but she can't say much with a cock in her mouth. Attached to that cock is the hipster who fucked her at the club
<<speech "anon" "_x">>Hey-o, it's the loser from Dorsia! Is this your boyfriend?<</speech>>
$gabriela.name looks embassed. You're not sure if it's from being caught seeing another guy, or if it's from the accusation that the two of you are dating.
<<speech "gabriela" "$gabriela.name">>Stop it, I'm not dating him. <</speech>>
<<speechYou "you">>How can you still be seeing him $gabriela.name? He left you with the bill for the room?<</speechYou>>
Before she can answer, he slams his dick back in her mouth. She sure knows how to pick them.
<<vid gabriela club1>>
<<speech "anon" "_x">>Stay a little while buddy, I'll show you how Captain Ahab handles this whale<</speech>>
You stand there shocked as $gabriela.name climbs up on top of and starts riding the man who just degraded her.
<<vid gabriela club2>>
<<speech "anon" "_x">>Feeling a little shy $gabriela.name? You were so local before your little friend walked in on us<</speech>>
Her tits swing each time the douchebag pumps into her from behind. A little sheepishly, she tries to reply while gripping the sheets
<<speech "gabriela" "$gabriela.name">>Mmmm, ahh. A little, but $you.firstName seems to like watching me get my guts rearranged<</speech>>
<<vid gabriela club3>>
The hipster starts fucking $gabriela.name harder, and all you can do is sit and watch in agony (any maybe a little pleasure).
<<vid gabriela club4>>
<<speech "anon" "_x">>Alright slut, time to paint your face, come to daddy<</speech>>
He sprays all over her face, while $gabriela.name tries to catch whatever she can get in her mouth.
<<vid gabriela club5>>
<<speech "anon" "_x">>Alright lil bro, I'm all done using her. Come back in a few minutes, she'll probably have most of my cum out of her hair by then. At least she'll have it wiped off her face. Maybe.<</speech>>
<</if>>\
<<else>>\
<<set $currentAction to "null">><<set $person to "gabriela">>\
<<set $exitpage to "Gabriela place">>\
<<if $gabriela.skinny is false>>\
<<if $currentAction is "null">>\
<<speech "gabriela" "$gabriela.name">>Hey babe, come on in<</speech>>
<<set $sexlist = ["Blowjob", "Missionary", "Doggystyle POV", "Doggystyle", "Facial"]>>\
<<set $sexdict = {"Blowjob": "home1", "Missionary": "home2", "Doggystyle POV": "home3", "Doggystyle": "home4", "Facial": "home5"}>>
<<set $sexDescription = {
"Blowjob": "$gabriela.name dutifully sucks your cock, and as she bobs her head up and down, her tits sway from side to side",
"Missionary": "Holding her hand up to your groin, $gabriela.name slowly controls how fast you thrust inside her. She soon gives us, as waves of pleasure spread through both of your bodies. The only noise that breaks the methodical slapping of your full balls against her ass is her moans.",
"Doggystyle POV": "As you slide into her ass, it doesn't take $gabriela.name long to push back onto your cock more than you thrust into her. Her ass is so big that it doesn't let you fully penetrate her from this angle.",
"Doggystyle": "$gabriela.name arches her back as you relentlessly pound into her. Each thrust brings both you and her closer to orgasm"
}>>\
<<button "Fuck $gabriela.name" "SexPage">><</button>>
<<else>>
<</if>>
<<else>>\
<<if $currentAction is "null">>\
<<speech "gabriela" "$gabriela.name">>Hey babe, come on in<</speech>>
<<set $sexlist = ["Blowjob", "Cowgirl", "Doggystyle", "Sidefuck", "Titjob"]>>\
<<set $sexdict = {"Blowjob": "slim1", "Cowgirl": "slim2", "Doggystyle": "slim3", "Sidefuck": "slim4", "Titjob": "slim5"}>>
<<set $sexDescription = {
"Blowjob": "$gabriela.name dutifully sucks your cock, and as she bobs her head up and down, her tits sway from side to side",
"Cowgirl": "While she may have lost some weight, $gabriela.name's ass still has a healthy amount of fat on it, making a resounding thwack as she rides you",
"Doggystyle": "As you slide into her ass, it doesn't take $gabriela.name long to push back onto your cock more than you thrust into her. Her ass is so big that it doesn't let you fully penetrate her from this angle.",
"Sidefuck": "$gabriela.name arches her back as you relentlessly pound into her. Each thrust brings both you and her closer to orgasm"
}>>\
<<button "Fuck $gabriela.name" "SexPage">><</button>>
<<else>>
<</if>>
<</if>>\
<</if>><</if>>
<<girlcheck $gabriela _gabrielaarc>>\
<<button [[The Bluehall]]>><<advancePeriod>><</button>><<bg uber>>\
<<button "Manhattan" "Manhattan">><<payment 30>><</button>> <<button "The Bronx" "The Bronx">><<payment 30>><</button>> <<button "Brooklyn" "Brooklyn">><<payment 30>><</button>> <<button "Queens" "Queens">><<payment 30>><</button>> <<button "Long Island" "Long Island">><<payment 30>><</button>> <<button "Upstate" "Upstate">><<payment 30>><</button>>
<<button "Exit App" $you.location>><</button>>$gabriela.name has been fun, but you want more. While she's a good fuck, you know variety is the spice of life.
As you hop back on the FlirtFolio app, you notice one profile that catches your eye.
<<textbox "$skylar.name" "Skylar">>.
<i>Looking for good company to shake off some old dust. No heartbreakers.</i>
<<image skylar 1>>
<<image skylar skylarTinder1>>
Interesting bio. A hint of a failed relationship? Possibly a rebound? You swipe right, and play the waiting game...<<set $skylar.countdown to 1>>\
<<set $skylar.arc to 1.00>>\
<<set $skylar.hint to "Check FlirtFolio the day after matching with $skylar.name when you have $90K, 35 status, and 3 physique.">><<set $skylar.met to true>>You shoot her a message:
<<speechYou "you">>Dusting off old memories can be fun. What do you say we shake things off together?<</speechYou>>
Almost immediately, you see $skylar.name typing. You hold your breath as her response pops up:
<<speech "skylar" "$skylar.name">>That depends. How good are you at playing distractions? <</speech>>
<<speechYou "you">>Guess you'll have to find out, won't you?<</speechYou>>
<<speech "skylar" "$skylar.name">>Bold. I'm intrigued.<</speech>>
<<speechYou "you">>Why don't you drop your address, I'll bring a bottle of wine<</speechYou>>
<<speech "skylar" "$skylar.name">>Make it two, I live at Avignon Riverview in Queens<</speech>>
If you have two bottles of wine, you might as well head over. If not, stop by Elysian Essentials, and then grab an Uber into town.
<<set $skylar.met to true>>
<<button "Uber to $skylar.name's place" "Avignon Riverview">><<payment 30>><</button>>\
<<girlAdvance $skylar>>\
<<set $skylar.hint to "Go to $skylar.name's house in Avignon Riverview, Queens, with at least two bottles of wine">><<if $you.items["wine"] lt 2 and $currentAction neq "cum">>
How could you forget the wine! Go back and buy some from Elyssian Essentials in Brooklyn.
<<elseif $currentAction is "null">>
<<speech "skylar" "$skylar.name">>Why hello there $you.firstName...<</speech>>
$skylar.name stands there, an enticing vision in a casual, yet stylish outfit. Her silver hair is tied back in a loose bun, highlighting her sharp cheekbones and playful eyes. She ushers you in with a warm smile, and you follow her into the living room.
<<useItem "wine" 2>>
The room speaks volumes about her recent past. A men's jacket casually thrown over a chair, a framed photo of her with an unrecognizable guy turned face down. You notice a box stashed away in a corner, filled with what seems like letters and memorabilia.
<<speech "skylar" "$skylar.name">>Crap, I forgot to throw that out. Uhh, ignore that, follow me to the kitchen<</speech>>
You follow her into the kitchen, noticing her ease as she moves around the space. She uncovers the food she's prepared, revealing a richly garnished pasta dish.
<<speech "skylar" "$skylar.name">>It's a family recipie, I hope you're not allergic<</speech>>
She fills your plate and the two of you dig in. The food is amazing, better than anything you've tasted in a while.
<<speechYou "you">>This is incredibly $skylar.name<</speechYou>>
You watch a genuine smile appear across her face, as her gaze drops down to her plate before meeting yours.
<<speech "skylar" "$skylar.name">>Thank you...to be honest, I miss cooking for someone.<</speech>>
You sense the subtle hint of loneliness in her voice and decide to steer the conversation towards lighter topics.
<<speechYou "you">>Well I have to say, you certainly are full of surprises.<</speechYou>>
<<speech "skylar" "$skylar.name">>Life's too short to be ordinary...<</speech>>
The two of you stare intensely at each other, and you decide to escalate. Placing your hand on her thigh, you pull her in for a kiss.
The next few minutes are a blur, as you rip each other's clothes of and spend the rest of the evening on her bed...
<<button "Now how will you spend this evening?" "SexPage">><</button>>
<<set $currentAction to "null">>\
<<set $person to "skylar">>\
<<set $exitpage to "Skylar Place">>
<<set $sexlist = ["Doggystyle", "Reverse Cowgirl", "Cowgirl", "Missionary", "Cum in her Mouth"]>>\
<<set $sexdict = {"Doggystyle": "v1", "Reverse Cowgirl": "v2", "Cowgirl": "v3", "Missionary": "v4", "Cum in her Mouth": "v5"}>>
<<set $sexDescription = {
"Doggystyle": "As you hit it from the back, you're suprised by the lack of foreplay it took for you to get to this stage. Maybe wining and dining them is enough? Regardless, you better switch positions soon if you want to avoid cumming",
"Reverse Cowgirl": "$skylar.name's frontal assets are certainly something to marvel at, but now that her ass checks are pounding against her groin, you are in a position to appreciate her more underrated asset.",
"Cowgirl": "$skylar.name has shocking endurance as she keeps riding the hell out of you. Most girls wouldn't last as long as her, especially considering the size of your member",
"Missionary": "$skylar.name moans as you shove yourself deep inside her, again and again. Her nails scratch your arms and her eyes roll back from the pounding you're giving her.",
}>>\
<<else>>
<<set $currentAction to "null">>
$skylar.name fed you dinner, so you feel it's only fair to give her something to swallow back for all her hard work. $skylar.name dutifully obliges.
<<vid "skylar" "v5">>
<<speechYou "you">>Soooo, what are we?<</speechYou>>
<<speech "skylar" "$skylar.name">>Friends with benefits?<</speech>>
You idiot. It would have been better if you hadn't said anything at all. Better head out before you make even more of a fool of yourself.
<<girlAdvance $skylar>>\
<</if>>
<<set $skylar.hint to "She is now in your harem.">><<set $skylar.bio to "The Flirtfolio Rebound.">><<bg avignonRiverview>>\
<<set $you.location to "Skylar Place">>\
<<set _skylararc to [1, 1.01,]>><<set _c to $skylar>>\
<<if _skylararc.includes(_c.arc)>>\
<<girlcheck _c _skylararc>>\
<<else>>\
<<if $currentAction is "cum">>\
<<set $currentAction to "null">>\
<<if $thread is 1>>\
<<set $thread to "null">>\
<<speech "skylar" "$skylar.name">>You taste amazing $you.firstName...<</speech>>
<<vid "skylar" "v5">>
You and $skylar.name idly chat for a few minutes, before you put your clothes back on and head on out. She made it pretty clear she only wants to be FWBs, and you have no interest in trying to form a more meaningful relationship with her. You give her one last wistful look before continuing on with your life.
<<else>>\
<<set $thread to "null">>\
<<speech "skylar" "$skylar.name">>Wow, you came so much $you.firstName! And it is soo warm, you must have been holding it in for a while.<</speech>>
<<vid "skylar" "v26">>
As $skylar.name wipes your cum off her stomach and tits, the two of you chat idly for a few minutes. She made it pretty clear she only wants to be FWBs, and you have no interest in trying to form a more meaningful relationship with her. You give her one last wistful look before continuing on with your life.
<</if>>
<<else>>\
<<set _sceneSelectorList to [1, 2, 3]>>\
<<set _sceneChance = Math.floor(Math.random()*3)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<set $currentAction to "null">>\
<<set $person to "skylar">>\
<<set $exitpage to "Skylar Place">>\
<<if $game.mode == 'Realistic' and _scene == 1>>\
<<set _x to "Lee">>\
You're looking forward to surprising $skylar.name with a passionate and impromptu hookup, when you notice the door to her apartment is slightly ajar.
You peek behind the door, and you see $skylar.name's struggling to take a pretty well endowed man in her mouth. So this is why she never wanted to take your relationship with her to the next level...
<<vid "skylar" "n1">>
The guy mounts $skylar.name on his cock, pulls her into his body, and starts rapidly thrusting into her. $skylar.name's pussy eagerly slides open for him
<<speech "skylar" "$skylar.name">>Lee your cock feels sooo gooood...<</speech>>
Her voice trails off and echoes as he continues to fuck her. This Lee guy must have been her ex boyfriend.
<<vid "skylar" "n2">>
<<speech "anon" "_x">>Get on your knees bitch<</speech>>
$skylar.name's pussy and asscheeks looks raw from the pounding she's getting. It wasn't so long ago that you were the guy pumping into her between those legs. You suppose before you it was Lee, so he's just reclaiming her pussy. It'll be your turn to take it back soon. Maybe there's other guys who've had a shot at it? Both you and $skylar.name get dizzy, although for altogether different reasons.
<<vid "skylar" "n3">>
$skylar.name yelps as Lee prys her legs apart and flips her onto her back. Jamming his cock into her, he smiles at the blissed out expression on $skylar.name's face.
<<speech "skylar" "$skylar.name">>Lee...I still love you, can we please get back together again? I want to do your laundry and cook for you again, I want to be the mother to your children<</speech>>
<<speech "anon" "_x">>Mother of my...you're insane, but I guess the craziest girls have the most crazy good pussy.<</speech>>
<<vid "skylar" "n4">>
It seems $skylar.name's declaration of love for Lee mid fucking jarred him, and he pushes her to the edge of the bed. With all his weight, he rams himself into $skylar.name. She barely makes any noise, her face contourting into orgasmic expressions as Lee takes her to the edge.
<<vid "skylar" "n5">>
<<speech "anon" "_x">>This is the closest you're getting to my future kids, so open wide slut<</speech>>
His cum hits $skylar.name's face by surprise, on the lips she used to kiss you with.
<<vid "skylar" "n6">>
With his cum still on her body, Lee and $skylar.name collapse on the bed. As $skylar.name tries to cuddle up to Lee, he moves away, and tells her
<<speech "anon" "_x">>Go make me a sandwich bitch, I'm exhausted.<</speech>>
Dejected, $skylar.name obliges, wiping the semen off her chest and face into her mouth as she walks to the kitchen naked. You should come back later, maybe when Lee has left the apartment.
<<elseif _scene == 2>>\
<<button "Hook up with $skylar.name" "SexPage">><</button>>
<<set $thread to 1>>\
<<set $sexlist = ["Doggystyle", "Reverse Cowgirl", "Cowgirl", "Missionary", "Cum in her Mouth"]>>\
<<set $sexdict = {"Doggystyle": "v1", "Reverse Cowgirl": "v2", "Cowgirl": "v3", "Missionary": "v4", "Cum in her Mouth": "v5"}>>
<<set $sexDescription = {
"Doggystyle": "As you hit it from the back, you're suprised by the lack of foreplay it took for you to get to this stage. Maybe wining and dining them is enough? Regardless, you better switch positions soon if you want to avoid cumming",
"Reverse Cowgirl": "$skylar.name's frontal assets are certainly something to marvel at, but now that her ass checks are pounding against her groin, you are in a position to appreciate her more underrated asset.",
"Cowgirl": "$skylar.name has shocking endurance as she keeps riding the hell out of you. Most girls wouldn't last as long as her, especially considering the size of your member",
"Missionary": "$skylar.name moans as you shove yourself deep inside her, again and again. Her nails scratch your arms and her eyes roll back from the pounding you're giving her.",
}>>\
<<else>>\
<<button "Hook up with $skylar.name" "SexPage">><</button>>
<<set $thread to 2>>
<<set $sexlist = ["Blowjob", "Cocktease", "Missionary", "Reverse Cowgirl", "Doggystyle", "Cumshot"]>>\
<<set $sexdict = {"Blowjob": "v22", "Cocktease": "v21", "Missionary": "v23", "Reverse Cowgirl": "v24", "Doggystyle": "v25", "Cumshot": "v26"}>>
<<set $sexDescription = {
"Blowjob": "$skylar.name wraps her mouth around your cock, and giggles as you moan. Her mouth is warm, and as her tounge runs across the head of your dick, you feel yourself coming closer to completion.",
"Cocktease": "As you slap her wet pussy with your cock, $skylar.name laughs, and begs for you to enter her",
"Missionary": "$skylar.name moans as you shove yourself deep inside her, again and again. Her tits bounce and her eyes roll back from the pounding you're giving her.",
"Reverse Cowgirl": "$skylar.name's frontal assets are certainly something to marvel at, but now that her ass checks are pounding against her groin, you are in a position to appreciate her more underrated asset.",
"Doggystyle": "As you slam into $skylar.name, her ass claps against your groin, and the only thing louder is the moaning coming from her as you dominate her.",
}>>\
<</if>>\
<</if>>\
<</if>>\
<<button [[Avignon Riverview]]>><<advancePeriod>><</button>><<bg brothel>>\
<<set $you.location to "Brothel Private Room">>\
<<if $game.mode == "Realistic">>\
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]>>\
<<set _sceneChance = Math.floor(Math.random()*10)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<if $skylar.arc gt 1.01 and _scene is 1>>\
You peak into the private room, and you can't quite believe what you're seeing
<<speech "violet" "$violet.name">>Hey $you.firstName, I like you, but there's a private party here. Do you have an invite?<</speech>>
<<speechYou "you">>That...that...that's $skylar.name!<</speechYou>>
<<speech "violet" "$violet.name">>Oh, you poor boy, I'm so sorr-<</speech>>
She pauses mid-sentence, staring at your growing erection, pressing against the fabric of your pants
<<speech "violet" "$violet.name">>Oh. Uhh, I see you like this, haha ok. This is interesting, why don't you stay here with me out of sight, I'd like to see what happens.<</speech>>
<<vid "skylar" "s1">>
<<speech "violet" "$violet.name">>You know, the girls who come to the Trader's Cabaret come from all walks of life. We pay them well, but I don't think your girl comes here for the money.<</speech>>
<<speechYou "you">>What do you mean?<</speechYou>>
<<speech "violet" "$violet.name">>Well, everytime she comes over here looking for work, she's always crying that some guy named Lee cheated on her. That you?<</speech>>
<<speechYou "you">>Uhh, no, I think that's her ex.<</speechYou>>
$violet.name raises her eyebrows and laughs a little.
<<vid "skylar" "s2">>
<<speech "violet" "$violet.name">>You said her name is $skylar.name? Well, I have to say, $skylar.name is pretty popular with the J.O. Morgan execs. They always immediately book her whenever she comes over. You can take those pants off by the way, I'll allow it<</speech>>
<<vid "skylar" "s3">>
<<speechYou "you">>So how much money does she make from these gigs?<</speechYou>>
<<speech "violet" "$violet.name">>Not sure, honestly, sometimes $skylar.name forgets to collect the money.<</speech>>
<<vid "skylar" "s4">>
<<speech "violet" "$violet.name">>I think she honestly just hopes a few dicks will make her forget her ex. Pretty common mistake all ladies are bound to make at some point in their lives.<</speech>>
<<vid "skylar" "s5">>
<<speechYou "you">>You don't think this is therapeutic?<</speechYou>>
<<speech "violet" "$violet.name">>$you.firstName, women are emotional creatures, getting a train ran you a few times won't make the heartbreak any less.<</speech>>
<<vid "skylar" "s6">>
As $skylar.name is getting spitroasted, you wonder what it would be like to be one of the men using her body. You know her as the caring and loving gal who loves cooking for her partner, but to these guys, she's just another slutty whore looking to fuck her way out of heartbreak.
<<vid "skylar" "s7">>
$skylar.name takes one, then two, and then three loads across her face from the complete strangers. You time your climax for the last load she recieves, and wipe your dick off with a nearby hand towel.
<<vid "skylar" "s8">>
<<speech "violet" "$violet.name">>You better run along before $skylar.name sees you haha. And if I may, you're a nice guy $you.firstName, try to find a girl who isn't getting gangbanged.<</speech>>
<<else>>\
Seems like $violet.name is busy with a client. She said you couldn't afford her, so you wonder what the net worth of this John could be.
<<vid "violet" "violetFullPackage">>
<</if>>
<<else>>\
Not a whole lot to see here, stay tuned for content in future updates!
<</if>>
<<button "Exit Private Room" "Brothel Backroom">><</button>>You open FlirtFolio, sifting through profile after profile, the familiar sense of disappointment setting in again. Until, your finger stops, hovering over one profile.
<<textbox "$alex.name" "Alex">>.
<<image alex 1>> <<image alex 2>>
<i>Love hiking, black coffee, and rainy days. If you can teach me to trade stocks, I'll be seriously impressed. Not looking for 'fun', but someone who can enjoy life’s simple moments..</i>
Her photos aren't curated for maximum seduction, they're simply... her. Genuine smiles instead of pouts, outdoor landscapes instead of bathroom selfies, and even a shot of her with a group of kids, volunteering it seems. She's different.
You swipe right, more out of instinct than hope. A second later, you see the 'It's a match' notification. Hesitant yet hopeful, you type out a message:
<<speechYou "you">>Hi $alex.name, how about we grab some lunch this Friday at noon, say at the Dorsia Club? I do much better in person than over text haha.<</speechYou>>
Minutes pass, and then the reply notification chimes. You open it to see her message:
<<speech "alex" "$alex.name">>Sounds great! I've never been there before, but I look forward to seeing you there.<</speech>>
A sense of anticipation fills you, a spark of hope ignites. This might just be the break from the usual you needed. $alex.name, could she be the difference? Only time will tell. You should buy some roses before the date.
<<set $alex.met to true>><<set $alex.arc to 1.00>><<set $alex.hint to "Buy roses and meet $alex.name at the Dorsia club at noon on Friday">><<if $you.items["roses"] gt 0>>\
The work week seems to drag on forever, but finally, Friday arrives. At noon sharp, you step out of the office and arrive at the Dorsia Club.
<<useItem "roses" 1>>\
As you step inside the bustling establishment, you scan the room and your eyes land on $alex.name. She's seated by the window, her brown-haired head bent over a book. As you approach, she looks up, her eyes brightening as she sees you.
<<speech "alex" "$alex.name">>Hey $you.firstName!<</speech>>
<<speechYou "you">>Hey $alex.name, hope you like roses<</speechYou>>
<<speech "alex" "$alex.name">>Oh my gosh, their gorgeous! You really didn't have to.<</speech>>
<<speechYou "you">>So, what do you think about the Dorsia Club?<</speechYou>>
<<speech "alex" "$alex.name">>It is...interesting. It's a bit loud for my taste, but I see why you like it!<</speech>>
<<speechYou "you">>Haha, what do you mean by that?<</speechYou>>
<<speech "alex" "$alex.name">>Oh, you know, it looks like one of those really swanky place where those Wall Street types hang out.<</speech>>
The two of you laugh, and soon, a waiter comes by. You order your food and settle into the conversation, which flows effortlessly. $alex.name talks about her work at the local community center, her love for nature, her passion for helping others. It's refreshing to meet someone so dedicated and real.
She laughs easily, her eyes lighting up as you share stories of your Wall Street escapades. It’s a pleasant change from the superficiality you've been wading through on FlirtFolio.
As lunch progresses, it becomes clear that this is different. Alex isn't just another notch on your bedpost or a quick rebound. She's genuine, intelligent, passionate.
<<speech "alex" "$alex.name">>You know, I have to say, this place is really growing on me!<</speech>>
<<speechYou "you">>I'm glad you're liking it, it's a bit of an acquired taste.<</speechYou>>
As you part ways, you feel a sense of anticipation, a spark of something more than just physical attraction. You're looking forward to getting to know $alex.name better. Maybe this could be the start of something meaningful.
<<set $alex.hint to "Buy roses and meet $alex.name at the Dorsia club at noon next Friday">>
<<speech "alex" "$alex.name">>You know, I've really enjoyed this lunch. Same time next week?<</speech>>
<<speechYou "you">>Sounds like a date<</speechYou>>
<<set $alex.bio to "The FlirtFolio One">>
Of course, only time will tell. But for now, you can't help but smile as you head back to the office, a renewed sense of hope in your heart.
<<girlAdvance $alex>><<advancePeriod>><<payment 250>>
<<else>>
Did you remember to buy roses for your date with $alex.name?
<</if>><<if $you.items["roses"] gt 0>>\
A week after your delightful lunch date, you find yourself meeting $alex.name at the entrance of the Dorsia Club. While these dates are nice, you would like to get to know her, maybe in a more <i>intimate</i> fashion.
<<useItem "roses" 1>>\
$alex.name looks stunning under the muted lights, her dark hair shining softly. She's exchanged her usual casual attire for a sleek black dress, accentuating her curves. You lead her to a table near the stage, the music setting a relaxed, intimate atmosphere.
Throughout the night, you find your connection with $alex.name deepening. You discuss everything - from your aspirations to your favorite books, to shared laughter about bizarre Wall Street experiences. She's intelligent, genuine, engaging - a stark contrast to the other women you've encountered.
Her eyes light up as the band starts playing one of her favorite tunes. She takes your hand, pulling you towards the small dance floor. As you sway together to the music, there's a sense of connection that feels more significant than just physical attraction.
<<speech "alex" "$alex.name">>Why don't you come to my place next Friday evening? I'm in Brooklyn, and you'll never believe what the place is called. Spoiler alert, it's called The Brooklynite<</speech>>
<<speechYou "you">>I'd love to. Anything I should bring over?<</speechYou>>
<<speech "alex" "$alex.name">>Well, I always love the flowers. Uhh, some wine would be nice too I think.<</speech>>
<<speechYou "you">>Of course, sounds like a plan!<</speechYou>>
<<set $alex.hint to "Buy roses & wine, and meet $alex.name at her place at The Brooklynite, Brooklyn next Friday">>
<<girlAdvance $alex>><<advancePeriod>><<payment 250>>
<<else>>
Did you remember to buy roses for your date with $alex.name?
<</if>><<if $you.items["roses"] gt 0 and $you.items["wine"] gt 0>>\
As you knock on the door, you can't help but feel a flutter of nerves. This feels different than your previous dates - more personal, more intimate.
The door opens, and there's $alex.name, beaming at you. She's dressed casually, her dark hair cascading loosely over her shoulders, no makeup - just her natural beauty shining through.
<<speech "alex" "$alex.name">>Hey there, come on in!<</speech>>
She steps aside to let you into her home. It's warmly lit and inviting, the smell of something delicious wafting from the kitchen. A jazz record plays softly in the background.
Dinner is a cozy affair, shared over a small dining table, lit by candlelight. She's an excellent cook, and you can't help but express your admiration for her culinary skills. You talk, you laugh, you share stories about your lives. The connection between you grows stronger with every passing moment.
After dinner, you move to the living room, sitting comfortably on the couch. $alex.name reaches for something on the coffee table – a worn photo album. The soft glow from the table lamp illuminates her brunette hair, and you can't help but admire her natural beauty.
<<speech "alex" "$alex.name">>Care to take a walk down memory lane?<</speech>>
She opens the album to reveal photos of her younger self, surrounded by a loving family in a modest home.
<<speech "alex" "$alex.name">>That's my family! My dad was a mechanic, and my mom worked in a school cafeteria. Not glamorous jobs, but they made sure my brother and I never lacked anything.<</speech>>
Flipping the page, she points to a group picture of her college days, her youthful enthusiasm unmistakable in the way her eyes sparkle.
<<speech "alex" "$alex.name">>And that's from my time at SUNY. I studied Accounting. It wasn't easy, you know, paying my own way, but I believe it made me stronger.<</speech>>
As you delve deeper into her past, $alex.name continues to offer anecdotes – funny stories about her brother Sam, their mischievous dog Rocky, and the nostalgic days of struggling through college exams. Each tale reveals a woman who, despite her humble beginnings, took charge of her destiny. Her narrative lacks the romantic veneer of fiction; it's raw and real. The hardships she faced, her unyielding determination, and the strength of her values paint a picture of a woman you find yourself admiring more and more.
<<speech "alex" "$alex.name">>"I've always believed in the power of hard work, and my parents instilled in me the importance of being grounded. Your past might shape you, but it doesn't get to dictate your future.<</speech>>
Looking at $alex.name, you're struck by the genuineness of her words. This is a woman who isn't defined by her circumstances, but by her choices.
<<girlAdvance $alex>>
<<button "Continue your date" "Alex Place">><</button>>
<<else>>\
Did you remember to buy wine and roses?
<</if>>
<<bg theBrooklynite>>\
<<set $you.location to "Alex Place">>\
<<set _alexarc to [1.02, ]>>\
<<if $alex.arc == 1.02 && setup.DAYS[$day % 7] is "Friday">>\
<<girlcheck $alex _alexarc>>
<<elseif $alex.arc gt 1.02 and $alex.minMoney lte $you.cash and $alex.minStatus lte $you.status and $alex.minPhysique lte $you.physique>>\
<<set $alex.hint to "She is now in your harem">>\
<<if $currentAction is "cum">>\
<<set $currentAction to "null">>\
<<if $thread is 0>>
<<set $thread to "null">>\
<<set _x to "$alex.name's Landlord">>\
You can hear two distinct footsteps walk through the door, along with some clothes rustling.
<<speech "alex" "$alex.name">>You can open your eyes now babe!<</speech>>
When you open your eyes, you see $alex.name getting groped by some stranger. His hands are running along your girl's tits, sliding down your girl's pants.
<<speechYou "you">>Uhh, $alex.name, I didn't know you already had someone in mind...<</speechYou>>
<<speech "alex" "$alex.name">>Aww, don't be jealous babe! He's just my landlord. he propositioned me a while ago but I wasn't really interested in pursuing an emotional relationship.<</speech>>
<<speech "anon" "_x">>Hey man! If it means anything, I'm cutting her rent in half for this. If you don't want to go through with this, that's fine, just let me know.<</speech>>
Hmm, oddly respectful.
<<speechYou "you">>No no...keep going<</speechYou>>
<<vid "alex" "n1">>
$alex.name's dress quickly slips off, and she pulls her landlord into a kiss. Honestly, the kiss feels more out of pocket than getting railed, but if she's having fun, you're having fun.
<<vid "alex" "n2">>
Her landlord's pants come off pretty quickly, and $alex.name eagerly grasps it in her hand.
<<speech "alex" "$alex.name">>Can I suck it $you.firstName? I love you so much, please let me suck it!<</speech>>
<<speechYou "you">>Do it<</speechYou>>
Before his dick plunges into $alex.name's throat, she whispers
<<speech "alex" "$alex.name">>Thank you $you.firstName<</speech>>
<<vid "alex" "n3">>
<<speech "anon" "_x">>Your girl is really good at head, but can I fuck her now?<</speech>>
<<speechYou "you">>Are you ready baby?<</speechYou>>
<<speech "alex" "$alex.name">>I was born rea-oohhhhhh<</speech>>
Midsentence, her landlord thrusts deep inside of her, and you feel $alex.name grip your thigh as she's getting railed. You and her landlord laugh, and you wonder what was so funny about this. Maybe it's because a crack has appeared in $alex.name's apparent empowerment over the situation? Who's to say
<<vid "alex" "n4">>
After getting her pussy fucked raw for several minutes straight, $alex.name regains a little more of her former gusto, and pushes her landlord onto the couch. As she slides onto his cock, she groans. $alex.name holds onto her landlord's body for support as her body is rocked by the vigorous thrusting.
<<vid "alex" "n5">>
Her landlord guides her down, and lines his cock along the opening of her pussy.
<<speech "alex" "$alex.name">>Oh shit, I'm about to get fucked real good, aren-URMGHHHH<</speech>>
Her landlord seems to love shutting her up mid sentence, and as he fills up her pussy, you decide to tease her a little
<<speechYou "you">>So, who does it better, me or him?<</speechYou>>
<<speech "alex" "$alex.name">>Mhrughhhh<</speech>>
<<speechYou "you">>Couldn't quite catch what you were saying there, speak up a little<</speechYou>>
<<speech "alex" "$alex.name">>MMM HHMM MHRUGHHH<</speech>>
You and the landlord try not to laugh at $alex.name's feeble event to think about anything other than the massive cock ploughing away at her pussy. You notice more of her fluids are pooling at the base of his cock, and you realize she is obviously turned on by this.
<<vid "alex" "n6">>
The second her landlord pulls out, you can hear a POP, and $alex.name gets a moment of recovery after her landlord's cock scrambled her guts and her brains. But it's only a moment, and soon, he's thrusting in and out of your girl once again.
<<vid "alex" "n7">>
After what feels like an eternity, the guy announces that he's close to finishing, and $alex.name opens wide. It's a pretty impressive load, and some of it even manages to hit her mouth.
<<vid "alex" "n8">>
The three of you stand awkwardly there for a moment.
<<speech "anon" "_x">>Well, I think I got to get out, but let me know if you guys ever, uhh, need me again<</speech>>
When he leaves, $alex.name comes close to hug you, residual cum notwithstanding.
<<speech "alex" "$alex.name">>Holy shit $you.firstName, that was so much fun! Can we do it again?<</speech>>
<<speechYou "you">>As long as you're happy $alex.name...<</speechYou>>
<<elseif $thread is 1>>\
<<set $thread to "null">>\
As $alex.name walks to her neighbor's apartment, you decide to pursue her, maybe get a peek at what's going to go down.
She finds the door but before she goes in, she turns to you and gives you a smile. She walks in, leaving the door wide open.
By the time you reach the door, she's already the kissing the guy. You thought she was just going to fuck him, so why the hell is this guy smooching her? How well do they even know each other?
<<vid "alex" "b1">>
He stands up, and $alex.name stays on her knees. You think she's going to blow him, but instead, she lifts his cock up, and starts licking his balls with the same technique she uses on you. Does she feel that comfortable with him?
<<vid "alex" "b2">>
She starts sucking his cock, trying to fit it all in her mouth. After trying and failing a few times, she just focuses on sucking the tip.
<<vid "alex" "b3">>
$alex.name gets on top of her neighbor, slowly guiding herself on top of his penis. She's so tight, her pussy grips onto his cock as she rides him. $alex.name turns her head to the door, and smiles when she sees you peeking through.
<<vid "alex" "b4">>
Her neighbor catches a glimpse of you too, but you can't quite read his expression. Grabbing $alex.name by the neck, he flips her around, and starts pounding her from behind. Is her neighbor jealous of you? $alex.name has a mysterious smile on her face as if she knows how much she is tormenting you and her neighbor.
<<vid "alex" "b5">>
He seems to be tiring, and he takes a seat on the couch. $alex.name proceeds to sit on his cock, moaning as he fucks her from below. The whole time, her eyes are locked on you.
<<vid "alex" "b6">>
They go back to fucking in missionary, but $alex.name is still staring at you. Her neighbor notices, and violently pulls her in for a kiss.
<<vid "alex" "b7">>
The two of them continue to spoon on the couch. You watch intently as her neighbor pulls $alex.name's legs apart, thrusting deep inside her.
<<vid "alex" "b8">>
$alex.name wraps her arms around him, and in a flash, he lifts her up and mounts her on his cock. She yelps, and you're surprised by how effortlessly your neighbor is holding her up and fucking her.
<<vid "alex" "b9">>
$alex.name gets on her knees eagerly waiting his load. After taking a pretty healthy load, she knocks it back in one swallow.
<<vid "alex" "b10">>
Seems $alex.name is going to spend some time at her neighbor's place, might be more productive to head out.
<<elseif $thread is 2>>\
<<set $thread to "null">>\
<<speechYou "you">>Fuck, I'm about to cum $alex.name<</speechYou>>
$alex.name obliges, and gets on her knees, preparing to take your load across her face.
<<vid "alex" "v5">>
She walks over to the bathroom, and you watch her hips sway from side to side as she goes to wash her face. $alex.name comes back, and the two of you lay side by side, mutually enjoying the post-orgasm bliss. Eventually, it's time for you to go, and you take your leave. Money never sleeps!<<girlAdvance $alex>>
<<else>>\
<<set $thread to "null">>\
<<speechYou "you">>Fuck, I'm about to cum $alex.name<</speechYou>>
$alex.name obliges, and gets on her knees, preparing to take your load across her face.
<<vid "alex" "v26">>
She walks over to the bathroom, and you watch her hips sway from side to side as she goes to wash her face. $alex.name comes back, and the two of you lay side by side, mutually enjoying the post-orgasm bliss. Eventually, it's time for you to go, and you take your leave. Money never sleeps!<<girlAdvance $alex>>
<</if>>\
<<else>>\
<<set _sceneSelectorList to [1, 2, 3, 4, 5]>>\
<<set _sceneChance = Math.floor(Math.random()*5)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<set $currentAction to "null">>\
<<set $person to "alex">>\
<<set $exitpage to "Alex Place">>\
<<if $game.mode == 'Realistic' and _scene == 1 and $alex.arc gt 1.03>>\
<<set $thread to 0>><<set $currentAction to "cum">>\
The dim glow of $alex.name's apartment's living room lamps and the soft hum of late-night city sounds outside create a serene ambiance. You both are comfortable in your favorite spots on your worn-in couch, a glass of wine in hand. You've been thinking a lot about this conversation, how to broach the subject, and the potential outcomes. But it feels like the right moment.
<<speechYou "you">>$alex.name, there's something I've been meaning to discuss with you.<</speechYou>>
<<speech "alex" "$alex.name">>Sure, what's up?<</speech>>
<<speechYou "you">>I've been giving a lot of thought to us and our relationship, and I think there's an avenue we could explore...together.<</speechYou>>
<<speech "alex" "$alex.name">>Okay...I'm listening.<</speech>>
<<speechYou "you">>I think...well, I care a lot about your pleasure. And, I don't want me to hold you back from having as much fun as possible.<</speechYou>>
<<speech "alex" "$alex.name">>Umm...$you.firstName, what do you mean by that?<</speech>>
<<speechYou "you">>Well, I know we're pretty great in bed together...<</speechYou>>
<<speech "alex" "$alex.name">>Haha, you're AMAZING under the sheets.<</speech>>
<<speechYou "you">>...but if you were to find someone who maybe you're even more excited to sleep with, I guess I'm saying I wouldn't mind you going down that route. As long as I can watch, just to make sure you don't get hurt or anything.<</speechYou>>
<<speech "alex" "$alex.name">>...Are you absolutely sure about this $you.firstName?<</speech>>
<<speechYou "you">>Yes<</speechYou>>
<<speech "alex" "$alex.name">>Ok, then close your eyes!<</speech>>
You're surprised by how ready $alex.name was to opening up your relationship. Giggling, $alex.name practically runs out of the room.
<<button "Close your eyes" "Alex Place">><</button>>
<<elseif $game.mode == 'Realistic' and _scene == 2 and $alex.arc gt 1.03>>
<<set $thread to 1>><<set $currentAction to "cum">>\
You and $alex.name are seated on her couch. It's been a slow day, and while there's nothing wrong with enjoying the simple pleasures, that's not really for you. Suddenly $alex.name shifts on the couch, turning her body to face you. Her fingers trace abstract patterns on the back of your hand.
<<speech "alex" "$alex.name">>So, there's this guy who just moved in next door<</speech>>
<<speechYou "you">>Oh?<</speechYou>>
<<speech "alex" "$alex.name">>Yeah. He's...well, he's pretty attractive. And we've been chatting, you know, as neighbors do...<</speech>>
<<speechYou "you">>And?<</speechYou>>
<<speech "alex" "$alex.name">>Well, what if I fooled around wtith him a little? I think that would be kind of, you know, funny!<</speech>>
<<speechYou "you">>If you want to fuck him, just say it.<</speechYou>>
If a girl is idly thinking about someone else like that, she's going to fuck him, whether you like it or not. At least $alex.name is being honest about her needs. If you said no, she'd probably fuck him twice or thrice out of pure spite.
<<speech "alex" "$alex.name">>Of course I want to fuck him, but if you say no, I will respect your wishes<</speech>>
Cap
<<speechYou "you">>Sure, you have my permission, just don't let it get out of hand. <</speechYou>>
Gleefully, $alex.name kisses you, and jumps off the couch.
<<speechYou "you">>Wait, you mean right now?<</speechYou>>
<<speech "alex" "$alex.name">>I mean, he's off work right now.<</speech>>
<<button "Watch $alex.name approach her neighbor" "Alex Place">><</button>>
<<elseif _scene == 3 or _scene == 5>>\
<<button "Hook up with $alex.name" "SexPage">><</button>>
<<set $thread to 2>>\
<<set $sexlist = ["Teabagging", "Doggystyle", "Reverse Cowgirl", "Missionary", "Facial"]>>\
<<set $sexdict = {"Teabagging": "v1", "Doggystyle": "v2", "Reverse Cowgirl": "v5", "Missionary": "v4", "Facial": "v3"}>>\
<<set $sexDescription = {
"Teabagging": "$alex.name wraps her mouth across one of your testicle, and gently tugs on it with her mouth. Her wet tounge runs along the surface of your testicles, and the pressure and moisture is almost too much to bear. ",
"Doggystyle": "She pulls her cheeks apart and bends over for you. As you enter her, she encourages you, taunting and telling you that you can go faster.",
"Reverse Cowgirl": "$alex.name pushes you onto a chair, and plants herself on her cock. As she rides you, you can feel her squeeze and tighten on your member as she goes up and down.",
"Missionary": "She suddenly pulls away, and falls backward on the bed. Slowly spreading her legs, her coy smile turns to unbridled pleasure as you fuck her.",
}>>\
<<else>>\
<<button "Hook up with $alex.name" "SexPage">><</button>>
<<set $thread to 3>>\
<<set $sexlist = ["Cowgirl", "Thrust upwards", "Cock Tease", "Missionary", "Sidefuck", "Facial"]>>\
<<set $sexdict = {"Cowgirl": "v21", "Thrust upwards": "v22", "Cock Tease": "v23", "Missionary": "v24", "Sidefuck": "v25", "Facial": "v26"}>>\
<<set $sexDescription = {
"Cowgirl": "$alex.name has shocking endurance as she keeps riding the hell out of you. Most girls wouldn't last as long as her, especially considering the size of your member",
"Thrust upwards": "You decide to give $alex.name a break, and as you hold her up, you pound the hell out of you. Those gym gains are paying off",
"Cock Tease": "$alex.name holds her legs back, pleading for you to penetrate her. You make her beg for your cock, as you slowly guide the head into her pussy. You can feel her pussy widen and grip the head of your cock, to accomodate the sheer size.",
"Missionary": "You give in to $alex.name's wishes, and you thrust the remainder of your length into her. You mechanically pump in and out of $alex.name, as she cries your name in pleasure",
"Sidefuck": "You guide her face to yours, and $alex.name guides your hand to her womb, as you continue to fuck her. She's soaking wet and has cum countless times, and it takes all your willpower to not instantly creampie her." ,
}>>\
<</if>>\
<</if>>\
<<else>>\
You and $alex.name pass time with each other, watching movies, playing board games, and cooking with each other. The two of you talk to each other about work, family, and your feelings. You really want to take this relationship to the next level, but you feel $alex.name wants you to achieve your full potential before that happens. Work on your stats, and you'll become a man worthy enough for her.
<<set $alex.hint to "Have 100K, 75 status, and 7 physique to continue.">>
<</if>>
<<button [[The Brooklynite]]>><<advancePeriod>><</button>><<bg firstApartment>>\
Fancy Roses: <<button "Buy for $100" "Inventory and Elyssian Essentials App">><<set $you.items["roses"] += 1>><<payment 100>><</button>>\
Wine: <<button "Buy for $200" "Inventory and Elyssian Essentials App">><<set $you.items["wine"] += 1>><<payment 200>><</button>>
Inventory:
Roses: $you.items["roses"]
Wine: $you.items["wine"]
Weed: $you.items["weed"]
Cocaine: $you.items["cocaine"]
<<button [[Close App|Home]]>><</button>>You're not sure why you went up to Foresight Market Research today. $alina.name is fucking hot, but she definitely has a bitchy vibe to her. Which is also fucking hot.
The front reception is empty. Foresight does a good job of making the place look like another, underemployed office building. As you retrace your steps to her office, you remind yourself you're the fucking Wall Street Giga Chad. You've had your fair share of power plays, and to be very honest, you've fucked this bitch before. And you did a damn good job of it too.
<<speechYou "you">>Busy making a habit out of screwing people over, or just me, Alina?<</speechYou>>
<<speech "alina" "$alina.name">>I'm sorry you had to come all the way up here, especially when I'm going to just tell you to go back. You know you shouldn't be up here, the regulators might notice. <</speech>>
<<speechYou "you">>I'll come wherever the fuck I want. <</speechYou>>
Both of you know exactly what you're referencing.
<<vid alina "firstSexCumshot">>
You can't tell if she's more impressed by your assertiveness, or she's more pissed that you brought it up.
<<speech "alina" "$alina.name">>What do you want $you.firstName?<</speech>>
<<speechYou "you">>I want you.<</speechYou>>
<<speech "alina" "$alina.name">>Cute.<</speech>>
<<speechYou "you">>You haven't seen the half of it $alina.name<</speechYou>>
$alina.name rolls her eyes, trying to hide her obvious smile.
<<speech "alina" "$alina.name">>Look, you're not a bad looking guy. But I can't just sleep with you or whatever. That's an obvious conflict of interest.<</speech>>
<<speechYou "you">>So you're cool with insider trading, but sleeping with business associates is crossing the line?<</speechYou>>
<<speech "alina" "$alina.name">>Law and ethics are two very different things. Besides, I think insider trading is fine, it's just another market function, the only difference is the timing of the information dispersion.<</speech>>
Smart girl. Smarter than she lets on. And vaguely libertarian??
<<speechYou "you">>I'm gonna get you to sleep with me one of these days, you know.<</speechYou>>
She laughs, and with a smirk, she says:
<<speech "alina" "$alina.name">>You already have $you.firstName...<</speech>>
<<set $alina.arc to 1.00>>\
<<set $alina.hint to "Stay tuned for further content!">>\You find yourself on the Quantitative Research floor. Why? Who the fuck knows, it's a porn game.
You thought about being one of these quants. But quite frankly, they're a little too intellectually honest for you. The floor has the open workplan that many modern tech companies has, which makes sense, since they're largely poaching talent from these firms. Suddenly, the vigorous tapping of keyboard keys is interrupted by a light and airy voice.
<<image karlee 3>>
<<speech "karlee" "$karlee.name">>Heyyy, you're the new guy, right?<</speech>>
<<speechYou "you">>You're $karlee.name, the junior quant, right?<</speechYou>>
<<speech "karlee" "$karlee.name">>That's me! By the way, I think I outrank you, so I'm going to need you to hold on to these for me. <</speech>>
She hands you a plastic bag, and runs away.
<<if $you.job neq "Intern">>You're pretty sure she doesn't outrank you, but that's a question for another time.<</if>>
You look inside the bag, and see a sundry array of office supplies. Staplers, paperclips, pens, and the odd calculator or two. Why does she want you to hold onto it?
You hear shouting, and you have to think fast. For whatever reason, this is clearly contraband, so you need to stash it away somewhere.
<<button "Throw it across the floor" "Quantitative Research">><<set $thread to 1>><<set $karlee.arc to 1.00>><</button>> <<button "Place it in a nearby trash can" "Quantitative Research">><<set $thread to 2>><<set $karlee.arc to 1.00>><</button>> <<button "Pretend to be a quant and use the supplies" "Quantitative Research">><<set $thread to 3>><<set $karlee.arc to 1.00>><</button>>
<<if $thread is 'null'>>\
You find yourself on the Investment Banking floor, when $miamal.name calls out to you.
<<speech "miamal" "$miamal.name">>Hey $you.lastName, get your ass in here! We had our scheduled investment synergism meeting with the IB guys, but $johnny.name had to drop out. Something about picking up RASI pills?<</speech>>
You try to not laugh, and follow $miamal.name. She opens the door to a decently sized conference room, where the IB and Investment Management top brass is seated.
<<speech "alexistexas" "$alexistexas.name">>Mr. $you.firstName, thank you for joining at such a short notice<</speech>>
<<speech "kendrasunderland" "$kendrasunderland.name">>I spearheaded this initiative so that both Investment Bankers and Investment Managers can have fresh ideas<</speech>>
Representatives from both divisions present pitches, and finally, the group gets to the last presentation of the day. Everyone is looking around for who the final presenter is, when the doors to the conference room fling open. You see the same analyst you met at the end of your first day, $emily.name, stride in with an aura of privileged entitlement.
<<image emily "2">>
<<speech "emily" "$emily.name">>Ok everyone, you can ignore all the previous ideas, I got this new investment strategy from my friends at Harvard! They're pitching the same thing at Golden Sacks, so we have to jump on this fast.<</speech>>
She pulls up a PowerPoint pitchdeck, titled <i>"Green Bonds for Climate Change: Harnessing Wall Street for a Better Future"</i>.
You can't help but roll your eyes. Climate change is serious, but Green Bonds are a stale idea that could only come from a stuffy "academic" place like Harvard.
<<set $emily.hint to "Continue listening to her pitch on the IB Floor">>
<<button "Listen to her drivel on" "Investment Banking">><<set $thread to 1>><</button>>
<<else>>\
<<set $thread to "null">>\
<<speech "emily" "$emily.name">>We need to pivot our entire investment positions to Green Bonds. They'll help the environment, while also stimulating the economies of developing nations!<</speech>>
As you listen, you can't help but feel a sense of disbelief. This plan is unfeasible at best and disastrous at worst. Yet around you, senior analysts and MDs are nodding their heads, apparently falling for the Ivy-League pedigree and flashy graphics. You glanced around, searching for anyone else who saw the flaws as clearly as you did.
You decide to speak up, and shatter this insane illusion that everyone seems to have bought into.
<<speechYou "you">>Christ, are you presenting your undergrad sociology thesis or soemthing? This is all risky, low yield junk. Our investors would be sacrificing profits for an arguably neubulous societal benefit. <</speechYou>>
The room goes silent, and you go on. $emily.name looks shocked, it's pretty clear no one has said no to her before.
<<speechYou "you">>Not to mention, the lack of regulatory standards and transparency makes green bonds a veritable playground for greenwashing. We could be inadvertently investing in projects that are green in name only. <</speechYou>>
You finish your critique and the room erupted into whispers. $alexistexas.name smirks at you, and shakes her head as if to stop herself from laughing. Your critique wasn't that scathing, and you're not sure why everyone is reacting this way.
<<set $emily.arc to 1.00>>\
$emily.name bites her lip, and her face transitions from shock to...interest?
As you walk out, your boss stops you.
<<speech "alexistexas" "$alexistexas.name">>Nice takedown in there.<</speech>>
<<speechYou "you">>Yeah, thanks. Not sure why I was the one who had to do it.<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>Well, do you know who her dad is?<</speech>>
<<speechYou "you">>Let me guess, some useless fucking European royalty who can help us navigate French bond markets or some dumb shit like that?<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>Hmm, close. Try American royalty, and let's say he helps us navigate global real estate markets.<</speech>>
Everything suddenly clicks and you remember where you saw $emily.name before. The first time you'd ever seen her was on TV, at the 2004 Presidential Inauguration. Her dad is President fucking Willis!
The Willis family is nearly as iconic as the Roosevelts. In the mid-19th Century, José Willis came to the country from Spain by way of Argentina. He quickly established a small fortune during the Alaskan Gold Rush, by operating brothels for gold prospectors. The family put and grew this fortune in the one asset that has held money better than the bank for centuries: real estate.
In 2004, the scion of the family, Governer Richard Willis, ran for President. In a surprising upset, Willis beat George W. Bush in the general election, campaigning as one of the fiercest hawks in the Democratic Party. While many Americans remember his single-term presidency as a period of unprecented economic growth and good times, many historians believe he was one of the most corrupt presidents in American history. Over the course of the Iraq War, Willis funneled the construction of US military bases through his companies, and personally claimed oil fields across the country using private military contractors. Apparently, he's now a consultant for Greystone, helping them with their own investment ventures.
<<set $emily.countdown to 2>>
And this is the guy who's daughter you just insulted in front of the top brass. You sure know how to pick your moments.
<<set $emily.hint to "Wait $emily.countdown days, then visit the IB floor again">>\
<<set $emily.bio to "The daughter of a powerful former US President, she works as Investment Banking's Junior Analyst.">>\
<</if>><b>CONTENT IN PROGRESS</b>
<<speech "alina" "$alina.name">>How can I help you $you.firstName?<</speech>>
<<image alina "02">>
Stay tuned for more updates with $alina.name!<<girlAdvance $karlee>>\
<<if $thread == 3>>\
You see the head quant, the gorgeous $eva.name run across the floor. She glances at you, but to her, you're just another irrelevant paper pusher she can crus under her foot. She doesn't know that you're the Wall Street Giga Chad, and that normally, you wouldn't be caught dead LARPing as a nerd.
About 15 minutes later, $karlee.name sneaks up to you and taps you on the back.
<<speech "karlee" "$karlee.name">>Smart, hiding in plain sight with the goods. <</speech>>
She starts packing up the supplies, and placing them back in her plastic bag. You grab her hand, and she looks at you with a curious smile.
<<speechYou "you">>Yeah, see, I'm going to need to get a cut<</speechYou>>
<<speech "karlee" "$karlee.name">>Hmm, well how will I ever pay you back Mr. $you.lastName? <</speech>>
<<speechYou "you">>You see, it's more like what can I do for you? Why don't I take you out to the Dorsia?<</speechYou>>
$karlee.name giggles, and says
<<speech "karlee" "$karlee.name">>If you want to fuck me, you'll definitely need to do more for me than buy me a $3 per square inch steak<</speech>>
She's smarter than she lets on...
<<set $karlee.respect += 10>>
<<speech "karlee" "$karlee.name">>You know, I've heard rumors about you...about some trades you've been running. <</speech>>
<<speech "karlee" "$karlee.name">>Come by my office tomorrow, we'll talk this out...<</speech>>
<<else>>\
You see the head quant, the gorgeous $eva.name run across the floor.
<<speech "eva" "$eva.name">>You! What the fuck are you doing with those supplies?<</speech>>
<<speechYou "you">>Uhh uhh uhh<</speechYou>>
She snatches the supplies out of your hands before you can do anything
Shortly afterwards, $karlee.name sneaks up to you and taps you on the back.
<<speech "karlee" "$karlee.name">>Sooo, where are the goods?<</speech>>
<<speechYou "you">>Go fuck yourself, I looked like a clown in front of $eva.name <</speechYou>>
She giggles, and lightly touches your back.
<<speech "karlee" "$karlee.name">>You know, I've heard rumors about you...about some trades you've been running. <</speech>>
<<speech "karlee" "$karlee.name">>Come by my office tomorrow, we'll talk this out.<</speech>>
<<speechYou "you">>And why would you do that? <</speechYou>>
<<speech "karlee" "$karlee.name">>I promise I'll make it worth your while...<</speech>>
<</if>>
<<set $karlee.countdown to 1>>
<<set $karlee.hint to "Meet $karlee.name at her office the next day">><<set $thread == "null">><<set $karlee.bio to "The kleptomaniac who also moonlights as a Junior Quant Researcher">>You decide to pop onto the Investment Banking floor, hoping to catch a glimpse of $emily.name. While she might be stupid, you didn't fail to notice her amazing body. Hate fuck? Yes please!
As you aimlessly wander across the floor, you find yourself walking in the opposite direction of just the girl you're looking for. You lock eyes with her, give a confident smirk, and just generally try to mindfuck her. She stops you, and calls out:
<<speech "emily" "$emily.name">>You know, I didn't appreciate your critique at the meeting<</speech>>
<<speech "emily" "$emily.name">>But I have to admit...it was...exciting. Nobody's ever told me 'no' before. I want to get to know the man who dared to.<</speech>>
She pauses, before extending an ornate envelope towards you.
<<speech "emily" "$emily.name">>How about you be my +1 this Sunday? My family hosts these little gatherings every weekend at our estate in West Egg. It's a bit of fun, a bit of business...you know how these things go. What do you say?<</speech>>
You're taken aback by the offer, but you see this as an opportunity to network with the elite, and of course, a chance to know $emily.name better.
<<set $emily.hint to "Go to Long Island, and visit her place Sunday Afternoon">>
<<speechYou "you">>Why not? I'll see you on Sunday.<</speechYou>>
<<speech "emily" "$emily.name">>Great! It's a date then!<</speech>>
<<girlAdvance $emily>><<if $thread == "null">>
<<if $karlee.progress == 0>>\
You're not prepared to give $karlee.name any of your really good tips, but you have another idea. You spin up your terminal, and IM $alina.name:
<<set $karlee.hint to "Recommend a choice for $karlee.name">>
<<speechYou "you">>Hey $alina.name, I don't need a specific ticker, but do you have some special info on a broader macro trend?<</speechYou>>
<<speech "alina" "$alina.name">>Sure, but it'll cost you $1000. We have a policymaker in the EU who's told us interest rates across the pond are about to jump in a big way.<</speech>>
What should you tell $karlee.name to invest in?
<<payment 1000>>
<<button "Financials" "Quantitative Research">><<set $thread to 1>><</button>> <<button "Materials" "Quantitative Research">><<set $thread to 2>><</button>> <<button "Healthcare" "Quantitative Research">><<set $thread to 2>><</button>>
<<elseif $karlee.progress == 25>>\
You hit $alina.name with the same request.
<<speech "alina" "$alina.name">>A contact of ours in Turkish intelligence has told us that some pipeline construction sites are about to get bombed in Syria<</speech>>
What should you tell $karlee.name to invest in?
<<payment 1000>>
<<button "Energy" "Quantitative Research">><<set $thread to 1>><</button>> <<button "Consumer Discretionary" "Quantitative Research">><<set $thread to 2>><</button>> <<button "Financials" "Quantitative Research">><<set $thread to 2>><</button>>
<<elseif $karlee.progress == 50>>\
You hit $alina.name with the same request.
<<speech "alina" "$alina.name">>There's a food play Foresight is engaged in that involves manipulating the price of wheat futures.<</speech>>
What should you tell $karlee.name to invest in?
<<payment 1000>>
<<button "Energy" "Quantitative Research">><<set $thread to 2>><</button>> <<button "Healthcare" "Quantitative Research">><<set $thread to 2>><</button>> <<button "Consumer Staples" "Quantitative Research">><<set $thread to 1>><</button>>
<<elseif $karlee.progress == 75>>\
You hit $alina.name with the same request.
<<speech "alina" "$alina.name">>We've organized with a local politics group that promotes NIMBY policies in San Francisco, and a crucial municipal election is coming up.<</speech>>
What should you tell $karlee.name to invest in?
<<payment 1000>>
<<button "Utilities" "Quantitative Research">><<set $thread to 2>><</button>> <<button "Real Estate" "Quantitative Research">><<set $thread to 1>><</button>> <<button "Industrials" "Quantitative Research">><<set $thread to 2>><</button>>
<<elseif $karlee.progress == 100>>\
When you arrive at $karlee.name's office, you knock on her door.
<<speech "karlee" "$karlee.name">>Come in!<</speech>>
<<image karlee undressing>>
She definitely is coming on to you, making you walk in on her changing.
<<speechYou "you">>Nice tits. And why are you changing?<</speechYou>>
<<speech "karlee" "$karlee.name">>Well, I can't exactly wear some corporate getup for what I have planned for us next. I need something with more of an...athleisure vibe.<</speech>>
<<speechYou "you">>And, what exactly do you have planned next?<</speechYou>>
<<speech "karlee" "$karlee.name">>You'll just need to follow me to find out!<</speech>>
<<button "Follow $karlee.name" "Elysian Essentials">>\
<<girlAdvance $karlee>>\
<<set $karlee.progress to 0>>\
<<set $karlee.hint to "Follow $karlee.name to Elysian Essentials">>\
<</button>>
<</if>>\
<<elseif $thread == 1>>\
You give $karlee.name the tip, and she looks amazed.
<<set $thread to "null">>
<<speech "karlee" "$karlee.name">>Holy shit! How did I not think of that?<</speech>>
<<speechYou "you">>I'm pretty baller like that<</speechYou>>
<<set $karlee.progress += 25>><<advancePeriod>><<set $karlee.countdown to 1>><<set $karlee.hint to "$karlee.progress% done, give her another tip tomorrow">>\
<<elseif $thread == 2>>\
You give $karlee.name the tip, but she immediately frowns.
<<speech "karlee" "$karlee.name">>Uhh, are you sure that is correct?<</speech>>
<<speechYou "you">>Yeah, I think so.<</speechYou>>
<<speech "karlee" "$karlee.name">>Hmm, ok....<</speech>>
Maybe you should try again tomorrow? \
<<set $thread to "null">><<advancePeriod>><<set $karlee.countdown to 1>>
<</if>><<if $you.physique lt 5>>\
When you pull up to Elysian Essentials, you see $karlee.name wearing some lighter clothing. She looks you up and down, and says:
<<speech "karlee" "$karlee.name">>Uhh, look $you.firstName, I think you have to be a little bit more fit for what I have planned.<</speech>>
<<set $karlee.countdown to 3>>\
<<set $karlee.hint to "Come back to Elysian Essentials in $karlee.countdown days and have at least 5 physique">>
<<else>>\
The two of you enter Elyssian Essentials. $karlee.name walks to the back, clearly avoiding some of the cameras.
<<speech "athena" "$athena.name">>Hey $you.firstName,<</speech>>
<<speechYou "you">>Oh, hi $athena.name...<</speechYou>>
Out of the corner of your eye, you see $athena.name shoplifting some stuff from the back.
<<image karlee shoplifting>>
Shit, all you're doing here is playing sentry.
<<speech "athena" "$athena.name">>Soooo, who's that cute girl you walked in wi-HEY!!!<</speech>>
When she was trying to point out $karlee.name to you, she inadvertently caught $karlee.name stealing.
<<speech "karlee" "$karlee.name">>Oh shit<</speech>>
$karlee.name sprints out of the store, and you're left with $athena.name, who's glaring at you with demon eyes.
<<speechYou "you">>Yeah...I don't know her<</speechYou>>
You awkwardly walk out of the store, and catch up to $karlee.name a few blocks away.
<<speech "karlee" "$karlee.name">>That...was so MUCH FUN!!!<</speech>>
<<speechYou "you">>You literally work on Wall Street, why do you steal basic shit like this?<</speechYou>>
<<speech "karlee" "$karlee.name">>How should I know? Some psychosexual need? It just really turns me on I guess.<</speech>>
<<speechYou "you">>You're fucking insane<</speechYou>>
<<speech "karlee" "$karlee.name">>I kind of want to do this again hehe<</speech>>
<<speechYou "you">>*sigh* Ok, which store will we hit next?<</speechYou>>
$karlee.name looks at you with a confused look on her face
<<speech "karlee" "$karlee.name">>Uhh, we'll just hit Elysium Essentials again. How about the day after tomorrow?<</speech>>
<<speechYou "you">>Shouldn't we go after another store next time? Or maybe, I don't know, wait a bit before robbing them again?<</speechYou>>
<<speech "karlee" "$karlee.name">>I mean, how many other convenience stores are there in town?<</speech>>
She does have a point. You've travelled far and wide, and Elysium Essentials seems to suprisingly be the only store in all of New York City. Damn this dev!
<<girlAdvance $karlee>><<set $karlee.countdown to 2>><<set $karlee.hint to "Visit Elysium Emporium in $karlee.countdown days">>
<</if>>
<<if $period == 2 && setup.DAYS[$day % 7] is "Sunday">>\
<<if $emily.progress == 0>>\
<<statsmax 5>><<set $emily.progress += 25>>\
<<set $emily.hint to "$emily.progress% done, go to her Sunday Afternoon party again">>\
The Willis estate is a sight to behold, an opulent display of wealth and power nestled in the heart of West Egg. A light lunch is being held in one of the vast gardens, where $emily.name introduces you to her family.
<<image emily emilywillismeetup>>
You finally meet her father, Richard Willis, the man whose charisma and ambition led him from a successful real estate tycoon to the President's office. His firm handshake and keen eyes tell you he's a man who's worked hard to build the empire he now oversees.
Throughout the afternoon, $emily.name introduces you to countless important connections. From powerful politicians to influential entrepreneurs, each introduction feels like a stepping stone in a much larger game. You quickly realize that these Sunday gatherings are not just for leisure, but are strategic opportunities for networking and alliances.
Amidst the intimidating wealth and power, $emily.name remains by your side. You catch glimpses of her vulnerability beneath her confident facade, making her all the more endearing. As the day draws to a close, you're left with a mix of exhaustion and exhilaration. It's just the beginning of a new chapter, and you're eager to see where it leads.
<<elseif $emily.progress == 25>>\
<<statsmax 10>><<set $emily.progress += 25>>\
<<set $emily.hint to "$emily.progress% done, go to her Sunday Afternoon party again">>\
As you approach the Willis estate again, you can't help but feel more at ease compared to the previous week. The grandeur of the place is familiar now, yet still awe-inspiring. Stepping into the garden, you're greeted by the soft glow of paper lanterns floating in the air and the lively jazz notes wafting through the atmosphere.
You spot $miamelano.name at the party, and she seems surprised to see you.
<<set $miamelano.respect += 1>>
<<speech "miamelano" "$miamelano.name">>Well, you've come a long way from the scrappy albeit homeless new hire. You have the President's daughter at your arm now.<</speech>>
<<speechYou "you">>Yeah, I guess you could say that. Are you still Greystone's receptionist?<</speechYou>>
<<speech "miamelano" "$miamelano.name">>I'm the *Interactions Manager*<</speech>>
<<speechYou "you">>Righhtttt...<</speechYou>>
Throughout the evening, $emily.name introduces you to an array of personalities from her world. You both engage in a friendly match of croquet, and share laughs over well-mixed cocktails.
Later, when the sky is painted with hues of the setting sun, you find yourself sharing a quiet moment with $emily.name by the poolside. She turns towards you, her eyes reflecting the soft lights around,
<<speech "emily" "$emily.name">>You know, I don't usually share much about myself with others, but with you it feels different. No one else ever challenges me.<</speech>>
<<speech "emily" "$emily.name">>People always see the Willis legacy, the glitz and glamour, but rarely do they see the girl who wanted to be a writer, or who was scared of thunderstorms.<</speech>>
You suspect this is supposed to be cathartic for her, but in reality, it is just another sordid tale about the alienation of capital. While you try to stay shielded, as the afternoon drags on, $emily.name's story grows on you.
By the time you take your leave, you can't help but feel that you understand $emily.name more, the girl who's more than just her family name.
<<elseif $emily.progress == 50>>\
<<statsmax 10>><<set $emily.progress += 25>>\
<<set $emily.hint to "$emily.progress% done, go to her Sunday Afternoon party again">>\
This Sunday's party is smaller than usual, and you find yourself standing around the patio bar with $emily.name.
<<speechYou "you">>Huh, small crowd today.<</speechYou>>
<<speech "emily" "$emily.name">>Not sure, Dad is currently hosting a meeting with some finance and politics big wigs. <</speech>>
You nearly spit out your drink when you see your boss approach the bar. You and $emily.name straighten yourselves out when you see $alexistexas.name stride to the bar
<<image alexistexas posh>>
<<speech "alexistexas" "$alexistexas.name">>At ease people, we're all off duty<</speech>>
You guys laugh, and after chit chatting for a bit, you ask how $alexistexas.name came to know $emily.name's dad.
<<set $alexistexas.respect += 1>>
<<speech "alexistexas" "$alexistexas.name">>Well, I knew him back in his days as a politician in the New York State Assembly, so a looonngg time ago.<</speech>>
<<speech "alexistexas" "$alexistexas.name">>Back then, I was just an analyst, and I was assigned to help smooth over some tax writeoffs on low income housing we were financing.<</speech>>
<<speechYou "you">>Greystone has been tied to the hip with him that long?<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>He was a pretty promising statesman, even that early on in his career. We just hitched our wagons and rode him to the top. We still use his domestic and international contacts to this day.<</speech>>
You learn more about the ties between the Willis family and Greystone, and you notice a pattern. These institutions develop ties to particularly wealthy families, offering their failchildren lucrative jobs and paying insane contracting fees, so that they can benefit from the family contacts and wealth. Everyone, from banks, to colleges, to NGOs. Unless you're in their inner circle, this is a level of wealth you just can't reach.
These thoughts run through your head, and you realize you can not blow this opportunity you have. It can take you twenty years to build your reputation, but you can lose it all in five minutes.
<<elseif $emily.progress == 75>>\
<<statsmax 10>><<set $emily.progress += 25>>\
<<set $emily.hint to "$emily.progress% done, go to her Sunday Afternoon party one last time">>\
As if to make up for the last party, this party is much more extravagent. $emily.name's dad is out and about shaking hands, and as his daughter's plus one, the three of you are in the handshake bubble jumping around the garden estate. Just a few weeks ago, you would have been awestruck by the people whose hands you're shaking, but now, you're just looking forward to teeing up against $emily.name's dad on the green.
<<set $kendralust.respect += 1>><<set _x to "Richard Willis">>
<<speech "kendralust" "$kendralust.name">>Well well well, is that my $you.job yawning? Bored of the rich and powerful already?<</speech>>
<<image kendralust blue>>
You turn around, and while you shouldn't be surprised considering who you've already met at the party, you can't help but hide your shock at seeing $kendralust.name here. For a second, your eyes fixate on her exposed cleavage and toned thighs. Your recovery is admirable, but $kendralust.name smiles at you knowingly.
<<speech "anon" "_x">>My my, the illustrious $kendralust.name! I hope my daughter hasn't lost Greystone too much money this quarter!<</speech>>
You can't help but notice the pretty overt jab at his admittedly airheaded communist daughter.
<<speech "kendralust" "$kendralust.name">>Haha, I see you retained your sense of humor from our Yale days! $emily.name has only been slightly underperforming for the average Junior Analyst.<</speech>>
<<speech "emily" "$emily.name">>Well, it's a little hard to make money on Wall Street the honest way, without having to blackmail politicians or use insider information.<</speech>>
There's an uncomfortable silence after $emily.name's unusually insightful comment. It seems like she's trying to cut it on her own, without relying on her father's connections. Admirable, you suppose.
<<speechYou "you">>I have to say, this party is quite extravagent. Who are we trying to impress?<</speechYou>>
<<speech "anon" "_x">>The Saudis. We want to convince them to 'divest' a little bit of their sovereign wealth fund, but those degenerates seem to want a massive blowout party. Even AFTER I got my Pentagon friends to approve a special ops troop surge in Yemen. Those fuckers.<</speech>>
<<speech "kendralust" "$kendralust.name">>Don't worry Richard, it'll all be worth it in the end. There's a reason Domestic Operations is funding the party!<</speech>>
Well well well, seems this whole party is just another investment move. Guess when you're part of the sub 1%, you've gotta always get your bag up.
As the afternoon ticks on, $emily.name's dad seems to be taking more snipes at her than usual, especially in front of you. While you remain silent, you can't help but feel he's using $emily.name as a pawn in some game with you. He's testing you, to see how you react to external tension.
<<if $game.mode is "Realistic">>\
Just as you're about to leave the party, $emily.name's dad stops you
<<speech "anon" "_x">>Hey son, noticed you were eyefucking $kendralust.name earlier.<</speech>>
Fuck! He saw that too? You're seeing his daughter, this is not a good luck.
<<speech "anon" "_x">>Don't worry $you.firstName, powerful men like you and me always have a few girls on the side we're playing with, if ya know what I mean haha! Just don't break $emily.name's heart<</speech>>
<<speech "anon" "_x">>You know, I don't totally blame you. $kendralust.name is a fine piece of ass. She still sucks dick as good as she did back at Yale!<</speech>>
This last sentence makes your stomach drop, and you can't help but feel this is part of $emily.name's dad's game. As if he can read your mind, he pulls out his phone, and shows you a pretty recent picture of $kendralust.name.
<<image kendralust fitrear>>
<<speech "anon" "_x">>Heh, pretty good, right? She's a little looser since I popped her cherry at that frat party in '89, but at least she doesn't bitch anymore when I want to do anal!<</speech>>
You just slyly smile at him, but it's clear he's trying to assert dominance over you.
<</if>>\
You leave the party feeling a bit uneasy. Be prepared for the next party, as you may be required to make a tough choice.
<<elseif $emily.progress == 100 and $thread is "null">>\
<<statsmax 10>><<set $angela.respect += 1>><<set _x to "Richard Willis">>\
You're now a fixture at the Willis Sunday parties. It's been a month, and you've finally found out why these parties are on a Sunday Afternoon. They're designed so that only the kinds of people who don't need to get up on time on a Monday morning can be regulars.
The paparazzi have wondered who you are, the man allegedly seeing an ex-President's only child. While you're not exactly famous, some have slowly started whispering about you in the upper echelons of society.
Today is a minor celebration, the birthday of one of President Willis' old friends. In the dining hall, placards are set up, and everyone takes their seats as an army of waiter streams forth with refreshment.
You and $emily.name are alone at your table, while the spot for her father and a mysterious fourth person are empty.
<<speech "emily" "$emily.name">>$you.firstName, can you see who else is sitting at our table? I hope it's not someone boring. I am so borreeeddd. Bored Bored Bored!!<</speech>>
Conversation with $emily.name is hard when she's not deeply emotional.
As you stretch across to check the placard, you hear a familiar voice call out and playfully slap your hand
<<speech "angela" "$angela.name">>You naughty little boy, get your dirty hands of my placard! I don't know where those hands have been, although I am a little excited to find out...<</speech>>
<<image angela rear>>
As you get up, you whisper quietly in her ear
<<speechYou "you">>If you don't stop flirting with me in front of $emily.name, you're going to find those dirty little fingers all the way up your pussy tonight<</speechYou>>
$angela.name giggles, and you groan. You meant for that to be a veiled warning, but you sort of got horny mid-threat. Fuck those tits!
The three of you settle in, and quitely talk about work, life, and everything nice. In the background, speeches are being given to $emily.name's father's friend. Eventually, he comes on stage. Given his commanding presence, the whole room goes quiet, as he gives a heartfelt dialouge about his friendship with his old bud. However, just as it seems as though he is wrapping up the speech, the ex-President changes his tune.
<<speech "anon" "_x">>I spoke to you fine people about the great philantrophy of my dear friend. He came from nothing, and now he helps those who just like him, had nothing as well. I've seen him struggle against the powers that be, the elite, the people who seek to keep the working man in his place. And I sympathize with his efforts. I've seen how unearned wealth degrades the soul of man and woman.<</speech>>
Ok, based? Why do you feel like he's about to do something unpleasant...
<<speech "anon" "_x">>And so in that spirit, I have decided to remove my daughter, $emily.name, from her position as the Director of the Willis Trust, to replace it with a more deserving and competent steward. I hope that this change will improve our philantrophic efforts, and pray that it may do something to stem the tide of wealth inequality in this conversation<</speech>>
This is a death blow for $emily.name. The child of a wealthy person being removed from the board of a family trust is tantamount to being disinherited. The room gasps, and slowly, a virtue signal applause starts to build. You don't join them. This doesn't meaningfully help the working class, it's a ruthless jab at the man's daughter.
$angela.name looks at you, uncharacteristically nervous. $emily.name is struggling to fight her tears, and her body is shaking.
<<image emily upset>>
<<speech "angela" "$angela.name">>I know you want to say something $you.firstName. All I can say is that the choice is yours.<</speech>>
<<speechYou "you">>What's could possibly be the reward for staying quiet?<</speechYou>>
<<speech "angela" "$angela.name">>The stake that sticks out gets hammered down. You'll earn the respect of the Greystone leadership if you stay quiet. High Society will recognize you're one of their own, and your status will increase. Hell, I'll even get $blake.name to authorize a $10K bonus if you don't threaten our relationship with Richard.<</speech>>
<<speech "angela" "$angela.name">>On the other hand, if you speak up, your relationship with $emily.name's father may actually improve, it is impossible to tell. $emily.name's respect for you will probably massively increase, and you'll probably get to fuck her tonight. However, your status will take a hit, and the upper leadership of Greystone will probably loose some respect for you. I personally don't care, but the choice is yours. <</speech>>
<<button "Stay quiet and bide your time" "Emily Place">><<set $thread to 1>><</button>> <<button "Stand up for $emily.name" "Emily Place">><<set $thread to 2>><</button>>
<<elseif $thread == 1>>\
<<girlAdvance $emily>><<set $alexistexas.respect += 3>><<set $kendralust.respect += 3>><<set $miamelano.respect += 3>><<statsmax 20>><<paycheck 10000>>\
<<set $thread to "null">>\
You decide to bide your time. Men like $emily.name's dad can act cruel, but you can only take awful people like him down by gaining more status and the support of other powerful people. $angela.name nods at you, and you have a feeling you made the tough, but right decision.
At the end of her party, $emily.name excuses herself, and you and $angela.name stay and talk for a bit. After a few minutes, you follow her, to make sure she is ok.
When you get to her room, you hear noises from inside, no doubt $emily.name sobbing.
<<if $game.mode is "Realistic">>\
You open the door, and the sounds of moaning fills the corridors. A few guests, who now $emily.name has been seeing you, try to stiffle their laughter as they realize how she's coping with being disinherited.
What you thought was $emily.name sobbing was actually her moaning while her boss, $jean.name, pumped his cock deep into her pussy.
<<vid jean emily3>>
$jean.name is positioned between $emily.name's legs, his ripped toned body thrusting against your girl. As he pulls her hair and fucks her brains out, $emily.name grips the sheets and orgasms. The two of them then notice you, and nearly jump at the site of you
<<speechYou "you">>Jesus $emily.name, you have one setback and you bend over for your boss?<</speechYou>>
<<speech "jean" "$jean.name">>Sorry bro, but she basically dragged me up here! I thought you knew $emily.name and I fuck after these parties<</speech>>
He then proceeds to slide his dick into $emily.name's pussy again, and her eyes roll back as he starts to fuck her again
<<speech "emily" "$emily.name">>AhhHHHH...WAIT STOP! $you.firstName and I need to talk, get out of here $jean.name!<</speech>>
<<speech "jean" "$jean.name">>Are you kidding me? I didn't even get to cum!<</speech>>
<<speech "emily" "$emily.name">>We can finish this up later, just go right now!<</speech>>
$jean.name puts on his clothes, opens the window, and then jumps out. Even though he just fucked your girl, you have to admit he's pretty badass.
<<else>>\
As you open the door, you hear a rustle of activity, as though $emily.name is suddenly composing herself to seem like she wasn't sobbing. You cross the room to close the open window, and you face $emily.name, who has mascara running down her face. Poor girl.
<</if>>
<<speechYou "you">>How are you feeling?<</speechYou>>
<<speech "emily" "$emily.name">>Pretty shitty, not gonna lie...<</speech>>
<<speechYou "you">>I'm sorry your father treated you that way, but I know you're strong. You will find your way.<</speechYou>>
<<speech "emily" "$emily.name">>I hope so. Will you be there for me? I just feel so alone...<</speech>>
<<image emily kissingYou>>
You lean in, and the two of you kiss. She stops before going any further, still not sure of herself, and you respect her decision to not make any further brash decisions. As the sun sets across the sky, you decide to give $emily.name space, and you take your leave.
<<elseif $thread == 2>>\
<<girlAdvance $emily>><<set $alexistexas.respect -= 4>><<set $kendralust.respect -= 4>><<set $miamelano.respect -= 4>><<set $emily.respect += 10>><<statsmax -40>><<set $you.power += 1>>\
<<set $thread to "null">><<set _x to "Richard Willis">>\
You decide to speak up. This has to be a part of Richard's game, and gaining his favor is more important than what the rest of "high society" thinks. People like $emily.name's father change the world, and you plan to demonstrate you can do the same.
<<speechYou "you">>With all due respect Mr. President, I don't think that this meaningfully helps the disenfranchised. I've worked with $emily.name, and she is far more competent than she let's on. May I suggest reinstating her, and focusing on allocating more capital to lower-income educational projects close to home?<</speechYou>>
The room has turned into a vacuum. No one makes a noise, but $emily.name is so happy that you don't even mind. Her father's face flashes in anger, but then it slowly changes to a more respectful gaze.
High Society may be disgusted by you suggesting something that could actually help the working class, but Richard Willis recognizes your hidden strength. You've gained something more important than status with this move. You've gained Power.
<<speech "anon" "_x">>That...that is a remarkably insightful proposal. Everyone, give a hand for Mr. $you.lastName, I think I may just do that instead!<</speech>>
There's a tepid applause, as you've still attracted the ire of the uppity fucks here.
After the dinner, $emily.name pulls you away from the party, and drags you to her room. You tear each other's clothes off; you're drunk from the power you've earned, and $emily.name massively turned on by you standing up to her father.
She rewards you for your defiance by shoving your cock down her throat, going surprisingly deep.
<<vid emily v1>>
$emily.name mounts you, and you spread her cheeks so you can go all the way. Her eyes roll back as you thick cock penetrates her. She's so tight you can feel her pussy gripping on, even as you slide out.
<<vid emily v4>>
She turns around, and you grope her petite tits. $emily.name's still getting used to your girth, and she plays with her clit to make herself wetter.
<<vid emily v5>>
You slam her to her side, and manhandle her tight body. You push your cock deep inside her, and make her your bitch. <<if $game.mode is "Realistic">>It's clear no guy has ever fucked her like this before.<</if>>
<<vid emily v6>>
Her tightness makes you cum unusually quickly, and you blast your load onto her. You aim for $emily.name's mouth, but you end up hitting the side of her face. As your warm cum drips down her throat, she laughs, and laps it up into her mouth.
<<vid emily v7>>
<<speech "emily" "$emily.name">>I love you, $you.firstName $you.lastName...<</speech>>
She trails off and goes to sleep, exhausted from the emotionally turbulent day. You decide to head out into the dusk, feeling accomplished by your newfound power and conquest.
<</if>>\
<<else>>\
Come back and visit Sunday Afternoon!
<</if>>\<<bg "GigachadCartoon">>\
<<if $playerEnteredDebt == 0>>\
<<elseif $playerEnteredDebt lt 0>>\
Did you...just try to increase your debt?
<<elseif $playerEnteredDebt gt $you.cash>>\
Fuck you. You are that one mf who makes me implement all these bug tests. When people ask why this game takes forever to upload, I will tell them it was $you.firstName $you.lastName
<<else>>\
<<set $you.cash -= $playerEnteredDebt>>
<<set $expenses.debt to ($expenses.debt - $playerEnteredDebt)>>
<</if>>\
Clear Debt: <<textbox "$playerEnteredDebt" "">> <<button "Enter" "Clear Debt">><</button>>
<<set _d = $expenses.debt>>\
Debt: $<<print _d.toLocaleString()>>
<<button "Back to Finance Tab" "Finances">><</button>><<if $thread == "null">>
You arrive at the Elysian Essentials a little late. Foot traffic into Brooklyn was unusually heavy, so you're not able to meet $karlee.name at the designated time. But when you get there, $karlee.name is nowhere to be seen.
<<set $karlee.hint to "Decide whether you will or won't pay $athena.name">>
As you walk into the story, you see $athena.name staring at a computer.
<<speech "athena" "$athena.name">>I was waiting on you $you.firstName. Your friend seems to have gotten herself into a compromising situation.<</speech>>
She swivels the computer around and you see $karlee.name on a security feed with a private security guard. Seems this shoplifting run wasn't as successful.
<<image karlee shoplifting2>>
<<speechYou "you">>Ah shit $athena.name, I'm sorry. I don't think $karlee.name can help herself. Is there anything we can do to keep this situation under wraps?<</speechYou>>
<<speech "athena" "$athena.name">>I like you $you.firstName, but $karlee.name stole $5,000 worth of merchandise. Unless you can cover that, plus a 50% premium, I don't think I can cover this situation in house. I have to pay off the guard too, otherwise he'll tell management.<</speech>>
<<if $game.mode == 'Realistic'>>\
<<button "Pay the $7.5K" "Elysian Essentials">><<set $thread to 1>><</button>>
<<button "Don't pay" "Elysian Essentials">><<set $thread to 2>><</button>>
<<else>>\
<<button "Pay the $7.5K" "Elysian Essentials">><<set $thread to 3>><</button>>
<<button "Don't pay" "Elysian Essentials">><<set $thread to 4>><</button>>
<</if>>
<<elseif $thread == 1>>\
<<set $karlee.hint to "Meet her at her apartment at the Brooklynite">>\
<<set $thread to "null">><<girlAdvance $karlee>><<set _x to "Security Guard">>\
<<set $karlee.respect += 20>><<payment 7500>>\
$athena.name puts the intercom microphone close to her mouth and says
<<speech "athena" "$athena.name">>Ok, you can let her out now, $you.firstName paid for the stolen merchandise. To show his appreciation, he also threw a little on the top for you to look the other way...<</speech>>
You see $karlee.name nearly tear up with happiness, and she cries out
<<speech "karlee" "$karlee.name">>Oh my god thank you! I promise I'll never shoplift again!<</speech>>
<<speech "anon" "_x">>Now hang on $athena.name, did he just try to bribe me?<</speech>>
<<speech "athena" "$athena.name">>Seriously? This isn't a good look for us, don't do this again.<</speech>>
<<speech "karlee" "$karlee.name">>Uhh, don't do what again?<</speech>>
The security guard proceeds to stare down $karlee.name, and all of a sudden, it looks like $karlee.name has an idea. She starts to strip down to her underwear, and says
<<speech "karlee" "$karlee.name">>You know Mister, this isn't my first rodeo. If you hand me over to the cops, I'll just fuck them to have my charges dropped. Why don't I just take care of your needs, and we can both help each other out?<</speech>>
For the next 5 minutes, $karlee.name to perform a variety of sexual acts, including fucking the guard without a condom. Her moans echo through $athena.name's laptop speaker, and you suspect she's trying to get the guy to cum as quickly as possible
<<vid karlee c1>>
<<vid karlee c2>>
<<vid karlee c3>>
<<vid karlee c4>>
<<vid karlee c5>>
<<vid karlee c6>>
While your payment wasn't able to save $karlee.name from getting dicked down by the security guard, you suspect that her respect for you has massively increased.
<<button "Take $karlee.name back home" "Karlee Place">><</button>>
<<elseif $thread == 2>>\
<<set $karlee.hint to "Meet her at her apartment at the Brooklynite">>\
<<set $thread to "null">><<girlAdvance $karlee>><<set _x to "Security Guard">>\
$athena.name puts the intercom microphone close to her mouth and says
<<speech "athena" "$athena.name">>Mr. $you.lastName said he can't bail you out.<</speech>>
The security guard proceeds to stare down $karlee.name, and all of a sudden, it looks like $karlee.name has an idea. She starts to strip down to her underwear, and says
<<speech "karlee" "$karlee.name">>You know Mister, this isn't my first rodeo. If you hand me over to the cops, I'll just fuck them to have my charges dropped. Why don't I just take care of your needs, and we can both help each other out?<</speech>>
For the next 5 minutes, $karlee.name to perform a variety of sexual acts, including fucking the guard without a condom. Her moans echo through $athena.name's laptop speaker, and you suspect she's trying to get the guy to cum as quickly as possible
<<vid karlee c1>>
<<vid karlee c2>>
<<vid karlee c3>>
<<vid karlee c4>>
<<vid karlee c5>>
<<vid karlee c6>>
$karlee.name, resourceful as ever, seems to have evaded the law once again. While you suspect paying the 7.5K may not have helped $karlee.name, you can't help but wonder if the gesture would have improved your goodwill with her.
<<button "Take $karlee.name back home" "Karlee Place">><</button>>
<<elseif $thread == 3>>\
<<set $karlee.hint to "Meet her at her apartment at the Brooklynite">>\
<<set $thread to "null">><<girlAdvance $karlee>>\
<<set $karlee.respect += 20>><<payment 7500>>\
$athena.name puts the intercom microphone close to her mouth and says
<<speech "athena" "$athena.name">>Ok, you can let her out now, $you.firstName paid for the stolen merchandise. To show his appreciation, he also threw a little on the top for you to look the other way...<</speech>>
You see $karlee.name nearly tear up with happiness, and she cries out
<<speech "karlee" "$karlee.name">>Oh my god thank you! I promise I'll never shoplift again!<</speech>>
You sincerely doubt this, but better to not get the cops involved. You also suspect that her respect for you has massively increased.
<<button "Take $karlee.name back home" "Karlee Place">><</button>>
<<elseif $thread == 4>>\
<<set $karlee.hint to "Meet her at her apartment at the Brooklynite">>\
<<set $thread to "null">><<girlAdvance $karlee>>\
$athena.name puts the intercom microphone close to her mouth and says
<<speech "athena" "$athena.name">>Mr. $you.lastName said he can't bail you out.<</speech>>
$karlee.name is clearly distraught, and is openly crying now. The security guard takes down $karlee.name's information for the collection's agency, and she calls $nikki.name to see if Greystone can keep this incident out of the press.
<<button "Take $karlee.name back home" "Karlee Place">><</button>>
<</if>>
<<bg brooklyn>>\
You and $karlee.name quietly walk through the streets of Brooklyn back to her place. Suddenly, in a more quiet part of town, $karlee.name breaks down, crying into your arms.
<<speechYou "you">>Why do you do this to yourself?<</speechYou>>
After a pause, she composes herself. Looking up at you, she says:
<<speech "karlee" "$karlee.name">>Did you know I have a degree in Nuclear Physics from Caltech? I used to be the chief editor of the colllegiate science review, I don't think Greystone has a better hard science company analyst then me.<</speech>>
<<speech "karlee" "$karlee.name">>In high school, everyone thought I was a boring nerd. Even though I was smarter than all the other kids, my college counselor told me I'd never get into an elite school unless I had something to make my application special.<</speech>>
<<speechYou "you">>So you became a thief?<</speechYou>>
<<speech "karlee" "$karlee.name">>My family was just middle class. I'm not a minority, and I don't come from royalty. I was only a super hard and smart working kid, no elite school was interested me. My college counselor recommended I come up with a mental disorder.<</speech>>
<<speech "karlee" "$karlee.name">>I wrote my personal essay on how my neurodivergence led me to become a kleptomaniac, and how that led me to learn about social justice.<</speech>>
<<speechYou "you">>Wait, what the fuck?<</speechYou>>
<<speech "karlee" "$karlee.name">>I know, total bullshit. Anyways, Caltech ate it up, and I guess eventually, I bought my own lies. Stealing became thrilling, and I got really good at it. Caltech encouraged my bad habit, under the guise of neurodivergence.<</speech>>
This talk has been cathartic for $karlee.name. The only thing difference between her stories and yours is an ultra-pragmatic college counselor. If you had been as desparate as $karlee.name, you could have been in the same spot as her. The two of you eventually reach her apartment at The Brooklynite, and $karlee.name opens the door for you.
<<speech "karlee" "$karlee.name">>Do you want to come in?<</speech>>
<<button "Follow her inside" "Karlee Place">><<girlAdvance $karlee>><</button>>
<<bg theBrooklynite>>\
<<set $you.location to "Karlee Place">>\
<<set _karleearc to [1.04]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _karleearc.contains($karlee.arc) && $karlee.countdown == 0 && $mission.arc gt 1.03>>\
<<girlcheck $karlee _karleearc>>
<<elseif $karlee.arc gt 1.04 and $karlee.minMoney lte $you.cash and $karlee.minStatus lte $you.status and $karlee.minPhysique lte $you.physique>>\
<<set $karlee.hint to "She is now in your harem">>\
<<if $currentAction is "cum">>\
<<set $currentAction to "null">>\
<<if $thread == 0>>\
<<set $thread to "null">>\
You discreetly follow $tommy.name and $karlee.name out of the club, then out of Manhattan, and then into $karlee.name's apartment. What the fuck does $karlee.name have planned?
You slip into the apartment complex behind the two of them. By the time you reach $karlee.name's apartment, it's too late. On a side table, you notice there's some hastily spilled out remnants of white powder, and realize the two of them are too coked out to even notice you.
You find a dark little corner of the apartment to watch the show, as $tommy.name kisses $karlee.name.
<<vid karlee n0>>
$tommy.name pulls off $karlee.name's top, and starts sucking on her tits. Her nipples are rock hard, as $tommy.name vigorously sucks on them.
<<vid karlee n1>>
Given $tommy.name's personality, you expected him to abuse the shit out of $karlee's mouth. Instead, $karlee.name willingly takes his manhood in her mouth, and begins to blow him.
<<speech "tommy" "$tommy.name">>Noticed a pair of men's shoes at the entrance. Your man coming home anytime soon? I'm not trying to get shot over some yuppie pussy<</speech>>
Gagging through her mouth, $karlee.name shakes her head
<<vid karlee n2>>
Squeezing her tits, $tommy.name powerfuly pounds into $karlee.name from behind. Her eyes nearly bulge out from the initial thrust, but she slowly gets her groove and gets acclimated to $tommy.name's style.
<<vid karlee n3>>
$tommy.name proceeds to bounce $karlee.name onto his cock, jamming himself deep inside her. $karlee.name is clearly struggling to fit all of him, and it isn't clear whether her moaning or the bed creaking is louder.
<<vid karlee n4>>
Staring deep into her eyes, $tommy.name leans in to kiss $karlee.name. Her face softens and she smiles, looking forward to a little bit of intimacy with this gruff and tough man. He then laughs, pulls away, and slams his cock into her. $karlee.name barely has any time to react, as $tommy.name pushes himself deep into her guts.
<<vid karlee n5>>
<<speech "tommy" "$tommy.name">>That bush is some fucking 80s Playboy shit, turn around hoe<</speech>>
While $karlee.name was struggling to take $tommy.name before, it seems she's a bit more stretched out now, and he slides with ease into her. The clapping of his groin against her ass cheeks fills the apartment, and it is clear $karlee.name is taking it like a champ.
<<vid karlee n6>>
As $tommy.name gets ready to ejaculate, he asks:
<<speech "tommy" "$tommy.name">>So your man...am I bigger than him?<</speech>>
$karlee.name shakes her head, and says
<<speech "karlee" "$karlee.name">>About the same length. You're girthier though...<</speech>>
This sends him over the edge, as he blows his load across $karlee.name.
<<vid karlee n7>>
$karlee.name passes out a minute later from the equal parts coke, dancing, and fucking she engaged in this evening, and $tommy.name wipes his dick off in her hair. He looks at your pair of shoes at the door and laughs before heading out into the night.
<<elseif $thread == 1>>\
<<set $thread to "null">>\
You got a little bit of whiskey dick but $karlee.name doesn't seem to mind. She drains every last drop from your cock, and smiles. Wife material?
<<vid "karlee" "6">>
<<elseif $thread == 2>><<set $thread to "null">>\
<<set _x to "$karlee.name's First College Boyfriend">>\
<<set _y to "$karlee.name's Second College Boyfriend">>\
<<speechYou "you">>Sooo, can I join in?<</speechYou>>
<<speech "anon" "_x">>Yeahh, I don't know man<</speech>>
The two guys tear $karlee.name's clothes off, and in between moans, she explains:
<<speech "karlee" "$karlee.name">>Mhm...$you.firstName these guys are my...AH...Caltech polycule<</speech>>
<<speech "anon" "_x">>Well, I was her first boyfriend...<</speech>>
<<vid karlee p1>>
As $karlee.name's first boyfriend eats her pussy, and while her mouth is working the other guy's shaft, he says
<<speech "anon" "_y">>You know $you.firstName, him and I have been friends since elementary school. I knew just how shy he is, so I helped speed things along by popping $karlee.name's cherry first! <</speech>>
<<speech "karlee" "$karlee.name">>*gluck* sorry! He was just so confident!<</speech>>
<<vid karlee p2>>
<<speech "anon" "_y">>I decided to just open up their relationship, just to avoid conflict between everyone.<</speech>>
You can't help but notice the arrogance in his voice, and the tension between him and his childhood "friend". $karlee.name seems oblivious to the dynamic, simply enjoying the availability of two studs at her command.
<<vid karlee p3>>
While you stand in the corner, the two of them smoke the pot you gave them, and spitroast $karlee.name. While enjoying her body, the tension between them slowly dissipates, and they bond over the good old days in college.
<<vid karlee p4>>
<<speech "anon" "_x">>Haha, remember that time $karlee.name stole the Thermodynamics exam answer key for our frat?<</speech>>
While sucking her second partner's dick, she looks up, a little miffed at what was just said.
<<speech "anon" "_x">>Oh right, sorry about that! I forgot you had to suck that professor off when he realized all of our answers in that corner of the class were identical.<</speech>>
<<speech "anon" "_y">>Thanks for taking one for the team!<</speech>>
<<vid karlee p5>>
Her second boyfriend starts to really pound her pussy, and $karlee.name has some difficulty sucking off her first boyfriend. The first boyfriend looks more than a little annoyed, and glares at his friend.
<<vid karlee p6>>
Her second boyfriend, the clear gigachad of the group, simply ignores the first guy, this time propping $karlee.name up and fucking her from below. The first guy has to resort to pathetically slapping his dick across $karlee.name's mouth, as she gets reduced to a mindless cockslut.
<<vid karlee p7>>
Thoroughly pissed, $karlee.name's boyfriend grips her hair to keep her mouth in place, and resorts to just jerking off in her mouth. She dispassionately swallows his load, and continues to fuck the other guy for a bit before he fucks the load into her mouth as well.
<<vid karlee p8>>
<<speech "karlee" "$karlee.name">>Uh $you.firstName? We were thinking about watching a movie together, and the guys want to keep it to Caltech people only. Is that ok with you?<</speech>>
You can tell you don't really have a choice here, so you take your leave before you embarrass yourself further.
<<elseif $thread == 3>><<set $thread to "null">>\
You cover $karlee.name's face with your seed, and she moans in ecstacy as your warm cum dribbles down her chin.
<<vid "karlee" "v5">>
Soon, she passes out from the fucking you gave her. You stand there for a second, and you ultimately decide to slip out. Money never sleeps!
<</if>>
<<else>>\
<<set _sceneSelectorList to [1, 2, 3, 4]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<set $currentAction to "null">>\
<<set $person to "karlee">>\
<<set $exitpage to "Karlee Place">>\
<<if $period == 3>>\
<<bg DorsiaClub>><<statsmax 2>><<payment 500>>\
<<speech "karlee" "$karlee.name">>Are you ready to go out?<</speech>>
<<image karlee "4">>
<<speechYou "you">>Only if you're ready to paint the town red...<</speechYou>>
The club is packed, the atmosphere a potent mix of booze and sweat, but somehow, it's perfect. The music is intoxicating, the kind that seeps into your bones and leaves you with no choice but to move. $karlee.name takes to the dance floor like she was born for it, her body swaying to the beat with an infectious energy. The two of you are the center of the world, as you drop Benjamin after Benjamin on drink service for everyone there.
<<speech "karlee" "$karlee.name">>Come on, don't just stand there! Dance!<</speech>>
With a laugh, you join her, getting lost in the music, the lights, and the way Karlee's eyes light up with pure, unadulterated joy. It's a side of her you don't often get to see in the sterile environment of the office, but it's a side you could definitely get used to.
<<if $game.mode is 'Realistic' && _scene == 3>>\
<<set $thread to 0>><<set $currentAction to "cum">>\
You and $karlee.name dance your way across the floor, and you spot a familiar face. At the corner of your eye, you see $tommy.name on the floor, slinging coke and looking for new buyers.
$karlee.name bumps into him, and covertly moves away. She bumps into you, smiling, and you realize she stole some cocaine off of $tommy.name, and gave it to you.
<<set $you.items["cocaine"] += 1>>
$tommy.name isn't stupid though, and he quickly realizes he's a little short. In a flash, he darts across the floor to $karlee.name
<<speech "tommy" "$tommy.name">>You stupid bitch, what made you think you could steal from me?<</speech>>
His muscular arms menacingly grip $karlee.name's arm, and her face flushes red. Is it just the dancing, or is she actually turned on by this?
<<speech "karlee" "$karlee.name">>Oh my god, I have no clue what you're talking about!<</speech>>
$tommy.name starts to grope at her, and she surrenders.
<<speech "karlee" "$karlee.name">>Fine I did take it! I'm sorry, jeez. I don't have it any more. <</speech>>
<<speech "tommy" "$tommy.name">>Do you have any idea how expensive this shit is? It's grade A primo stuff! I'm going to need more than market value back. Wayyyy more.<</speech>>
He eyes $karlee.name up and down, with a smile appearing on his face. $karlee.name catches a glimpse of your face, and looks a little guilty. She mouths out a "sorry", and then takes $tommy.name by the hand out of the club.
<<button "Follow $tommy.name and $karlee.name" "Karlee Place">><</button>>
<<else>>\
As the night winds down, you guide $karlee.name back to her apartment. The two of you stumble through the door, and $karlee.name starts pawing at your clothing.
<<set $thread to 1>>
<<set $sexlist = ["Handjob", "Blowjob", "Titjob", "Footjob", "Reverse Cowgirl", "Doggystyle", "Cum in mouth"]>>\
<<set $sexdict = {"Handjob":"0", "Blowjob":"1", "Titjob":"2", "Footjob":"3", "Reverse Cowgirl":"4", "Doggystyle":"5", "Cum in mouth":"6"}>>\
<<set $sexDescription = {
"Handjob": "She stares at you intently, encouraging you to surrender your load to her. $karlee.name is good, but it'll take more than a handy for you to cum.",
"Blowjob": "Starting from the base of your cock to your shaft, $karlee.name sucks as hard as she can. It's almost like she wants to drain the semen out of your shaft with the sheer suction of her mouth.",
"Titjob": "$karlee.name continues to tantalize you, sliding your cock between her tits. They're soft, yet firm, and you close your eyes as you feel her tits tug at your shaft.",
"Footjob": "$karlee.name wraps her dextrous feet around your cock, the cold of her skin contrasting to the warmth of your penis. She slowly speeds up, and this new experience overwhelms you.",
"Reverse Cowgirl": "$karlee.name has had plenty to drink, and in no time she impales herself upon your cock. She throws it back, and you let her take over and control her pleasure.",
"Doggystyle": "Putting $karlee.name on her knees, you pound away at her ass. $karlee.name grips the sheet as you claim her pussy for yourself."
}>>\
<<button "Fuck $karlee.name" "SexPage">><</button>>
<</if>>\
<<else>>\
<<if $game.mode is 'Realistic' && _scene == 3>>\
You pull up to $karlee.name's place, looking to get away from the hustle and bustle of the markets. Before you even get to the entrance, the stench of marijuana overwhelms you. When you open the door to $karlee.name's apartment, you see $karlee.name smoking with two other dudes in the center of the apartment.
<<set _x to "$karlee.name's First College Boyfriend">>\
<<set _y to "$karlee.name's Second College Boyfriend">>
<<speech "karlee" "$karlee.name">>Uhh oh my $you.firstName, hi! You didn't tell me you were coming?<</speech>>
<<speechYou "you">>I usually don't...<</speechYou>>
<<speech "anon" "_x">>Yo $karlee.name, who the fuck is this guy?<</speech>>
<<speech "karlee" "$karlee.name">>Oh, he's just a work...friend<</speech>>
While the first guy eyes you suspiciously, the second guy seems pretty nonchalant.
<<speech "anon" "_y">>Yeah, I don't really give a fuck who he is. $you.firstName, right? You can stay here as long as you've got a joint you can spare, otherwise, get the fuck out of here.<</speech>>
As if encouraged by your arrival, the two of them approach $karlee.name, and start to make out with her.
<<if $you.items["weed"] gt 1>>\
<<button "Continue watching" "Karlee Place">>\
<<useItem "weed" 1>><<set $thread to 2>><<set $currentAction to "cum">>\
<</button>>\
<</if>>
<<else>>\
<<set $thread to 3>>\
You pull up to $karlee.name's place, and she greets you with <i>"Fuck me"</i> eyes. The two of you make out across the room, until you find yourselves on $karlee.name's balcony.
<<set $sexlist = ["Blowjob", "Standing Doggy", "Missionary", "Reverse Cowgirl", "Facial"]>>
<<set $sexdict = {"Blowjob":"v1", "Standing Doggy":"v2", "Missionary":"v3", "Reverse Cowgirl":"v4", "Facial":"v5"}>>\
<<set $sexDescription = {
"Blowjob": "$karlee.name gazes intently at you, while throating your cock. She plays with your tip, slurping up all of your precum.",
"Standing Doggy": "You take her against the balcony, and vigorously finger her went cunt. From behind, you thrust into her, and you catch a reflection of her bouncing tits from the side door.",
"Missionary": "You show $karlee.name no mercy, trying to fuck her into submission. Her moans fill the room, encouraging you to pound her until she is sore.",
"Reverse Cowgirl": "She bounces on your cock, and you slap her ass as she rides you. She slams your cock into her, taking care to drag it along her g-spot.",
}>>\
<<button "Fuck $karlee.name" "SexPage">><</button>>
<</if>>\
<</if>>\
<</if>>\
<<else>>\
You and $karlee.name pass time with each other, solving brain teasers, and sharing market tips. $karlee.name is really smart, and you're learning a lot about how Quant driven models work. You really want to take this relationship to the next level, but you feel $karlee.name wants you to achieve your full potential before that happens. Work on your stats, and you'll become a man worthy enough for her.
<<set $karlee.hint to "Have 100K, 80 status, and 5 physique to continue.">>
<</if>>
<<button [[The Brooklynite]]>><<advancePeriod>><</button>><<bg westegg>>\
<<set $you.location to "Emily Place">>\
<<set _emilyarc to [1.01]>>\
<<if $currentAction is "cum">><<set $currentAction to "null">><</if>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif _emilyarc.contains($emily.arc) && $emily.countdown == 0 && $emily.arc gt 1>>\
<<girlcheck $emily _emilyarc>>
<<elseif $emily.arc gt 1.01 and $emily.minMoney lte $you.cash and $emily.minStatus lte $you.status and $emily.minPhysique lte $you.physique>>\
<<set $emily.hint to "She is now in your harem">>\
<<if $thread is "null">>\
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<set $currentAction to "null">>\
<<set $person to "emily">>\
<<set $exitpage to "Emily Place">>\
<<if $period == 2 && setup.DAYS[$day % 7] is "Sunday">>\
The famous Long Island Willis Parties, known by the 1% as the gold standard of weekend getaways for the political and financial elite of the country, even the world. You meet up with $emily.name, and the two of you are a spectacular item, dazzling the High Society of New York and the world. You tee off with $emily.name's father, the former president, rub shoulders with the rich and powerful, and eat a constant stream of fine cuisine. As the afternoon winds down, some of the lesser oligarchs and powerbrokers leave the Willis Estate. Do you continue to spend time with $emily.name, or stay for the Evening event?<<statsmax 5>>
<<if _scene lt 4 && $game.mode is 'Realistic'>>\
You can probably head on up to $emily.name's room.
<<button "Go to $emily.name's room" "Emily Place">><<set $thread to 1>><</button>>
<<else>>\
<<button "Spend time with $emily.name" "SexPage">>\
<<set $thread to 2>>\
<<set $sexlist = ["Blowjob", "Teabagging", "Missionary", "Cowgirl", "Reverse Cowgirl", "Spooning", "Cumshot"]>>
<<set $sexdict = {"Blowjob":"v1", "Teabagging":"v2", "Missionary":"v3", "Cowgirl":"v4", "Reverse Cowgirl":"v5", "Spooning":"v6", "Cumshot":"v7"}>>\
<<set $sexDescription = {
"Blowjob": "Firmly gripping the base of your cock, she fearlessly opens wide and stuffs her mouth with your manhood. $emily.name twists and grabs while she sucks, and you feel proud you're doing your part in ridding her of her gag reflex! ",
"Teabagging": "While she jerks you off, she takes your balls in her mouth in one fell swoop. Her combination of tongue and suction is flawless.",
"Missionary": "She's already dripping wet when you slam your cock in her, and her wetness envelopes your cock as you fuck her harder. Just when you think her pussy can't get wetter, $emily.name creams herself, leaving a pool of fluids at the base of your cock.",
"Cowgirl": "Spreading her cheeks wide, you slowly guide your cock inside of $emily.name. As you enter her, #emily.name's eyes roll backwards in pleasure.",
"Reverse Cowgirl": "$emily.name plays with herself while you pound her from below. Your girth is clearly doing a number on her, and you squeeze her tits while she silently orgasms.",
"Spooning": "You take full control of $emily.name's body, manipulating it like she's a fucking puppet. As you pound her from behind, $emily.name cries out in joy.",
}>>\
<</button>>
<</if>>
<<button "Stay a little longer" "Emily Place Evening">><</button>>
<<elseif $period == 3>>\
<<bg DorsiaClub>>\
The sun is just setting over the Willis Estate when you see $emily.name waiting for you outside.
<<image emily clubbing>><<statsmax 2>><<payment 530>>\
<<speechYou "you">>You ready to hit the town?<</speechYou>>
<<speech "emily" "$emily.name">>Ohh myy gawwd!!! I've been waiting all day for this!<</speech>>
The two of you Uber into Manhattan, and head to the Dorsia Club. Inside, the club was a cacophony of sights and sounds. The thrumming bass echoed in your chest, the music reverberating in the very marrow of your bones. Multicolored lights flashed rhythmically, painting the dancing crowd with a spectrum of hues.
Your status grows as you flash money around the club, paying for drinks and covering tabs. You order a couple of cocktails, the bartender expertly flipping bottles and pouring a vibrant concoction into martini glasses. $emily.name grabbed her drink, clinking her glass against yours before taking a sip. Her eyes met yours over the rim of her glass, a playful glint in her gaze.
<<speech "emily" "$emily.name">>You ready to dance?<</speech>>
With $emily.name in hand, you delved into the sea of bodies. Despite her airheaded persona, $emily.name moved with a grace and rhythm that surprised you. She swayed to the beat, her hands in the air, her laughter competing with the music. It was infectious, and soon, you found yourself matching her energy, caught in the current of the pulsating crowd.
<<if _scene lt 3 && $game.mode is 'Realistic'>>\
Later in the evening, the club's attention seems to move from you and $emily.name to a group of out of state basketball players who've come to tear up the club. Slowly $emily.name's attention seems to be drawn towards them as well. As the evening drags on, you notice $emily.name dancing further and further away from you, the distance between you two as impassable as the ocean.
Eventually, $emily.name finds herself in the center of the NBA players. From what you can see, she all but throws herself at them. You remember reading they news. Their team had just played at Madison Square Garden...and lost. They've got plenty of frustration, and they look like they're eager to take it out on your girl.
<<button "Follow $emily.name and her new friends" "Emily Place">><<set $thread to 3>><</button>>
<<elseif _scene lt 6>>\
After an hour of dancing, you take a break, and grab a drink. Sitting in the private lounge, you leave $emily.name up to her own devices. You sit, ruminating on the evening, when $emily.name and a new girl hop into the booth you're seated at.
<<speech "emily" "$emily.name">>Oh...my...god $you.firstName, guess who I found on the floor!!!!<</speech>>
<<speechYou "you">>Well, who's this new lady?<</speechYou>>
<<speech "emily" "$emily.name">>She was my Harvard bestie!!<</speech>>
<<speechYou "you">>Cool, what's her name?<</speechYou>>
<<speech "emily" "$emily.name">>I...actually don't remember. Adrian? ADRIAN!<</speech>>
$emily.name and her college buddy (who you're pretty sure is not named 'Adrian') laugh at her Rocky joke, and you sit there patiently as the two dither on. After what seems like hours (90 seconds), you say:
<<speechYou "you">>Well ladies why don't we head back to West Egg?<</speechYou>>
<<button "Fuck their brains out" "SexPage">>\
<<set $thread to 4>>\
<<set $sexlist = ["Making Out", "Blowjob", "Reverse Cowgirl", "Jackhammer", "Missionary", "Doggystyle Your Girl", "Doggystyle Your Girl's Friend", "Cumshot"]>>\
<<set $sexdict = {"Making Out":"t1", "Blowjob":"t2", "Reverse Cowgirl":"t3", "Jackhammer":"t4", "Missionary":"t5", "Doggystyle Your Girl":"t7", "Doggystyle Your Girl's Friend":"t6", "Cumshot":"t8"}>>\
<<set $sexDescription = {
"Making Out": "You alternate from girl to girl, the two of them competing for your attention. You have to strike a delicate balance between focusing on $emily.name, and enjoying her friend.",
"Blowjob": "$emily.name sucks your balls, while her friend blows you. Most of your dick and balls are being licked and sucked, and you feel like the king of the world.",
"Reverse Cowgirl": "While $emily.name plays with her friend, her friend vigorously rides your cock. ",
"Jackhammer": "To show your appreciation for $emily.name for setting this up, you fuck her in cowgirl, slamming into her as fast as possible. Her friend giggles, and claps at your performance.",
"Missionary": "You spread $emily.name's legs, while her friend supports your back. As you rail $emily.name, her friend encourages you to fuck her harder.",
"Doggystyle Your Girl": "$emily.name archs her back as you ram into her pussy from behind. Her slickness again proves itself once again, as you pounder her out over the bed.",
"Doggystyle Your Girl's Friend": "$emily.name's friends, who was pretty vocal up until this point, goes dead quiet as you slide into her. With a slight gasp, she feels you enter her, and loudly returns to her previous volume as you increase the pace.",
}>>\
<</button>>
<<else>>\
As the evening drags on, you two start to lose interest in your surroundings, and start to become more interested in each other. More specifically, you mean to fuck the living shit out of her fine Latina ass.
<<speechYou "you">>Say, why don't we head back to your place?<</speechYou>>
<<button "Fuck her brains out" "SexPage">>\
<<set $thread to 5>>\
<<set $sexlist = ["Blowjob", "Cowgirl", "Standing Fuck", "Doggystyle", "Missionary", "Creampie"]>>
<<set $sexdict = {"Blowjob":"1", "Cowgirl":"2", "Standing Fuck":"3", "Doggystyle":"4", "Missionary":"5", "Creampie":"6"}>>\
<<set $sexDescription = {
"Blowjob":"$emily.name strips down to her mesh underwear, and pulls your cock out of your boxers. She diligently sucks your cock, bringing you closer to orgasm",
"Cowgirl":"$emily.name grinds her teeth as you pull her on top of you, and slam her onto your cock. Her mesh lingerie starts to tear from the intensity of your pounding.",
"Standing Fuck":"You lift $emily.name up, and manhandle her petite body. She clings onto your body as your penetrate her, moaning sweet nothings in your ear",
"Doggystyle":"You bend her down over her bed, her thighs slick from the sweat of a night well spent partying. There's little to no resistance as you fuck her from behind, and $emily.name is clearly losing her mind from the pounding you're giving her. ",
"Missionary":"You spread $emily.name's legs, and rail her pussy with as much intensity as you can muster. Not a thought is going through $emily.name's mind as you scramble her guts.",
}>>\
<</button>>
<</if>>
<<else>>\
You arrive at the $emily.name's family estate in West Egg, and you take a second to marvel at the generations of weath it must have taken to build this place. One day, maybe your own great great grandchildren will be able to live like this, but for that to happen, you have to start building that future now. The Willis family servants greet you at the entrance and take you to an antechamber, where you wait for $emily.name.
<<if _scene lt 4 && $game.mode is 'Realistic'>>\
You wait 15 minutes, and still no one greets you. All your texts to $emily.name have been unanswered, and you figure she's probably busy. Right as you're about to leave, $jean.name, $emily.name's supervisor, walks down the stairs to stop you.
<<speechYou "you">>$jean.name? What are you doing here?<</speechYou>>
<<speech "jean" "$jean.name">>Hey, sorry brother! $emily.name and I are working overtime on this new deal, why don't you come on up?<</speech>>
You find it odd that $emily.name is working from home, you didn't know Greystone had a remote work policy?
<<button "Follow $jean.name" "Emily Place">><<set $thread to 6>><</button>>
<<else>>\
Eventually, $emily.name is summoned, and as she descends down the stairs, she gives you a knowing smile.
<<button "Spend time with $emily.name" "SexPage">>\
<<set $thread to 2>>\
<<set $sexlist = ["Blowjob", "Teabagging", "Missionary", "Cowgirl", "Reverse Cowgirl", "Spooning", "Cumshot"]>>
<<set $sexdict = {"Blowjob":"v1", "Teabagging":"v2", "Missionary":"v3", "Cowgirl":"v4", "Reverse Cowgirl":"v5", "Spooning":"v6", "Cumshot":"v7"}>>\
<<set $sexDescription = {
"Blowjob": "Firmly gripping the base of your cock, she fearlessly opens wide and stuffs her mouth with your manhood. $emily.name twists and grabs while she sucks, and you feel proud you're doing your part in ridding her of her gag reflex! ",
"Teabagging": "While she jerks you off, she takes your balls in her mouth in one fell swoop. Her combination of tongue and suction is flawless.",
"Missionary": "She's already dripping wet when you slam your cock in her, and her wetness envelopes your cock as you fuck her harder. Just when you think her pussy can't get wetter, $emily.name creams herself, leaving a pool of fluids at the base of your cock.",
"Cowgirl": "Spreading her cheeks wide, you slowly guide your cock inside of $emily.name. As you enter her, #emily.name's eyes roll backwards in pleasure.",
"Reverse Cowgirl": "$emily.name plays with herself while you pound her from below. Your girth is clearly doing a number on her, and you squeeze her tits while she silently orgasms.",
"Spooning": "You take full control of $emily.name's body, manipulating it like she's a fucking puppet. As you pound her from behind, $emily.name cries out in joy.",
}>>\
<</button>>
<</if>>\
<</if>>\
<<else>>\
<<if $thread == 1>><<set $thread to "null">>\
You head upstairs to $emily.name's bedroom, hoping to surprise her. There's still plenty of people milling about at the party, and you get a voyeuristic thrill from not so subtly fucking the daughter of the president. As you climb up the stairs, people generally avert their glance from you. Some look sorry at you, and a select few even try to hide their laughter when they see your face.
When you reach $emily.name's bedroom, you notice there's a bunch of Greystone IB associates cheering outside her open door. When they see you, they look away, and some even openly laugh at you.
<<speech "jean" "$jean.name">>Yeah, such that cock $emily.name!<</speech>>
You glance in, and see $emily.name throating her boss's cock.
<<speechYou "you">>$emily.name? What the fuck are you doing?<</speechYou>>
<<vid jean emily1>><<statsmax -10>>
$emily.name tries to look back, but $jean.name has his hand squarely around her head.
<<speech "jean" "$jean.name">>Hey man, stop being so jealous. $emily.name is being empowered right now<</speech>>
$jean.name's IB associates cackle and laugh out loud, and you feel your face heating up.
<<speechYou "you">>Seriously $emily.name? I'm your +1, can you stop fucking him?<</speechYou>>
<<speech "emily" "$emily.name">>But $you.firstName, he promised me a promotion!<</speech>>
<<vid jean emily2>>
The crowd in front of $emily.name's room grows, and it's obvious $emily.name won't stop fucking her boss, even in front of you and the growing group. Some of the girls in the crowd bite their lip looking at $jean.name's athletic body and thick cock, and the guys give you awkward stares. $jean.name starts fucking $emily.name in doggystyle, putting her on full display for everyone.
<<speech "jean" "$jean.name">>So who fucks you better? Me, or $you.firstName over there<</speech>>
<<speech "emily" "$emily.name">>MMmmMMmm<</speech>>
<<speech "jean" "$jean.name">>Answer the question bitch!<</speech>>
$emily.name is stubbornly silent, and the answer is obvious to everyone in the room. You smile, but it still doesn't help that she's bent over for $jean.name, and not you. $jean.name pounds $emily.name harder, and she can't help but orgasm on the spot. $jean.name savagely smiles at you, and $emily.name looks at you with pity.
<<vid jean emily3>>
$jean.name is still not done with $emily.name, and he mounts her on his cock. He lifts her with ease, and places her so that everyone can see him pound her (not quite as tight as before) pussy. People in the crowd murmor about $jean.name's stamina, and it's hard for you to tell whether $emily.name feels more pleasure or regret. She looks at you with both deep sadness and a primal lust.
<<vid jean emily4>>
<<speech "jean" "$jean.name">>No hard feelings $you.firstName, but I think $emily.name wants me to knock her up<</speech>>
An "oh shit" goes through the motley gang that has assembled to watch $emily.name get fucked, and you feel your fists clench.
$emily.name is in another world right now, and the sensation of riding $jean.name's thick cock is all she can feel right now. She can't even process what he's saying.
<<speech "jean" "$jean.name">>If I impregnate her, you wouldn't mind raising our kids for me, right? It wouldn't be very feminist of you to leave $emily.name like that!<</speech>>
<<vid jean emily5>>
You watch $jean.name powerfully thrust into $emily.name. There's no doubt he's exceptionally fertile. If he really doesn't pull out...
<<speech "jean" "$jean.name">>Haha just busting your balls. And your girl's pussy too haha. But seriously, I'd never knock her up, the child support would kill me.<</speech>>
He takes his cock out of $emily.name, and shoots his thick load across her face. She catches a good amount of his baby batter in her mouth, and eagerly swallows.
<<vid jean emily6>>
<<speech "jean" "$jean.name">>Why don't you go and give your girl a kiss?<</speech>>
$jean.name and his group of investment bankers leave you and $emily.name alone, laughing and no doubt telling everyone about what just happened. You give $emily.name, your ran through and thoroughly used plus one of the party one last look, before discreetly leaving the Willis Estate
<<elseif $thread == 2>><<set $thread to "null">>\
You shoot a thick load, aimed at $emily.name's face. It hits her, square in the jaw, and then it dribblles down her neck.
<<speech "emily" "$emily.name">>Oh my, it's so warm haha!<</speech>>
<<vid emily v7>>
You watch $emily.name play with your semen, drawing circles with it around her petite body. The two of you idly lay down next to each other, while she licks the cum off herself. After a while, you head out, leaving her to clean up.
<<elseif $thread == 3>><<set $thread to "null">>\
You need to see what happens next, and you discreetly rush ahead of the group. $emily.name and the NBA players leave the Dorsia Club and head over to a nearby hotel. You find a hotel across the street, and quickly try to book a room with a clear line of sight into the penthouse suite. <<payment 250>>
As you peer in, you see the players descend on $emily.name. She can't get enough of the players, clawing away at their clothing and mindlessly groping and kissing whatever she can.
<<vid emily g1>>
You watch in agony as $emily.name deftly jacks one player off, as she throats his buddy. Each of these guys is hung like a horse, and incredibly fit to boost, making you just a *little* insecure. $emily.name is gorgeous, and she's obviously slept with plenty of other guys. But how many times has she fucked multiple guys before?
<<vid emily g2>>
This absolutely can't be her first time: the way she's handling three cocks at once, how she fits the dude's balls into her mouth in one go. Is she just another slutty groupie to these guys, or does she regularly fuck entire teams of professional athletes? She might even be one of those speed dial girls you hear about, who the athlete's trust not to baby trap them.
<<vid emily g3>>
You watch them take $emily.name take the first guy. You recognize him from a tv interview, and right now, he's effortlessly sticking his dick up $emily.name's ass. Even while she's effortlessly handling getting analed, she's able to jerk another athlete off. Gotta hand it to her, she's definitely resourceful.
<<vid emily g4>>
$emily.name moves on to getting spitroasted, and she's taking it like a champ so far. After taking four massive BBCs, her pussy looks thoroughly stretched out, already adjusted to the sheer size of the guys she is fucking. If you were there right now, you're not even entirely sure if she'd be able to feel you.
<<vid emily g5>>
As if she wasn't already getting absolutely railed, the basketball players put $emily.name on her back, and put her to work. All three of her holes are filled, and she's vigorously jerking the fourth guy off.
<<vid emily g6>>
In order of seniority, the four guys take their turns jizzing on and getting sucked off by $emily.name. These guys could have any girl in the country, and $emily.name beams with pride at the fact that they chose her for the night...
<<vid emily g7>>
$emily.name goes to take a shower, limping all the way, and the guys put on a UFC match. It looks like $emily.name is probably going to stay and service these guys for the rest of the night. It is getting late, and you decide to leave the hotel and let $emily.name have her fun.
<<elseif $thread == 4>><<set $thread to "null">>\
While $emily.name and her friend make out, you bust a load across $emily.name's cute little ass.
<<vid emily t8>>
You leave the girls to play with each other, as they seem to be having fun. You're all spent, so you head on out to recharge.
<<elseif $thread == 5>><<set $thread to "null">>\
<<speech "emily" "$emily.name">>I love $you.firstName, please cum in me. Please daddy, I need your cum, please! I'm on the pill $you.firstName, don't worry, just cum inside me...<</speech>>
She's so turned on and dick-hungry, it's taking all her mental faculties mumble out a coherent string of words. She can't think of anything other than your manhood and your sperm, how can you say no to the lady?
<<vid emily "6">>
$emily.name passes out, her legs still splayed out. You watch some of your semen slowly dribbles out of her pussy, and falls down across the curve of her groin. She shifts in her sleep as it dribbles into her ass, and you laugh at the twitching mess your fucking left her in.
<<elseif $thread == 6>><<set $thread to "null">>\
$jean.name take you up to a platform you've never visited before, and tells you about the deal he's working on:
<<speech "jean" "$jean.name">>Well, there's these two tech bro CEOs, and we're trying to get their companies to successfully merge. $emily.name's dad helped smooth things over with the anti-trust boys at the Department of Justice, but we needed $emily.name to...mediate...the dispute between the two of them<</speech>>
<<speech "jean" "$jean.name">>They fucking hate each other, but we're usually able to get them to work together by settling disputes via competition.<</speech>>
<<speechYou "you">>Interesting strategy, what is the competition?<</speechYou>>
The two of you are about 10 feet above ground level, staring into a glass atrium. $jean.name points at the three figures on the ground floor, and your heart sinks as you realize what the competition is.
<<vid emily d1>>
<<speechYou "you">>$jean.name, you're her boss! How did you allow this to happen?<</speechYou>>
<<speech "jean" "$jean.name">>Seriously? All of us know $emily.name is worthless at Excel, she volunteered for the task. This is what she does best haha<</speech>>
<<vid emily d2>>
You watch as one of the tech CEOs rams his cock into $emily.name, and something looks different about the way she's handling them. It almost seems...clinical.
<<vid emily d3>>
While this first guy recharges, the second Tech CEO mounts himself on top of $emily.name. He rams his cock into her, and $emily.name struggles to jerk the other CEO off while she's getting pounded.
<<vid emily d4>>
While she's getting spitroasted, $jean.name tells you more about this new part of $emily.name's life.
<<speech "jean" "$jean.name">>Yeah, I have her on rotation about every other days. There's a lot of testosterone fueled CEOs who need to blow off a little steam, and $emily.name is IB's little whistle.<</speech>>
<<vid emily d5>>
Not one to get outdone, the CEO lifts $emily.name's legs, and starts fucking her. For the first time, she starts to shake, and $emily.name creams all over his cock.
<<vid emily d6>>
These guys just don't let up, and the CEOs switch positions, ravaging both her mouth and pussy. $emily.name seems to be really enjoying herself now, and her erect nipples betray her pleasure.
<<vid emily d7>>
$emily.name swallows both of their loads, gazing adoringly at both of them. You suspect $emily.name does this so they don't feel like they're being explicitly manipulated by Greystone. She then points at one of the CEOs, who pumps his fist up in the air, while the other one shakes his head. You're not even sure if this is the guy who fucked her better-in fact, Greystone probably wanted this CEO's decision to be the one that was acted on.
<<vid emily d8>>
$jean.name laughs, and he rapidly knocks on the window. $emily.name snaps her attention to the window, and she sees you. Instantly, she looks devastated, and hides her face.
<<speech "emily" "$emily.name">>$jean.name you fucking ASSHOLE! Why did you bring him here??<</speech>>
She quickly starts putting her clothes on, and the two guys below burst out into laughter at the sight. You decide to make your exit, and spare $emily.name any further embarassment.
<</if>>\
<</if>>\
<<else>>\
You and $emily.name pass time with each other, networking with the rich and powerful and lazing around as the upper crust of society do. You can't really believe just how connected $emily.name's family is, and each time you visit her estate, you meet someone cool. You really want to take this relationship to the next level, but you feel $emily.name wants you to achieve your full potential before that happens. Work on your stats, and you'll become a man worthy enough for her.
<<set $emily.hint to "Have 125K, 130 status, and 6 physique to continue.">>\
<</if>>
<<button [[West Egg]]>><<advancePeriod>><</button>><<bg emilyEvening>>\
<<if $thread is "null">>\
As the sun sets over the rolling greens of the Willis Estate, a cavalcade of luxury cars glide down the winding driveway, each depositing its glamorous passengers at the entrance to the grand manor. Tonight, the estate is not just a bastion of old money and power but a beacon of philanthropy. The event, a charity gala hosted by the Willis family, promises a star-studded evening of generosity, grandeur, and good times.
Upon entering, guests are welcomed into a grand foyer adorned with opulent chandeliers that shimmer with a soft, golden light. The melodic strains of a string quartet float through the air, adding to the ambiance of the event.
Waitstaff move swiftly and seamlessly among the guests, carrying trays laden with glasses of champagne and exquisite canapés, each morsel a testament to the culinary prowess of the world-renowned chefs employed for the occasion.
In the sprawling gardens, large white marquees twinkle with fairy lights, their soft glow reflected in the mirror-like surface of a centrally located fountain. Guests wander between these tents, engaging in conversation, admiring the array of auction items, or simply taking a moment to enjoy the enchanting surroundings.
The only question is, how many will you give tonight? As your assets increase, you could donate up to $1 million
<<if $you.cash gt 100000>><<button "Donate $100K" "Emily Place Evening">><<set $thread to 1>><</button>><</if>> <<if $you.cash gt 500000>><<button "Donate $500K" "Emily Place Evening">><<set $thread to 1>><</button>><</if>> <<if $you.cash gt 1000000>><<button "Donate $1M" "Emily Place Evening">><<set $thread to 1>><</button>><</if>>
<<elseif $thread == 1>>\
<<set $thread to "null">><<advancePeriod>>\
Charity events will be unlocked in future updates, but the developer salutes you for your philantrophy! For your generosity, here's +5 status! <<statsmax 5>>
<</if>>
<<button "Leave the Willis Estate" "West Egg">><</button>><<bg freeplay>>\
<h2>Freeplay Mode</h2>
<<button "The World is Yours" "Home">><</button>><<bg officeBr>>\
<<set $you.location to "Office Bathroom">>\
<i>Not Yet Implemented</i>
<<button [[Lobby]]>><</button>>Thank you for playing this new iteration of Wall Street Gigachad!
I developed this project after bouncing around a few of the html games that existed. Some were really good, but most of them felt pretty lackluster. I wanted to play a game with a decent storyline, tons of hot bitches, and something that kind of reflects the realities of the world we live in. This first build has fairly limited sexual content, but the idea is that as you climb the social hierarchy, you'll become more attractive to the women around you. I have a ton of future content planned out, so stay tuned for more updates!
I think porn games are a pretty novel and interesting way to explore critiques of power and society, and I want to make the best fucking story out there.
Each iteration is surprisingly costly, in terms of tooling and the time it takes to make the game. Any support on the Patreon or the Subscribestar is massively appreciated, along with advice/suggestions on the Discord. I'd like to build a community around this game, and without getting too far ahead of myself, I'm also kinda interested in building spinoffs of this game.
Just because there's so many fucking people in this game (with more on the way lmao), I honestly have no preference on which girl's story will be developed first. I've decided to democratize this process, and you can vote on whose story you want me to work on first on the Patreon or Subscribestar. Please bear with me as I work on creating these infrastructures, this is my first time managing large payment platforms and discords haha.
As a final note, if you can write positive reviews/rate the game on the various sites you found the game through, like Patreon, it means a lot! There's so much that goes into how audiences and game hosters select games through ratings, and every positive review and nice comment counts!
For now though, feel free to explore the universe of Wall Street Gigachad!
<<set $freeplay to true>><<button "Continue in Freeplay" "Manhattan">><</button>><<missionAdvance 1>><<set $whitney.met to true>>\
As you and $nikki.name hurry down the stairs of the SEC headquarters, you're assaulted by a wave of reporters. The closest one has a nametag labeled <<textbox "$whitney.name" "Whitney">>, Washington Associated Press.
<<image whitney 1>>
<<speech "whitney" "$whitney.name">>Mr. $you.lastName! Mr. $you.lastName! What do you have to say about the SEC allegations that you've been doing insider trading within Greystone?<</speech>>
<<speech "nikki" "$nikki.name">>Uh, who asked you? Shut the fuck up bitch!<</speech>>
You assume that $nikki.name also learned how to protect clients from the press at Yale. Christ, that clip will be making the rounds on the internet. Better cut in now!
<<speechYou "you">>Haha, please ignore my overzealous lawyer! Thank you for your question, uh...$whitney.name, the SEC has actually just dismissed all charges.<</speechYou>>
<<speech "whitney" "$whitney.name">>Our readers at WAP want to know whether there was any extensive involvement surrounding the recent trade around Tri-State Power Providers? There are reports that the CEO was coerced by a group of armed...<</speech>>
<<speech "nikki" "$nikki.name">>Ok slut, wrap it up<</speech>>
$whitney.name looks like she's about to bitch slap $nikki.name; clearly she never expected to be spoken to this way by a Wall Street lawyer.
As you and $nikki.name move away from the crowd, $nikki.name checks a text on her phone.
<<speech "nikki" "$nikki.name">>Hmm, $kendralust.name wants to meet you right now. She waiting for you at the office.<</speech>><<set $you.location to "The Port of New York">>\
<<bg NYPort>>\
<i>Not Yet Implemented</i>
<<button [[Brooklyn]]>><</button>><<bg countryclub>>\
<<set $you.location to "Country Club">>\
<<set $location to [2.10, 2.11, 2.12]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $gracecharis.countryClubPurchased is false>>\
This has gotta be one of the most luxurious Country Club's you've ever seen
<<speech "gracecharis" "$gracecharis.name">>Are you interested in purchasing a membership Mr. $you.lastName?<</speech>>
<<speechYou "you">>$gracecharis.name? What are you doing here?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>I'm the brand ambassador for this Country Club.<</speech>>
<<speechYou "you">>Ok, what are some of the benefits of a membership?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>For a $150,000 initiation fee and $400 a week, you'll get access to all our international locations and amenities the club has to offer.<</speech>>
<<button "Purchase a Membership" "Country Club">><<set $gracecharis.countryClubPurchased to true>><<payment 150000>><<set $expenses.rent += 400>><</button>>
<<else>>\
<<button [[Go Golfing]]>>\
<<looksmax 0.2>><<statsmax 5>>\
<<set _womanList to [0,1,2,3,4]>>\
<<set _womanIdx = Math.floor(Math.random()*_womanList.length)>>\
<<set $thread to _womanList[_womanIdx]>>\
<</button>> <<button "Talk to $gracecharis.name" "GraceCharis">><</button>>
<</if>>
<<button [[Leave The Club|Upstate]]>><</button>><<set $you.location to "JFK Airport">>\
<<bg "jfk">>\
<<set $location to [2.03, 2.10, 2.12, 2.13, 2.17]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $you.items["weed"] gt 0 or $you.items["cocaine"] gt 0>>\
<<set $you.heat += 2>>\
<<set _chanceList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]>>\
<<set _chance = Math.floor(Math.random()*_chanceList.length)>>\
<<if _chance lte 3>>\
<<payment 5000>><<set $you.items["weed"] to 0>><<set $you.items["cocaine"] to 0>><<set $you.heat += 5>>\
<<set _x1 to "TSA Agent 1">><<set _x2 to "TSA Agent 2">>\
As you pass through the luggage check, you groan as you see the same two TSA agents who harassed you
<<vid "Scenery" "tsa1">>
Before you could avert your gaze, the duo locked eyes on you, and a sinister smile creeped across their faces.
<<speech "anonF" "_x1">>SIR WHY ARE YOU FAILING TO COMPLY WITH OUR ORDERS!<</speech>>
<<speechYou "you">>But I didn't do anyth-AHHH!!!!<</speechYou>>
The two (shockingly strong) TSA agents lift you up in the blink of an eye, and carry you to an on-site security location. After rumagging through your stuff, they inevitably find your stash of drugs.
<<vid "Scenery" "tsa3">>
<<speechYou "you">>Oh come on, that's clearly not a distribution level of substances. I want to call my lawyer.<</speechYou>>
<<speech "anonF" "_x2">>Federal law states that smuggling drugs through airplanes can be punishable by up to thirty years in prison and over $25 million in fines...<</speech>>
They both hungrily stare at your groin, and you sigh, unzipping your pants
<<speechYou "you">>Fuck you, don't try to blackmail me, I know what you want.<</speechYou>>
<<vid "Scenery" "tsa6">>
As you're switching positions, one of the agents starts going through your things, and takes a whopping $5,000 from your luggage
<<speechYou "you">>What the-put that money back!<</speechYou>>
<<speech "anonF" "_x1">>Nuh-uh! Federal employees don't make shit, and I need to buy my weekly supply of Versace handbags.<</speech>>
<<vid "Scenery" "tsa9">>
With remarkable efficiency, you watch as these agents fuck you and fuck your stash, snorting coke off your dick and blazing up your joints. Eventually, you've had enough of these hoes, and you bust all over their face.
<<vid "Scenery" "tsa10">>
Soon afterwards, they kick you out of the room while you're still putting on your clothes, and you pray one of the drug dogs won't sniff out the cocaine they left on your cock.
<</if>>\
<</if>>
<<if $mission.arc gte 2.04>>\
<b>Catch a flight</b>
<i>Domestic Terminal</i>
<<button "Washington D.C." "Dulles Airport">><<advancePeriod 1>><<set $you.geography to "DC">><<payment 200>><</button>>
<</if>>
<<button [[Exit JFK|Queens]]>><</button>><<if $you.location is "Lobby">>\
<<speech "miamelano" "$miamelano.name">>$kendralust.name is waiting for you on the Executive Floor, hurry up!<</speech>>
<<elseif $you.location is "Executive Floor" and $thread is "null">>\
<<set $autumn.met to true>><<set $autumn.bio to "Greystone's Lobbyist">>\
By the time you arrive at the Executive Floor, $kendralust.name, $alexistexas.name, and one other person is waiting for you. You check your phone for the pre-scheduled meeting participants, and you see her name is <<textbox "$autumn.name" "Autumn">>
<<image autumn 1>>
<<speech "alexistexas" "$alexistexas.name">>That was quite the exit you made earlier today Mr. $you.lastName.<</speech>>
<<speech "kendralust" "$kendralust.name">>It appears $nikki.name was able to...make your case sufficiently enough to the regulators.<</speech>>
<<speechYou "you">>She sure was. Who's the new girl?<</speechYou>>
<<speech "autumn" "$autumn.name">>This new girl is called $autumn.name, I'm Greystone's political consultant, based out of D.C.<</speech>>
A lobbyist? What is she doing here?
<<speech "kendralust" "$kendralust.name">>I'm sure you're wondering what a lobbyist is doing here<</speech>>
Fucking mind reader. Kinda hot if you're gonna be honest with yourself. Think about her ripping her clothes off, maybe she'll see your thoughts!
<<speech "alexistexas" "$alexistexas.name">>With the SEC up our anal cavity, we've decided it's for the best if you take a little break from trading, a sabbatical of sorts.<</speech>>
<<speechYou "you">>Are you people fucking serious! The case was dismissed, why would we just cuck ourselves out to the government right now?<</speechYou>>
$autumn.name groans, and jumps out of her seat
<<speech "autumn" "$autumn.name">>That's it, I'm leaving. $you.lastName is another fucking idiot, just like all the other traders. A massive libertarian when you need to pay your taxes, but the second there's a financial meltdown, you'll suck a congressman's geriatric dick to get bailed out...<</speech>>
<<button "Excuse me??" "Executive Floor">><<set $thread to 1>><</button>>
<<elseif $you.location is "Executive Floor" and $thread == 1>>\
<<missionAdvance 1>><<set $thread to "null">>\
<<speech "alexistexas" "$alexistexas.name">>Sit the fuck back down $autumn.name.<</speech>>
<<speech "alexistexas" "$alexistexas.name">>Look Mr. $you.lastName, whatever your personal gripes with the government are, a firm like Greystone has to work...intimately with the boys and girls in Washington if we want to be competitive at home and abroad. Playing chicken with the feds is not a sustainable long-term strategy.<</speech>>
<<speech "kendralust" "$kendralust.name">>While you may not be trading for a bit, you've proven yourself to be a vital, and quite frankly, industrious asset for the firm.<</speech>>
<<speech "alexistexas" "$alexistexas.name">>You're being reassigned as a "Financial Policy Advisor", and you're going to work with $autumn.name in D.C. Your salary will stay the same, but you can't do any trading for a while.<</speech>>
And to think, you had just became eligible for bonuses.
<<speech "kendralust" "$kendralust.name">>$miamelano.name is arranging transport to JFK airport. Since this is a business trip, Domestic Operations will cover the flight<</speech>> <<paycheck 200>>
<<speechYou "you">>Wait, we're going now?<</speechYou>>
<<speech "autumn" "$autumn.name">>The sooner you get off the government's shitlist, the sooner you can start trading.<</speech>>
She makes a compelling enough argument. The meeting wraps up, and $autumn.name heads to the Lobby. Better follow her!
<</if>><<if $thread is "null">>\
<<speech "miamelano" "$miamelano.name">>The limo should be here any minute now.<</speech>>
<<speechYou "you">>$miamelano.name, you beautiful woman! Has anyone ever told you that you're the most amazing receptionist ever!<</speechYou>>
<<speech "miamelano" "$miamelano.name">>I AM THE INTERACTIONS MANAGER OF THE FIRS-<</speech>>
Your Gigachad ears already tuned her out, she's cleary having a white woman moment.
<<speech "autumn" "$autumn.name">>Ok $you.lastName, I know we got off to a rough start, but I've had to deal with too many political consultants who are just Ivy League idiots. It's nothing personal, I ride all my rookies hard.<</speech>>
<<speechYou "you">>Quick question-how hard will you ride me?<</speechYou>>
<<speech "autumn" "$autumn.name">>Funny. Look, we do a pretty serious job, so try to be a little mindful?<</speech>>
<<speech "autumn" "$autumn.name">>While politicians may be reptilian shapeshifters who have zero convictions, most of the people who work under them are super passionate about what they do. I've found it's best to synergize my advisors with their own political convictions.<</speech>>
She hands you a thick folder, filled with graphs and notes. Giving it a quick overview with your Gigachad intellect, it seems like it contains information on the efficacy of different lobbying approaches.
<<speechYou "you">>Hmm, looks like there's six main lobbying strategies here. <</speechYou>>
<<speech "autumn" "$autumn.name">>Good eye! While you may have an idea on what affiliation you want, just hear the different perks.<</speech>>
<<button "Keep listening" "Lobby">><<set $thread to 1>><</button>>
<<elseif $thread == 1>>\
<b>You have a feeling this is really important, so for your scrollers, you might wanna read this :)</b>
<<speech "autumn" "$autumn.name">>The main ideological distinction in Washington is between Democrats and Republicans. Shocker, I know.
Democratic lobbyists gain a lot of Power, while Republican lobbyists will earn a lot more Cash.
Both parties also have three factions, which are the Corporates, the Radicals, and the "Independents". Each faction provides a smaller, secondary boost, asides from the primary boost that you get from being either a Democrat or a Republican.<</speech>>
<<speech "autumn" "$autumn.name">>The Corporates represent the moderate wing of both parties. They both support strong economic growth and domestic policies, a vigorous national defense, and they are generally the ones who get shit done in Congress.
Corporate Democrats are called Neoliberals and Corporate Republicans are called the Establishment. Neoliberal and Establishment lobbyists also get the largest lobbying budgets from special interests, along with heavily subsidized access to Think Tank research.<</speech>>
<<speechYou "you">>Hmm, they sound pretty similar. What's the difference?<</speechYou>>
<<speech "autumn" "$autumn.name">>While they both may be pragmatists and align on key priorities, it's a common misconception that both groups are the same. In reality, they have huge differences across social values that affect the lives of hundreds of millions of Americans, if not the entire world.
In terms of the secondary perks, Neoliberals will earn a little more money, while Establishment Republicans will earn a little more power.<</speech>>
<<speechYou "you">>What about the Radicals? They sound scary...or really cool!<</speechYou>>
<<speech "autumn" "$autumn.name">>"Radical" is just a political term to refer to how far outside the Overton Window these people's beliefs belong. There isn't necessarily anything wrong with being a Radical.
The Radicals represent the extreme wings of both parties. Democratic Radicals are broadly called Progressives, although that group has everyone from pinko closet-DSA members, to full on anarchists or tankies. Republican radicals are Rightwingers, which is similarly a catch-all term capturing everyone from paleoconservatives to Fascists. Progressive and Rightwing lobbyists have access to full-priced Think Tank research, along with other Grassroot options.<</speech>>
<<speechYou "you">>What about their budgets and perks?<</speechYou>>
<<speech "autumn" "$autumn.name">>Well, their lobbying budget can't really compete against the Corporates. Rightwingers have a moderately sized lobbying budget, and do really well with populist politicians. Progressives on the other hand have a marginally smaller lobbying budget, but their seconday boost earns them a little extra Status and they have an easier time seducing female aides in D.C. Basic bitches eat that shit up! <</speech>>
<<speechYou "you">>I see. And what about these "Independents". Why did you air-quote them?<</speechYou>>
<<speech "autumn" "$autumn.name">>Because being a third-party type outside the DNC/GOP duopoly is impossible if you want to be successful. Two-party systems are arguably way more effective than multi-party systems by avoiding gridlocks, but third party types still manage to carve out a space for themselves in the duopoly.<</speech>>
<<speechYou "you">>You make a lot of good points, but I feel like you're a establishment hack...<</speechYou>>
<<speech "autumn" "$autumn.name">>Most smart people are. The Democrats' independent faction are the Greens, while the Republicans' are the Libertarians. Both factions don't quite match up with the party platforms, but they generally toe the party line in Congress. The Greens strongly support environmental legislation, while the Libertarians oppose any and all forms of government action. Both parties are anti-war and largely anti-establishment.<</speech>>
<<speechYou "you">>I have a bad feeling about their lobbying capabilities...<</speechYou>>
<<speech "autumn" "$autumn.name">>Yeahhh, about that. Independent lobbyists for both the Greens and the Libertarians have to do grassroots funding for basically everything, resulting in the smallest lobbying budget. They're also completely shut out from research, and have to organize their own sources.
However, the secondary perks are pretty nice. Greens do well with populist politicians, while Libertarians basically get a separate "stipend" from GOP dark money, making them the highest earning lobbyists on K-street. <</speech>>
This is a shit load of information to take in, and you have to choose wisely. Changing affiliations can be expensive, otherwise you'd just be known as Flip-Flop $you.lastName!
Democrats:
<<button "Neoliberal" "Lobby">><<set $you.politics to "neo">><<set $thread to 2>><</button>> - Who said making a difference had to be unprofitable?
<<button "Progressive" "Lobby">><<set $you.politics to "prog">><<set $thread to 2>><</button>> - Feel the Bern (in your wallet)!
<<button "Green" "Lobby">><<set $you.politics to "green">><<set $thread to 2>><</button>> - Greenbacks aren't the only green thing I care about!
Republicans:
<<button "Establishment Republican" "Lobby">><<set $you.politics to "est">><<set $thread to 2>><</button>> - Nothing says fiscal responsibility like insider trading!
<<button "Rightwinger" "Lobby">><<set $you.politics to "right">><<set $thread to 2>><</button>> - I'm a Wall Street trader, of course I love Walls.
<<button "Libertarian" "Lobby">><<set $you.politics to "lib">><<set $thread to 2>><</button>> - The only invisible hand I care about is the one pushing my portfolio up!
<<elseif $thread == 2>>\
<<set $thread to "null">><<missionAdvance 1>>\
<<if $you.politics is "neo">>\
<<speech "autumn" "$autumn.name">>Wall Street boy is a DNC shill, why am I not surprised?<</speech>>
<<speechYou "you">>Suck my star spangled banner cock<</speechYou>>
<<elseif $you.politics is "prog">>\
<<speech "autumn" "$autumn.name">>Oh great, a god damn commie.<</speech>>
<<speechYou "you">>Shut up liberal<</speechYou>>
<<elseif $you.politics is "green">>\
<<speech "autumn" "$autumn.name">>Just curious, what's the carbon footprint on that Penthouse of yours?<</speech>>
<<speechYou "you">>I hope you die in your beach house when the Arctic ice caps melts.<</speechYou>>
<<elseif $you.politics is "est">>\
<<speech "autumn" "$autumn.name">>Wonderful, a RINO.<</speech>>
<<speechYou "you">>Oh, I'm sorry I believe in Freedom!<</speechYou>>
<<elseif $you.politics is "right">>\
<<speech "autumn" "$autumn.name">>Take a shower virgin<</speech>>
<<speechYou "you">>Shut up femoid, I'm stenchmaxxing<</speechYou>>
<<elseif $you.politics is "lib">>\
<<speech "autumn" "$autumn.name">>Nice! I'll try to make sure we stay more than 500 feet away from any playgrounds.<</speech>>
<<speechYou "you">>Lick the government's boot just a little harder, it's a good look.<</speechYou>>
<</if>>\
<<speech "miamelano" "$miamelano.name">>Your ride to JFK is here.<</speech>>
Outside, a chauffeur holds the door open, and $autumn.name gets in the car. You can follow her, or get to JFK yourself if you want to take the scenic route.
<<button "Enter the limo" "JFK Airport">><</button>>
<</if>><<set _x1 to "TSA Agent 1">><<set _x2 to "TSA Agent 2">>\
<<if $thread == "null">>\
You and $autumn.name arrive at JFK, and you smile at the familiarity of the sprawling terminals
<<speechYou "you">>I always forget just how massive JFK is<</speechYou>>
<<speech "autumn" "$autumn.name">>It's like its own little city, isn't it?<</speech>>
<<if $you.politics is "neo">>\
<<speechYou "you">>A shining testament to the power of government and capital in action.<</speechYou>>
<<speech "autumn" "$autumn.name">>Nerd<</speech>>
<<elseif $you.politics is "prog">>\
<<speechYou "you">>I'm still so sad this airport was named after a straight, white man instead of an esoteric radfem lesbian revolutionary from Cambodia.<</speechYou>>
<<speech "autumn" "$autumn.name">>I know, right? Representation matters!<</speech>>
<<elseif $you.politics is "green">>\
<<speechYou "you">>It's so sad this is an airport, we should limit our carbon emissions by walking to D.C.<</speechYou>>
<<speech "autumn" "$autumn.name">>You're insane<</speech>>
<<elseif $you.politics is "est">>\
<<speechYou "you">>I'm just kind of sad that all these workers are unionized. They're getting paid wayyyy too much.<</speechYou>>
<<speech "autumn" "$autumn.name">>I-<</speech>>
<<elseif $you.politics is "right">>\
<<speechYou "you">>Thank god they have all this security here! The TSA is so based when they do "random security checks". By the way $autumn.name did you bring your Mexican Passport with you?<</speechYou>>
<<speech "autumn" "$autumn.name">>I...dude, it's a domestic flight and I'm literally American. How are you not on a watchlist??<</speech>>
<<elseif $you.politics is "lib">>\
<<speechYou "you">>Still, so much government pork. We should privatize this entire thing.<</speechYou>>
<<speech "autumn" "$autumn.name">>I'm sure privatizing a public good would magically increase efficiency.<</speech>>
<</if>>\
You and $autumn.name eventually reach the checkpoint. Given the congestion, your groin rubs against $autumn.name's tight skirt, and you pop a boner. You can tell this caught the TSA agents' eyes, but you can't decipher what their expression is. You walk up to the security booth, and present your credentials. After reviewing them, one of them says in an unnecessarily gruff voice
<<speech "anonF" "_x1">>Ok Mr. $you.lastName, through the detector. Right now. Why aren't you moving. Why aren't you moving. Why aren't you moving. Why aren't you moving. Why are-<</speech>>
Least annoying and most patient TSA agent
<<vid "Scenery" "tsa1">>
<<button "Walk through the detector" "JFK Airport">><<set $thread to 1>><</button>>
<<elseif $thread == 1>>\
Out of the corner of your eye, you see the second TSA agent press a button about half a second after you cross the metal detector
<<vid "Scenery" "tsa2">>
<<speech "anonF" "_x2">>EXCUSE ME SIR I'LL HAVE TO CALL SECURITY IF YOU DON'T COMPLY<</speech>>
<<speech "anonF" "_x1">>Rookie, you said it out of order. We need to come up with a bullshit excuse, like his notebook has Arabic writing on it (he's doing differential equations). THEN we can yell "CALM DOWN SIR, STOP GETTING AGGRESSIVE" after antagonizing him the whole time.<</speech>>
<<speech "anonF" "_x2">>Oh, I'm sorry. I'll get it right next time!<</speech>>
<<speechYou "you">>Wait, that's fucking bullshit! I heard everything you just said, and I don't even have anything metal on me!<</speechYou>>
<<button "Continue to react as a normal human being would in your spot" "JFK Airport">><<set $thread to 2>><</button>>
<<elseif $thread == 2>>\
<<speech "anonF" "_x2">>SIR SIR PLEASE CALM DOWN<</speech>>
<<speechYou "you">>I am calm, I'm just wondering why you're violating my civil liberties<</speechYou>>
<<speech "anonF" "_x2">>Uhh, boss, what are civil liberties?<</speech>>
<<speech "anonF" "_x1">>Some made up terrorist shit. Call security, we have a suspect acting aggressive.<</speech>>
<<speechYou "you">>Are you people fucking seri-AHHH<</speechYou>>
With surprising speed, they slam your body against the wall, and in a flash, you realize you've been flipped 180 degrees.
<<vid "Scenery" "tsa3">>
<<speech "anonF" "_x1">>Check his pants, do you see any completely harmless personal hygiene supplies in excess of 1 microliter? We haven't reached our hourly quota for harassing hundreds of law abiding American citizens yet!<</speech>>
<<button "You feel one of the lady agents grabbing your dick" "JFK Airport">><<set $thread to 3>><</button>>
<<elseif $thread == 3>>\
You're pretty sure that repeatedly grabbing your cock is probably not standard TSA procedure, but quite frankly, all you care about is getting the fuck out of here. They put you down quite roughly, and start aggressively dragging your pants down
<<speechYou "you">>Woah what are you guys doing?<</speechYou>>
<<vid "Scenery" "tsa4">>
<<speech "anonF" "_x1">>Suspect appears to be smuggling a long cylinder of some kind, will need to take him in the back and perform a mandatory penis inspection.<</speech>>
In a dramatic flourish, the second officer finally unbuckles your belt, and drags your pants down in one fluid motion. Your cock pops out, and you pray to god no one is looking. Explaining public indecency to $kendralust.name would be incredibly difficult.
<<button "Try to hide your massive schlong" "JFK Airport">><<set $thread to 4>><</button>>
<<elseif $thread == 4>>\
$autumn.name tries her best not to stiffle her laughter and yells at you to meet her at the predesignated terminal
<<speech "anonF" "_x2">>Well sir, did you declare that package at customs??<</speech>>
<<speechYou "you">>IT'S A DOMESTIC FLIGHT, WHY WOULD I NEED TO DECLAR--WOAHHHH<</speechYou>>
<<button "Get dragged away" "JFK Airport">><<set $thread to 5>><</button>>
<<elseif $thread == 5>>\
You're dragged away to one of JFK's many on-site secure locations. Speaking into the radio, the first officer says
<<set _x3 to "TSA Supervisor">>
<<speech "anonF" "_x1">>Hmm, suspect's suspicious package appears to be defusable on site. I'll take turns with the rookie and we'll take care of it here and now.<</speech>>
<<speech "anon" "_x3">>Is he Muslim or something?<</speech>>
<<speech "anonF" "_x1">>No sir!<</speech>>
<<speech "anon" "_x3">><Yawn...> Carry on then, I was worried I'd need to call the Feds or something<</speech>>
<<speechYou "you">>Wait, Islam is a religion, how do you know I'm not Muslim??<</speechYou>>
<<speech "anonF" "_x2">><i>I think my boss just means you're not brown, I learned that in training</i><</speech>>
<<speech "anonF" "_x1">>We'll proceed to defuse his package...orally!<</speech>>
<<vid "Scenery" "tsa5">>
<<speech "anonF" "_x2">>Suspect..ahhHH...unusually large package won't detonate through oral methods. Permission to proceed with a more personal touch?<</speech>>
<<speech "anonF" "_x1">>Proceed Rookie, but be careful! You don't have any explosive gear.<</speech>>
<<vid "Scenery" "tsa6">>
<<speech "anonF" "_x1">>Alright, my turn...<</speech>>
<<speechYou "you">>Look, I'm having fun, but I have a flight to cat-<</speechYou>>
<<speech "anonF" "_x1">>RESISTING ARREST! GAG HIM ROOKIE!<</speech>>
With surprsing speed, both your dick and mouth are smothered by jackbooted-thugs-of-the-state pussy
<<vid "Scenery" "tsa7">>
You blindly flail your hand around, and find the radio. You smack it to the ground, and the battery flies out
<<speechYou "you">>Cut this gigacop shit out! I have a flight, and I need to CUM!!!<</speechYou>>
You jackhammer into the first lady TSA agent, and she gives you a wide, lustful smile
<<vid "Scenery" "tsa8">>
<<speech "anonF" "_x1">>I'm sorry agent, the suspect has taken tactical control of the situation!<</speech>>
<<speech "anonF" "_x2">>I'll offer my pussy to him ma'am!<</speech>>
<<speech "anonF" "_x1">>The U.S. government never negotiates with terrorists, but I think it's ok in this case. He's got a huge dick!<</speech>>
<<vid "Scenery" "tsa9">>
<<button "Cum on these fascist pigs' faces" "JFK Airport">><<set $thread to 6>><</button>>
<<elseif $thread == 6>>\
<<set $thread to "null">><<missionAdvance 1>>\
<<vid "Scenery" "tsa10">>
<<speech "anonF" "_x1">>The package was defused successfully!<</speech>>
<<if $game.mode is "Realistic">>\
<<speech "anonF" "_x2">>Hmm, that last suspect's explosion was wayyy bigger, but he's tastier!<</speech>>
They escort you back to the private terminal you and $autumn.name are set to take off from.
<<speech "autumn" "$autumn.name">>Well Mr. Terrorist-Man, how was your shakedown with the long arm of the law?<</speech>>
<<speechYou "you">>Pretty good, those fashies caught the long side of this dick<</speechYou>>
<<speech "autumn" "$autumn.name">>Good to hear. Our flight to D.C. is here now, follow me.<</speech>>
<</if>>\
<</if>><<if $you.location is "Dulles Airport">>\
As the plane descends, you see the rolling hills of Virginia, and you can barely make out the Washington Monument.
You're arriving at the seat of power in the Western World, if not quite literally the most consequential city in recorded human history.
Power brokers from around the world meet here, and this is the backyard for the people who are chosen to continue the machinations of humanity's oldest democracy.
As you get out of the terminal, $autumn.name points out a limousine.
<<speech "autumn" "$autumn.name">>Greystone has transport waiting for us outside.<</speech>>
<<button "Follow $autumn.name" "Virginia">><</button>>
<<elseif $you.location is "Virginia">>\
The limo takes your through the beltway, and you see the Pentagon on the outskirts of the city.
<<image "Scenery" "pentagon">>
$autumn.name tells you to tell the driver to head over to the Northwestern corner of D.C.
<<elseif $you.location is "Northwest DC">>\
You drive through the more upscale part of the city. While D.C. has a reputation for being a little rough around the edges, the rich and powerful need their own corner, and Northwest D.C. is that place.
<<speech "autumn" "$autumn.name">>You can drop Mr. $you.lastName and I near Georgetown, thank you.<</speech>>
You two step out, and $autumn.name gestures at you to follow her to Georgetown
<<elseif $you.location is "Georgetown">>\
<<speech "autumn" "$autumn.name">>Welcome to D.C. Mr. $you.lastName. It's a little too late to go around exploring the city, so we'll do that tomorrow.<</speech>>
<<speechYou "you">>Is this where we'll be staying?<</speechYou>>
<<speech "autumn" "$autumn.name">>Well, rent here is about $10K a week....<</speech>>
<<speechYou "you">>Wha...how am I supposed to pay that?<</speechYou>>
<<speech "autumn" "$autumn.name">>Greystone provides a housing voucher that brings it down to a cool $2,000/week. Think you can afford that?<</speech>>
<<speechYou "you">>Fuck, I'm going to need to be the most corrupt motherfucker on the hill<</speechYou>>
<<speech "autumn" "$autumn.name">>Once you get your housing sorted out, we'll go out for drinks. There's a pretty close place nearby called The Beltway Beat<</speech>>
<<button "Pay Up" "The Beltway Beat">><<advancePeriod 1>><<set $expenses.rent += 2000>><<missionAdvance>><</button>>\
<</if>><<set $you.location to "Dulles Airport">><<bg "dulles">>\
<<set $location to [2.04, 2.17]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>
<b>Catch a flight</b>
<i>Domestic Terminal</i>
<<button "New York City" "JFK Airport">><<advancePeriod 1>><<set $you.geography to "NYC">><<payment 200>><</button>>
<<button [[Exit Dulles Airport|Virginia]]>><</button>><<set $you.location to "Virginia">>\
<<bg "virginia">>\
<<set $location to [2.04]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gt 2.08>><<button "Call Limo" "Call Limo">><</button>><</if>>
<<if $mission.arc gt 2.04>><<button [[Dulles Airport]]>><</button>><</if>> <<if $mission.arc gte 2.16>><<button [[Congressman Anderson's House]]>><</button>><</if>> <<if $mission.arc gt 3>><<button [[Pentagon]]>><</button>><</if>> <<if $mission.arc gt 3>><<button [[Langley]]>><</button>><</if>>
<<button [[Northwest D.C.|Northwest DC]]>><</button>> <<if $mission.arc gt 2.04>><<button [[Downtown D.C.|Downtown DC]]>><</button>><</if>><<set $you.location to "Northwest DC">>\
<<bg "nwdc">>\
<<set $location to [2.04]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gt 2.08>><<button "Call Limo" "Call Limo">><</button>><</if>>
<<button [[Georgetown]]>><</button>> <<button [[Elysian Essentials|Elysian Essentials DC]]>><</button>> <<button [[The Beltway Beat]]>><</button>>
<<button [[Downtown D.C.|Downtown DC]]>><</button>> <<button [[Capitol Hill Zone]]>><</button>> <<button [[Virginia]]>><</button>><<set $you.location to "Downtown DC">>\
<<bg "downtowndc">>\
<<set $location to [2.07]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gt 2.08>><<button "Call Limo" "Call Limo">><</button>><</if>>
<<button [[K Street]]>><</button>> <<button [[White House]]>><</button>> <<button [[Washington Associated Press]]>><</button>>
<<button [[Northwest D.C.|Northwest DC]]>><</button>> <<button [[Capitol Hill Zone]]>><</button>> <<button [[Virginia]]>><</button>><<set $you.location to "Capitol Hill Zone">>\
<<bg "cah">>\
<<set $location to [2.07, 2.09, 2.14]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<if $mission.arc gt 2.08>><<button "Call Limo" "Call Limo">><</button>><</if>>
<<button [[Capitol Hill]]>><</button>> <<button [[Treasury Building]]>><</button>> <<button [[Thrust of Progress Think Tank]]>><</button>>
<<button [[Northwest D.C.|Northwest DC]]>><</button>> <<button [[Downtown D.C.|Downtown DC]]>><</button>><<set $you.location to "Pentagon">><<bg "pentagon">>\
<<button [[Virginia]]>><</button>><<set $you.location to "Langley">>\
<<bg "langley">>\
<<button [[Virginia]]>><</button>><<set $you.location to "Georgetown">>\
<<bg "georgetown">>\
<<set $location to [2.04, 2.06, 2.09, 2.13]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<else>>\
<<if $nicole.exercisedToday>>\
Good workout today!
<<elseif $nicole.boughtMembership>>\
<<button "Workout" "Georgetown">>\
<<advanceperiod>><<looksmax 0.4>><<set $nicole.exercisedToday to true>>\
<</button>>
<</if>><</if>>\
<<if $mission.arc gt 2.04>><<button "Sleep" "Sleep">><</button>><</if>> <<button "Cheats" "cheatPage">><</button>>
<<button [[Northwest D.C.|Northwest DC]]>><</button>>
<<button "Cheat" "Georgetown">><<set $lobbying.budget to $lobbying.requiredBudget>><<set $lobbying.support to $lobbying.requiredSupport>><<set $lobbying.relationship to $lobbying.requiredRelationship>><</button>><<set $you.location to "Elysian Essentials DC">><<bg elysium>>\
<<if $mission.arc gt 2.15 and $period == 1>>\
<<if $thread is "null">>\
<<bg elysium>>\
Walking into Elysian Essentials, you're suprised to see $ashly.name shopping.
<<speech "ashly" "$ashly.name">>Why hello there $you.firstName!<</speech>>
<<speechYou "you">>Oh hey! Didn't expect to see you here. You don't seem like the type to shop<</speechYou>>
<<speech "ashly" "$ashly.name">>Well, someone has to keep the house in order...<</speech>>
The two of you laugh, and after a moment, $ashly.name asks
<<speech "ashly" "$ashly.name">>If you're free, can I see you at your office?<</speech>>
You know exactly what she has in mind. If she comes to your office on K Street, someone might recognize her, so this action will raise your heat by 15. However, she'll raise your relationship with the Congressman by 20.
<<button "Fuck Her" "Elysian Essentials DC">><<set $thread to 0>><<set $you.heat += 15>><<set $lobbying.relationship += 20>><</button>> <<button "Politely Decline" "Elysian Essentials DC">><<advancePeriod>><</button>>
<<elseif $thread == 0>><<set $thread to 1>>\
You arrive at your office far before $ashly.name, despite the fact that it's a pretty short drive. Eventually $ashly.name arrives at the office and meets you at your desk.
<<bg "kstreet">>
<<speechYou "you">>$ashly.name, what took you so long?<</speechYou>>
<<speech "ashly" "$ashly.name">>Sorry, you know what they say about women and driving!<</speech>>
<<vid ashly office1>>
You can't exactly just ask her to smash, so you go with a soft open.
<<speechYou "you">>So, regarding your husband's campai-<</speechYou>>
You stop abruptly, and quickly check if the blinds to your office are closed
<<vid ashly office2>>
<<speechYou "you">>Uhh, $ashly.name, what are you doing?<</speechYou>>
<<speech "ashly" "$ashly.name">>What the fuck do you think I'm doing $you.firstName?<</speech>>
<<vid ashly office3>>
<<button "Unbuckle your pants" "Elysian Essentials DC">><</button>>
<<elseif $thread == 1>><<set $thread to 2>>\
$ashly.name must have broken some kind of world record with the way she leaped at your cock. Despite her past difficulties with the size of your cock, it doesn't seem to apply to her throat.
<<vid ashly office4>>
<<bg "kstreet">>
<<button "Missionary" "Elysian Essentials DC">><<set $thread to 2>><</button>>
<<button "Cowgirl" "Elysian Essentials DC">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Elysian Essentials DC">><<set $thread to 4>><</button>>
<<button "Doggystyle" "Elysian Essentials DC">><<set $thread to 5>><</button>>
<<button "Cum on Her" "Elysian Essentials DC">><<set $thread to 6>><</button>>
<<elseif $thread == 2>><<set $thread to 3>>\
You push her onto your desk, and pull her legs apart.
<<bg "kstreet">>
<<speech "ashly" "$ashly.name">>Ohh wow, someone's a little repre-ooHHHHH<</speech>>
<<vid ashly office5>>
<<button "Blowjob" "Elysian Essentials DC">><<set $thread to 1>><</button>>
<<button "Cowgirl" "Elysian Essentials DC">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Elysian Essentials DC">><<set $thread to 4>><</button>>
<<button "Doggystyle" "Elysian Essentials DC">><<set $thread to 5>><</button>>
<<button "Cum on Her" "Elysian Essentials DC">><<set $thread to 6>><</button>>
<<elseif $thread == 3>><<set $thread to 4>>\
You always wondered why Greystone would install a couch in offices for Lobbyists who should be prowling the streets for fundraisers. Now, a clearer picture has formed in your mind.
<<vid ashly office6>>
<<bg "kstreet">>
<<button "Blowjob" "Elysian Essentials DC">><<set $thread to 1>><</button>>
<<button "Missionary" "Elysian Essentials DC">><<set $thread to 2>><</button>>
<<button "Reverse Cowgirl" "Elysian Essentials DC">><<set $thread to 4>><</button>>
<<button "Doggystyle" "Elysian Essentials DC">><<set $thread to 5>><</button>>
<<button "Cum on Her" "Elysian Essentials DC">><<set $thread to 6>><</button>>
<<elseif $thread == 4>><<set $thread to 5>>\
Squatting on your cock, $ashly.name impales herself on you, and you can feel her doing kegels as she rides the fuck out of you.
<<vid ashly office7>>
<<bg "kstreet">>
<<button "Blowjob" "Elysian Essentials DC">><<set $thread to 1>><</button>>
<<button "Missionary" "Elysian Essentials DC">><<set $thread to 2>><</button>>
<<button "Cowgirl" "Elysian Essentials DC">><<set $thread to 3>><</button>>
<<button "Doggystyle" "Elysian Essentials DC">><<set $thread to 5>><</button>>
<<button "Cum on Her" "Elysian Essentials DC">><<set $thread to 6>><</button>>
<<elseif $thread == 5>><<set $thread to 6>>\
$ashly.name balances herself on your desk, and bends over for you. She spreads her cheeks apart, and with one sweeping motion, you start pumping deep inside her.
<<vid ashly office8>>
<<bg "kstreet">>
<<button "Blowjob" "Elysian Essentials DC">><<set $thread to 1>><</button>>
<<button "Missionary" "Elysian Essentials DC">><<set $thread to 2>><</button>>
<<button "Cowgirl" "Elysian Essentials DC">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Elysian Essentials DC">><<set $thread to 4>><</button>>
<<button "Cum on Her" "Elysian Essentials DC">><<set $thread to 6>><</button>>
<<elseif $thread == 6>><<set $thread to "null">>\
$ashly.name takes your load like a champ, sticking out her tongue and swallowing your jizz like a pro.
<<vid ashly office9>>
<<speech "ashly" "$ashly.name">>I better get back home. Wouldn't want Kyle to get too suspicious...<</speech>>
<<bg "kstreet">>
<<button "Get Back to Work" "K Street">><<advancePeriod>><</button>>
<</if>>
<<else>>\
Fancy Roses: <<button "Buy for $100" "Elysian Essentials DC">><<set $you.items["roses"] += 1>><<payment 100>><</button>>
Wine: <<button "Buy for $200" "Elysian Essentials DC">><<set $you.items["wine"] += 1>><<payment 200>><</button>>
<<if $mission.arc gte 2.08>>\
Buy the following items using fundraised money for your favorite politician!
Current Campaign Funds: $<<print $lobbying.budget.toLocaleString()>>
Hermès Tie: <<button "Buy for $250" "Elysian Essentials DC">><<set $lobbying.items["ties"] += 1>><<set $lobbying.budget -= 250>><</button>>
Montblanc Pen: <<button "Buy for $1,000" "Elysian Essentials DC">><<set $lobbying.items["pens"] += 1>><<set $lobbying.budget -= 1000>><</button>>
Opera Ticket: <<button "Buy for $2,000" "Elysian Essentials DC">><<set $lobbying.items["opera"] += 1>><<set $lobbying.budget -= 2000>><</button>>
Patek Philippe Cufflink: <<button "Buy for $4,000" "Elysian Essentials DC">><<set $lobbying.items["cufflinks"] += 1>><<set $lobbying.budget -= 4000>><</button>>
Tom Ford Suit: <<button "Buy for $5,000" "Elysian Essentials DC">><<set $lobbying.items["suit"] += 1>><<set $lobbying.budget -= 5000>><</button>>
Rolex Watch: <<button "Buy for $50,000" "Elysian Essentials DC">><<set $lobbying.items["rolex"] += 1>><<set $lobbying.budget -= 50000>><</button>>
Golf Club Membership: <<button "Buy for $300,000" "Elysian Essentials DC">><<set $lobbying.items["golf"] += 1>><<set $lobbying.budget -= 300000>><</button>>
<</if>><</if>>
<<button [[Northwest D.C.|Northwest DC]]>><</button>><<set $you.location to "The Beltway Beat">>\
<<bg "beltwaybeat">>\
<<set $location to [2.05, 2.15]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $thread == 0>>\
<<set $thread to "null">>\
You organize a more degenerate party, appealing to the Congressman's ego. While it's not exactly legal to spend $10K of campaign funds on hookers, coke, booze, and weed, you seem to have significantly improved your relationship with the Congressman.
<<set _sceneSelectorList to ["degenPoliticalParty1", "degenPoliticalParty2", "degenPoliticalParty3", "degenPoliticalParty4", "degenPoliticalParty5", "degenPoliticalParty6", "degenPoliticalParty7"]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>
As the host of the party, you have a little bit of fun yourself
<<vid Scenery _scene>>
<<elseif $mission.arc gt 2.08 and $gina.met is false>>\
You're having a fine time at the Beltway Beat, and you spot this gorgeous woman from across the club, who you're 99% sure if eyefucking you.
<<image gina 1>>
You waltz over to where she's standing, and decide to introduce yourself, like the Gigachad you are!
<<speechYou "you">>Why hello th-<</speechYou>>
<<speech "gina" "$gina.name">>Ohh don't worry $you.firstName, I know who you are. $violet.name has told me ALL about you.<</speech>>
She speaks with a light Italian accent, and extends her hand for you to kiss, which you do. She hands you an ornate business card, which reads <<textbox "$gina.name" "Gina">>, Cultural Attaché, Repubblica Italiana.
$violet.name is connected to all kinds of people in the underworld, and given what you know about Italian "Cultural Attachés", she's probably linked to the Mafia.
<<speech "gina" "$gina.name">>I know you're a big client for $violet.name, and I can offer you a similar service for a markup. I know what you do here in D.C. and I know how much your politicians love drugs.<</speech>>
<<speechYou "you">>How much of a markup?<</speechYou>>
<<speech "gina" "$gina.name">>Factoring in all the extra costs of doing business here, oh about three times what $violet.name charges you.<</speech>>
Well, it's expensive, but it beats trying to move drugs through JFK...
<<button "Buy Weed ($30/g)" $you.location>><<set $you.items["weed"] += 1>><<payment 30>><</button>> <<button "Buy Cocaine ($300/g)" $you.location>><<set $you.items["cocaine"] += 1>><<payment 300>><</button>>
<<elseif $ashly.met and $period == 4>>\
As you walk into the club, you're surprised to see $ashly.name, but her husband is nowhere in sight.
<<speechYou "you">>Kyle out playing with hookers again?<</speechYou>>
<<speech "ashly" "$ashly.name">>Sigh, he is. What's a poor Southern girl supposed to do all on her lonesome in this big bustling city?<</speech>>
There's an intensity in her eyes, and she's practically begging for your cock. If you fuck her here, she'll say good things about you to her husband, rasing your relationship with him by 20. But given all the prying eyes, this action will also increase your heat by 20.
<<button "Follow her to the bathroom" "BeltwayBeatBathroom">><<set $thread to 6>><<set $lobbying.relationship += 20>><<set $you.heat += 20>><</button>> <<button "Politely Decline and End the Night Early" "Georgetown">><<advancePeriod>><</button>>
<<elseif $gina.met>>\
<<speech "gina" "$gina.name">>Hey handsome, need me to get you something?<</speech>>
<<image gina 1>>
<<button "Buy Weed ($30/g)" $you.location>><<set $you.items["weed"] += 1>><<payment 30>><</button>> <<button "Buy Cocaine ($300/g)" $you.location>><<set $you.items["cocaine"] += 1>><<payment 300>><</button>>
<</if>>\
<<if $mission.arc gt 2.05>><<button [[Head to Bathroom|BeltwayBeatBathroom]]>><</button>><</if>>
<<button [[Northwest D.C.|Northwest DC]]>><<set $thread to "null">><</button>><<set $you.location to "Capitol Hill">>\
<<bg "thehill">>\
<<set $location to [2.13]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>
<<button [[Library of Congress]]>><</button>><<if $mission.arc gt 2.13>><<button [[Office of Congressman Kyle Anderson (R)]]>><</button>><</if>>
<<button [[Capitol Hill Zone]]>><</button>><<set $you.location to "Thrust of Progress Think Tank">>\
<<bg "toptt">>\
<<set $location to [2.08]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
Current Fundraised Amount: $<<print $lobbying.budget.toLocaleString()>>
Current Support Progress: $lobbying.support/$lobbying.requiredSupport
<<if $lobbying.supportCountdown == 0>>\
<<if $you.politics is "neo" or $you.politics is "est">>\
By commisioning legislative research, you can get high quality data to convince the politician you're trying to lobby, and more importantly, their constitutents. For $0 in campaign funds, you'll gain 25 support for the politician you're lobbying.
<<button "Get Legislative Research" "Thrust of Progress Think Tank">><<set $lobbying.supportCountdown to 7>><<set $lobbying.support += 25>><</button>>
Grassroots Support mobilizes local organizers, who'll petition the politician you want to influence. For $0 in campaign funds, you'll gain 10 support for the politician you're lobbying and an additional $100,000 raised from small donors.
<<button "Organize Grassroots Support" "Thrust of Progress Think Tank">><<set $lobbying.supportCountdown to 3>><<set $lobbying.support += 10>><<set $lobbying.budget += 100000>><</button>>
<<elseif $you.politics is "prog" or $you.politics is "right">>\
By commisioning legislative research, you can get high quality data to convince the politician you're trying to lobby, and more importantly, their constitutents. For $300,000 in campaign funds, you'll gain 25 support for the politician you're lobbying.
<<button "Get Legislative Research" "Thrust of Progress Think Tank">><<set $lobbying.supportCountdown to 7>><<set $lobbying.support += 25>><<set $lobbying.budget -= 300000>><</button>>
Grassroots Support mobilizes local organizers, who'll petition the politician you want to influence. For $50,000 in campaign funds, you'll gain 10 support for the politician you're lobbying and an additional $100,000 raised from small donors.
<<button "Organize Grassroots Support" "Thrust of Progress Think Tank">><<set $lobbying.supportCountdown to 3>><<set $lobbying.support += 10>><<set $lobbying.budget += 50000>><</button>>
<<elseif $you.politics is "green" or $you.politics is "lib">>\
Grassroots Support mobilizes local organizers, who'll petition the politician you want to influence. For $100,000 in campaign funds, you'll gain 5 support for the politician you're lobbying and an additional $300,000 raised from small donors.
<<button "Organize Grassroots Support" "Thrust of Progress Think Tank">><<set $lobbying.supportCountdown to 2>><<set $lobbying.support += 5>><<set $lobbying.budget += 200000>><</button>>
<</if>>\
<<elseif $lobbying.supportCountdown gt 0>>\
Come back in $lobbying.supportCountdown days to boost support for your legislative cause
<</if>>
<<button [[Capitol Hill Zone]]>><</button>><<set $you.location to "Treasury Building">>\
<<bg "treasury">>\
<i>Not Yet Implemented</i>
<<button [[Capitol Hill Zone]]>><</button>><<set $you.location to "White House">><<bg "whitehouse">>\
<i>Not Yet Implemented</i>
<<button [[Downtown D.C.|Downtown DC]]>><</button>><<set $you.location to "K Street">>\
<<bg "kstreet">>\
<<set $location to [2.07, 2.08, 2.10, 2.16, 2.17]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $thread == 0>>\
<<set $thread to "null">>\
You organize a fundraising party at K Street. You can sense your relationship with the Congressman has slightly improved, and you have earned $20,000 for his war chest.
Your expert party organizing and general charm as the host also convinces a fundraiser with differing politics from yours to "reach across the aisle"
<<if $you.politics is "neo">>\
<<vid Scenery fundraising3>>
<<elseif $you.politics is "prog">>\
<<vid Scenery fundraising4>>
<<elseif $you.politics is "green">>\
<<vid Scenery fundraising9>>
<<elseif $you.politics is "est">>\
<<vid Scenery fundraising7>>
<<elseif $you.politics is "right">>\
<<vid Scenery fundraising1>>
<<elseif $you.politics is "lib">>\
<<vid Scenery fundraising5>>
<</if>>\
<</if>>
<<if $mission.arc gte 2.09 and $mission.arc lte 2.16>>\
Current Funding Progress: $<<print $lobbying.budget.toLocaleString()>>/$<<print $lobbying.requiredBudget.toLocaleString()>>
Current Support Progress: $lobbying.support/$lobbying.requiredSupport
Current Relationship Progress: $lobbying.relationship/$lobbying.requiredRelationship
<<elseif $mission.arc gt 2.11>>\
<</if>>
<<if $you.politics is "neo">>\
Your Current Political Affiliation: Neoliberal Democrat
Your Boosts:
$500,000 weekly campaign raise
+3 Power weekly
+$2000 weekly
<<elseif $you.politics is "prog">>\
Your Current Political Affiliation: Progressive Democrat
Your Boosts:
$200,000 weekly campaign raise
+3 Power weekly
+2 Status weekly
<<elseif $you.politics is "green">>\
Your Current Political Affiliation: Green Democrat
Your Boosts:
$100,000 weekly campaign raise
+3 Power weekly
<<elseif $you.politics is "est">>\
Your Current Political Affiliation: Establishment Republican
Your Boosts:
$500,000 weekly campaign raise
+$2000 weekly
+1 Power weekly
<<elseif $you.politics is "right">>\
Your Current Political Affiliation: Right-Wing Republican
Your Boosts:
$350,000 weekly campaign raise
+$2000 weekly
<<elseif $you.politics is "lib">>\
Your Current Political Affiliation: Libertarian-Leaning Republican
Your Boosts:
$100,000 weekly campaign raise
+$5000 weekly
<</if>>
<<if $mission.arc gt 2.08>>\
<<if $period lt 4>>\
<<button [[Political Fundraising]]>>\
<<advancePeriod>>\
<</button>>\
<</if>><</if>> <<button [[Secure Room]]>><</button>>
<<button [[Downtown D.C.|Downtown DC]]>><</button>>
<<set $you.location to "Washington Associated Press">><<bg "WaP">>\
<<set $location to [2.12]>>\
<<if $whitney.onPayroll && $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $whitney.onPayroll>>\
You see $whitney.name, hard at work behind her desk
<<image whitney 2>>
<<if $whitney.respect lt 100 and $you.heat lt 40>>\
<<button "Feed Her a Story" "Washington Associated Press">><<heatmax 20>><<set $whitney.respect += 10>><</button>>\
<</if>>\
<<else>>\
You see $whitney.name, hard at work behind her desk
<<image whitney 2>>
For $5,000 a week, $whitney.name will
- Reduce all heat gained through political activities by 50%,
- Provide +2 daily support for your lobbying efforts (tallied weekly)
- Help with main mission objectives
<<button "Hire Her" "Washington Associated Press">><<set $whitney.onPayroll to true>><<set $expenses.otherSalaries += 5000>><</button>>
<</if>>
<<button [[Downtown D.C.|Downtown DC]]>><</button>><<numberbox "$mission.arc" 0>>
<<radiobutton "$game.mode" "Realistic">> Realistic
<<radiobutton "$game.mode" "Fairy Tale Land">> Fairy Tale Land
<<button "Enter" $you.location>><</button>>
<<button [[Debug]]>><</button>> copy and paste this after Change Log button<<if $thread == "null">>\
<<set $you.items["cocaine"] to 5>><<set $you.items["weed"] to 5>>
Your new apartment seems to be in a pretty convenient location. You and $autumn.name walk down the street to the Beltway Beat. Cast with a dim purple glow, the two of you find a seat along the pulsating dance floor. The atmosphere is electric, filled with the latest hits spun out by the DJ.
<<speech "autumn" "$autumn.name">>Welcome to The Beltway Beat. What do you think?<</speech>>
<<button "Ehh, it's alright" "The Beltway Beat">><<set $thread to 1>><</button>> <<button "WOW THIS PLACE IS AMAZING" "The Beltway Beat">><<set $thread to 0.5>><</button>>
<<elseif $thread lte 1>>\
<<if $thread == 0.5>>\
<<speechYou "you">>Wow, this place is so cool $autumn.name!! Thank you for showing me this place, you're so awesome!<</speechYou>>
For just a second, you notice an expression of disgust on $autumn.name's face. You just did an inexcusable thing. You gave a woman the 'ick'. I don't make the rules buddy, this is just how they are. Try not to make that mistake again if you want to sleep with $autumn.name, or any woman for that matter.
<<else>><<set $autumn.progress += 2>>\
<<speechYou "you">>Eh. I've seen better. If you like this place, I'm happy for you.<</speechYou>>
Disaffected conversation seems to work on women. You'll never understand why they like being treated like shit.<</if>>
<<speech "autumn" "$autumn.name">>Well, what do you want to do next? We have the entire night to kill.<</speech>>
<<button "Haha, what do YOU want to do next?" "The Beltway Beat">><<set $thread to 1.5>><</button>> <<button "I need some D.C. pussy" "The Beltway Beat">><<set $thread to 3>><</button>> <<button "I don't go clubbing without bottle service" "The Beltway Beat">><<set $thread to 2>><</button>>
<<elseif $thread lte 2>>\
<<if $thread == 2>>\
<<speechYou "you">>I never go clubbing without bottle service.<</speechYou>>
<<speech "autumn" "$autumn.name">>Well well $you.firstName, you're always full of surprises. Thanks for paying!<</speech>>
<<speechYou "you">>Fuck you hoe, we're going Dutch on this. Give me $2500<</speechYou>>
<<speech "autumn" "$autumn.name">>Ugh, fine<</speech>>
<<payment 2500>><<set $autumn.progress += 5>>\
<<else>>\
<<speechYou "you">>Well, what do you want to do $autumn.name? I respect women and want to make sure we're only doing stuff you want to do!<</speechYou>>
You see that you triggered another ick, good fucking job.
<<speech "autumn" "$autumn.name">>Yeahhh, I don't know. Why don't we just get some bottle service?<</speech>>
<<speechYou "you">>Oh. That's a good idea I guess.<</speechYou>>
<</if>>
<<button "Pay for Bottle Service" "The Beltway Beat">><<payment 5000>><<set $thread to 4>><</button>>
<<elseif $thread lte 3>><<set $autumn.progress += 10>>\
<<speechYou "you">>Actually, I think I'm going to check out some of the bitches here. Thanks for showing me this place, see ya later $autumn.name!<</speechYou>>
<<speech "autumn" "$autumn.name">>Wha- what about me? I showed you this place!<</speech>>
<<speechYou "you">>You can tag along if you want I guess. Just don't cockblock me, if anyone asks, I don't know you.<</speechYou>>
True Gigachad behavior can't be taught! You have $autumn.name wrapped around your finger, and with just a little more effort, you'll be able to make her your bitch.
But first, time to check out the local color. At the bar, you see a sex worker, who's really famous on Twitter for some reason. You've always thought her essays and polls were a load of crap, and you've heard she's built up such a cult following that men pay tens of thousands of dollars to sleep with her.
<<set _x to "Twitter Sex Worker">>
<<if $you.politics is "prog" or $you.physique gt 10 or $you.status gt 100 or $you.cash gt 150000>>\
You push your way through the crowd of men around the sex worker with little resistance. Your sheer Giga Chad energy makes the lesser men yield, and you walk up to her. Out of the corner of your eye, you see $autumn.name glare as you walk up to claim your prize
<<speech "anonF" "_x">>Why hello there...<</speech>>
<<speechYou "you">>I'd prefer not to hear your voice any longer than I already have.<</speechYou>>
<<speech "anonF" "_x">>Mmmm, I love a man who knows what he wants! Why don't we get out of here?<</speech>>
<<speechYou "you">>The bathroom here is probably cleaner than your bed. I'm not walking all the way to your crib.<</speechYou>>
<<button "Fuck this whore" "The Beltway Beat">><<set $thread to 5>><</button>> <<button "Don't fuck this whore" "The Beltway Beat">><<set $thread to 6>><</button>>
<<elseif $you.items["cocaine"] gt 0>>\
You push your way through the crowd of men around the sex worker with little resistance. Your sheer Giga Chad energy makes the lesser men yield, and you walk up to her. Out of the corner of your eye, you see $autumn.name glare as you walk up to claim your prize
<<speech "anonF" "_x">>Why hello there...<</speech>>
<<speechYou "you">>Cut the flirting out. You're a junkie, and I'm a dealer. Bend over, and I'll give you some of this primo blow.<</speechYou>>
<<speech "anonF" "_x">>Mmmm, I love a man who knows what he wants! Why don't we get out of here?<</speech>>
<<speechYou "you">>The bathroom here is probably cleaner than your bed. I'm not walking all the way to your crib.<</speechYou>>
<<button "Fuck this whore" "The Beltway Beat">><<set $thread to 5>><<set $you.items["cocaine"] -= 1>><<set $you.heat += 2>><</button>> <<button "Don't fuck this whore" "The Beltway Beat">><<set $thread to 6>><</button>>
<<else>>\
Unfortunately, there's too many guys around her, and you struggle to even approach the sex worker. You're don't really stand out amongst the high status men, and you quickly realize you don't really have a shot at getting to fuck her.
<<button "Go back and find $autumn.name" "The Beltway Beat">><<set $thread to 7>><</button>>
<</if>>\
<<elseif $thread == 4>>\
The two of you get a private corner of the club, and the drinks start flowing from the arms of gorgeous attendants. Now that the two of you are alone, it's time to get to know $autumn.name better.
<<button "Talk about work" "The Beltway Beat">><<set $thread to 9>><</button>> <<button "Talk about her passions" "The Beltway Beat">><<set $thread to 8>><</button>>
<<elseif $thread == 5>><<set $autumn.progress += 10>>\
You lead the sex worker to the bathroom, much to the chagrin of the countless men vying for her attention. It's amazing that some of these high income, high status, and good looking dudes are giving this whore so much attention, and you have to take care not to let this happen to you some day.
Don't ever be the sucker pining after your dream girl.
<<vid Scenery dcclub5>>
Be the guy who fucks someone else's dream girl over a bathroom sink.
You pullout at the last second to avoid getting babytrapped. A few of the guys rush into the bathroom, and they fight over each other, hoping to be the one to give her aftercare. You laugh, and stride out of the bathroom.
<<speech "autumn" "$autumn.name">>Are you done railing that skank?<</speech>>
<<speechYou "you">>Why, are you trying to be next?<</speechYou>>
$autumn.name stammers, and you wrap your arm around her back.
<<speechYou "you">>You look like you need some martinis in you $autumn.name, lend me the money for bottle service<</speechYou>>
<<speech "autumn" "$autumn.name">>Ugh, you're the most disgusting man I've ever met<</speech>>
<<button "Pay for bottle service with $autumn.name's money" "The Beltway Beat">><<set $thread to 9>><</button>>
<<elseif $thread == 6>><<set $autumn.progress += 5>>\
<<speechYou "you">>Actually, nah. I'm not trying to get AIDS over some ran through pussy<</speechYou>>
Everyone is shocked that you didn't simp for her, and you see some of her orbiters get a flash of clarity. They slowly back away from this seductress, and you realize you helped break them from her spell!
<<speech "autumn" "$autumn.name">>So you didn't fuck that skank?<</speech>>
<<speechYou "you">>Why, did you want my dick in you instead?<</speechYou>>
$autumn.name stammers, and you wrap your arm around her back.
<<speechYou "you">>You look like you need some martinis in you $autumn.name, lend me the money for bottle service<</speechYou>>
<<speech "autumn" "$autumn.name">>Ugh, you're the worst man I've ever met<</speech>>
<<button "Pay for bottle service with $autumn.name's money" "The Beltway Beat">><<set $thread to 9>><</button>>
<<elseif $thread == 7>>\
You walk away, with some of the pep knocked out of your step. Scanning the club, you try to find $autumn.name, to no avail.
<<if $game.mode is "Realistic">>
You decide to check out the club bathroom, and while you expected to hear the sounds of easy drunk women getting pounded, one voice sounds more familiar than the others
<<vid autumn speechcheckfail>>
You shouldn't be surprised. $autumn.name is a gorgeous woman, and if you weren't able to fuck her, some other jock was bound to nail her.
<<speechYou "you">>Uhh, hey $autumn.name<</speechYou>>
<<speech "autumn" "$autumn.name">>AHHH! Oh my god, you scared me, what are yo-UGHH-doing hereee?<</speech>>
<<speechYou "you">>I was just wondering where you were...<</speechYou>>
The sound of the random dude's cock slapping against $autumn.name's ass fills the silence, and she looks at you with an undiscernable expression
$autumn.name tries to stifle a moan, but you can see her eyes twitch a bit. You can tell she's sopping wet from the sounds coming from the bathroom, and decide you should probably give her some privacy.
<<speech "autumn" "$autumn.name">>mmm...can you get us some bottle service $you.firstName? I'll meet you there in-OHHH-a few more minutes.<</speech>>
<<else>>\
After a few more minutes, $autumn.name comes back into sight, and you see her grinding against another guy. She wasn't going to wait around forever, but you're not going to let that guy fuck her. You reach for your phone, and text her
<<speechYou "you">>Hey, where you at?<</speechYou>>
<<speech "autumn" "$autumn.name">>I'm coming back in just a bit, can you get some bottle service for us?<</speech>>
<</if>>
<<button "Pay for bottle service" "The Beltway Beat">><<set $thread to 9>><<payment 5000>><</button>>
<<elseif $thread == 8>>\
<<speechYou "you">>So, what are your hobbies?<</speechYou>>
<<speech "autumn" "$autumn.name">>Look $you.firstName, you're a nice guy and all, but I want to make something out of my life. I don't have "hobbies", and neither do the thousands of other driven people who are trying to be the next generation of D.C. power brokers.<</speech>>
There's an awkward silence, and the two of you drink for a bit. $autumn.name soon gets up, and tells you she'll be back in a bit.
<<if $game.mode is "Realistic">>\
You decide to check out the club bathroom, and while you expected to hear the sounds of easy drunk women getting pounded, one voice sounds more familiar than the others
<<vid autumn speechcheckfail>>
You shouldn't be surprised. $autumn.name is a gorgeous woman, and if you weren't able to fuck her, some other jock was bound to nail her.
<<speechYou "you">>Uhh, hey $autumn.name<</speechYou>>
<<speech "autumn" "$autumn.name">>AHHH! Oh my god, you scared me, what are yo-UGHH-doing hereee?<</speech>>
<<speechYou "you">>I was just wondering where you were...<</speechYou>>
The sound of the random dude's cock slapping against $autumn.name's ass fills the silence, and she looks at you with an undiscernable expression
$autumn.name tries to stifle a moan, but you can see her eyes twitch a bit. You can tell she's sopping wet from the sounds coming from the bathroom, and decide you should probably give her some privacy.
<<speech "autumn" "$autumn.name">>mmm...can you get us some bottle service $you.firstName? I'll meet you there in-OHHH-a few more minutes.<</speech>>
<<else>>\
You peak out, and you spot $autumn.name casually waiting outside. It's getting pretty late, and you decide to meet up with her to see where to go next.
<</if>>
<<button "Meet up with $autumn.name again" "The Beltway Beat">><<set $thread to 14>><</button>>
<<elseif $thread == 9>>\
The two of you get comfy in the private room. You still need to speak up, but the raucous din of the dance floor is somewhat muted.
<<set _x to "Bottle Girl">>
<<speechYou "you">>So what are some of the largest lobbying budgets you've had before?<</speechYou>>
<<speech "autumn" "$autumn.name">>Well, presidential election spend usually ends up numbering in the billions, but the largest individual lobbying drive I personally managed came from a few pharma-type companies. The pooled money ended up being around $100 million?<</speech>>
<<speechYou "you">>Must have been a pretty sweet payday<</speechYou>>
<<speech "autumn" "$autumn.name">>Eh, I ended up only taking about half a mil from that drive, and that was before taxes. That campaign took up six whole months, and I just went on vacation after that to recharge<</speech>>
<<speechYou "you">>So your comp was about half a percent? That's not bad<</speechYou>>
<<speech "autumn" "$autumn.name">>How much does Greystone have you manage?<</speech>>
<<speechYou "you">>My portfolio is around 10 million dollars<</speechYou>>
<<speech "autumn" "$autumn.name">>Ten million for a rookie? Pretty impressive Mr. $you.lastName<</speech>>
One of the bar girls who was eye fucking you all night tries to avert her gaze after hearing how much money you manage. You lock eyes with her, and speak in a low voice
<<speechYou "you">>You know, that's nothing on Wall Street.<</speechYou>>
<<speech "anonF" "_x">>Well if that's the case, why don't you spend a band or two on me?<</speech>>
<<button "$autumn.name, I'm going to need you to clear the room" "The Beltway Beat">><<set $thread to 10>><<set $autumn.progress += 3>><<payment 1000>><</button>> <<button "I appreciate the offer, but no thank you" "The Beltway Beat">><<set $thread to 11>><</button>>
<<elseif $thread == 10>><<set _x to "Bottle Girl">>\
<<speech "autumn" "$autumn.name">>Are you fucking serious $you.firstName?!<</speech>>
<<speechYou "you">>Why, do you want to join us?<</speechYou>>
<<speech "autumn" "$autumn.name">>Ugh, men are pigs...<</speech>>
She leaves, but as the bottle girl starts to strip of her clothes, you can see the outline of $autumn.name's shadow. The bottle girl sticks her ass up on the couch, and looking back at you, she says
<<speech "anonF" "_x">>You know, I don't do this with everyone<</speech>>
<<speechYou "you">>Of course you don't. What was your name again?<</speechYou>>
<<vid Scenery dcclub1>>
When you're done having your fun, you pull out ten Benjamins, and hand them to her. The unnamed bottle girl collects her clothes, and limps out of the room. \
<<if $game.mode is "Realistic">>She's probably off to fuck another wealthy businessman, but kudos on you for supporting local gig workers!<</if>>
<<button "Call $autumn.name back in" "The Beltway Beat">><<set $thread to 11>><</button>>
<<elseif $thread == 11>>\
After a night of heavy drinking and dancing, the booze and exertion has taken its toll on $autumn.name. The reserved exterior of the cold, no-nonsense lobbyist you met earlier today has been entirely stripped away, and $autumn.name is basically on top of you.
<<speech "autumn" "$autumn.name">>Hehe $you.firstName, you look really different from this angle...<</speech>>
She presses her chest very close to your face, and you ultimately have to decide how you want the night to end. $autumn.name is clearly ready to fuck you, but you're also pretty tired.
<<button "Fuck $autumn.name" "The Beltway Beat">><<set $thread to 12>><<set $autumn.progress += 5>><</button>> <<button "Politely reject here, and head back to sleep at your new apartment" "Georgetown">><<set $thread to "null">><<missionAdvance 1>><<set $autumn.progress to 50>><</button>> <<if $game.mode is "Realistic">><<button "You're getting tired, but there's no reason $autumn.name still shouldn't have fun" "The Beltway Beat">><<set $autumn.progress += 10>><<set $thread to 13>><</button>><</if>>
<<elseif $thread == 12>>\
<<set $autumn.fucked to true>>\
In a blur of sweat and alcohol, $autumn.name and you tear each others clothes off. Your hands brush over her pussy, and you can tell she's just soaking wet. Pushing you back, she straddles you, and gives you the ride of your life.
<<vid autumn clubbing4>>
She starts doing that weird grinding thing chicks do that does nothing for you, so you try to take control. You kind of just fall on top of her, and thrust into here
<<speech "autumn" "$autumn.name">>I hate that an asshole like you is hung like a fucking horse...<</speech>>
<<vid autumn clubbing5>>
<<speechYou "you">>Hmmm you're so good $autumn.name<</speechYou>>
<<speech "autumn" "$autumn.name">>Oh, you like that pussy? I've been told it's magical, try not to fall in love<</speech>>
<<speechYou "you">>Yeahhh I don't know about that, but I'm about to cum, and I don't have a condom...You got $50 for Plan B?<</speechYou>>
<<speech "autumn" "$autumn.name">>What the fuck NO! I'm Catholic, I don't use contraception! Fucking pull out $you.firstName!<</speech>>
These damn Papists. You pull out, and rub one out on her nice, hairy bush.
<<vid autumn clubbing6>>
<<button "Go to sleep at your new apartment" "Georgetown">><<missionAdvance 1>><<set $thread to "null">><</button>>
<<elseif $thread == 13>>\
<<set $autumn.fucked to true>>\
<<set _x to "$autumn.name's Bull">>\
<<speechYou "you">>Honestly $autumn.name, I'm really tired right now...<</speechYou>>
<<speech "autumn" "$autumn.name">>awww<</speech>>
<<speechYou "you">>Why don't you let me slut you out?<</speechYou>>
Her eyes light up, and why shouldn't they? She just wants A dick, she doesn't need YOUR dick
The two of you walk out of the private area, and back into the club. It's late, and there aren't a ton of people left. At least not many people who're in any condition to give $autumn.name a decent fuck.
<<speechYou "you">>Tell you what $autumn.name, why don't you look at some of the bouncers, and I'll ask them if they can take care of you?<</speechYou>>
$autumn.name clears her eyes, and she zeroes in on the tallest, most muscular bouncer there. <<if $you.physique == 20>>He's yoked, but not as ripped as you. Still, $autumn.name clearly has a type.<<else>>He's ripped, and $autumn.name can tell you've got nothing on him.<</if>>
<<speech "autumn" "$autumn.name">>I want to fuck that guy<</speech>>
You walk up to the bouncer, and get his attention.
<<speechYou "you">>Hey man, you trying to get your dick wet? My girl back there wants you to fuck her<</speechYou>>
<<speech "anon" "_x">>Uhh, sure, do you guys have any condoms though?<</speech>>
<<speech "autumn" "$autumn.name">>Hehe, I'm Catholic! I never let my fuckbuddies use condoms<</speech>>
Oh god, you might be getting a little over your head. While the rational side of your head is screaming at you to not get wrapped up with a girl who gets rawdogged by her one night stand, you can't stop your dick from getting rock hard.
$autumn.name leads her new friend to the private area you guys were just at. Some of the bouncers cleaning up see what's happening, and cheer $autumn.name and their coworker on. You follow behind them, and by the time you get into the private room, they're already tearing each other's clothes off.
He pulls out his cock, and $autumn.name laughs with giddiness at the sheer size of the thing.
<<speech "autumn" "$autumn.name">>I'm going to hurt myself on that if I'm not careful!<</speech>>
$autumn.name drunkenly scrambles on top of her new bull, and mounts herself on his manhood. She's careful not to go too deep, but $autumn.name's hands slips once in a while, her eyes rolling back as she accidentally impales herself on his cock.
<<speech "anon" "_x">>Man, your girl has a nice rack!<</speech>>
<<vid autumn clubBull1>>
You and $autumn.name chose well with this bull. Not only is he packing, but his sexual appetite is insatiable. While you're sitting in the corner, nearly passed out from the jet lag, he's railing the shit out of $autumn.name
<<speech "anon" "_x">>Your back must hurt carrying those fine ass tits, lay down for a second...<</speech>>
He proceeds to jam his penis into $autumn.name's pussy, and the well spoken lobbyist turns into a blubbering cock slut. $autumn.name moans out a string of barely comprehensible sentences, punctuated by load moans to the rhythm of her bull's thrusts.
<<vid autumn clubBull2>>
Twenty minutes later, and this dude shows no sign of quitting. The other bouncers have gathered around the entrance of the room, and they're cheering their homeboy on. $autumn.name is a wet mess, having orgasmed god knows how many times. A pool of her wetness is running down the club couch, and one of the bouncer's jokes that he's going to make you pay for the damages.
$autumn.name's bull starts to increase the pace of his thrusting, and starts groaning himself. He's still rock hard, but it seems he's getting close
<<speech "anon" "_x">>uhhh...I'm about to cum!<</speech>>
<<speech "autumn" "$autumn.name">>Don't yoouuuu..AHH..MMMM..DARE..oooo...PULL OUT<</speech>>
This pushes him over the end, and he fills $autumn.name's wet pussy with his cum. You start to get up, but then you realize that her bull is still going.
This guy is a fucking machine! One of his coworkers shakes his head, and says
<<set _y to "Club Worker">>
<<speech "anon" "_y">>Dawg, hurry up, let me get a piece of that ass<</speech>>
<<speech "anon" "_x">>Hey man, I still got a few more loads in me. You guys can come back in like half an hour, I'll be done with her then<</speech>>
<<vid autumn clubBull3>>
$autumn.name is almost passed out. Drunk, creampied, and exhausted, she's doing surprisingly well handling her new bull's cock.
It's getting late, and there's no way you'd be able to stay awake to see $autumn.name get gangbanged by some of the bouncers.
Honestly, if she's Catholic enough to not use condoms, she probably isn't going to just fuck all the other bouncers. $autumn.name will probably be too exhausted after another 30 minutes with this guy anyways....
Right?
All women have and keep secrets, and as the fatigue continues to way heavily on you, you figure this is a secret you're ok with $autumn.name keeping.
<<button "Go to sleep at your new apartment" "Georgetown">><<missionAdvance 1>><<set $thread to "null">><</button>>
<<elseif $thread == 14>>\
You and $autumn.name catchup, and she's clearly drunk out of her mind
<<speechYou "you">>Would you like me to walk you back home?<</speechYou>>
<<if $game.mode is "Realistic">>\
<<speech "autumn" "$autumn.name">>You're a gentleman, but I don't think so.<</speech>>
You can almost read this calculation happen in $autumn.name's mind, but at this hour, there aren't too many clubgoers left, at least no one worth fucking.
$autumn.name starts to eye the bouncers, and you see her single out the tallest, most muscular one she can find. She starts to stumble towards him, doing everything short of throwing herself at him
The bouncer takes her to a backroom, and you can't help but take a peak
<<vid autumn clubBull1>>
<<vid autumn clubBull3>>
This guy shows no sign of stopping, it's probably best to just head home.
<<else>>\
<<speech "autumn" "$autumn.name">>Sure, but I'm really tired.<</speech>>
A fairly unsubtle remark, clearly indicating she's not going to sleep with you, at least not tonight.
<</if>>
<<button "Go to sleep at your new apartment" "Georgetown">><<missionAdvance 1>><<set $thread to "null">><</button>>
<</if>><<set $you.location to "BeltwayBeatBathroom">>\
<<bg DorsiaClubBr>>\
<<set $location to []>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $thread == 5 or $thread == 6 or $thread == 7 or $thread == 8 or $thread == 9 or $thread == 10 or $thread == 11 or $thread == 12>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 1>>
You had an fairly uneventful time selling coke. <<paycheck 500>><<statsmax 1>>
<<elseif $thread == 1>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 400>><<statsmax 2>>\
The daughter of a famous Senator approaches you and says she's low on cash. You know this nepo baby is lying, but saying you were able to pound this priviliged bitch is well worth giving the $100 discount
<<vid Scenery dcclub1>>
<<elseif $thread == 2>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 200>><<statsmax 2>>\
A congressional staffer whines that at Princeton, she only has to pay her plug $200. You tell her the only way in hell you'll agree is if she bends over, and unsurprisingly, she obliges.
<<vid Scenery dcclub2>>
<<elseif $thread == 3>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 300>><<statsmax 2>>\
A really famous newscaster pulls you aside and begs she'll do anything for a quick and affordable fix. She has to go live soon, and you get her to agree to a mutually beneficial arrangement.
<<vid Scenery dcclub3>>
<<elseif $thread == 4>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 150>><<statsmax 2>>\
You recognize an ambassador from a South American country. Her negotiating tactics make your head spin, and you end up selling her the coke at her home country's prices.
<<vid Scenery dcclub4>>
<<elseif $thread == 5>>\
<<set $thread to "null">>\
<<useItem "cocaine" 1>><<set $you.heat += 2>>
<<paycheck 200>><<statsmax 2>>\
A famous sex worker you see on Twitter begs you for some blow. She babbles on about LSD and how sex positive she is. All you can think is how your dick is in the same pussy that tons of other famous guys paid for, and you're fucking it for free.
<<vid Scenery dcclub5>>
<<elseif $thread == 6>>\
<<set $thread to "null">>\
$ashly.name pumps your cock with her hands vigorously, and stares hungrily at you and your cock. She clearly can't wait until you're several inches deep in her, in one hole or the other.
<<vid ashly club3>>
<<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 7>>\
<<set $thread to "null">>\
Gripping your hands on $ashly.name's head, you guide her mouth along your cock, and she greedily licks and sucks your dick.
<<vid ashly club4>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 8>>\
<<set $thread to "null">>\
You thrust your cock between the curves of $ashly.name's breast. You're lucky you're so well endowed, because on a lesser man, her petite tits wouldn't be enough to jerk you off.
<<vid ashly club5>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 9>>\
<<set $thread to "null">>\
<<speech "ashly" "$ashly.name">>Ughhh, where did you learn to use your mouth like this?<</speech>>
<<vid ashly club6>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 10>>\
<<set $thread to "null">>\
<<speech "ashly" "$ashly.name">>Fuck, why are you so fucking big!!!<</speech>>
<<vid ashly club7>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 11>>\
<<set $thread to "null">>\
You slowly jam your cock into $ashly.name, and you can feel her pussy literally stretching to accomodate your girth. For just a second, her eyes roll backwards, and she smiles from the sheer pleasure.
<<vid ashly club9>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 12>>\
<<set $thread to "null">>\
Balancing herself on your chest, $ashly.name grinds her clit against your cock. Your precum and her wetness pooled around the base of your cock, and everytime she lands down on you, a satisfying "thwap" resounds across the room.
<<vid ashly club12>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Reverse Cowgirl" "BeltwayBeatBathroom">><<set $thread to 13>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 13>>\
<<set $thread to "null">>\
This bitch has tits like a sparrow, and as she bounces on your cock, you smack her ass to show her body all the love it deserves.
<<vid ashly club11>>
<<button "Handjob" "BeltwayBeatBathroom">><<set $thread to 6>><</button>> <<button "Blowjob" "BeltwayBeatBathroom">><<set $thread to 7>>><</button>> <<button "Titjob" "BeltwayBeatBathroom">><<set $thread to 8>><</button>> <<button "Eat Her Out" "BeltwayBeatBathroom">><<set $thread to 9>><</button>>
<<button "Have Her Ride You" "BeltwayBeatBathroom">><<set $thread to 10>><</button>> <<button "Doggystyle" "BeltwayBeatBathroom">><<set $thread to 11>><</button>> <<button "Cowgirl" "BeltwayBeatBathroom">><<set $thread to 12>><</button>>
<<button "Cum On Her Face" "BeltwayBeatBathroom">><<set $thread to 14>><</button>>
<<elseif $thread == 14>>\
<<set $thread to "null">>\
$ashly.name is so eager for your load that she sticks her tongue out, waiting for your seed. She ferociously laps it up, and uses her fingers to get every last drop of your cum.
<<vid ashly club13>>
<<speech "ashly" "$ashly.name">>Would it be cruel to kiss my husband goodnight when I get back home?<</speech>>
She looks back at you with a incredibly sexy smile, and you can't help but get turned on by her cruelty. The two of you kiss, and you watch her as she sashays out of the Beltway Beat.
<<button "Clean Up and Head Back Home" "BeltwayBeatBathroom">><<set $thread to "null">><<advancePeriod>><</button>>
<</if>>
<<if $you.items["cocaine"] gt 0>>\
<<button "Push dat powder" "BeltwayBeatBathroom">><<advancePeriod>><</button>>\
<</if>>
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<set $thread to _scene>>
<<button [[Head Back to the Club|The Beltway Beat]]>><<set $thread to "null">><</button>><<if $thread == "null">>\
<<if $period == 3 or $period == 4>>\
You're way too hammered to process anything, and you just stumble into bed. Best get a good night sleep, and figure out next steps in the morning
<<else>>\
<<if $autumn.fucked is true>>\
<<set $thread to 1>>\
You wake up with an absolutely awful headache, and stumble through your morning routines. After freshening up, you decide to check on $autumn.name. She lives just down the hall, and as you knock on the door, you realize the door is slightly ajar.
Pulling back the door, you see a trail of clothes leading somewhere inside. You hear $autumn.name moaning from around the corner, and she's clearly just as hungover as you are. As you follow the strewn clothes like a trail of breadcrumbs, you call out to her
<<speechYou "you">>Morning $autumn.name, pretty crazy night, huh?<</speechYou>>
<<speech "autumn" "$autumn.name">>Ughh why do you sound so fucking loud<</speech>>
You turn the corner, and while you knew $autumn.name wasn't going to exactly be dressed for work, you didn't quite expect this.
<<vid autumn bed1>>
<<speech "autumn" "$autumn.name">>See something you like $you.lastName?<</speech>>
<<speechYou "you">>You're looking a little chilly there $autumn.name...<</speechYou>>
<<speech "autumn" "$autumn.name">>Well I suppose I need a big strong man to keep me warm<</speech>>
It's crazy what good dick can do to a stuck up ice queen
<<vid autumn bed2>>
<<button "Help warm her up" "Georgetown">><</button>>
<<else>>\
You wake up with an absolutely awful headache, and stumble through your morning routines. Last night wasn't exactly your greatest performance, but it is a brand new day, and you're feeling pumped! You hear a knock on the door, and $autumn.name calls out to you.
<<speech "autumn" "$autumn.name">>Wake up $you.lastName, we gotta hit the town!<</speech>>
<<button "Meet her in the lobby" "Georgetown">><<set $thread to 4>><</button>>
<</if>>\
<</if>>\
<<elseif $thread == 1>>\
Pussy in the morning is fucking amazing. Despite being super early, she's sopping wet, and with every thrust her moans get louder. Her brown ass slap against your groin, and she cums on your thick cock
<<speech "autumn" "$autumn.name">>How do I always fall for mediocre white guys??<</speech>>
<<vid autumn bed5>>
<<button "Show her just how 'mediocre' you are" "Georgetown">><<set $thread to 2>><</button>>
<<elseif $thread == 2>>\
You grab her hair, and place your hand on her stomach. This is a bit too intimate for someone you've literally just met, but you don't have many friends in D.C. The quicker you can get this lobbying shit done, the sooner you can get back to making money on Wall Street. As you whisper sweet nothings in $autumn.name's ear, you can feel her breathing quicken.
<<vid autumn bed8>>
<<button "Finish fucking her" "Georgetown">><<set $thread to 3>><</button>>
<<elseif $thread == 3>>\
You flip her around, press her back into the mattress, and pound her til completion. As her legs start to shake, you methodically speed up, and cum on her sheets.
<<vid autumn bed10>>
The two of you lay on the bed panting, and take a couple of minutes to catch your breath. Eventually, $autumn.name gets up, walks to the bathroom, and steps in the shower. From the room, you can hear her say
<<speech "autumn" "$autumn.name">>Get dressed $you.firstName, we have to go to work and get you registered as a lobbyist.<</speech>>
<<button "Clean up and meet her in the lobby" "Georgetown">><<set $thread to 4>><</button>>
<<elseif $thread == 4>>\
You find $autumn.name in the lobby, where she's sitting with her laptop out.
<<speech "autumn" "$autumn.name">>Ok, we'll be doing a little bit of roadtripping today. We'll need to get you registered as a lobbyist, and then I'll show you how we actually sway the votes of members of government.<</speech>>
<<speech "autumn" "$autumn.name">>As lobbyists for Greystone, we get access to a company limo for free. It's not a good look if our lobbyists are travelling in shitty cars or having to take Ubers to get around.<</speech>>
$autumn.name calls the company limo, and you follow her into the car.
<<button "Get into the car" "Capitol Hill Zone">><<set $thread to "null">><<missionAdvance>><</button>>
<</if>><<if $you.location is "Capitol Hill Zone">>\
As you drive out of Northwest D.C. the landscape of the city becomes much more familiar.
<<speech "autumn" "$autumn.name">>This area is called the Capitol Hill Zone. Whenever you want to meet with Congressmen or Treasury Department officials, this is where you'll meet them.<</speech>>
<<speech "autumn" "$autumn.name">>Every lobbying campaign begins with the fundraising stage, the research stage, and the lobbying stage. You'll get your research from our affiliated Think Tank located here, and a good chunk of your lobbying work will also be conducted here.<</speech>>
<<button "Continue Driving" "Downtown DC">><</button>>
<<elseif $you.location is "Downtown DC">>\
Driving away from the Capitol Hill Zone, you start to see some of the other popular sites D.C. is known for.
<<speech "autumn" "$autumn.name">>Alright, now, we're in Downtown D.C. You probably recognize the White House and the famous WAP building here, but a little known fact is that this is also the location of K Street.<</speech>>
<<speechYou "you">>K Street?<</speechYou>>
<<speech "autumn" "$autumn.name">>A little something we call a metonymy, but very broadly, K Street is where most of the major lobbying firms in this country are located.<</speech>>
The driver pulls into a parking lot, and the two of you get out of the car.
<<speech "autumn" "$autumn.name">>Welcome to your new workplace!<</speech>>
There are architectural similarities between the Greystone headquarters in New York, and the lobbying branch in D.C. Of course, the building isn't anywhere near as tall, given national security concerns.
<<button "Follow her into the office" "K Street">><</button>>
<<elseif $you.location is "K Street">>\
The inside of the building has the same corporate buzz of the New York headquarters, save the view of the Potomac. High powered D.C. lobbyists prowl around the office, and you swear you recognize a former politician or two amongst their ranks.
The vibe is much less hostile than on the Manhattan trading floor; no one is swearing or yelling at anyone else, but the fake smiles plastered on everyone's faces doesn't put you at ease.
<<speech "autumn" "$autumn.name">>As a lobbyist, you sometimes have to do shady stuff, so we have a secure uplink room from which you can coordinate with New York. We need to 'expedite' your lobbying license, so go ahead and set that up with the company's legal counsel in the Secure Room.<</speech>>
<<elseif $you.location is "Secure Room">>\
You walk into the room and log into the computer with your Greystone credentials. You select the option for legal counsel and after a few minutes, a familiar face comes on screen.
<<set $lobbying.requiredBudget to 5000000>><<set $lobbying.requiredSupport to 50>><<set $lobbying.requiredRelationship to 0>>
<<if $game.mode is "Realistic">>\
<<speech "nikki" "$nikki.name">>GLUCK GLUCK GLUCK<</speech>>
<<vid johnny nikkiofficebj>>
<<speechYou "you">>$nikki.name??? What the fuck are you doing?<</speechYou>>
<<speech "nikki" "$nikki.name">>OH MY GOD! Sorry Mr. $you.lastName, I didn't realize that the webcam was turned on.<</speech>>
She shoos away the dude who she was blowing, and you try to refocus your attention to the task on hand.
<</if>>\
<<missionAdvance>><<payment 500>><<advancePeriod>><<set $you.job to "Lobbyist">>
<<speechYou "you">>Oh god, are you my legal counsel here too?<</speechYou>>
<<speech "nikki" "$nikki.name">>Uhh, yeah sweety, that's what Chief Legal Counsel means!<</speech>>
<<speechYou "you">>Fine, whatever. Can you help me get my lobbying license?<</speechYou>>
You spend the morning filing the paperwork, and pay the required $500 fee. You're now a D.C. Lobbyist! Go back to the office and talk to $autumn.name to start lobbying!
<</if>><<set $you.location to "Secure Room">>\
<<bg "secureroom">>\
<<if $thread == "null">>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>\
<<button "Secure PAC Funding" "Secure Room">><<set $thread to 1>><</button>> <<button "Change Party Affiliation" "Secure Room">><<set $thread to 2>><</button>>
<<elseif $thread == 1>>\
<<if $period == 0 and setup.DAYS[$day % 7] == 'Saturday' >>\
<<set $you.heat +=50>><<set $lobbying.budget += 500000>>\
You decide to speed up the lobbying effort, and request PAC coordination with Greystone. You need to come in on an early Saturday morning, because the bureaucrat at the Office of Clerk who Greystone bribed can only hide the transaction during a scheduled software maintenance segment.
<<speech "nikki" "$nikki.name">>Uhh Mr. $you.lastName, I don't think this is exactly legal, but the CEO tells me to do it anyways whenever a lobbyist asks...<</speech>>
<<if $game.mode is "Realistic">>\
The payments need to be specially routed through the Investment Banking Division, as $blake.name can easily obscure the money as a regional specialized alternate investment.
IB isn't too happy about this arrangement, but from the whispers you hear around the office, it seems $nikki.name has found a way to grease the wheels
<<vid jean campaignFunds>>
<</if>>
<<if $whitney.onPayroll>><<set $you.heat -=25>><</if>>
<<else>>\
You can only do this early in the morning on Saturday.
<</if>>\
<<elseif $thread == 2>>\
You uplink with New York, and a few minutes later, $nikki.name's face appears on screen.
<<speech "nikki" "$nikki.name">>If you want to change your license to modify your political affiliation, it will cost $100,000...<</speech>>
<<speechYou "you">>100 grand? Jesus that's a lot of dough<</speechYou>>
<<speech "nikki" "$nikki.name">>...or was it a million? I don't remember, whatever, Greystone will cover the difference.<</speech>>
Select what faction you'll change your affiliation to:
<<button "Neoliberal" "K Street">><<set $you.politics to "neo">><<payment 100000>><<set $thread to "null">><</button>>
<<button "Progressive" "K Street">><<set $you.politics to "prog">><<payment 100000>><<set $thread to "null">><</button>>
<<button "Green" "K Street">><<set $you.politics to "green">><<payment 100000>><<set $thread to "null">><</button>>
<<button "Establishment Republican" "K Street">><<set $you.politics to "est">><<payment 100000>><<set $thread to "null">><</button>>
<<button "Rightwinger" "K Street">><<set $you.politics to "right">><<payment 100000>><<set $thread to "null">><</button>>
<<button "Libertarian" "K Street">><<set $you.politics to "lib">><<payment 100000>><<set $thread to "null">><</button>>
<</if>>
<<button [[Lobbying Office|K Street]]>><<set $thread to "null">><</button>><<if $you.location is "K Street">>\
<b>This is the last major big text block you'll need to read for a while, and it is recommended you read it to understand the new dynamics</b>
<<speech "autumn" "$autumn.name">>Now that you're a lobbyist, you should know how we actually get laws passed.<</speech>>
<<speech "autumn" "$autumn.name">>For each politician, we need to 1) raise enough money for their campaign war chest, 2) develop enough support for the legislation, either through think tank research or grassroots petitions, and 3) develop enough of a personal relationship with them so they vote for the bill<</speech>>
<<speechYou "you">>I have to do all this work on my salary?<</speechYou>>
<<speech "autumn" "$autumn.name">>Not quite. All lobbying efforts should be covered by the money you raise for a candidate, and you also get a cut of the money you fundraise. You can organize parties for the politician at Capitol Hill, and buy them gifts from Elysian Essentials using money you fundraise.<</speech>>
<<speechYou "you">>And my political affiliation will determine how easy it is to fundraise or raise support for our legislation, right?<</speechYou>>
<<speech "autumn" "$autumn.name">>Yes. Your benefits and lobbying progress will now be displayed at the office.<</speech>>
<<speech "autumn" "$autumn.name">>We have reports about a major bill coming down the legislative pipeline, which will hurt some of Greystone's technology investments. There are three key congressmen we need to convince to vote against the bill: an establishment GOP politician, a progressive Democrat, and a more far-right legislator. <</speech>>
<<speech "autumn" "$autumn.name">>Your first job is to get Congressman Kyle Anderson, the establishment Republican on board. You'll need to raise $5 million and generate 50 Support for the bill, before you can connect with his lead staffer. If you can convince the staffer to connect you to the Congressmen, you'll then be able to build a personal relationship, at which point they'll pledge to vote against the bill.<</speech>>
<<speechYou "you">>So I know I can do fundraising here and I can organize PAC funding as a last resort in the Secure Room, but how do I rase Support and build a personal relationship?<</speechYou>>
<<speech "autumn" "$autumn.name">>For support, go to the Thrust of Progress Think Tank at the Capitol Hill Zone, and once you are able to build a personal relationship, go to Capitol Hill. That should be just about everything you need, so feel free to get started. Based on your political affiliation, you already have some starter fundraising, and you'll get some extra fundraising on a weekly basis<</speech>>
While this is a lot of information to process, you suspect the process will be rewarding, and fairly easy to pick up once you get started. First, head over to the Think Tank, and get some legislative research started.
<<if $lobbying.budget == 0 and ($you.politics is "neo" or $you.politics is "est")>>\
<<set $lobbying.budget += 500000>>
<<elseif $lobbying.budget == 0 and $you.politics is "prog">>\
<<set $lobbying.budget += 300000>>
<<elseif $lobbying.budget == 0 and $you.politics is "green">>\
<<set $lobbying.budget += 100000>>
<<elseif $lobbying.budget == 0 and $you.politics is "right">>\
<<set $lobbying.budget += 350000>>
<<elseif $lobbying.budget == 0 and $you.politics is "lib">>\
<<set $lobbying.budget += 100000>>
<</if>>\
<<elseif $you.location is "Thrust of Progress Think Tank">>\
While there are many esteemed and prestigious Think Tanks in D.C., Greystone has partnered and been a silent funder of one of the best groups, called the Thrust of Progress. Their research is considered the gold standard of policy analysis, but if Greystone has their hand in the group, then it seems this ostensibly nonpartisan group may be a bit more biased than most people think.
The building is largely unassuming, and you meet with a distinguished looking bespectacled gentlemen.
<<if $you.politics is "neo" or $you.politics is "est">>\
He informs you that as a moderate within the party, Thrust of Progress provides free legislative research and grassroots campaign organization.
<<elseif $you.politics is "prog" or $you.politics is "right">>\
He informs you that as a more radical member of the party, Thrust of Progress can provide legislative research and grassroots campaign organization. However, it is harder to find legislative research that supports your view, and it is harder to organize grassroots movements, and it will cost you extra fundraising money.
<<elseif $you.politics is "green" or $you.politics is "lib">>\
He informs you that as a largely independent member of the party, Thrust of Progress can't find any legislative research to support your cause, but it is significantly easier to form grassroots movements.
<</if>>\
<<missionAdvance>><<set $missionCountdown to 2>>\
<</if>>\
<<set $you.requiredSupport to 0>><<set _fundRange to [10000, 125000, 20000, 25000, 30000, 35000, 40000, 50000, 60000, 75000, 80000, 90000, 100000]>>\
<<set _fundIdx = Math.floor(Math.random()*_fundRange.length)>>\
<<set _fundAmount = _fundRange[_fundIdx]>>\
<<set _politicalFunds = _fundAmount*0.995>>\
<<if $thread == "null">><<set $lobbying.budget += _politicalFunds>><<paycheck _fundAmount*0.005>><</if>>\
Current Funding Progress: $<<print $lobbying.budget.toLocaleString()>>/$<<print $lobbying.requiredBudget.toLocaleString()>>
<<set $you.location to "Political Fundraising">><<bg "kstreet">>\
<<if $thread == "null">>\
<<set _womanList to ["1","2","3","4","5","6","7","8","9","10"]>>\
<<set _womanIdx = Math.floor(Math.random()*_womanList.length)>>\
<<set _woman = _womanList[_womanIdx]>>\
<<set _url to "fundraising" + _woman>>\
<<set _politicalDescription = {
"fundraising1": "You arrive at the American Renewable Energy Association's annual gala, where Ava Martinez approaches you. Ava represents PowerGasm, which provides advocacy services for the renewable energy industry. She's eager to illuminate your client about the benefits of solar power and hopes her support can energize his campaign in a 'radiant' way.",
"fundraising2": "At the Silicon Valley Innovation Group's annual tech conference, Lena Smith, a CEO representing a coalition of tech startups from Pullout Pioneers, greets you. She's keen to update your client on the latest in AI advancements and offers to 'program' some support into his campaign.",
"fundraising3": "During the National Medical Association's healthcare symposium, you meet Dr. Jasmine Patel, Director of Packing Pharma. Jasmine wants to prescribe your client with insights on pharmaceutical innovations, offering a 'healthy dose' of contributions to his campaign.",
"fundraising4": "At a financial forum hosted by your client's constituency's Chamber of Commerce, Sophia Chang, a Regional Bank Director, introduces herself. Sophia is ready to deposit some strategic advice in your client's campaign, expecting to secure a good interest in return.",
"fundraising5": "You attend the 'Educators for Tomorrow' symposium, where Nora Johnson, Director of the educational initiative Brainwave Boosters, approaches. Nora wants to school your client on curriculum development, offering to 'enrich' his campaign with some scholarly support.",
"fundraising6": "At the National Environmental Rally, you meet Isabel Rodriguez, a local Councilwoman and advocate with Natural Protection. Isabel aims to plant some ideas about sustainable practices in your client's mind, with a 'nurturing' contribution to his campaign.",
"fundraising7": "You join the National Agriculture Expo, where Emma Dubois, a representative for the Fertile Harvest agricultural union, approaches you. Emma is ready to seed your client's thoughts with innovative farming techniques, and fertilize his campaign with a 'bountiful' donation.",
"fundraising8": "At the Civil Rights and Equality Forum, Grace Kim, a noted civil rights lawyer and activist from PanPartners, meets you. Grace is eager to illustrate the importance of social justice to your client, offering a 'fair and balanced' contribution to his campaign.",
"fundraising9": "During the National Defense Contractors Expo, Charlotte Brown, the Undersecretary for Defense Procurement from Mighty Loads, approaches you. Charlotte wants to brief your client on national security initiatives, and 'arm' his campaign with a strategic donation.",
"fundraising10": "You find yourself at the Global Oil and Gas Association's energy summit, where you meet Aisha Al-Hashim, a Senior Lawyer with SlickLiquid Consultancy. She's keen to fuel your client's knowledge on energy independence, offering to 'drill' some support into his campaign.",
}>>\
<<image Scenery _url>>
<<print _politicalDescription["fundraising" + _woman]>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>> <<button "Seduce her" "Political Fundraising">><<set $thread to Number(_woman)>><</button>>
<em>Note: Seducing a donor is risky, but potentially lucrative business. A successful seduction will yield a higher donation (and naturally, more money in your pocket). Unfortunately, violating FEC laws about maximum campaign donations will give you a little heat. You can seduce a donor by either meeting minimum attractiveness criteria (money, status, fitness) or by being of the same political affiliation as them. Failing to seduce a donor will lead to no extra contribution and increased heat.</em>
<<elseif $thread == 1>>\
<<if $you.politics is "prog" or $you.politics is "neo" or ($you.cash gt 125000 and $you.status gt 150 and $you.physique gt 10)>>\
<<set _x1 to "Ava Martinez">>\
<<speech "anonF" "_x1">>Give me your biofuel daddy!<</speech>>
<<vid Scenery fundraising1>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 2>>\
<<if $you.politics is "prog" or $you.politics is "lib" or ($you.cash gt 175000 and $you.status gt 75 and $you.physique gt 2)>>\
<<set _x1 to "Lena Smith">>\
<<speech "anonF" "_x1">>I'll program some extra support into your campaign, but let's also 'upgrade' this relationship...<</speech>>
<<vid Scenery fundraising2>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><</button>>
<<elseif $thread == 3>>\
<<if $you.politics is "prog" or $you.politics is "neo" or ($you.cash gt 100000 and $you.status gt 175 and $you.physique gt 15)>>\
<<speech "jasminepatel" "$jasminepatel.name">>I need 8 inches of your cock, stat!<</speech>>
<<vid Scenery fundraising3>><<set $jasminepatel.met to true>><<set $jasminepatel.fucked to true>><<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 4>>\
<<if $you.politics is "prog" or $you.politics is "lib" or ($you.cash gt 175000 and $you.status gt 125 and $you.physique gt 5)>>\
<<speech "sophiachang" "$sophiachang.name">>My pussy is a troubled economy, and I need some thick, massive stimulus!<</speech>>
<<vid Scenery fundraising4>><<set $sophiachang.met to true>><<set $sophiachang.fucked to true>><<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 5>>\
<<if $you.politics is "prog" or ($you.cash gt 30000 and $you.status gt 80 and $you.physique gt 12)>>\
<<set _x1 to "Nora Johnson">>\
<<speech "anonF" "_x1">>You want me to violate campaign finance laws? You naughty boy, see me after class...<</speech>>
<<vid Scenery fundraising5>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 6>>\
<<if $you.politics is "prog" or $you.politics is "green" or ($you.cash gt 80000 and $you.status gt 175 and $you.physique gt 3)>>\
<<set _x1 to "Isabel Rodriguez">>\
<<speech "anonF" "_x1">>Fuck nature, I want you to pollute my asshole!<</speech>>
<<vid Scenery fundraising6>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 7>>\
<<if $you.politics is "prog" or $you.politics is "right" or ($you.cash gt 150000 and $you.status gt 100 and $you.physique gt 15)>>\
<<set _x1 to "Emma Dubois">>\
<<speech "anonF" "_x1">>I have some ripe land here in my pussy that I need you to fertilize!<</speech>>
<<vid Scenery fundraising7>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 8>>\
<<if $you.politics is "prog" or ($you.cash gt 125000 and $you.status gt 150 and $you.physique gt 10)>>\
<<set _x1 to "Grace Kim">>\
<<speech "anonF" "_x1">>Don't tell my girlfriends, but I'll go straight for the right dick!<</speech>>
<<vid Scenery fundraising8>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 9>>\
<<if $you.politics is "prog" or $you.politics is "est" or ($you.cash gt 75000 and $you.status gt 100 and $you.physique gt 8)>>\
<<set _x1 to "Charlotte Brown">>\
<<speech "anonF" "_x1">>I've got an insurgency in my guts that I need you to annihilate!<</speech>>
<<vid Scenery fundraising9>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<<elseif $thread == 10>>\
<<if $you.politics is "prog" or $you.politics is "est" or ($you.cash gt 175000 and $you.status gt 125 and $you.physique gt 2)>>\
<<set _x1 to "Aisha Al-Hashim">>\
<<speech "anonF" "_x1">>Fuck the oil fields, I want you to drill the special fluids out of ME<</speech>>
<<vid Scenery fundraising10>>
<<set $lobbying.budget += 20000>><<paycheck 500>>\
<<else>>\
<<heatmax 5>>\
Your seduction attempt failed! The donor is visibly disgusted, and all that's stopping her from withdrawing her entire donation is the fact she really need's to get your client to vote her way. Hopefully she doesn't report you to the FEC!
<</if>>
<<button "Find a new donor" "Political Fundraising">><<set $thread to "null">><<advancePeriod>><</button>>
<</if>>
<<button [[Lobbying Office|K Street]]>><<set $thread to "null">><</button>><<if $you.location is "Georgetown">>\
A text pops up on your phone, and you feel a bit unnerved by it:
<<set _x to "Anonymous Texter">>
<<speech "anon" "_x">>Welcome to D.C. Mr. Wall Street Man turned Lobbyist. Meet me at the Capitol Hill Zone if you're interested in a "mutually beneficial" arrangement.<</speech>>
You're not really surprised at recieving the text. Lobbyists are required to pubish their information as part of the public record, but the real question is who'd go to the effort to sort through that information to find you?
Best meet them at the Capitol Hill Zone
<<elseif $you.location is "Capitol Hill Zone">>\
In the shadow of the Washington Monument, you take a break from the blinding D.C. heat. Out of the corner of your eye, an oddly high pitched voice speaks out to you. You had expected to meet a man, but life is full of surprises.
<<speech "whitney" "$whitney.name">>So you decided to show up Mr. $you.lastName...<</speech>>
You squint your eyes, and try to remember who this person is. That dark hair, those striking eyes...and suddenly you remember that she's that Washington Associated Press journalist.
<<speechYou "you">>Ahh, Ms. $whitney.name, I thought you were just one of those mudrakers who picked on young, vulnerable, and frankly drop dead handsome financiers who were down on their luck<</speechYou>>
<<speech "whitney" "$whitney.name">>Well, things have changed, you've been pulling a lot of money into D.C., but no one seems to know that it is you. A mentor of mine told me that if I can hitch myself to a rising star, that would be the best way to get good stories.<</speech>>
<<speechYou "you">>Well, I don't have too much juicy news to share to be quite honest with you.<</speechYou>>
<<speech "whitney" "$whitney.name">>Oh, I'm sure a man of your character runs into plenty of interesting figures. Throw me what you think is a small fry every once in a while, and for $5,000 a week, I'll support your lobbying efforts with op-eds and hide your wrongdoings by quashing stories and writing hit pieces on other lobbyists to draw attention away from you. I'll give your dirt on your opponents, and even find a way to get information for you from the most tight lipped people.<</speech>>
<<speechYou "you">>5 grand a week? When I give a woman that much money, she's usually on her back...<</speechYou>>
<<speech "whitney" "$whitney.name">>Like I said Mr. $you.lastName, I told you to come here if you were interested in a mutually beneficial arrangement. I'm open to doing whatever it'll take to make this arrangement work for you...<</speech>>
<<speech "whitney" "$whitney.name">>If you're interested, meet me at the Washington Associated Press building. Both professionally and...otherwise, I'll please you much more than those whores ever could.<</speech>>
As she walks away from you, the tight outline of her ass against her dress sways, no doubt meticulously planned in advance.
$whitney.name is an ambitious woman who knows her strengths, and you're seriously considering taking her offer. She makes a compelling value add, and you wonder how much higher you can climb with her on your side. <<missionAdvance>>
<</if>><b>Welcome to the pinnacle of luxury, the company car!</b><<bg "cah">>
<<if $you.geography is "DC">>\
<em>Northwest DC</em>
<<button "Georgetown" "Georgetown">><</button>> <<button "Elysian Essentials" "Elysian Essentials DC">><</button>> <<button "The Beltway Beat" "The Beltway Beat">><</button>>
<em>Capitol Hill Zone</em>
<<button "Capitol Hill" "Capitol Hill">><</button>> <<button "Treasury Building" "Treasury Building">><</button>> <<button "Thrust of Progress Think Tank" "Thrust of Progress Think Tank">><</button>>
<em>Downtown D.C.</em>
<<button "K Street" "K Street">><</button>> <<button "White House" "White House">><</button>> <<button "WAP Building" "Washington Associated Press">><</button>>
<em>Virginia</em>
<<button "Dulles Airport" "Dulles Airport">><</button>> <<if $mission.arc gt 2.16>><<button "Congressman Anderson's House" "Congressman Anderson's House">><</button>><</if>>
<</if>>
<<button "Back" $you.location>><</button>>
<<if $lobbying.budget gte $lobbying.requiredBudget and $lobbying.support gte $lobbying.requiredSupport>>\
<<if $you.location is "K Street" or $you.location is "Thrust of Progress Think Tank">>\
As you finish up the last call, $autumn.name stops by your office with a huge smile on her face
<<speech "autumn" "$autumn.name">>Just got a call from Congressman Anderson's office! You're cleared to meet his chief staffer.<</speech>>
<<speechYou "you">>Ok, so when do we go to Capitol Hill?<</speechYou>>
A few of the lobbyists listening in start laughing, and $autumn.name just sighs.
<<speech "autumn" "$autumn.name">>Most of these kinds of jobs are just cushy jobs for rich kids, so they normally dick around until they are old enough to run for office. The address the secretary gave me is at some country club in Upstate New York, so you'll have to meet his chief staffer over there.<</speech>>
Hopefully your bags are packed. You're flying back to the Empire State!
<<elseif $you.location is "JFK Airport">>\
As you touch down in New York, you call to update $autumn.name.
<<speechYou "you">>Hey $autumn.name, just arrived at JFK. I've gotta go Upstate to reach the Country Club, right?<</speechYou>>
<<speech "autumn" "$autumn.name">>That's correct, I've arranged for a limo to pick you up from the airport.<</speech>>
<<speechYou "you">>Great, got any advice for a newbie?<</speechYou>>
<<speech "autumn" "$autumn.name">>Chief Staffers are just college-aged gate keepers, so it is important you ingratiate yourself to them. Try not to fuck this up.<</speech>>
<<button "Hop in the limo" "Country Club">><</button>>
<<elseif $you.location is "Country Club">>\
Driving out of the city and into the Country Club, you start to see a lot less sedans and a lot more sports cars. The club is uncharacteristically packed, and there are even several news crews. People are crowded along the TVs and near the golfing green, and you decide to see what all the buzz is about.
$autumn.name texted you a picture of the chief staffer, and looking up at the TV, you see that she's right now a part of some fucking golf tourney hosted by the country club.
<<vid gracecharis introduction>>
One of the announcers chimes in, and announces "Yet another hole-in-one for <<textbox "$gracecharis.name" "Grace">>!"
You figure you'll let her wrap up on the green and then talk to her. No point in rushing, and accidentally antagonizing her.
<<button "Wait for her to finish" "Country Club">><<advancePeriod>><<missionAdvance>><</button>>
<</if>>\
<</if>>\<<if $thread == "null">>\
<<vid gracecharis swing1>>
$gracecharis.name is playing remarkably, but it still takes her hours to finish. As you approach her, a swarm of fans surround $gracecharis.name, and you can't help but notice they're primarily male and don't seem like golf-enthusiasts.
By the time she gets to you, she seems exhausted from all the attention.
<<set $gracecharis.met to true>>
<<speechYou "you">>Hey $gracecharis.name!, My name is-<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Ughh, I don't want to know the name of some creep who just wants to see my tits. Get away from me!<</speech>>
What the fuck is she talking about? Why would she even remotely think that?
She starts to walk away, and you have to think on your feet. How will you turn the situation in your favor?
<<button "Exert Your Power" "Country Club">><<set $thread to 1>><</button>> <<button "Try to Find Political Alignment" "Country Club">><<set $thread to 2>><</button>> <<button "Blackmail Her" "Country Club">><<set $thread to 3>><</button>>
<<elseif $thread == 1>>\
<<if $you.power gte 10>>\
<<set $you.power -= 10>>\
<<speechYou "you">>You dumb cunt, I'm a lobbyist for Greystone Associates.<</speechYou>>
$gracecharis.name stops in her tracks, and she slowly turns around. You made her realize she fucked up, and now it's your turn to walk away.
<<set $thread to "null">>
<<speech "gracecharis" "$gracecharis.name">>No, please wait! Mr. $you.firstName $you.lastName, right? I'm so sorry, I totally forgot about the meeti-<</speech>>
<<speechYou "you">>I have built up a $5 million warchest for your Representative, and instead of meeting me, wining and dining me at this fine establishment, even just clearing your schedule, you play golf all fucking day?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>$5 million? Shit, if it's a meeting you want I'll greenlight it! Just please don't tell the Congressman!<</speech>>
<<speechYou "you">>Well, I've seen the way you handle balls all afternoon, how about you suck mine in the bathroom?<</speechYou>>
$gracecharis.name seriously considers it for a moment, but even you can see there are way too many fans and reporters around.
<<speech "gracecharis" "$gracecharis.name">>I'm so sorry, I can't do that, but why don't you check your email in a few minutes? I have an OF page, and I'll send you some of the non-copyrighted stuff!<</speech>>
While you couldn't get this chick to suck your nuts, you did manage to land a meeting with the Congressman! Your experience as a lobbyist has served you well, and you've gotten your first taste of how power can motivate even the most obstinate peowple.
<<missionAdvance>><<missionAdvance>>
<<button "Take the limo back to the airport" "JFK Airport">><</button>>
<<else>>\
<<speechYou "you">>You dumb cunt, I'm a lobbyist for Greystone Associates!<</speechYou>>
$gracecharis.name stops in her tracks, and she slowly turns around. You made her realize she fucked up, but should you let it sink in, or go straight for the jugular?
<<set $mission.requirements[0] to false>>
<<speechYou "you">>Uhh, I uh noticed you have, like, a lot of male fans or something, and based on what you said about me seeing your tits, you probably have an OF or something, right? That can't look good in front of an ethics committee.<</speechYou>>
You hit a nerve, and she glares at you. She is dead quiet, so you continue.
<<set $thread to "null">>
<<speechYou "you">>Greystone has heard about a piece of legislation regarding a tech company in our portfolio. I'm going to need to meet with Congressman Ander-<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>What was the name the Congressman's secretary gave me again? Mr. $you.firstName $you.lastName, right? I'll make sure you never set foot on Capitol Hill again.<</speech>>
With the turn of her heel, she storms off, leaving a stinking feeling in your gut. Given your inexperience in the halls of power, you made the wrong move! This fuckup will take some serious damage control.
<<missionAdvance>>
<<button "Take the limo back to the airport" "JFK Airport">><</button>>
<</if>>\
<<elseif $thread == 2>>\
<<set $thread to "null">>\
<<if $you.politics is "est" or "prog">>\
<<speechYou "you">>Wait up $gracecharis.name, I'm a lobbyist for Greystone Associates. There's some legislation being announced that I think your Congressman would be interested in.<</speechYou>>
$gracecharis.name stops in her tracks, and she slowly turns around.
<<speech "gracecharis" "$gracecharis.name">>Oh, I fucked up! Mr. $you.firstName $you.lastName, right? I'm so sorry, I totally forgot about the meeting!<</speech>>
The two of you walk and talk, and discuss the merits of the legislation. \
<<if $you.politics is "est">>\
From purely political grounds, the rationale for Congressman Anderson to vote in Greystone's direction is clear, given the ideological overlap. With very little further convincing, $gracecharis.name greenlights you to meet with the Congressman.
<<else>>\
$gracecharis.name is the Chief Staffer for an Establishment Republican, but like most women, she herself is a Progressive. With very little further convincing, $gracecharis.name greenlights you to meet with the Congressman.
<</if>>
<<speech "gracecharis" "$gracecharis.name">>Sorry for thinking you were a creep or whatever $you.firstName, you're actually pretty chill for a Lobbyist!<</speech>>
<<speechYou "you">>Thanks...I guess?<</speechYou>>
She walks you back to your limo, and you guys seem to hit it off. While she's probably better off as a pro-golfer than working in her incredibly selective position as a Congressman, the fact that her dad is a megadonor who bought this job for her can't be helped!
<<speechYou "you">>Soooo, when we first met, what was that thing you were saying about seeing your tits?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>LOL! Yeah, you see all the guys here?<</speech>>
<<speechYou "you">>I noticed, they don't seem like the demographic that...uhh...plays sports.<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Haha, well they're actually here to see me. I try to keep this under wraps, but a while ago, I used to run an OF account, and a lot of these guys are former fans.<</speech>>
<<speechYou "you">>That sounds awful<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Ehh, I like the attention<</speech>>
You arrive at the car door, and as you're climbing in, $gracecharis.name says
<<speech "gracecharis" "$gracecharis.name">>Why don't you check your email on the ride back...<</speech>>
Well well well, seems like $gracecharis.name has come around!
<<missionAdvance>><<missionAdvance>>
<<button "Take the limo back to the airport" "JFK Airport">><</button>>
<<else>>\
<<speechYou "you">>Wait up $gracecharis.name, I'm a lobbyist for Greystone Associates. There's some legislation being announced that I think your Congressman would be interested in.<</speechYou>>
$gracecharis.name stops in her tracks, and she slowly turns around. You jump into an incredibly detailed and incisive policy analysis, that flawlessly outlines why it is in the Congressman and his constituent's interest to vote for the bill.
<<set $mission.requirements[0] to false>>
<<speech "gracecharis" "$gracecharis.name">>YAWNNNN<</speech>>
<<speechYou "you">>Huh?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Boring!!! I need to go to the afterparty now, bye!<</speech>>
With the turn of her heel, she walks off, leaving a stinking feeling in your gut. Given your inexperience dealing with these types of people, you made the wrong move! This fuckup will take some serious damage control.
<<missionAdvance>>
<<button "Take the limo back to the airport" "JFK Airport">><</button>>
<</if>>\
<<elseif $thread == 3>>\
<<set $thread to "null">>\
<<speechYou "you">>You dumb cunt, I'm a lobbyist for Greystone Associates!<</speechYou>>
$gracecharis.name stops in her tracks, and she slowly turns around. You made her realize she fucked up, but what should you do now?
<<set $mission.requirements[0] to false>>
<<speech "gracecharis" "$gracecharis.name">>I don't appreciate your tone...<</speech>>
<<speechYou "you">>Well I'm sure the House Ethics Committee won't appreciate that you...uhhh...uhhh<</speechYou>>
Dammit! Why would you try to blackmail $gracecharis.name without any actual dirt on her?
<<speech "gracecharis" "$gracecharis.name">>Are you fucking stupid?<</speech>>
With the turn of her heel, she walks off, leaving a stinking feeling in your gut. Given your inexperience dealing with shady secrets, you made the wrong move! This fuckup will take some serious damage control.
<<missionAdvance>>
<<button "Take the limo back to the airport" "JFK Airport">><</button>>
<</if>>\<<if $you.location is "JFK Airport">>\
<<if $mission.requirements[0] is false>>\
Driving back to the airport, you feel like shit. This was essentially your first professional setback, and it was at the hands of some dumbass college kid. Looking down at your phone, you see an incoming call from $autumn.name.
<<speech "autumn" "$autumn.name">>Did the staffer approve a meeting with the Congressman?<</speech>>
<<speechYou "you">>I don't think we're getting the meeting $autumn.name...<</speechYou>>
<<speech "autumn" "$autumn.name">>Fuck! Seriously?<</speech>>
<<speechYou "you">>Yeah, I have a feeling she doesn't really like me at all. Is there any contingency in place?<</speechYou>>
<<speech "autumn" "$autumn.name">>No, there isn't some contingency plan! This is your fucking job<</speech>>
<<speechYou "you">>Shit, alright I get it. I'll find some way to fix this.<</speechYou>>
<<speech "autumn" "$autumn.name">>Just make sure you clean up this mess, Greystone won't look to kindly if this doesn't get resolved...<</speech>>
$autumn.name hangs up, and you're all alone standing at your gate. You hear the call for your boarding zone over the PA, but your mind is in shambles from the day's events. How will you fix this mess?
<</if>>
<<elseif $you.location is "Washington Associated Press">>\
<<if $mission.requirements[0] is false>>\
If anyone can find a solution to this crisis, it would be $whitney.name. Afterall, what else do you pay her for?
<<speechYou "you">>What's good $whitney.name? I got a little situation on my hand...<</speechYou>>
<<speech "whitney" "$whitney.name">>I was wondering when you'd come in here to cash your checks. What can I do for you?<</speech>>
<<speechYou "you">>There's this Congressman I've been trying to meet, but his staffer is actively blocking me. Think you can help me out?<</speechYou>>
<<speech "whitney" "$whitney.name">>What's this Congressman's name?<</speech>>
<<speechYou "you">>Kyle Anderson<</speechYou>>
<<speech "whitney" "$whitney.name">>Ok, this might take a while, hang tight! Collecting blackmail is notoriously tricky business.<</speech>>
<<button "Wait for her to find some dirt" "Washington Associated Press">><<set $mission.requirements[0] to true>><</button>>
<<else>>\
It hasn't even been five minutes, and you hear $whitney.name cracking up at her deck. You went to get a cup of coffee from the WAP lounge, but you rush back to see what she found.
<<speechYou "you">>What did you find?<</speechYou>>
<<speech "whitney" "$whitney.name">>Well, like most women these days, $gracecharis.name seems to have opened up an OF account as soon as she was able to. The account was last active a while ago, but this can't look good being the chief staffer for a Republican.<</speech>>
<<speechYou "you">>Shit, how did you find this?<</speechYou>>
<<speech "whitney" "$whitney.name">>Just a simple reverse image search lol, you'd think she would know a little bit more about privacy measures<</speech>>
<<speechYou "you">>You seriously saved my ass $whitney.name, thank you so much<</speechYou>>
<<speech "whitney" "$whitney.name">>Anytime $you.lastName...<</speech>>
Now that you collected some dirt on $gracecharis.name, let's see if she will change her mind...
<</if>>\
<<elseif $you.location is "Country Club">>\
<<if $mission.requirements[0]>>\
The Country Club is a massive blight of monocultured grass in Upstate New York, so it takes a second for you to find $gracecharis.name.
<<vid gracecharis swing1>>
<<speech "gracecharis" "$gracecharis.name">>Back so soon Mr. $you.lastName? Have you come to grovel for a meeting?<</speech>>
Ignoring her, you look at your phone, and you forward the email link containing the OF pictures that $whitney.name sent you.
<<missionAdvance>>
<<speechYou "you">>$gracecharis.name, do me a favor, why don't you go ahead and check your email?<</speechYou>>
She looks confused, and tries to come up with a snarky remark. But as she looks at her phone, her eyes widen, and for just a second, you see a glimmer of an emotion that doesn't quite seem right on her face. It wasn't anger, or fear, but something else altogether.
And just like that, it's gone, replaced by the plastic veneer of her smiling face. Her voice drips with honey, but her eyes convey a darker feeling.
<<speech "gracecharis" "$gracecharis.name">>Ohh, thank you $you.firstName for...ah...bringing this to my attention. I wasn't aware this sensitive material was still publically available. I'm sure there's a mutually agreeable solution we can arrive that, just to protect the privacy of all involved parties!<</speech>>
$gracecharis.name will grow up to be an excellent politician one day
<<speechYou "you">>Just email the meeting details to me, and we'll be even. Butter up Anderson for me, otherwise this 'sensitive material' as you put it will be on the front page of the Washington Associated Press.<</speechYou>>
With that, it's your turn to walk away, and you swear you can feel $gracecharis.name trying to telepathically kill you or something. That woman gives you the heebie jeebies!
<<button "Take the limo back to the airport" "JFK Airport">><</button>>
<</if>>\
<</if>><<if $you.location is "JFK Airport">>\
<<if $thread == "null">>\
<<set $thread to 1>>\
On the way back to the airport, you browse through your email, and you decide to check out some of the pictures of $gracecharis.name. Seems like all these pictures are non-copyrighted and freely available on the internet! The collection of these pictures seems to have been intelligently done, and if you want to see more of $gracecharis.name, you should probably check out her OF!
<<image gracecharis nude0>>
<<image gracecharis nude1>>
<<image gracecharis nude2>>
<<image gracecharis nude3>>
<<speechYou "you">>Heh, nice...<</speechYou>>
As you're going through security, you get a call from $autumn.name
<<button "Pick up the call" "JFK Airport">><</button>>
<<elseif $thread == 1>>\
<<set $thread to "null">>\
<<set $missionCountdown to 1>>\
<<speech "autumn" "$autumn.name">>Gotta say, I'm pretty impressed $you.lastName. I've never seen a lobbyist recover after so spectacularly fucking up with a staffer...<</speech>>
<<speechYou "you">>Yeah yeah, get your laughs in. When are we meeting with Anderson?<</speechYou>>
<<speech "autumn" "$autumn.name">>The email says we're going to meet him tomorrow. I'll be at your place in the morning, and we'll take a cab to meet him at Capitol Hill.<</speech>>
Better rest up! You've been doing a lot of flying recently, but all the hard work seems to have paid off.
<</if>>\
<<elseif $you.location is "Georgetown">>\
<<if $thread == "null">><<set $thread to 1>>\
Today's the day you meet the Congressman! You put on your finest suit, and slip on an American flag pin. The doorbell rings as you're putting on your shoes, and $autumn.name calls out to you.
<<speech "autumn" "$autumn.name">>Hurry up, we're going to be late! D.C. traffic is a bitch, the Beltway is going to be packed!<</speech>>
<<speechYou "you">>Calm your tits $autumn.name, I'm coming out!<</speechYou>>
Stepping outside, you see $autumn.name who, as always, cuts a striking figure.
<<image autumn 3>>
<<if $game.mode is "Realistic">>\
<<speechYou "you">>Nice dress, but are you sure that's professional enough for a meeting with a member of Congress?<</speechYou>>
<<speech "autumn" "$autumn.name">>I don't think you understand HOW important this bill is. Trust me I know how men look at me.<</speech>>
You can't help but admire the way her ass looks as she gets in the car, and turning around, she says
<<if $autumn.fucked>>
<<speech "autumn" "$autumn.name">>Let me be clear $you.firstName. Whatever relation we've had doesn't matter when it comes to my job.<</speech>><</if>>
<<speech "autumn" "$autumn.name">>I won't just flaunt off my body. I'll suck and fuck all the cock I need to if it helps get the legislation I want passed<</speech>>
<<speechYou "you">>Well, you'll need my help if you want this bill to get passed...<</speechYou>>
<</if>>
She looks back at you, and with a sly expression on her face, she says
<<speech "autumn" "$autumn.name">>I meant it when I said I was impressed by your performance with that staffer. Get in the car $you.firstName, I have a surprise for you...<</speech>>
<<button "Time for a surprise!" "Georgetown">><</button>>
<<elseif $thread == 1>><<set $thread to "null">>\
<<speech "autumn" "$autumn.name">>I've seen how hard you've worked these past few weeks, I don't think I've seen anyone else pull in this much fundraising money so quickly.<</speech>>
<<speech "autumn" "$autumn.name">>Did Greystone give you a bonus?<</speech>>
<<speechYou "you">>Nah I hav-<</speechYou>>
While you're talking and driving, $autumn.name reaches over, and starts to unizp your pants
<<speech "autumn" "$autumn.name">>Well then on behalf of Greystone Associates Mr. $you.lastName, let me offer you a token of appreciation...<</speech>>
<<if $game.mode is "Realistic">>Seems like her slutty dress, and all this talk about sucking and fucking as much cock as she wants has put $autumn.name in the mood.<</if>>
<<vid autumn carBJ>><<set $autumn.fucked to true>>
$autumn.name's technique is amazing, and the D.C. traffic seems to slip you by with every swirl of her tongue. She's giving you some toe curling head, and there's more then a few times where you nearly get into a crash.
Many, many ejaculations later, you finally arrive at Capitol Hill. Swallong your cum and wiping the saliva from her mouth, $autumn.name motions that you've arrived at your destination.
<<button "Pull up your pants and get out" "Capitol Hill">><</button>>
<</if>>\
<<elseif $you.location is "Capitol Hill">>\
<<if $thread is "null">>\
$autumn.name leads the way, and it's clear she knows her way around the building. Passing through security, the two of your cross the marble floor, and make your way to Congressman's office. The secretary waves you in, and you see the Congressman seated at his desk.
<<set _x to "Kyle Anderson">>
<<speech "anon" "_x">>Why hello there! It's a pleasure to meet you two<</speech>>
Anderson speaks with a light drawl, and he kisses $autumn.name's hand and shakes yours. He's a dignified looking middle aged man, and you can tell from his handshake he has considerable strength behind his grip.
<<speech "autumn" "$autumn.name">>Good Morning Congressman. It's a pleasure to finally meet you<</speech>>
<<speech "anon" "_x">>I've heard you two have been contributing quite a bit to my re-election campaign. Please, take a seat!<</speech>>
<<set $thread to 1>>
<<button "Take a seat" "Capitol Hill">><</button>>
<<elseif $thread == 1>>\
<<set $thread to "null">><<set _x to "Kyle Anderson">>\
<<speech "anon" "_x">>So, what did you want to speak to me about?<</speech>>
<<speechYou "you">>Well Congressman, how familiar are you with any incoming legislation regarding certain up and coming technology companies?<</speechYou>>
<<speech "anon" "_x">>Hmm, are you talking about HB 69?<</speech>>
<<speech "autumn" "$autumn.name">>That's the one<</speech>>
<<speech "anon" "_x">>Calling it a tech company is a bit of a stretch...I think my constituents would have significant moral objections if I voted in any way that helped it grow.<</speech>>
You're not exactly sure what he's talking about, but you figure you can ask $autumn.name about it later. The two of them negotiate a bit more, and Anderson eventually says
<<set $lobbying.budget to 0>><<set $lobbying.requiredBudget to 2000000>>\
<<set $lobbying.support to 0>><<set $lobbying.requiredSupport to 25>>\
<<set $lobbying.relationship to 0>><<set $lobbying.requiredRelationship to 100>>
<<speech "anon" "_x">>You guys drive a hard bargain! Tell you what, if you two can fundraise another $2 million and build a bit more support for the bill in my district, I'll vote the way you want.<</speech>>
<<missionAdvance>>
<<button "Leave the Congressman's Office" "Capitol Hill Zone">><</button>>
<</if>>\
<</if>><<bg fmr>>\
<<set $you.location to "Foresight Market Research">>\
<<set _alinaarc to [0.0, 1]>>\
<<if _alinaarc.contains($alina.arc) && $alina.countdown == 0>>\
<<girlcheck $alina _alinaarc>>\
<<else>>\
<<speech "alina" "$alina.name">>How can I help you $you.firstName?<</speech>>
<<image alina seated>>
<</if>>
<<button [[Exit|Foresight Market Research]]>><</button>>
<<speechYou "you">>Wow, I didn't expect him to be so transparent about asking for more money.<</speechYou>>
<<speech "autumn" "$autumn.name">>Yeah, politicians are a bit shameless.<</speech>>
<<speechYou "you">>I've been meaning to ask, but what exactly does the company that we're lobbying for do?<</speechYou>>
<<speech "autumn" "$autumn.name">>It's a tech startup Greystone is funding, that's incredibly promising. It's a social media network, that also lets men sleep with the women they see. Instead of paying the women directly, their screentime is monetized by ads, and used to pay the women directly.<</speech>>
<<speechYou "you">>That...sounds ambitious.<</speechYou>>
<<speech "autumn" "$autumn.name">>It certainly is, but this legislation aims to mesh vice and tech laws. The company is still incredibly young, so Greystone wants to protect its investment.<</speech>>
The two of you get back in the car, and head to K-Street.
<<missionAdvance>>
<<speechYou "you">>Just to clarify, how do I raise my relationship with Anderson?<</speechYou>>
<<speech "autumn" "$autumn.name">>You now have access to the Congressman's office, so just visit him at Capitol Hill<</speech>>
You have just one last fundraising push! Time to get the Congressman on board. <<bg "loc">>\
<<set $you.location to "Library of Congress">>\
<i>Not Yet Implemented</i>
<<button [[Capitol Hill]]>><</button>><<set $you.location to "Office of Congressman Kyle Anderson (R)">>\
<<bg "thehill">>\
<<set $location to [2.15, 2.16]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $thread == 0>>\
<<set $thread to "null">><<advancePeriod>><<bg countryclub>>\
<<set _x to "Kyle Anderson">>\
<<speech "anon" "_x">>Oh, hey $you.firstName! Good to see you man!<</speech>>
You and the Congressman play golf for a bit, and enjoy the 'local attractions'
<<set _sceneSelectorList to ["golfgirl0", "golfgirl1", "golfgirl2", "golfgirl4", ]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>
<<vid Scenery _scene>>
<<button "Return to the Office" "K Street">><</button>>
<<elseif $period == 0>>\
Anderson's secretary informs you that the Congressman hasn't arrived at the office yet.
<<elseif $period == 1 or $period == 2>>\
<<if $game.mode is "Realistic">>\
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<if _scene == 1>>\
<<advancePeriod>>\
<<set _x to "Kyle Anderson">>\
<<speech "anon" "_x">>Oh, hey there $you.firstName! Could you come back later? Banging the wife at the moment haha!<</speech>>
<<vid ashly husband1>>
She's talking dirty, but you can tell $ashly.name clearly isn't super into it. She looks at you with a pleading expression, as if she's asking you to ignore what her husband is doing to her.
<<button "Leave them to their business" "Capitol Hill">><</button>>
<<else>>
Current Relationship: $lobbying.relationship
<<button "Organize a Donor Party" "K Street">><<set $thread to 0>><<set $lobbying.budget += 20000>><<set $lobbying.relationship += 2>><<advancePeriod>><</button>>
<<button "Organize a Special Party" "The Beltway Beat">><<set $lobbying.budget -= 10000>><<set $lobbying.relationship += 10>><<set $you.heat += 8>><<set $thread to 0>><<advancePeriod>><</button>> (-$10,000 fundraising, +10 relationship, +8 heat)
<b>Give the Congressman the Gift</b>
<<if $lobbying.items["ties"] gt 0>><<button "Hermès Tie" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["ties"] -= 1>><<set $lobbying.relationship += 1>><</button>><</if>> <<if $lobbying.items["pens"] gt 0>><<button "Montblanc Pen" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["pens"] -= 1>><<set $lobbying.relationship += 3>><</button>><</if>> <<if $lobbying.items["opera"] gt 0>><<button "Opera Ticket" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["opera"] -= 1>><<set $lobbying.relationship += 5>><</button>><</if>> <<if $lobbying.items["cufflinks"] gt 0>><<button "Patek Philippe Cufflink" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["cufflinks"] -= 1>><<set $lobbying.relationship += 7>><</button>><</if>> <<if $lobbying.items["suit"] gt 0>><<button "Tom Ford Suit" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["suit"] -= 1>><<set $lobbying.relationship += 8>><</button>><</if>> <<if $lobbying.items["rolex"] gt 0>><<button "Rolex Watch" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["rolex"] -= 1>><<set $lobbying.relationship += 10>><</button>><</if>> <<if $lobbying.items["golf"] gt 0>><<button "Golf Club Membership" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["golf"] -= 1>><<set $lobbying.relationship += 20>><</button>><</if>>
<</if>>
<<else>>\
Current Relationship: $lobbying.relationship
<<button "Organize a Donor Party" "K Street">><<set $thread to 0>><<set $lobbying.budget += 20000>><<set $lobbying.relationship += 2>><<advancePeriod>><</button>>
<<button "Organize a Special Party" "The Beltway Beat">><<set $lobbying.budget -= 10000>><<set $lobbying.relationship += 10>><<set $you.heat += 8>><<set $thread to 0>><<advancePeriod>><</button>> (-$10,000 fundraising, +10 relationship, +8 heat)
<b>Give the Congressman the Gift</b>
<<if $lobbying.items["ties"] gt 0>><<button "Hermès Tie" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["ties"] -= 1>><<set $lobbying.relationship += 1>><</button>><</if>> <<if $lobbying.items["pens"] gt 0>><<button "Montblanc Pen" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["pens"] -= 1>><<set $lobbying.relationship += 3>><</button>><</if>> <<if $lobbying.items["opera"] gt 0>><<button "Opera Ticket" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["opera"] -= 1>><<set $lobbying.relationship += 5>><</button>><</if>> <<if $lobbying.items["cufflinks"] gt 0>><<button "Patek Philippe Cufflink" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["cufflinks"] -= 1>><<set $lobbying.relationship += 7>><</button>><</if>> <<if $lobbying.items["suit"] gt 0>><<button "Tom Ford Suit" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["suit"] -= 1>><<set $lobbying.relationship += 8>><</button>><</if>> <<if $lobbying.items["rolex"] gt 0>><<button "Rolex Watch" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["rolex"] -= 1>><<set $lobbying.relationship += 10>><</button>><</if>> <<if $lobbying.items["golf"] gt 0>><<button "Golf Club Membership" "Office of Congressman Kyle Anderson (R)">><<set $lobbying.items["golf"] -= 1>><<set $lobbying.relationship += 20>><</button>><</if>>
<</if>>\
<<elseif $period == 3>>\
Anderson's secretary informs you that the Congressman is currently golfing at the Country Club in Virginia.
Would you like to join him? It will cost $500 for a day pass, but you'll boost your relationship with him by +4.
<<button "Join the Congressman" "Office of Congressman Kyle Anderson (R)">><<set $thread to 0>><<set $lobbying.relationship += 4>><<payment 500>><</button>>
<<elseif $period == 4>>\
Anderson's secretary informs you that the Congressman is currently at the Beltway Beat with his wife.
<</if>>
<<button [[Capitol Hill]]>><</button>>
<<set _x to "Kyle Anderson">>\
<<if $you.location is "Office of Congressman Kyle Anderson (R)">>\
<<speechYou "you">>Hey Congressman, how are you?<</speechYou>>
<<speech "anon" "_x">>Hi $you.firstName, what can I do for you?<</speech>>
You don't really know much about the Congressman's tastes or preferences, but if there's one thing you know rich and powerful men like, it's whores and partying.
<<speechYou "you">>Say, why don't we go out and hit the town? I know a nice little place in NW D.C. It'll be my treat!<</speechYou>>
<<speech "anon" "_x">>Awesome, let me call my wife. We'll take my car.<</speech>>
<<if $gina.met>>\
He walks away to make the call, and you quickly pull out your phone and call $gina.name.
<<speechYou "you">>Hey $gina.name, need your help. I have a Congressman who I'm trying to get in close with, think you can arrange some ladies of the night for him?<</speechYou>>
<<speech "gina" "$gina.name">>Sure, but it'll cost you<</speech>>
<<speechYou "you">>Sigh...what doesn't?<</speechYou>>
<</if>>
<<button "Go to the Beltway Beat" "The Beltway Beat">><</button>>
<<elseif $you.location is "The Beltway Beat">>\
<<if $thread is "null">>\
The two of you arrive at the Beltway Beat, and you're instantly looking for a spot where you can sit.
<<payment 1000>>
<<speech "anon" "_x">>$you.firstName, this is my wi-<</speech>>
<<speechYou "you">>Hate to interrupt, but we really gotta find a spot<</speechYou>>
<<vid ashly club0>>
<<if $gina.met>>\
You spot $gina.name on your way to the table, and pay her the $1,000 for the whores.
<<else>>\
Going to one of the attendees, you pay for bottle service, and rejoin the Congressman and his wife.
<</if>>
Your decisive decision making helped secure a table, but by the time you catch up to Mr. and Mrs. Anderson, it seems the lesser half has already started partying on his own.
<<vid Scenery congressmangrind>>
Waiting at the table, you see the Congressman's wife. What was her name again, <<textbox "$ashly.name" "Ashly">>?
<<image ashly club>>
<<set $thread to 0>>
<<button "Sit down with her" "The Beltway Beat">><</button>>
<<elseif $thread == 0>>
<<set $thread to 1>>\
As you sit down and have a second to relax, you finally get a good look at her. $ashly.name is getting some of the components for the drink ready, and you can't help but notice $ashly.name's...remarkable cutting technique
<<vid ashly club1>>
In a flash, she looks up at you, and you try to quickly avert your gaze. She laughs, and says
<<set $ashly.met to true>>
<<speech "ashly" "$ashly.name">>See something you like $you.firstName?<</speech>>
<<speechYou "you">>Well, your husband seems to have left us, not really sure what to do at the moment.<</speechYou>>
<<speech "ashly" "$ashly.name">>Aren't you supposed to be endearing yourself to my husband instead of ogling at his wife?<</speech>>
She's more perceptive than she looks, you need to be careful around her.
<<speechYou "you">>Isn't a husband supposed to stand by his wife instead of running off with the first floozy he meets?<</speechYou>>
<<speech "ashly" "$ashly.name">>My my $you.firstName, you didn't strike me as the chivalrous type<</speech>>
She leans in, giving you a clear view of her cleavage.
<<speech "ashly" "$ashly.name">>It has been a long, long, LONG time since my husband has shown me any attention...<</speech>>
<<button "Time to see where this is going!" "The Beltway Beat">><</button>>
<<elseif $thread == 1>>\
<<set $thread to 2>>\
She gets up, and makes her way around the table, sliding down next to you. $ashly.name spreads her legs, giving you full access to her panties. As you run your hands along her pussy, you feel her gasp, and she stares into your soul with her deep green eyes.
<<vid ashly club2>>
The table is secluded, and getting on her knees, $ashly.name hungrily pulls down your pants. She expertly jerks you off as you rapidly unbutton your shirt, looking around to see if her husband is anywhere in sight.
<<vid ashly club3>>\
<<button "Take her to a private room" "The Beltway Beat">><</button>>
<<elseif $thread == 2>>\
<<set $thread to 3>>\
You take her to a back room, and set her up on a cushion. Ripping off her soaking panties, you shove your face between the legs, and run your tongue along her wetness. Grabbing her legs, you feel her shake, and in response you eat her out more aggressively.
<<speech "ashly" "$ashly.name">>Ohhh, what a gentelman you are...<</speech>>
<<vid ashly club6>>
<<speech "ashly" "$ashly.name">>Now get over here and fuck my tits!<</speech>>
<<vid ashly club5>>
You flip her around on the cushion, and hold her head firmly in your hands.
<<speechYou "you">>I want to see how you work that mouth Mrs. Anderson<</speechYou>>
<<vid ashly club4>>
While she's good enough at sucking, you want to see how well she takes a real dick...
<<button "Time to abuse those holes" "The Beltway Beat">><</button>>
<<elseif $thread == 3>>\
<<set $thread to 4>>\
You sit back on the couch, and $ashly.name hesitantly stares at your throbbing erection. As she starts to straddle your cock, she moans and says
<<speech "ashly" "$ashly.name">>Mmmmm $you.firstName, I don't think it'll fit!<</speech>>
<<speechYou "you">>Don't worry, we'll make it fit<</speechYou>>
<<vid ashly club7>>
<<if $game.mode is "Realistic">>\
<<speech "ashly" "$ashly.name">>God, you're soooo much bigger than Kyle...<</speech>>
<<speech "ashly" "$ashly.name">>I don't think I ever had a cock this big even in my college days!<</speech>>
<<else>>\
<<speech "ashly" "$ashly.name">>God, you're soooo big!<</speech>><</if>>
As $ashly.name learns how to ride a dick as big as yours, you suck on her tits, and feel them stiffen up in your mouth.
<<vid ashly club8>>
<<button "Flip her around" "The Beltway Beat">><</button>>
<<elseif $thread == 4>>\
<<set $thread to 5>>\
It's a good thing you stretched her out a bit before hand. You feel $ashly.name tense up as your jam your manhood into her, and with slow deep strokes, you make her visibly orgasm for the first time.
<<vid ashly club9>>
She tips over, but you don't let up, and you keep fucking her as she tries to catch her breath. You see a light sheen of sweat on her forehead, and as you continue to penetrate her, $ashly.name's eyes roll backwards.
<<speechYou "you">>How do you like that dick $ashly.name?<</speechYou>>
<<speech "ashly" "$ashly.name">>Hrmgh...I like it...ahhh...alot<</speech>>
<<speechYou "you">>What's 13 times 17?<</speechYou>>
<<speech "ashly" "$ashly.name">>ahAHAH...thirteen....carry the 1...mmmm...one hundred and...and...<</speech>>
She's so dick drunk she can't even do basic math, that's what a real cock does to a woman.
<<vid ashly club10>>
<<button "Make her work for it" "The Beltway Beat">><</button>>
<<elseif $thread == 5>>\
<<set $thread to 6>>\
<<speechYou "you">>I don't need you hurting youself on my cock $ashly.name, why don't you take over for a bit<</speechYou>>
Most girls can't do reverse cowgirl as long as $ashly.name has been at it, and her soft skin obscures the strength in her legs.
<<speechYou "you">>What did you play in high school, basketball?<</speechYou>>
<<speech "ashly" "$ashly.name">>ooooo...soft...ball<</speech>>
<<vid ashly club11>>
You want another look at those tits that captured your attention outside, and rotate her around on your dick. She laughs at the ease with which you do it, and balances her cool hands on your chest. As you look down, you can't help but get aroused at how easily she's able to fit your entire cock. Her slick pussy juices run down the length of your cock, puddling at the base of your shaft, and her warm cunt is begging for your load.
<<vid ashly club12>>
In this position, $ashly.name isn't quite the helpless mess she was before, and she regains some of her composure. With a coy smile on her face and in a low, sultry voice, she says
<<speech "ashly" "$ashly.name">>I can tell you're close $you.firstName, do you want to cum?<</speech>>
<<button "Finish on her" "The Beltway Beat">><</button>>
<<elseif $thread == 6>>\
<<set $thread to 7>>\
You meekly nod, and she slowly and deliberately slides off your cock, her pussy gripping every inch on the way up. That nearly does you in, but she gets on her knees, and sticks her tongue out
<<if $game.mode is "Realistic">>
<<speech "ashly" "$ashly.name">>Wow, I don't think Kyle has ever cum this much, at least not on me!<</speech>>
<<speechYou "you">>Who tastes better?<</speechYou>>
<<speech "ashly" "$ashly.name">>Ohh, you, hands down. Kyle's semen tastes like fucking battery acid!<</speech>>
<<else>>\
<<speech "ashly" "$ashly.name">>I bet you taste fucking amazing!<</speech>>
<</if>>
<<vid ashly club13>>
The two of you quickly clean up afterwards, and put your clothes back on.
<<set $lobbying.relationship += 20>><<set $you.heat += 20>>
<<speech "ashly" "$ashly.name">>I know for a man in your position fucking your client's wife is risky, but don't worry, I'll put a good word in with Kyle for you.<</speech>>
<<speechYou "you">>I appreciate that, but this is a serious risk. I know Kyle isn't the most attentive husband, and I'm not going to complain about some amazing sex, but I'm sure he really does love you.<</speechYou>>
$ashly.name clams up, and you can see her lips tighten.
<<speech "ashly" "$ashly.name">>He isn't the man I thought he was. If you think buying him gifts, or taking him out to party will win him over, it won't. He is a very shallow man, but at least he listens to me and values my opinion. Trust me, you'll need me if you don't want this to take weeks.<</speech>>
While you didn't expect these biting words from $ashly.name, they ring true. It's probably best if you heed her advice in this last lobbying push.
<<button "Follow her out" "The Beltway Beat">><</button>>
<<elseif $thread == 7>>\
<<set $thread to "null">>\
The congressman is making a drunk fool of himself out in the club, but at least he's a happy drunk fool.
<<speech "anon" "_x">>Aha, sorry about that guys! Got a little carried away there.<</speech>>
<<speechYou "you">>No worries Congressman<</speechYou>>
<<speech "anon" "_x">>Hey look, we'll do this again sometime, you're a pretty chill guy! Thanks for keeping my wife company!<</speech>>
You and $ashly.name lock eyes for just a second, but you can see a glimmer of humor in her eyes. As the two of them head back home, you sit at the bar, going through today's events in your head.
<<if $gina.met>>\
As you're seated, $gina.name slides in next to you, and says
<<speech "gina" "$gina.name">>Pretty risky business, banging a politician's wife...<</speech>>
<<speechYou "you">>Wait, how the fu-<</speechYou>>
<<speech "gina" "$gina.name">>Ohh pleaseeee $you.firstName. Booking a private room? Just the two of you? And man, those moans! I think everyone could hear what was going on within 20 feet of that place. You're lucky I kept the Congressman occupied on the other side of the club<</speech>>
<<speechYou "you">>Ahh shit. Does anyone know besides you?<</speechYou>>
<<speech "gina" "$gina.name">>D.C. is a rumor mill sweetheart. Fucking her might get you close to her husband, but if he actually finds out, you're in trouble. There are always watching eyes everywhere, and sticking your meat in her is only going to raise your heat.<</speech>>
<<speech "gina" "$gina.name">>Tread carefully darling.<</speech>>
<<else>>\
You can sense some prying eyes on you. What you did was stupid; the Beltway Beat is home to some of the most influential and prominent people in the city, and you just took a Congressman's wife to a back room and railed her. People are always watching in this city, and this was bound to have raised your heat. While it's true giving $ashly.name the physical intimacy she wants is a surefire way to get in close with the Congressman, it isn't without its risks. Remember, in D.C., everyone is watching.
<</if>>\
<<missionAdvance>><<set $missionCountdown to 5>>
<<button "Leave the Club" "Northwest DC">><<advancePeriod>><</button>>
<</if>><</if>><<bg countryclub>>\
<<set $you.location to "Country Club">>\
<<if $period == 4>>\
The Club is now closed <<set $thread to "null">>
<<else>>\
<<if $thread == 0>>\
You try a couple drives, and you see some newbies practicing some swings.
<<vid Scenery golfgirl0>>
<<elseif $thread == 1>>\
One of the suburban moms at the club came without her husband, and was having some difficulty on the green. She asks for your help, and you are more than happy to oblige.
<<vid Scenery golfgirl1>>
<<elseif $thread == 2>>\
Seems some of the college chicks at the country club misplaced their clothes...
<<vid Scenery golfgirl2>>
<<elseif $thread == 3>>\
You get lucky with the caddy, and she lets you get a 'hole in one'
<<vid Scenery golfgirl3>>
<<elseif $thread == 4>>\
In one of the more secluded areas on the green, you see $gracecharis.name practicing. Guess the top restricted her mobility?
<<vid Scenery golfgirl4>>
<</if>><</if>>
<<button "Go Golfing" "Go Golfing">>\
<<looksmax 0.2>><<statsmax 5>>\
<<set _womanList to [0,1,2,3,4]>>\
<<set _womanIdx = Math.floor(Math.random()*_womanList.length)>>\
<<set $thread to _womanList[_womanIdx]>>\
<</button>>
<<button [[Country Club]]>><<set $thread to "null">><</button>><<bg countryclub>>\
<<set $you.location to "Country Club">>\
<<if $thread == "null">>\
<<speech "gracecharis" "$gracecharis.name">>What's up Mr. $you.lastName?<</speech>>
<<image gracecharis 1>>
<<button "Check out her nudes" "GraceCharis">><<set $thread to 0>><</button>> <<button "Talk to Her" "GraceCharis">><<set $thread to 1>><</button>>
<<elseif $thread == 0>>\
<<image gracecharis nude0>>
<<image gracecharis nude1>>
<<image gracecharis nude2>>
<<image gracecharis nude3>>
<<elseif $thread == 1>>\
<<speechYou "you">>Hey $gracecharis.name, you're still in college, right? I just recently graduated myself. <</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>I am, but I don't really care about any of my classes. I'm on the golf and cheer team, so my advisor just bumps up my grades.<</speech>>
<<speechYou "you">>You're a cheerleader?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Yeah...do you want to see one of the routines I've been practicing?<</speech>>
<<speechYou "you">>Uhh sure-<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>It's gonna cost you though, cough up $25<</speech>>
<<button "Pay her $25" "GraceCharis">><<set $thread to 2>><<payment 25>><</button>>
<<elseif $thread == 2>>\
She takes you aside to a private room, and changes into a tight shirt and white shear panties.
<<vid gracecharis grace1>>
<<speech "gracecharis" "$gracecharis.name">>Like what you see?<</speech>>
<<speechYou "you">>I seriously doubt you wear this on the field...<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Well, those guys didn't pay me $25. Wanna see more?<</speech>>
<<speechYou "you">>Sure, why no-<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>50 bucks this time<</speech>>
This bitch is gonna bleed you dry
<<button "Pay her $50" "GraceCharis">><<set $thread to 3>><<payment 50>><</button>>
<<elseif $thread == 3>>\
$gracecharis.name takes off her shirt, revealing a matching white bra. You gaze at her full breasts, and she laughs
<<vid gracecharis grace2>>
<<speechYou "you">>Let's see your routine...<</speechYou>>
<<vid gracecharis grace3>>
<<speechYou "you">>And how much more will it set me back to see everything?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>Hehe, that'll be one hundred dollars Mr. $you.lastName<</speech>>
<<button "Pay her $100" "GraceCharis">><<set $thread to 4>><<payment 100>><</button>>
<<elseif $thread == 4>>\
Unclasping her bra, she reveals a pair of some of the most majestic tits you're ever seen, and you can feel your mouth start to water.
<<vid gracecharis grace4>>
<<speechYou "you">>What's the price if I want to fuck you<</speechYou>>
<<vid gracecharis grace5>>
<<speech "gracecharis" "$gracecharis.name">>Oh Mr. $you.lastName, I'm a virgin.<</speech>>
<<speechYou "you">>What?<</speechYou>>
<<speech "gracecharis" "$gracecharis.name">>I'm saving myself for marriage...<</speech>>
You sense this is all you can get from $gracecharis.name, so better quit while you're ahead!
<</if>>
<<button [[Country Club]]>><<set $thread to "null">><</button>><<set _x to "Kyle Anderson">>\
<<if $you.location is "K Street">>\
Over these past couple of days, you have been doing more fundraising, building support for the bill, and growing your relationship with Anderson. It's backbreaking work, but it's hard to say that it's thankless.
Although you've just arrived at work, $autumn.name picks up her coat, and calls you from her office
<<speech "autumn" "$autumn.name">>You have to pack your shit quickly $you.lastName, the Congressman just called us to his office?<</speech>>
<<speechYou "you">>Oh shit, what happened?<</speechYou>>
<<speech "autumn" "$autumn.name">>I don't know, but it sounded urgent.<</speech>>
$autumn.name calls a limo from the front desk, and she waits for you in the car
<<button "Hop in the Car" "Office of Congressman Kyle Anderson (R)">><</button>>
<<elseif $you.location is "Office of Congressman Kyle Anderson (R)">>\
<<if $thread is "null">>\
<<set $thread to 0>>\
As the two of you sit in the Congressman's waiting room, $autumn.name nervously taps her feet against the leg of her chair. The secretary is giving $autumn.name an annoyed look, so you touch her leg to stop her tapping.
Eventually, the congressman pops his head out of his door, and says
<<speech "anon" "_x">>Hey guys, sorry to keep you waiting! Come on in!<</speech>>
<<button "Enter His Office" "Office of Congressman Kyle Anderson (R)">><</button>>
<<elseif $thread == 0>>\
<<set $thread to 1>>\
<<speech "autumn" "$autumn.name">>So, what seems to be the issue Congressman? Your secretary made it seem like it's urgent.<</speech>>
<<speech "anon" "_x">>Ohh, that silly woman. She just takes her job very seriously, don't mind her! I just wanted to shoot the shit for a bit!<</speech>>
You and the Congressman laugh, and you notice $autumn.name visibly become less tense.
<<button "Relax, and sit back in your chair" "Office of Congressman Kyle Anderson (R)">><</button>>
<<elseif $thread == 1>>\
<<set $thread to "null">>\
The three of you chat about D.C. gossip, congressional hijinks, and funny personal stories. Conversation with Anderson is effortless, and you can see why he's so popular with his constituents.
The Congressman tells a story about how he used to work on his father's farm (ommitting the fact that his family's real estate holdings were some of the largest in his state, and he had countless illegal farmhands to help).
<<speech "anon" "_x">>So, what were your first jobs?<</speech>>
<<speech "autumn" "$autumn.name">>In high school, I joined this community organizing group, that focused on mutual aid.<</speech>>
<<speechYou "you">>I...uh...used to clean pools in some of the more upscale neighborhoods close to home.<</speechYou>>
<<speech "anon" "_x">>A farmhand, an activist, and a pool boy...look how far we've all come! <</speech>>
The three of you laugh, and Anderson continues.
<<speech "anon" "_x">>Say, I have a pool in my backyard that I've been meaning to work on. Are you interested in dipping back into your former occupation?<</speech>>
<<speechYou "you">>Ohh, I don't kn-OWWW<</speechYou>>
$autumn.name kicks you under the table, and with a sickly saccharine smile, she says,
<<speech "autumn" "$autumn.name">>$you.firstName would LOVE to help you with your pool. It's so important that we ground ourselves with honest labor, especially in our positions!<</speech>>
<<speech "anon" "_x">>Sweet! My home is in Virginia, why don't you come over sometime? I've heard it's better to clean when the sun is up, so why don't you come over at Noon?<</speech>>
<<missionAdvance>>
<em>You can now visit the Congressman's House, and clean his pool in the Afternoon</em>
<</if>>
<</if>><<if $lobbying.budget gte $lobbying.requiredBudget and $lobbying.support gte $lobbying.requiredSupport and $lobbying.relationship gte $lobbying.requiredRelationship>>\
<<if $you.location is "K Street">>\
The office keeps track of current lobbying efforts and progress, and these past few weeks, you've watched your efforts slowly inch towards the finish line. As you wrap up your final lobbying effort, $autumn.name walks to your desk, and gives you a huge grin
<<speech "autumn" "$autumn.name">>Congratulations $you.lastName, Congressman Anderson just pleged his support, and will be voting our way on this bill!<</speech>>
<<speechYou "you">>Sweet! When do we start lobbying the next Congressman?<</speechYou>>
<<speech "autumn" "$autumn.name">>Soon, we need to move quickly.<</speech>>
<<speech "autumn" "$autumn.name">>At the moment though, Greystone is summoning you back to New York for a debrief.<</speech>>
<<speechYou "you">>I fucking hate flying.<</speechYou>>
<<speech "autumn" "$autumn.name">>Well, at least you get a limo to the airport!<</speech>>
<<button "Head to New York" "Dulles Airport">><</button>>
<<elseif $you.location is "Dulles Airport">>\
<<set _x to "Gate Agent">>\
<<speech "anonF" "_x">>We are now boarding for Flight 420 with service from Washington D.C. to New York. Please have your boarding passes and identification ready!<</speech>>
Time to hop on the flight! <<if $period == 4>><<set $period to 3>><</if>>
<<elseif $you.location is "JFK Airport">>\
The plane touches down in New York, and as you leave the terminal, you see a familiar face waiting for you.
<<speech "adriana" "$adriana.name">>Hi there Mr. Lobbyist, long time no see...how was DC?<</speech>>
<<speechYou "you">>Well sweetheart, nothing beats New York. Are you my welcome party?<</speechYou>>
<<speech "adriana" "$adriana.name">>Indeed I am. The higher ups seem to be pretty impressed with your progress, they even got us a limo to take us to the office.<</speech>>
<<speechYou "you">>Oh, limo service is complementary down in Washington<</speechYou>>
<<speech "adriana" "$adriana.name">>Seriously? What the fuck?! New York is the office that makes all the money, D.C. just spends it on politicians!<</speech>>
<<speechYou "you">>Hey honey, I don't make the rules<</speechYou>>
<<button "Get In the Limo" "Lobby">><</button>>
<<elseif $you.location is "Lobby">>\
The grey streets of New York zip by as the limo speeds from Queens to Manhattan.
<<speech "adriana" "$adriana.name">>You're becoming quite a powerful man, both in New York and Washington. Some of the higher ups want to discuss your progress in person.<</speech>>
<<speechYou "you">>Who are these higher ups? I know my direct supervisors, like $miamal.name, $johnny.name, and $alexistexas.name, but who's at the very top? The VPs? $kendralust.name? $angela.name?<</speechYou>>
<<speech "adriana" "$adriana.name">>The VPs are up there, but they report to the CEO and the Board of Directors. It's all very hush hush, and almost no one has met upper management.<</speech>>
<<speech "adriana" "$adriana.name">>If you continue doing as well as you currently are, you'll meet them soon enough. And maybe even replace them...<</speech>>
$adriana.name's ambition is terrifying, and probably even surpasses your own. Sexy!
The limo arrives at the Greystone building, and you're met by the "Interactions Manager"
<<speech "miamelano" "$miamelano.name">>They're waiting for you on the Executive Floor<</speech>>
<<elseif $you.location is "Executive Floor">>\
<<if $thread is "null">>\
<<set $thread to 0>>\
You and $adriana.name walk onto the Executive Floor, and step into the expansive and luxuriant meeting room. You see both the VPs, $alexistexas.name, $johnny.name, and $miamal.name. $miamal.name smiles at you, as you take a seat next to her.
<<speech "kendralust" "$kendralust.name">>Good job working over the Congressman. This bill is incredibly contentious, and both parties are split on how they want to vote on it. Each vote on this bill is so important.<</speech>>
<<speech "angela" "$angela.name">>$johnny.name, would you like to share anything with Mr. $you.lastName?<</speech>>
$johnny.name shoots daggers at $angela.name, and avoiding your eyes, he says
<<speech "johnny" "$johnny.name">>I spoke to my wife and-<</speech>>
<<speechYou "you">>MAH WIFE!<</speechYou>>
<<speech "miamal" "$miamal.name">>Haha, nice Borat reference $you.firstName!<</speech>>
<<speech "johnny" "$johnny.name">>As I was saying, I spoke to my wife, and you're off the SEC's radar...for the moment.<</speech>>
<<button "Does that mean..." "Executive Floor">><</button>>
<<elseif $thread == 0>><<set $thread to "null">>\
<<set $you.job to "Junior Analyst">>\
<<speechYou "you">>So I can...<</speechYou>>
<<speech "alexistexas" "$alexistexas.name">>Yes Mr. $you.lastName, you can clear to continue trading. Should help ease some of your...financial burdens.<</speech>>
<<speech "angela" "$angela.name">>As a token of our appreciation, we've approved a one-time, tax-free bonus of $50,000, to compensate you for your reduced salary these past few weeks.<</speech>>
Cash is awesome!
<<set $you.cash += 50000>>
<<speechYou "you">>Cool, thanks! So what should I do now?<</speechYou>>
<<speech "kendralust" "$kendralust.name">>You should be making trades from time to time, but your primary responsibility for the forseeable future is assisting with our lobbying efforts in D.C.<</speech>>
<<missionAdvance>>
<<button "You're a trader again!" "Lobby">><</button>>
<</if>>\
<</if>>\
<</if>><b>Thank You For Playing WSGC v0.03!</b>
<<missionAdvance>>
If you've been following the progress of this game on f95zone since 0.02, I'm sure you've heard of the recent difficulties in developments. From a cancer scare, to looking for a job, to overall technical difficulties, this update has been quite exhausting.
I think I'm going to try releasing shorter updates, with less content. I have a very completionist mindset, so I really appreciate the Patreons and Fans who have stood by me during development.
The next update will be the Teanna Trump story update, which will obviously deal with new content for that model, along with other modifications to the existing universe. If you want to vote on the direction of future content, check out my Patreon, and join the Discord!
If you enjoyed the game, drop a five star and some positive comments! It helps other players find the game, and means a lot.
There are a few sandbox elements here and there, that sometimes are only available at certain times, or only available after a certain point in the Arc. Have fun enjoying the world! I hope to expand this feature MASSIVELY in the coming months
One final note, I didn't really test any of the number mechanics, so if there's something a little too brutal, let me know.
I don't want to paywall the game ultra hard/make it too much of a grind fest, so if there's something that's wayyy too unfair, just drop a comment. I heard from many people that upgrading your physique in the gym was a bit too hard, so I modified that to hopefully be a bit easier!
As always, thank you for playing Wall Street Giga Chad, and stay tuned for further updates!
- WSGC
<<set $freeplay to true>><<button "Continue in Freeplay" "Manhattan">><</button>>
<<set $you.location to "Congressman Anderson's House">><<bg andersonHouse>>\
<<set $location to [2.16]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<<elseif $game.mode is "Realistic">>\
<<if $period == 0>>\
You arrive at the Anderson house early in the morning. Peering in to the living room window, it seems the Congressman does in fact keep up with his husbandly duties, rather vigorously
<<vid ashly husband2>>
<<elseif $period == 2 or $period == 3>>\
<<if $thread == "null">>\
<<set _sceneSelectorList to [1, 2, 3, 4, 5, 6,]>>\
<<set _sceneChance = Math.floor(Math.random()*_sceneSelectorList.length)>>\
<<set _scene = _sceneSelectorList[_sceneChance]>>\
<<if _scene == 1>>\
You arrive at the Anderson house, consciously aware that the Congressman is not at home, leaving his wife alone. You catch a glimpse of $ashly.name through the window, and she looks gorgeous. But right then, you see...$tommy.name? What the fuck is he doing here?
<<vid tommy ashly0>>
Will you leave $ashly.name to her devices, or investigate a bit more?
<<button "Give her some privacy" "Virginia">><<set $thread to "null">><</button>> <<button "Investigate Further" "Congressman Anderson's House">><<set $thread to 0>><</button>>
<<else>>\
<<speech "ashly" "$ashly.name">>Why hello there $you.firstName! Why don't you come on in?<</speech>>
<</if>>\
<<elseif $thread == 0>>\
In the face of her husband's neglect, it seems you're not the only man who $ashly.name has sought comfort in. And $tommy.name is taking plenty of...comfort...with $ashly.name.
<<vid tommy ashly1>>
<<vid tommy ashly5>>
<<button "You've seen enough" "Virginia">><<set $thread to "null">><</button>> <<button "Keep Watching" "Congressman Anderson's House">><<set $thread to 1>><</button>>
<<elseif $thread == 1>>\
$ashly.name gives $tommy.name the same treatment she's given you, and it's remarkable to see it from this angle.
<<tommy ashly2>>
$tommy.name clearly wants to use another hole, and in one swift movement, he lifts up $ashly.name and places her on the table. She yelps and then moans as $tommy.name forces her legs apart, methodically pumping into her.
<<tommy ashly3>>
<<button "There's nothing more to see" "Virginia">><<set $thread to "null">><</button>> <<button "Keep Watching" "Congressman Anderson's House">><<set $thread to 2>><</button>>
<<elseif $thread == 2>>\
Expertly flipping her around, $tommy.name takes her from behind, and $ashly.name's eyes bulge when he fucks her from this angle.
<<vid tommy ashly4>>
As they move on to reverse cowgirl, you find yourself appreciating the view. $ashly.name looks majestic from this angle, and since you're usually the guy pounding her from behind, you rarely get to appreciate how she looks from here
<<vid tommy ashly6>>
After a few minutes, they seem to move to the bedroom, out of your view.
<<button "Leave her to have her fun" "Virginia">><<set $thread to "null">><</button>>
<</if>>\
<</if>>\
<<elseif $game.mode is "Fairy Tale Land">>\
<<if $period == 2 or $period == 3>>\
<<speech "ashly" "$ashly.name">>Why hello there $you.firstName! Why don't you come on in?<</speech>>
<</if>>\
<</if>>
<<button [[Living Room|Anderson Living Room]]>><</button>>
<<button [[Virginia]]>><</button>><<set $you.location to "Anderson Pool">><<bg andersonPool>>\
<<if $period == 2>>\
$ashly.name's Arousal: $ashly.poolProgress%
<<if $thread is "null">><<set $thread to 0>>\
Arriving at the backyard in your Pool Boy fit, you get to work, feeling just a little bit degraded. The pool is fairly well maintained, so there isn't much work you need to do. Out of the corner of your eye, you see $ashly.name step out from the kitchen, wearing an incredibly well-fitting bikini.
<<vid ashly pool1>>
<<speech "ashly" "$ashly.name">>My my $you.firstName, I didn't know you were a working class type of man...<</speech>>
<<speechYou "you">>Ehh, I like to get out into the sun from time to time.<</speechYou>>
<<speech "ashly" "$ashly.name">>Well, carry on darling.<</speech>>
<<button "Keep on Working" "Anderson Pool">><</button>>
<<elseif $thread == 0>>\
$ashly.name came out with a mojito, and seems to be enjoying it. You try to focus on your work, but she's making it increasingly difficult to do.
<<vid ashly pool2>>
After a few minutes of obviously pleasuring herself, she covers herself again, and calls you over
<<speech "ashly" "$ashly.name">>My husband told me you used to be a pool boy for all the neighborhood moms back in High School. Did any of them ever ask for a massage from those big, strong hands?<</speech>>
<<speechYou "you">>I have a few interesting stories from those days....<</speechYou>>
<<speechYou "you">>Why don't you go ahead and turn around for me<</speechYou>>
<<vid ashly pool3>>
<<button "Start Massaging Her" "Anderson Pool">><<set $ashly.poolProgress += 3>><<set $thread to 2>><<set $you.heat += 10>><<set $lobbying.relationship += 20>><</button>>
<<elseif $thread == 1>>\
Starting from her chest to her groin, you drip the heated massage oil across $ashly.name's body. She moans as the liquid hits her skin, tensing up as you move further south.
<<vid ashly addOil>>
<<if $ashly.poolProgress lt 25>>
<<button "Massage Her Back" "Anderson Pool">><<set $thread to 2>><<set $ashly.poolProgress += 3>><</button>> <<button "Massage Her Thighs" "Anderson Pool">><<set $thread to 3>><<set $ashly.poolProgress += 5>><</button>>
<<elseif $ashly.poolProgress lt 50>>\
<<button "Massage Her Back" "Anderson Pool">><<set $thread to 2>><<set $ashly.poolProgress += 3>><</button>> <<button "Massage Her Thighs" "Anderson Pool">><<set $thread to 3>><<set $ashly.poolProgress += 5>><</button>> <<button "Full Body Massage" "Anderson Pool">><<set $thread to 4>><<set $ashly.poolProgress += 7>><</button>>
<<elseif $ashly.poolProgress lt 60>>
<<button "She stops you for just a second" "Anderson Pool">><<set $thread to 5>><</button>>
<</if>>
<<elseif $thread == 2>>\
You run your hands across $ashly.name's smooth back. Gorgeously tanned, and completely at your mercy, you catch her staring at your muscled arms.
<<vid ashly back>>
<<if $ashly.poolProgress lt 25>>
<<button "Add Oil" "Anderson Pool">><<set $thread to 1>><<set $ashly.poolProgress += 5>><</button>> <<button "Massage Her Thighs" "Anderson Pool">><<set $thread to 3>><<set $ashly.poolProgress += 5>><</button>>
<<elseif $ashly.poolProgress lt 50>>\
<<button "Add Oil" "Anderson Pool">><<set $thread to 1>><<set $ashly.poolProgress += 5>><</button>> <<button "Massage Her Thighs" "Anderson Pool">><<set $thread to 3>><<set $ashly.poolProgress += 5>><</button>> <<button "Full Body Massage" "Anderson Pool">><<set $thread to 4>><<set $ashly.poolProgress += 7>><</button>>
<<elseif $ashly.poolProgress lt 60>>
<<button "She stops you for just a second" "Anderson Pool">><<set $thread to 5>><</button>>
<</if>>
<<elseif $thread == 3>>\
You massage $ashly.name's bronze thighs, and you can feel the heat eminating from them. $ashly.name tries not to squirm, as you caress her sweet sweet legs.
<<vid ashly thigh>>
<<if $ashly.poolProgress lt 25>>
<<button "Add Oil" "Anderson Pool">><<set $thread to 1>><<set $ashly.poolProgress += 5>><</button>> <<button "Massage Her Back" "Anderson Pool">><<set $thread to 2>><<set $ashly.poolProgress += 3>><</button>>
<<elseif $ashly.poolProgress lt 50>>\
<<button "Add Oil" "Anderson Pool">><<set $thread to 1>><<set $ashly.poolProgress += 5>><</button>> <<button "Massage Her Back" "Anderson Pool">><<set $thread to 2>><<set $ashly.poolProgress += 3>><</button>> <<button "Full Body Massage" "Anderson Pool">><<set $thread to 4>><<set $ashly.poolProgress += 7>><</button>>
<<elseif $ashly.poolProgress lt 60>>
<<button "She stops you for just a second" "Anderson Pool">><<set $thread to 5>><</button>>
<</if>>
<<elseif $thread == 4>>\
Since you've sufficiently warmed $ashly.name up, you decide to escalate just a little. Starting from her neck, all the way down to her pussy, you firmly press and spread the oil across $ashly.name's body.
<<vid ashly risky>>
<<speech "ashly" "$ashly.name">>$you.firstName, that was...oh my<</speech>>
<<if $ashly.poolProgress lt 25>>
<<button "Add Oil" "Anderson Pool">><<set $thread to 1>><<set $ashly.poolProgress += 5>><</button>> <<button "Massage Her Back" "Anderson Pool">><<set $thread to 2>><<set $ashly.poolProgress += 3>><</button>> <<button "Massage Her Thighs" "Anderson Pool">><<set $thread to 3>><<set $ashly.poolProgress += 5>><</button>>
<<elseif $ashly.poolProgress lt 50>>\
<<button "Add Oil" "Anderson Pool">><<set $thread to 1>><<set $ashly.poolProgress += 5>><</button>> <<button "Massage Her Back" "Anderson Pool">><<set $thread to 2>><<set $ashly.poolProgress += 3>><</button>> <<button "Massage Her Thighs" "Anderson Pool">><<set $thread to 3>><<set $ashly.poolProgress += 5>><</button>>
<<elseif $ashly.poolProgress lt 60>>
<<button "She stops you for just a second" "Anderson Pool">><<set $thread to 5>><</button>>
<</if>>
<<elseif $thread == 5>>\
$ashly.name is clearly getting hot and bothered, and as you're about to go onto the next move, she interrupts you. Slipping off her bra, she looks straight in your eyes, and says
<<speech "ashly" "$ashly.name">>You don't need to tip toe around my body $you.firstName. I trust you, you're my husband's friend, right?<</speech>>
<<vid ashly iTrustYou>>
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>>
<<elseif $thread == 6>>\
With her tits now exposed, you dribble the hot oil across them, and $ashly.name tenses up.
<<vid ashly addOilTits>>
<<if $ashly.poolProgress lt 75>>
<<button "Add More Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>>
<<elseif $ashly.poolProgress lt 100>>\
<<button "Add More Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>> <<button "Full Body Massage" "Anderson Pool">><<set $thread to 8>><<set $ashly.poolProgress += 10>><</button>> <<button "Kiss Her" "Anderson Pool">><<set $thread to 9>><<set $ashly.poolProgress += 7>><</button>>
<<elseif $ashly.poolProgress gte 100>>\
<<button "She is Fully Aroused" "Anderson Pool">><<set $thread to 10>><</button>>
<</if>>
<<elseif $thread == 7>>\
As you run your hands across her tits, you feel her nipples get firm, and $ashly.name's back arches upwards.
<<vid ashly tits>>
<<if $ashly.poolProgress lt 75>>
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits Further" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>>
<<elseif $ashly.poolProgress lt 100>>\
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits Further" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>> <<button "Full Body Massage" "Anderson Pool">><<set $thread to 8>><<set $ashly.poolProgress += 10>><</button>> <<button "Kiss Her" "Anderson Pool">><<set $thread to 9>><<set $ashly.poolProgress += 7>><</button>>
<<elseif $ashly.poolProgress gte 100>>\
<<button "She is Fully Aroused" "Anderson Pool">><<set $thread to 10>><</button>>
<</if>>
<<elseif $thread == 8>>\
Sitting her up, you continue to massage her tits, while you slide your fingers down $ashly.name's thong. Rubbing your fingers over her clit, $ashly.name writhes around in your strong, confident arms. Everytime you sense her getting close to completion, you ease up, and prevent her from climaxing.
<<vid ashly fullbody>>
<<if $ashly.poolProgress lt 75>>
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>>
<<elseif $ashly.poolProgress lt 100>>\
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>> <<button "Kiss Her" "Anderson Pool">><<set $thread to 9>><<set $ashly.poolProgress += 7>><</button>>
<<elseif $ashly.poolProgress gte 100>>\
<<button "She is Fully Aroused" "Anderson Pool">><<set $thread to 10>><</button>>
<</if>>
<<elseif $thread == 9>>\
You push $ashly.name down to her chair, and rub your hands across her tits. The two of you kiss, and her lips taste sweet and familiar.
<<vid ashly kiss>>
<<if $ashly.poolProgress lt 75>>
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>>
<<elseif $ashly.poolProgress lt 100>>\
<<button "Add Oil to Her Tits" "Anderson Pool">><<set $thread to 6>><<set $ashly.poolProgress += 6>><</button>> <<button "Massage Her Tits" "Anderson Pool">><<set $thread to 7>><<set $ashly.poolProgress += 8>><</button>>
<<elseif $ashly.poolProgress gte 100>>\
<<button "She is Fully Aroused" "Anderson Pool">><<set $thread to 10>><</button>>
<</if>>
<<elseif $thread == 10>>\
<<speech "ashly" "$ashly.name">>Stop dicking around $you.firstName, I want you to fuck me!<</speech>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 11>>\
$ashly.name submissively drops down to her knees, and starts giving your cock a royal treatment
<<speech "ashly" "$ashly.name">>Why don't you let me suck your balls next?<</speech>>
<<vid ashly poolsex0>>
<<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 12>>\
With a gentle, but firm suction, $ashly.name fits your family jewels in your mouth, while continuing to jerk you off. Her sucking and hand action is perfectly synchronized, bringing you closer to cumming.
<<vid ashly poolsex1>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 13>>\
You boost $ashly.name up on a sofa, and drive your face into her pussy. She cries out in suddden joy, and you force her legs back to keep her from smacking into your head.
<<vid ashly poolsex2>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 14>>\
$ashly.name straddles herself on your cock, and all she can make are unintelligble noises as she slides up and down. Her endurance is impressive, as she thumps up and down on your groin.
<<vid ashly poolsex3>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 15>>\
$ashly.name hops ontop of you, pushing her tits in your face. As you suck on them, she rides you, and whispers sweet nothings into your ear.
<<vid ashly poolsex4>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 16>>\
You pick her up and slam her onto the couch. Before she has a moment to recover, you slam your dick into her, and start pounding. At this point, the only words she can say are your name, over and over again.
<<vid ashly poolsex5>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 17>>\
You pull her leg up, and she yelps as you thrust into her from the side. As you pick up speed, she moves her head up and locks lips with you, making you fuck her harder.
<<vid ashly poolsex6>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Doggystyle" "Anderson Pool">><<set $thread to 18>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 18>>\
Holding her arms behind her back, you savagely fuck her from behind, prompted by the glazed over look of ecstacy from $ashly.name's eyes.
<<vid ashly poolsex7>>
<<button "Blowjob" "Anderson Pool">><<set $thread to 11>><</button>> <<button "Teabag" "Anderson Pool">><<set $thread to 12>><</button>> <<button "Eat Her Out" "Anderson Pool">><<set $thread to 13>><</button>>
<<button "Reverse Cowgirl" "Anderson Pool">><<set $thread to 14>><</button>> <<button "Riding You" "Anderson Pool">><<set $thread to 15>><</button>> <<button "Missionary" "Anderson Pool">><<set $thread to 16>><</button>> <<button "Side Fuck" "Anderson Pool">><<set $thread to 17>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 19>><</button>>
<<elseif $thread == 19>>\
<<speechYou "you">>You're so fucking tight $ashly.name...I think I'm going to cum!<</speechYou>>
<<speech "ashly" "$ashly.name">>Just do it inside me!<</speech>>
<<speechYou "you">>Wait, what?<</speechYou>>
<<speech "ashly" "$ashly.name">>I want you to cum INSIDE ME!<</speech>>
She reaches behind as you're fucking her, and grabs your balls, pushing you over the edge
<<vid ashly poolsex8>>
The two of you lay there in each others arms, and $ashly.name starts to kiss you. You see your seed dripping out of $ashly.name's pussy and onto her leg, and you snap back into the moment.
<<advancePeriod>>
<<speechYou "you">>$ashly.name, are you on birth control?<</speechYou>>
<<speech "ashly" "$ashly.name">>I'm not, but Kyle said it would be good for our image if we have a child. I'll be damned if it's his...<</speech>>
While this is a mildly concerning development, you suppose in one way or another, you're helping out the Congressman. Afterall, you're his lobbyist, his wish is your command!
<</if>>\
<</if>>
<<button [[Living Room|Anderson Living Room]]>><<set $thread to "null">><</button>> <<button [[Kitchen|Anderson Kitchen]]>><<set $thread to "null">><</button>><<set $you.location to "Anderson Kitchen">><<bg andersonKitchen>>\
<i>Not Yet Implemented</i>
<<button [[Living Room|Anderson Living Room]]>><</button>> <<button [[Pool|Anderson Pool]]>><<set $ashly.poolProgress to 0>><</button>><<set $you.location to "Anderson Living Room">><<bg andersonHouse>>\
<<set $location to [2.16]>>\
<<if $location.contains($mission.arc) && $missionCountdown == 0>>\
<<set _passage to "Arc" + $mission.arc>>\
<<include _passage>>\
<</if>>
<<button [[Bedroom|Anderson Bedroom]]>><</button>> <<button [[Kitchen|Anderson Kitchen]]>><</button>> <<button [[Pool|Anderson Pool]]>><<set $ashly.poolProgress to 0>><</button>>
<<button [[Driveway|Congressman Anderson's House]]>><</button>><<set $you.location to "Anderson Bedroom">><<bg andersonBedroom>>\
<<if $period == 3>>\
<<if $mission.arc gt 2.17>>\
<<if $thread == "null">>\
<<speech "ashly" "$ashly.name">>My my $you.firstName, where are your manners?Don't you know better than to enter a married woman's bedroom when she's all on her lonesome?<</speech>>
<<speechYou "you">>My sincerest apologies $ashly.name, I don't quite know how I stumbled in here<</speechYou>>
<<speech "ashly" "$ashly.name">>Well since you're here, why don't you stay and keep me company while my husband is out?<</speech>>
Note: Since you've already lobbied Congressman Anderson, there's less scrutiny on you when you visit his wife in the privacy of their home, so this action will raise no heat.
<<button "Fuck Her" "Anderson Bedroom">><<set $thread to 0>><</button>>
<<elseif $thread == 0>>\
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Bedroom">><<set $thread to 9>><</button>>
<<elseif $thread == 1>>\
$ashly.name gracefully kneels before you, ready to provide an intimate experience.
<<vid ashly poolsex0>>
<<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Bedroom">><<set $thread to 9>><</button>>
<<elseif $thread == 2>>\
Inside the intimate setting, as you lay back, $ashly.name skillfully caresses your most sensitive areas with a tender yet confident touch. Her lips create a gentle vacuum, enveloping your essence, while her hand continues its rhythmic motion. Every movement is harmoniously coordinated, intensifying your pleasure and drawing you nearer to ecstasy.
<<vid ashly poolsex1>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Bedroom">><<set $thread to 9>><</button>>
<<elseif $thread == 3>>\
You position $ashly.name on a sofa and attend to her desires, eliciting cries of pleasure.
<<vid ashly poolsex2>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Bedroom">><<set $thread to 9>><</button>>
<<elseif $thread == 4>>\
$ashly.name straddles you, and her passionate movements leave her speechless as she rides with impressive endurance. The connection intensifies with each motion.
<<vid ashly poolsex3>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 9>><</button>>
<<elseif $thread == 5>>\
$ashly.name takes the lead, teasingly pushing her charms toward you. As you indulge, she guides you on a sensual journey, whispering sweetly in your ear.
<<vid ashly poolsex4>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 9>><</button>>
<<elseif $thread == 6>>\
You assertively take control, moving her to the couch. In the heat of the moment, only your names are spoken, over and over again.
<<vid ashly poolsex5>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 9>><</button>>
<<elseif $thread == 7>>\
With a swift movement, you change positions, eliciting a surprised yelp from $ashly.name. Your fervent connection leads to an intimate kiss, intensifying the experience.
<<vid ashly poolsex6>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Doggystyle" "Anderson Bedroom">><<set $thread to 8>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 9>><</button>>
<<elseif $thread == 8>>\
You assertively hold $ashly.name's arms behind her, pounding her deep. Her eyes reveal ecstasy as she moans in a low, sweet voice.
<<vid ashly poolsex7>>
<<button "Blowjob" "Anderson Bedroom">><<set $thread to 1>><</button>> <<button "Teabag" "Anderson Bedroom">><<set $thread to 2>><</button>> <<button "Eat Her Out" "Anderson Bedroom">><<set $thread to 3>><</button>>
<<button "Reverse Cowgirl" "Anderson Bedroom">><<set $thread to 4>><</button>> <<button "Riding You" "Anderson Bedroom">><<set $thread to 5>><</button>> <<button "Missionary" "Anderson Bedroom">><<set $thread to 6>><</button>> <<button "Side Fuck" "Anderson Bedroom">><<set $thread to 7>><</button>>
<<button "Creampie" "Anderson Pool">><<set $thread to 9>><</button>>
<<elseif $thread == 9>>\
<<speech "ashly" "$ashly.name">>You better fucking cum in me<</speech>>
<<speechYou "you">>Yes Ma'am!<</speechYou>>
<<vid ashly poolsex8>>
Your session has left $ashly.name out of breath and panting on her bed. She looks really tired, so it's probably best for you to leave now.
<</if>>\
<</if>>\
<</if>>
<<button [[Living Room|Anderson Living Room]]>><<set $thread to "null">><</button>>